@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
107 lines (106 loc) • 3.73 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* 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****
* ```
*/
export declare 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: string, id: pulumi.Input<pulumi.ID>, state?: BandwidthPackageAssociateState, opts?: pulumi.CustomResourceOptions): BandwidthPackageAssociate;
/**
* 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: any): obj is BandwidthPackageAssociate;
/**
* The ID of the cen bandwidth package.
*/
readonly cenBandwidthPackageId: pulumi.Output<string>;
/**
* The ID of the cen.
*/
readonly cenId: pulumi.Output<string>;
/**
* Create a BandwidthPackageAssociate 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: string, args: BandwidthPackageAssociateArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering BandwidthPackageAssociate resources.
*/
export interface BandwidthPackageAssociateState {
/**
* The ID of the cen bandwidth package.
*/
cenBandwidthPackageId?: pulumi.Input<string>;
/**
* The ID of the cen.
*/
cenId?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a BandwidthPackageAssociate resource.
*/
export interface BandwidthPackageAssociateArgs {
/**
* The ID of the cen bandwidth package.
*/
cenBandwidthPackageId: pulumi.Input<string>;
/**
* The ID of the cen.
*/
cenId: pulumi.Input<string>;
}