UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

88 lines 3.57 kB
"use strict"; // *** 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.UserCidrBlockAssociate = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage vpc user cidr block associate * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const foo = new volcengine.vpc.Vpc("foo", { * vpcName: "acc-test-vpc", * cidrBlock: "10.200.0.0/16", * projectName: "default", * }); * const foo1 = new volcengine.vpc.UserCidrBlockAssociate("foo1", { * vpcId: foo.id, * userCidrBlock: "10.201.0.0/16", * }); * const foo2 = new volcengine.vpc.UserCidrBlockAssociate("foo2", { * vpcId: foo.id, * userCidrBlock: "10.202.0.0/16", * }); * const foo3 = new volcengine.vpc.UserCidrBlockAssociate("foo3", { * vpcId: foo.id, * userCidrBlock: "10.203.0.0/16", * }); * ``` * * ## Import * * The VpcCidrBlockAssociate is not support import. */ class UserCidrBlockAssociate extends pulumi.CustomResource { /** * Get an existing UserCidrBlockAssociate 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 UserCidrBlockAssociate(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of UserCidrBlockAssociate. 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'] === UserCidrBlockAssociate.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["userCidrBlock"] = state ? state.userCidrBlock : undefined; resourceInputs["vpcId"] = state ? state.vpcId : undefined; } else { const args = argsOrState; if ((!args || args.userCidrBlock === undefined) && !opts.urn) { throw new Error("Missing required property 'userCidrBlock'"); } if ((!args || args.vpcId === undefined) && !opts.urn) { throw new Error("Missing required property 'vpcId'"); } resourceInputs["userCidrBlock"] = args ? args.userCidrBlock : undefined; resourceInputs["vpcId"] = args ? args.vpcId : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(UserCidrBlockAssociate.__pulumiType, name, resourceInputs, opts); } } exports.UserCidrBlockAssociate = UserCidrBlockAssociate; /** @internal */ UserCidrBlockAssociate.__pulumiType = 'volcengine:vpc/userCidrBlockAssociate:UserCidrBlockAssociate'; //# sourceMappingURL=userCidrBlockAssociate.js.map