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)

104 lines 5.6 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.InfluxDbInstance = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * The AWS::Timestream::InfluxDBInstance resource creates an InfluxDB instance. */ class InfluxDbInstance extends pulumi.CustomResource { /** * Get an existing InfluxDbInstance 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 InfluxDbInstance(name, undefined, { ...opts, id: id }); } /** * Returns true if the given object is an instance of InfluxDbInstance. 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'] === InfluxDbInstance.__pulumiType; } /** * Create a InfluxDbInstance 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) { resourceInputs["allocatedStorage"] = args?.allocatedStorage; resourceInputs["bucket"] = args?.bucket; resourceInputs["dbInstanceType"] = args?.dbInstanceType; resourceInputs["dbParameterGroupIdentifier"] = args?.dbParameterGroupIdentifier; resourceInputs["dbStorageType"] = args?.dbStorageType; resourceInputs["deploymentType"] = args?.deploymentType; resourceInputs["logDeliveryConfiguration"] = args?.logDeliveryConfiguration; resourceInputs["name"] = args?.name; resourceInputs["networkType"] = args?.networkType; resourceInputs["organization"] = args?.organization; resourceInputs["password"] = args?.password; resourceInputs["port"] = args?.port; resourceInputs["publiclyAccessible"] = args?.publiclyAccessible; resourceInputs["tags"] = args?.tags; resourceInputs["username"] = args?.username; resourceInputs["vpcSecurityGroupIds"] = args?.vpcSecurityGroupIds; resourceInputs["vpcSubnetIds"] = args?.vpcSubnetIds; resourceInputs["arn"] = undefined /*out*/; resourceInputs["availabilityZone"] = undefined /*out*/; resourceInputs["awsId"] = undefined /*out*/; resourceInputs["endpoint"] = undefined /*out*/; resourceInputs["influxAuthParametersSecretArn"] = undefined /*out*/; resourceInputs["secondaryAvailabilityZone"] = undefined /*out*/; resourceInputs["status"] = undefined /*out*/; } else { resourceInputs["allocatedStorage"] = undefined /*out*/; resourceInputs["arn"] = undefined /*out*/; resourceInputs["availabilityZone"] = undefined /*out*/; resourceInputs["awsId"] = undefined /*out*/; resourceInputs["bucket"] = undefined /*out*/; resourceInputs["dbInstanceType"] = undefined /*out*/; resourceInputs["dbParameterGroupIdentifier"] = undefined /*out*/; resourceInputs["dbStorageType"] = undefined /*out*/; resourceInputs["deploymentType"] = undefined /*out*/; resourceInputs["endpoint"] = undefined /*out*/; resourceInputs["influxAuthParametersSecretArn"] = undefined /*out*/; resourceInputs["logDeliveryConfiguration"] = undefined /*out*/; resourceInputs["name"] = undefined /*out*/; resourceInputs["networkType"] = undefined /*out*/; resourceInputs["organization"] = undefined /*out*/; resourceInputs["password"] = undefined /*out*/; resourceInputs["port"] = undefined /*out*/; resourceInputs["publiclyAccessible"] = undefined /*out*/; resourceInputs["secondaryAvailabilityZone"] = undefined /*out*/; resourceInputs["status"] = undefined /*out*/; resourceInputs["tags"] = undefined /*out*/; resourceInputs["username"] = undefined /*out*/; resourceInputs["vpcSecurityGroupIds"] = undefined /*out*/; resourceInputs["vpcSubnetIds"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const replaceOnChanges = { replaceOnChanges: ["bucket", "name", "networkType", "organization", "password", "publiclyAccessible", "username", "vpcSecurityGroupIds[*]", "vpcSubnetIds[*]"] }; opts = pulumi.mergeOptions(opts, replaceOnChanges); super(InfluxDbInstance.__pulumiType, name, resourceInputs, opts); } } exports.InfluxDbInstance = InfluxDbInstance; /** @internal */ InfluxDbInstance.__pulumiType = 'aws-native:timestream:InfluxDbInstance'; //# sourceMappingURL=influxDbInstance.js.map