@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
110 lines • 4.8 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.AttachInstance = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage cen attach instance
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
* vpcName: "acc-test-vpc",
* cidrBlock: "172.16.0.0/16",
* });
* const fooCen = new volcengine.cen.Cen("fooCen", {
* cenName: "acc-test-cen",
* description: "acc-test",
* projectName: "default",
* tags: [{
* key: "k1",
* value: "v1",
* }],
* });
* const fooAttachInstance = new volcengine.cen.AttachInstance("fooAttachInstance", {
* cenId: fooCen.id,
* instanceId: fooVpc.id,
* instanceRegionId: "cn-beijing",
* instanceType: "VPC",
* });
* ```
*
* ## Import
*
* Cen attach instance can be imported using the CenId:InstanceId:InstanceType:RegionId, e.g.
*
* ```sh
* $ pulumi import volcengine:cen/attachInstance:AttachInstance default cen-7qthudw0ll6jmc***:vpc-2fexiqjlgjif45oxruvso****:VPC:cn-beijing
* ```
*/
class AttachInstance extends pulumi.CustomResource {
/**
* Get an existing AttachInstance 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 AttachInstance(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of AttachInstance. 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'] === AttachInstance.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["cenId"] = state ? state.cenId : undefined;
resourceInputs["creationTime"] = state ? state.creationTime : undefined;
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
resourceInputs["instanceOwnerId"] = state ? state.instanceOwnerId : undefined;
resourceInputs["instanceRegionId"] = state ? state.instanceRegionId : undefined;
resourceInputs["instanceType"] = state ? state.instanceType : undefined;
resourceInputs["status"] = state ? state.status : undefined;
}
else {
const args = argsOrState;
if ((!args || args.cenId === undefined) && !opts.urn) {
throw new Error("Missing required property 'cenId'");
}
if ((!args || args.instanceId === undefined) && !opts.urn) {
throw new Error("Missing required property 'instanceId'");
}
if ((!args || args.instanceRegionId === undefined) && !opts.urn) {
throw new Error("Missing required property 'instanceRegionId'");
}
if ((!args || args.instanceType === undefined) && !opts.urn) {
throw new Error("Missing required property 'instanceType'");
}
resourceInputs["cenId"] = args ? args.cenId : undefined;
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
resourceInputs["instanceOwnerId"] = args ? args.instanceOwnerId : undefined;
resourceInputs["instanceRegionId"] = args ? args.instanceRegionId : undefined;
resourceInputs["instanceType"] = args ? args.instanceType : undefined;
resourceInputs["creationTime"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(AttachInstance.__pulumiType, name, resourceInputs, opts);
}
}
exports.AttachInstance = AttachInstance;
/** @internal */
AttachInstance.__pulumiType = 'volcengine:cen/attachInstance:AttachInstance';
//# sourceMappingURL=attachInstance.js.map