UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

103 lines 4.2 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.BandwidthPackageAssociate = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage cen bandwidth package associate * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const fooCen = new volcengine.cen.Cen("fooCen", { * cenName: "acc-test-cen", * description: "acc-test", * projectName: "default", * tags: [{ * key: "k1", * value: "v1", * }], * }); * const fooBandwidthPackage = new volcengine.cen.BandwidthPackage("fooBandwidthPackage", { * localGeographicRegionSetId: "China", * peerGeographicRegionSetId: "China", * bandwidth: 2, * cenBandwidthPackageName: "acc-test-cen-bp", * description: "acc-test", * billingType: "PrePaid", * periodUnit: "Month", * period: 1, * projectName: "default", * tags: [{ * key: "k1", * value: "v1", * }], * }); * const fooBandwidthPackageAssociate = new volcengine.cen.BandwidthPackageAssociate("fooBandwidthPackageAssociate", { * cenBandwidthPackageId: fooBandwidthPackage.id, * cenId: fooCen.id, * }); * ``` * * ## Import * * Cen bandwidth package associate can be imported using the CenBandwidthPackageId:CenId, e.g. * * ```sh * $ pulumi import volcengine:cen/bandwidthPackageAssociate:BandwidthPackageAssociate default cbp-4c2zaavbvh5fx****:cen-7qthudw0ll6jmc**** * ``` */ class BandwidthPackageAssociate extends pulumi.CustomResource { /** * Get an existing BandwidthPackageAssociate 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 BandwidthPackageAssociate(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of BandwidthPackageAssociate. 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'] === BandwidthPackageAssociate.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["cenBandwidthPackageId"] = state ? state.cenBandwidthPackageId : undefined; resourceInputs["cenId"] = state ? state.cenId : undefined; } else { const args = argsOrState; if ((!args || args.cenBandwidthPackageId === undefined) && !opts.urn) { throw new Error("Missing required property 'cenBandwidthPackageId'"); } if ((!args || args.cenId === undefined) && !opts.urn) { throw new Error("Missing required property 'cenId'"); } resourceInputs["cenBandwidthPackageId"] = args ? args.cenBandwidthPackageId : undefined; resourceInputs["cenId"] = args ? args.cenId : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(BandwidthPackageAssociate.__pulumiType, name, resourceInputs, opts); } } exports.BandwidthPackageAssociate = BandwidthPackageAssociate; /** @internal */ BandwidthPackageAssociate.__pulumiType = 'volcengine:cen/bandwidthPackageAssociate:BandwidthPackageAssociate'; //# sourceMappingURL=bandwidthPackageAssociate.js.map