Documentation ¶
Index ¶
- type Application
- type ApplicationArgs
- type ApplicationArray
- type ApplicationArrayInput
- type ApplicationArrayOutput
- func (ApplicationArrayOutput) ElementType() reflect.Type
- func (o ApplicationArrayOutput) Index(i pulumi.IntInput) ApplicationOutput
- func (o ApplicationArrayOutput) ToApplicationArrayOutput() ApplicationArrayOutput
- func (o ApplicationArrayOutput) ToApplicationArrayOutputWithContext(ctx context.Context) ApplicationArrayOutput
- type ApplicationInput
- type ApplicationMap
- type ApplicationMapInput
- type ApplicationMapOutput
- func (ApplicationMapOutput) ElementType() reflect.Type
- func (o ApplicationMapOutput) MapIndex(k pulumi.StringInput) ApplicationOutput
- func (o ApplicationMapOutput) ToApplicationMapOutput() ApplicationMapOutput
- func (o ApplicationMapOutput) ToApplicationMapOutputWithContext(ctx context.Context) ApplicationMapOutput
- type ApplicationOutput
- func (o ApplicationOutput) Arn() pulumi.StringOutput
- func (o ApplicationOutput) AutoConfigEnabled() pulumi.BoolPtrOutput
- func (o ApplicationOutput) AutoCreate() pulumi.BoolPtrOutput
- func (o ApplicationOutput) CweMonitorEnabled() pulumi.BoolPtrOutput
- func (ApplicationOutput) ElementType() reflect.Type
- func (o ApplicationOutput) GroupingType() pulumi.StringPtrOutput
- func (o ApplicationOutput) OpsCenterEnabled() pulumi.BoolPtrOutput
- func (o ApplicationOutput) OpsItemSnsTopicArn() pulumi.StringPtrOutput
- func (o ApplicationOutput) ResourceGroupName() pulumi.StringOutput
- func (o ApplicationOutput) Tags() pulumi.StringMapOutput
- func (o ApplicationOutput) TagsAll() pulumi.StringMapOutputdeprecated
- func (o ApplicationOutput) ToApplicationOutput() ApplicationOutput
- func (o ApplicationOutput) ToApplicationOutputWithContext(ctx context.Context) ApplicationOutput
- type ApplicationState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Application ¶
type Application struct { pulumi.CustomResourceState // ARN of the Application. Arn pulumi.StringOutput `pulumi:"arn"` // Indicates whether Application Insights automatically configures unmonitored resources in the resource group. AutoConfigEnabled pulumi.BoolPtrOutput `pulumi:"autoConfigEnabled"` // Configures all of the resources in the resource group by applying the recommended configurations. AutoCreate pulumi.BoolPtrOutput `pulumi:"autoCreate"` // Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated, failed deployment, and others. CweMonitorEnabled pulumi.BoolPtrOutput `pulumi:"cweMonitorEnabled"` // Application Insights can create applications based on a resource group or on an account. To create an account-based application using all of the resources in the account, set this parameter to `ACCOUNT_BASED`. GroupingType pulumi.StringPtrOutput `pulumi:"groupingType"` // When set to `true`, creates opsItems for any problems detected on an application. OpsCenterEnabled pulumi.BoolPtrOutput `pulumi:"opsCenterEnabled"` // SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem. OpsItemSnsTopicArn pulumi.StringPtrOutput `pulumi:"opsItemSnsTopicArn"` // Name of the resource group. // // The following arguments are optional: ResourceGroupName pulumi.StringOutput `pulumi:"resourceGroupName"` // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. // // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` }
Provides a ApplicationInsights Application resource.
## Example Usage
```go package main
import (
"encoding/json" "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/applicationinsights" "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/resourcegroups" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { tmpJSON0, err := json.Marshal(map[string]interface{}{ "ResourceTypeFilters": []string{ "AWS::EC2::Instance", }, "TagFilters": []map[string]interface{}{ map[string]interface{}{ "Key": "Stage", "Values": []string{ "Test", }, }, }, }) if err != nil { return err } json0 := string(tmpJSON0) exampleGroup, err := resourcegroups.NewGroup(ctx, "example", &resourcegroups.GroupArgs{ Name: pulumi.String("example"), ResourceQuery: &resourcegroups.GroupResourceQueryArgs{ Query: pulumi.String(json0), }, }) if err != nil { return err } _, err = applicationinsights.NewApplication(ctx, "example", &applicationinsights.ApplicationArgs{ ResourceGroupName: exampleGroup.Name, }) if err != nil { return err } return nil }) }
```
## Import
Using `pulumi import`, import ApplicationInsights Applications using the `resource_group_name`. For example:
```sh $ pulumi import aws:applicationinsights/application:Application some some-application ```
func GetApplication ¶
func GetApplication(ctx *pulumi.Context, name string, id pulumi.IDInput, state *ApplicationState, opts ...pulumi.ResourceOption) (*Application, error)
GetApplication gets an existing Application resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewApplication ¶
func NewApplication(ctx *pulumi.Context, name string, args *ApplicationArgs, opts ...pulumi.ResourceOption) (*Application, error)
NewApplication registers a new resource with the given unique name, arguments, and options.
func (*Application) ElementType ¶
func (*Application) ElementType() reflect.Type
func (*Application) ToApplicationOutput ¶
func (i *Application) ToApplicationOutput() ApplicationOutput
func (*Application) ToApplicationOutputWithContext ¶
func (i *Application) ToApplicationOutputWithContext(ctx context.Context) ApplicationOutput
type ApplicationArgs ¶
type ApplicationArgs struct { // Indicates whether Application Insights automatically configures unmonitored resources in the resource group. AutoConfigEnabled pulumi.BoolPtrInput // Configures all of the resources in the resource group by applying the recommended configurations. AutoCreate pulumi.BoolPtrInput // Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated, failed deployment, and others. CweMonitorEnabled pulumi.BoolPtrInput // Application Insights can create applications based on a resource group or on an account. To create an account-based application using all of the resources in the account, set this parameter to `ACCOUNT_BASED`. GroupingType pulumi.StringPtrInput // When set to `true`, creates opsItems for any problems detected on an application. OpsCenterEnabled pulumi.BoolPtrInput // SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem. OpsItemSnsTopicArn pulumi.StringPtrInput // Name of the resource group. // // The following arguments are optional: ResourceGroupName pulumi.StringInput // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput }
The set of arguments for constructing a Application resource.
func (ApplicationArgs) ElementType ¶
func (ApplicationArgs) ElementType() reflect.Type
type ApplicationArray ¶
type ApplicationArray []ApplicationInput
func (ApplicationArray) ElementType ¶
func (ApplicationArray) ElementType() reflect.Type
func (ApplicationArray) ToApplicationArrayOutput ¶
func (i ApplicationArray) ToApplicationArrayOutput() ApplicationArrayOutput
func (ApplicationArray) ToApplicationArrayOutputWithContext ¶
func (i ApplicationArray) ToApplicationArrayOutputWithContext(ctx context.Context) ApplicationArrayOutput
type ApplicationArrayInput ¶
type ApplicationArrayInput interface { pulumi.Input ToApplicationArrayOutput() ApplicationArrayOutput ToApplicationArrayOutputWithContext(context.Context) ApplicationArrayOutput }
ApplicationArrayInput is an input type that accepts ApplicationArray and ApplicationArrayOutput values. You can construct a concrete instance of `ApplicationArrayInput` via:
ApplicationArray{ ApplicationArgs{...} }
type ApplicationArrayOutput ¶
type ApplicationArrayOutput struct{ *pulumi.OutputState }
func (ApplicationArrayOutput) ElementType ¶
func (ApplicationArrayOutput) ElementType() reflect.Type
func (ApplicationArrayOutput) Index ¶
func (o ApplicationArrayOutput) Index(i pulumi.IntInput) ApplicationOutput
func (ApplicationArrayOutput) ToApplicationArrayOutput ¶
func (o ApplicationArrayOutput) ToApplicationArrayOutput() ApplicationArrayOutput
func (ApplicationArrayOutput) ToApplicationArrayOutputWithContext ¶
func (o ApplicationArrayOutput) ToApplicationArrayOutputWithContext(ctx context.Context) ApplicationArrayOutput
type ApplicationInput ¶
type ApplicationInput interface { pulumi.Input ToApplicationOutput() ApplicationOutput ToApplicationOutputWithContext(ctx context.Context) ApplicationOutput }
type ApplicationMap ¶
type ApplicationMap map[string]ApplicationInput
func (ApplicationMap) ElementType ¶
func (ApplicationMap) ElementType() reflect.Type
func (ApplicationMap) ToApplicationMapOutput ¶
func (i ApplicationMap) ToApplicationMapOutput() ApplicationMapOutput
func (ApplicationMap) ToApplicationMapOutputWithContext ¶
func (i ApplicationMap) ToApplicationMapOutputWithContext(ctx context.Context) ApplicationMapOutput
type ApplicationMapInput ¶
type ApplicationMapInput interface { pulumi.Input ToApplicationMapOutput() ApplicationMapOutput ToApplicationMapOutputWithContext(context.Context) ApplicationMapOutput }
ApplicationMapInput is an input type that accepts ApplicationMap and ApplicationMapOutput values. You can construct a concrete instance of `ApplicationMapInput` via:
ApplicationMap{ "key": ApplicationArgs{...} }
type ApplicationMapOutput ¶
type ApplicationMapOutput struct{ *pulumi.OutputState }
func (ApplicationMapOutput) ElementType ¶
func (ApplicationMapOutput) ElementType() reflect.Type
func (ApplicationMapOutput) MapIndex ¶
func (o ApplicationMapOutput) MapIndex(k pulumi.StringInput) ApplicationOutput
func (ApplicationMapOutput) ToApplicationMapOutput ¶
func (o ApplicationMapOutput) ToApplicationMapOutput() ApplicationMapOutput
func (ApplicationMapOutput) ToApplicationMapOutputWithContext ¶
func (o ApplicationMapOutput) ToApplicationMapOutputWithContext(ctx context.Context) ApplicationMapOutput
type ApplicationOutput ¶
type ApplicationOutput struct{ *pulumi.OutputState }
func (ApplicationOutput) Arn ¶
func (o ApplicationOutput) Arn() pulumi.StringOutput
ARN of the Application.
func (ApplicationOutput) AutoConfigEnabled ¶
func (o ApplicationOutput) AutoConfigEnabled() pulumi.BoolPtrOutput
Indicates whether Application Insights automatically configures unmonitored resources in the resource group.
func (ApplicationOutput) AutoCreate ¶
func (o ApplicationOutput) AutoCreate() pulumi.BoolPtrOutput
Configures all of the resources in the resource group by applying the recommended configurations.
func (ApplicationOutput) CweMonitorEnabled ¶
func (o ApplicationOutput) CweMonitorEnabled() pulumi.BoolPtrOutput
Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated, failed deployment, and others.
func (ApplicationOutput) ElementType ¶
func (ApplicationOutput) ElementType() reflect.Type
func (ApplicationOutput) GroupingType ¶
func (o ApplicationOutput) GroupingType() pulumi.StringPtrOutput
Application Insights can create applications based on a resource group or on an account. To create an account-based application using all of the resources in the account, set this parameter to `ACCOUNT_BASED`.
func (ApplicationOutput) OpsCenterEnabled ¶
func (o ApplicationOutput) OpsCenterEnabled() pulumi.BoolPtrOutput
When set to `true`, creates opsItems for any problems detected on an application.
func (ApplicationOutput) OpsItemSnsTopicArn ¶
func (o ApplicationOutput) OpsItemSnsTopicArn() pulumi.StringPtrOutput
SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem.
func (ApplicationOutput) ResourceGroupName ¶
func (o ApplicationOutput) ResourceGroupName() pulumi.StringOutput
Name of the resource group.
The following arguments are optional:
func (ApplicationOutput) Tags ¶
func (o ApplicationOutput) Tags() pulumi.StringMapOutput
Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
func (ApplicationOutput) TagsAll
deprecated
func (o ApplicationOutput) TagsAll() pulumi.StringMapOutput
Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
Deprecated: Please use `tags` instead.
func (ApplicationOutput) ToApplicationOutput ¶
func (o ApplicationOutput) ToApplicationOutput() ApplicationOutput
func (ApplicationOutput) ToApplicationOutputWithContext ¶
func (o ApplicationOutput) ToApplicationOutputWithContext(ctx context.Context) ApplicationOutput
type ApplicationState ¶
type ApplicationState struct { // ARN of the Application. Arn pulumi.StringPtrInput // Indicates whether Application Insights automatically configures unmonitored resources in the resource group. AutoConfigEnabled pulumi.BoolPtrInput // Configures all of the resources in the resource group by applying the recommended configurations. AutoCreate pulumi.BoolPtrInput // Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated, failed deployment, and others. CweMonitorEnabled pulumi.BoolPtrInput // Application Insights can create applications based on a resource group or on an account. To create an account-based application using all of the resources in the account, set this parameter to `ACCOUNT_BASED`. GroupingType pulumi.StringPtrInput // When set to `true`, creates opsItems for any problems detected on an application. OpsCenterEnabled pulumi.BoolPtrInput // SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem. OpsItemSnsTopicArn pulumi.StringPtrInput // Name of the resource group. // // The following arguments are optional: ResourceGroupName pulumi.StringPtrInput // Map of tags to assign to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block. // // Deprecated: Please use `tags` instead. TagsAll pulumi.StringMapInput }
func (ApplicationState) ElementType ¶
func (ApplicationState) ElementType() reflect.Type