@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
109 lines • 4.54 kB
JavaScript
// *** 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.InstanceConfig = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* A possible configuration for a Cloud Spanner instance. Configurations
* define the geographic placement of nodes and their replication.
*
* To get more information about InstanceConfig, see:
*
* * [API documentation](https://cloud.google.com/spanner/docs/reference/rest/v1/projects.instanceConfigs)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/spanner/)
*
* ## Example Usage
*
* ## Import
*
* InstanceConfig can be imported using any of these accepted formats:
*
* * `projects/{{project}}/instanceConfigs/{{name}}`
*
* * `{{project}}/{{name}}`
*
* * `{{name}}`
*
* When using the `pulumi import` command, InstanceConfig can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:spanner/instanceConfig:InstanceConfig default projects/{{project}}/instanceConfigs/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:spanner/instanceConfig:InstanceConfig default {{project}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:spanner/instanceConfig:InstanceConfig default {{name}}
* ```
*/
class InstanceConfig extends pulumi.CustomResource {
/**
* Get an existing InstanceConfig 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 state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new InstanceConfig(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of InstanceConfig. 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'] === InstanceConfig.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["baseConfig"] = state?.baseConfig;
resourceInputs["configType"] = state?.configType;
resourceInputs["displayName"] = state?.displayName;
resourceInputs["effectiveLabels"] = state?.effectiveLabels;
resourceInputs["labels"] = state?.labels;
resourceInputs["name"] = state?.name;
resourceInputs["project"] = state?.project;
resourceInputs["pulumiLabels"] = state?.pulumiLabels;
resourceInputs["replicas"] = state?.replicas;
}
else {
const args = argsOrState;
if (args?.displayName === undefined && !opts.urn) {
throw new Error("Missing required property 'displayName'");
}
if (args?.replicas === undefined && !opts.urn) {
throw new Error("Missing required property 'replicas'");
}
resourceInputs["baseConfig"] = args?.baseConfig;
resourceInputs["displayName"] = args?.displayName;
resourceInputs["labels"] = args?.labels;
resourceInputs["name"] = args?.name;
resourceInputs["project"] = args?.project;
resourceInputs["replicas"] = args?.replicas;
resourceInputs["configType"] = undefined /*out*/;
resourceInputs["effectiveLabels"] = undefined /*out*/;
resourceInputs["pulumiLabels"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["effectiveLabels", "pulumiLabels"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(InstanceConfig.__pulumiType, name, resourceInputs, opts);
}
}
exports.InstanceConfig = InstanceConfig;
/** @internal */
InstanceConfig.__pulumiType = 'gcp:spanner/instanceConfig:InstanceConfig';
//# sourceMappingURL=instanceConfig.js.map
;