UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

85 lines 4.58 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.Application = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Resource schema for AWS::ApplicationInsights::Application */ class Application extends pulumi.CustomResource { /** * Get an existing Application resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, opts) { return new Application(name, undefined, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of Application. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === Application.__pulumiType; } /** * Create a Application resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name, args, opts) { let resourceInputs = {}; opts = opts || {}; if (!opts.id) { if ((!args || args.resourceGroupName === undefined) && !opts.urn) { throw new Error("Missing required property 'resourceGroupName'"); } resourceInputs["attachMissingPermission"] = args ? args.attachMissingPermission : undefined; resourceInputs["autoConfigurationEnabled"] = args ? args.autoConfigurationEnabled : undefined; resourceInputs["componentMonitoringSettings"] = args ? args.componentMonitoringSettings : undefined; resourceInputs["customComponents"] = args ? args.customComponents : undefined; resourceInputs["cweMonitorEnabled"] = args ? args.cweMonitorEnabled : undefined; resourceInputs["groupingType"] = args ? args.groupingType : undefined; resourceInputs["logPatternSets"] = args ? args.logPatternSets : undefined; resourceInputs["opsCenterEnabled"] = args ? args.opsCenterEnabled : undefined; resourceInputs["opsItemSnsTopicArn"] = args ? args.opsItemSnsTopicArn : undefined; resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined; resourceInputs["snsNotificationArn"] = args ? args.snsNotificationArn : undefined; resourceInputs["tags"] = args ? args.tags : undefined; resourceInputs["applicationArn"] = undefined /*out*/; } else { resourceInputs["applicationArn"] = undefined /*out*/; resourceInputs["attachMissingPermission"] = undefined /*out*/; resourceInputs["autoConfigurationEnabled"] = undefined /*out*/; resourceInputs["componentMonitoringSettings"] = undefined /*out*/; resourceInputs["customComponents"] = undefined /*out*/; resourceInputs["cweMonitorEnabled"] = undefined /*out*/; resourceInputs["groupingType"] = undefined /*out*/; resourceInputs["logPatternSets"] = undefined /*out*/; resourceInputs["opsCenterEnabled"] = undefined /*out*/; resourceInputs["opsItemSnsTopicArn"] = undefined /*out*/; resourceInputs["resourceGroupName"] = undefined /*out*/; resourceInputs["snsNotificationArn"] = undefined /*out*/; resourceInputs["tags"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const replaceOnChanges = { replaceOnChanges: ["groupingType", "resourceGroupName"] }; opts = pulumi.mergeOptions(opts, replaceOnChanges); super(Application.__pulumiType, name, resourceInputs, opts); } } exports.Application = Application; /** @internal */ Application.__pulumiType = 'aws-native:applicationinsights:Application'; //# sourceMappingURL=application.js.map