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)

126 lines • 7.67 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.CloudVmCluster = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * The AWS::ODB::CloudVmCluster resource creates a Cloud VM Cluster */ class CloudVmCluster extends pulumi.CustomResource { /** * Get an existing CloudVmCluster 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 CloudVmCluster(name, undefined, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of CloudVmCluster. 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'] === CloudVmCluster.__pulumiType; } /** * Create a CloudVmCluster 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["cloudExadataInfrastructureId"] = args ? args.cloudExadataInfrastructureId : undefined; resourceInputs["clusterName"] = args ? args.clusterName : undefined; resourceInputs["cpuCoreCount"] = args ? args.cpuCoreCount : undefined; resourceInputs["dataCollectionOptions"] = args ? args.dataCollectionOptions : undefined; resourceInputs["dataStorageSizeInTbs"] = args ? args.dataStorageSizeInTbs : undefined; resourceInputs["dbNodeStorageSizeInGbs"] = args ? args.dbNodeStorageSizeInGbs : undefined; resourceInputs["dbServers"] = args ? args.dbServers : undefined; resourceInputs["displayName"] = args ? args.displayName : undefined; resourceInputs["giVersion"] = args ? args.giVersion : undefined; resourceInputs["hostname"] = args ? args.hostname : undefined; resourceInputs["isLocalBackupEnabled"] = args ? args.isLocalBackupEnabled : undefined; resourceInputs["isSparseDiskgroupEnabled"] = args ? args.isSparseDiskgroupEnabled : undefined; resourceInputs["licenseModel"] = args ? args.licenseModel : undefined; resourceInputs["memorySizeInGbs"] = args ? args.memorySizeInGbs : undefined; resourceInputs["odbNetworkId"] = args ? args.odbNetworkId : undefined; resourceInputs["scanListenerPortTcp"] = args ? args.scanListenerPortTcp : undefined; resourceInputs["sshPublicKeys"] = args ? args.sshPublicKeys : undefined; resourceInputs["systemVersion"] = args ? args.systemVersion : undefined; resourceInputs["tags"] = args ? args.tags : undefined; resourceInputs["timeZone"] = args ? args.timeZone : undefined; resourceInputs["cloudVmClusterArn"] = undefined /*out*/; resourceInputs["cloudVmClusterId"] = undefined /*out*/; resourceInputs["computeModel"] = undefined /*out*/; resourceInputs["diskRedundancy"] = undefined /*out*/; resourceInputs["domain"] = undefined /*out*/; resourceInputs["listenerPort"] = undefined /*out*/; resourceInputs["nodeCount"] = undefined /*out*/; resourceInputs["ociResourceAnchorName"] = undefined /*out*/; resourceInputs["ociUrl"] = undefined /*out*/; resourceInputs["ocid"] = undefined /*out*/; resourceInputs["scanDnsName"] = undefined /*out*/; resourceInputs["scanIpIds"] = undefined /*out*/; resourceInputs["shape"] = undefined /*out*/; resourceInputs["storageSizeInGbs"] = undefined /*out*/; resourceInputs["vipIds"] = undefined /*out*/; } else { resourceInputs["cloudExadataInfrastructureId"] = undefined /*out*/; resourceInputs["cloudVmClusterArn"] = undefined /*out*/; resourceInputs["cloudVmClusterId"] = undefined /*out*/; resourceInputs["clusterName"] = undefined /*out*/; resourceInputs["computeModel"] = undefined /*out*/; resourceInputs["cpuCoreCount"] = undefined /*out*/; resourceInputs["dataCollectionOptions"] = undefined /*out*/; resourceInputs["dataStorageSizeInTbs"] = undefined /*out*/; resourceInputs["dbNodeStorageSizeInGbs"] = undefined /*out*/; resourceInputs["dbServers"] = undefined /*out*/; resourceInputs["diskRedundancy"] = undefined /*out*/; resourceInputs["displayName"] = undefined /*out*/; resourceInputs["domain"] = undefined /*out*/; resourceInputs["giVersion"] = undefined /*out*/; resourceInputs["hostname"] = undefined /*out*/; resourceInputs["isLocalBackupEnabled"] = undefined /*out*/; resourceInputs["isSparseDiskgroupEnabled"] = undefined /*out*/; resourceInputs["licenseModel"] = undefined /*out*/; resourceInputs["listenerPort"] = undefined /*out*/; resourceInputs["memorySizeInGbs"] = undefined /*out*/; resourceInputs["nodeCount"] = undefined /*out*/; resourceInputs["ociResourceAnchorName"] = undefined /*out*/; resourceInputs["ociUrl"] = undefined /*out*/; resourceInputs["ocid"] = undefined /*out*/; resourceInputs["odbNetworkId"] = undefined /*out*/; resourceInputs["scanDnsName"] = undefined /*out*/; resourceInputs["scanIpIds"] = undefined /*out*/; resourceInputs["scanListenerPortTcp"] = undefined /*out*/; resourceInputs["shape"] = undefined /*out*/; resourceInputs["sshPublicKeys"] = undefined /*out*/; resourceInputs["storageSizeInGbs"] = undefined /*out*/; resourceInputs["systemVersion"] = undefined /*out*/; resourceInputs["tags"] = undefined /*out*/; resourceInputs["timeZone"] = undefined /*out*/; resourceInputs["vipIds"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const replaceOnChanges = { replaceOnChanges: ["cloudExadataInfrastructureId", "clusterName", "cpuCoreCount", "dataCollectionOptions", "dataStorageSizeInTbs", "dbNodeStorageSizeInGbs", "dbServers[*]", "displayName", "giVersion", "hostname", "isLocalBackupEnabled", "isSparseDiskgroupEnabled", "licenseModel", "memorySizeInGbs", "odbNetworkId", "scanListenerPortTcp", "sshPublicKeys[*]", "systemVersion", "timeZone"] }; opts = pulumi.mergeOptions(opts, replaceOnChanges); super(CloudVmCluster.__pulumiType, name, resourceInputs, opts); } } exports.CloudVmCluster = CloudVmCluster; /** @internal */ CloudVmCluster.__pulumiType = 'aws-native:odb:CloudVmCluster'; //# sourceMappingURL=cloudVmCluster.js.map