volcengine.cen.BandwidthPackage
Explore with Pulumi AI
Import
CenBandwidthPackage can be imported using the id, e.g.
$ pulumi import volcengine:cen/bandwidthPackage:BandwidthPackage default cbp-4c2zaavbvh5f42****
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var foo = new Volcengine.Cen.BandwidthPackage("foo", new()
{
Bandwidth = 2,
BillingType = "PrePaid",
CenBandwidthPackageName = "acc-test-cen-bp",
Description = "acc-test",
LocalGeographicRegionSetId = "China",
PeerGeographicRegionSetId = "China",
Period = 1,
PeriodUnit = "Month",
ProjectName = "default",
Tags = new[]
{
new Volcengine.Cen.Inputs.BandwidthPackageTagArgs
{
Key = "k1",
Value = "v1",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/cen"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cen.NewBandwidthPackage(ctx, "foo", &cen.BandwidthPackageArgs{
Bandwidth: pulumi.Int(2),
BillingType: pulumi.String("PrePaid"),
CenBandwidthPackageName: pulumi.String("acc-test-cen-bp"),
Description: pulumi.String("acc-test"),
LocalGeographicRegionSetId: pulumi.String("China"),
PeerGeographicRegionSetId: pulumi.String("China"),
Period: pulumi.Int(1),
PeriodUnit: pulumi.String("Month"),
ProjectName: pulumi.String("default"),
Tags: cen.BandwidthPackageTagArray{
&cen.BandwidthPackageTagArgs{
Key: pulumi.String("k1"),
Value: pulumi.String("v1"),
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.cen.BandwidthPackage;
import com.pulumi.volcengine.cen.BandwidthPackageArgs;
import com.pulumi.volcengine.cen.inputs.BandwidthPackageTagArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new BandwidthPackage("foo", BandwidthPackageArgs.builder()
.bandwidth(2)
.billingType("PrePaid")
.cenBandwidthPackageName("acc-test-cen-bp")
.description("acc-test")
.localGeographicRegionSetId("China")
.peerGeographicRegionSetId("China")
.period(1)
.periodUnit("Month")
.projectName("default")
.tags(BandwidthPackageTagArgs.builder()
.key("k1")
.value("v1")
.build())
.build());
}
}
import pulumi
import pulumi_volcengine as volcengine
foo = volcengine.cen.BandwidthPackage("foo",
bandwidth=2,
billing_type="PrePaid",
cen_bandwidth_package_name="acc-test-cen-bp",
description="acc-test",
local_geographic_region_set_id="China",
peer_geographic_region_set_id="China",
period=1,
period_unit="Month",
project_name="default",
tags=[volcengine.cen.BandwidthPackageTagArgs(
key="k1",
value="v1",
)])
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@volcengine/pulumi";
const foo = new volcengine.cen.BandwidthPackage("foo", {
bandwidth: 2,
billingType: "PrePaid",
cenBandwidthPackageName: "acc-test-cen-bp",
description: "acc-test",
localGeographicRegionSetId: "China",
peerGeographicRegionSetId: "China",
period: 1,
periodUnit: "Month",
projectName: "default",
tags: [{
key: "k1",
value: "v1",
}],
});
resources:
foo:
type: volcengine:cen:BandwidthPackage
properties:
bandwidth: 2
billingType: PrePaid
cenBandwidthPackageName: acc-test-cen-bp
description: acc-test
localGeographicRegionSetId: China
peerGeographicRegionSetId: China
period: 1
periodUnit: Month
projectName: default
tags:
- key: k1
value: v1
Create BandwidthPackage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BandwidthPackage(name: string, args?: BandwidthPackageArgs, opts?: CustomResourceOptions);
@overload
def BandwidthPackage(resource_name: str,
args: Optional[BandwidthPackageArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def BandwidthPackage(resource_name: str,
opts: Optional[ResourceOptions] = None,
bandwidth: Optional[int] = None,
billing_type: Optional[str] = None,
cen_bandwidth_package_name: Optional[str] = None,
description: Optional[str] = None,
local_geographic_region_set_id: Optional[str] = None,
peer_geographic_region_set_id: Optional[str] = None,
period: Optional[int] = None,
period_unit: Optional[str] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[BandwidthPackageTagArgs]] = None)
func NewBandwidthPackage(ctx *Context, name string, args *BandwidthPackageArgs, opts ...ResourceOption) (*BandwidthPackage, error)
public BandwidthPackage(string name, BandwidthPackageArgs? args = null, CustomResourceOptions? opts = null)
public BandwidthPackage(String name, BandwidthPackageArgs args)
public BandwidthPackage(String name, BandwidthPackageArgs args, CustomResourceOptions options)
type: volcengine:cen:BandwidthPackage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BandwidthPackageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args BandwidthPackageArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args BandwidthPackageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BandwidthPackageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BandwidthPackageArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var volcengineBandwidthPackageResource = new Volcengine.Cen.BandwidthPackage("volcengineBandwidthPackageResource", new()
{
Bandwidth = 0,
BillingType = "string",
CenBandwidthPackageName = "string",
Description = "string",
LocalGeographicRegionSetId = "string",
PeerGeographicRegionSetId = "string",
Period = 0,
PeriodUnit = "string",
ProjectName = "string",
Tags = new[]
{
new Volcengine.Cen.Inputs.BandwidthPackageTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := cen.NewBandwidthPackage(ctx, "volcengineBandwidthPackageResource", &cen.BandwidthPackageArgs{
Bandwidth: pulumi.Int(0),
BillingType: pulumi.String("string"),
CenBandwidthPackageName: pulumi.String("string"),
Description: pulumi.String("string"),
LocalGeographicRegionSetId: pulumi.String("string"),
PeerGeographicRegionSetId: pulumi.String("string"),
Period: pulumi.Int(0),
PeriodUnit: pulumi.String("string"),
ProjectName: pulumi.String("string"),
Tags: cen.BandwidthPackageTagArray{
&cen.BandwidthPackageTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var volcengineBandwidthPackageResource = new BandwidthPackage("volcengineBandwidthPackageResource", BandwidthPackageArgs.builder()
.bandwidth(0)
.billingType("string")
.cenBandwidthPackageName("string")
.description("string")
.localGeographicRegionSetId("string")
.peerGeographicRegionSetId("string")
.period(0)
.periodUnit("string")
.projectName("string")
.tags(BandwidthPackageTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
volcengine_bandwidth_package_resource = volcengine.cen.BandwidthPackage("volcengineBandwidthPackageResource",
bandwidth=0,
billing_type="string",
cen_bandwidth_package_name="string",
description="string",
local_geographic_region_set_id="string",
peer_geographic_region_set_id="string",
period=0,
period_unit="string",
project_name="string",
tags=[volcengine.cen.BandwidthPackageTagArgs(
key="string",
value="string",
)])
const volcengineBandwidthPackageResource = new volcengine.cen.BandwidthPackage("volcengineBandwidthPackageResource", {
bandwidth: 0,
billingType: "string",
cenBandwidthPackageName: "string",
description: "string",
localGeographicRegionSetId: "string",
peerGeographicRegionSetId: "string",
period: 0,
periodUnit: "string",
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: volcengine:cen:BandwidthPackage
properties:
bandwidth: 0
billingType: string
cenBandwidthPackageName: string
description: string
localGeographicRegionSetId: string
peerGeographicRegionSetId: string
period: 0
periodUnit: string
projectName: string
tags:
- key: string
value: string
BandwidthPackage Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The BandwidthPackage resource accepts the following input properties:
- Bandwidth int
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- Billing
Type string - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - Cen
Bandwidth stringPackage Name - The name of the cen bandwidth package.
- Description string
- The description of the cen bandwidth package.
- Local
Geographic stringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - Peer
Geographic stringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - Period int
- The period of the cen bandwidth package. Default value is 1.
- Period
Unit string - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - Project
Name string - The ProjectName of the cen bandwidth package.
- List<Bandwidth
Package Tag> - Tags.
- Bandwidth int
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- Billing
Type string - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - Cen
Bandwidth stringPackage Name - The name of the cen bandwidth package.
- Description string
- The description of the cen bandwidth package.
- Local
Geographic stringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - Peer
Geographic stringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - Period int
- The period of the cen bandwidth package. Default value is 1.
- Period
Unit string - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - Project
Name string - The ProjectName of the cen bandwidth package.
- []Bandwidth
Package Tag Args - Tags.
- bandwidth Integer
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- billing
Type String - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - cen
Bandwidth StringPackage Name - The name of the cen bandwidth package.
- description String
- The description of the cen bandwidth package.
- local
Geographic StringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - peer
Geographic StringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - period Integer
- The period of the cen bandwidth package. Default value is 1.
- period
Unit String - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - project
Name String - The ProjectName of the cen bandwidth package.
- List<Bandwidth
Package Tag> - Tags.
- bandwidth number
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- billing
Type string - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - cen
Bandwidth stringPackage Name - The name of the cen bandwidth package.
- description string
- The description of the cen bandwidth package.
- local
Geographic stringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - peer
Geographic stringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - period number
- The period of the cen bandwidth package. Default value is 1.
- period
Unit string - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - project
Name string - The ProjectName of the cen bandwidth package.
- Bandwidth
Package Tag[] - Tags.
- bandwidth int
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- billing_
type str - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - cen_
bandwidth_ strpackage_ name - The name of the cen bandwidth package.
- description str
- The description of the cen bandwidth package.
- local_
geographic_ strregion_ set_ id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - peer_
geographic_ strregion_ set_ id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - period int
- The period of the cen bandwidth package. Default value is 1.
- period_
unit str - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - project_
name str - The ProjectName of the cen bandwidth package.
- Sequence[Bandwidth
Package Tag Args] - Tags.
- bandwidth Number
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- billing
Type String - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - cen
Bandwidth StringPackage Name - The name of the cen bandwidth package.
- description String
- The description of the cen bandwidth package.
- local
Geographic StringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - peer
Geographic StringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - period Number
- The period of the cen bandwidth package. Default value is 1.
- period
Unit String - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - project
Name String - The ProjectName of the cen bandwidth package.
- List<Property Map>
- Tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the BandwidthPackage resource produces the following output properties:
- Account
Id string - The account ID of the cen bandwidth package.
- Business
Status string - The business status of the cen bandwidth package.
- Cen
Bandwidth stringPackage Id - The ID of the cen bandwidth package.
- Cen
Ids List<string> - The cen IDs of the bandwidth package.
- Creation
Time string - The create time of the cen bandwidth package.
- Deleted
Time string - The deleted time of the cen bandwidth package.
- Expired
Time string - The expired time of the cen bandwidth package.
- Id string
- The provider-assigned unique ID for this managed resource.
- Remaining
Bandwidth int - The remain bandwidth of the cen bandwidth package.
- Status string
- The status of the cen bandwidth package.
- Update
Time string - The update time of the cen bandwidth package.
- Account
Id string - The account ID of the cen bandwidth package.
- Business
Status string - The business status of the cen bandwidth package.
- Cen
Bandwidth stringPackage Id - The ID of the cen bandwidth package.
- Cen
Ids []string - The cen IDs of the bandwidth package.
- Creation
Time string - The create time of the cen bandwidth package.
- Deleted
Time string - The deleted time of the cen bandwidth package.
- Expired
Time string - The expired time of the cen bandwidth package.
- Id string
- The provider-assigned unique ID for this managed resource.
- Remaining
Bandwidth int - The remain bandwidth of the cen bandwidth package.
- Status string
- The status of the cen bandwidth package.
- Update
Time string - The update time of the cen bandwidth package.
- account
Id String - The account ID of the cen bandwidth package.
- business
Status String - The business status of the cen bandwidth package.
- cen
Bandwidth StringPackage Id - The ID of the cen bandwidth package.
- cen
Ids List<String> - The cen IDs of the bandwidth package.
- creation
Time String - The create time of the cen bandwidth package.
- deleted
Time String - The deleted time of the cen bandwidth package.
- expired
Time String - The expired time of the cen bandwidth package.
- id String
- The provider-assigned unique ID for this managed resource.
- remaining
Bandwidth Integer - The remain bandwidth of the cen bandwidth package.
- status String
- The status of the cen bandwidth package.
- update
Time String - The update time of the cen bandwidth package.
- account
Id string - The account ID of the cen bandwidth package.
- business
Status string - The business status of the cen bandwidth package.
- cen
Bandwidth stringPackage Id - The ID of the cen bandwidth package.
- cen
Ids string[] - The cen IDs of the bandwidth package.
- creation
Time string - The create time of the cen bandwidth package.
- deleted
Time string - The deleted time of the cen bandwidth package.
- expired
Time string - The expired time of the cen bandwidth package.
- id string
- The provider-assigned unique ID for this managed resource.
- remaining
Bandwidth number - The remain bandwidth of the cen bandwidth package.
- status string
- The status of the cen bandwidth package.
- update
Time string - The update time of the cen bandwidth package.
- account_
id str - The account ID of the cen bandwidth package.
- business_
status str - The business status of the cen bandwidth package.
- cen_
bandwidth_ strpackage_ id - The ID of the cen bandwidth package.
- cen_
ids Sequence[str] - The cen IDs of the bandwidth package.
- creation_
time str - The create time of the cen bandwidth package.
- deleted_
time str - The deleted time of the cen bandwidth package.
- expired_
time str - The expired time of the cen bandwidth package.
- id str
- The provider-assigned unique ID for this managed resource.
- remaining_
bandwidth int - The remain bandwidth of the cen bandwidth package.
- status str
- The status of the cen bandwidth package.
- update_
time str - The update time of the cen bandwidth package.
- account
Id String - The account ID of the cen bandwidth package.
- business
Status String - The business status of the cen bandwidth package.
- cen
Bandwidth StringPackage Id - The ID of the cen bandwidth package.
- cen
Ids List<String> - The cen IDs of the bandwidth package.
- creation
Time String - The create time of the cen bandwidth package.
- deleted
Time String - The deleted time of the cen bandwidth package.
- expired
Time String - The expired time of the cen bandwidth package.
- id String
- The provider-assigned unique ID for this managed resource.
- remaining
Bandwidth Number - The remain bandwidth of the cen bandwidth package.
- status String
- The status of the cen bandwidth package.
- update
Time String - The update time of the cen bandwidth package.
Look up Existing BandwidthPackage Resource
Get an existing BandwidthPackage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: BandwidthPackageState, opts?: CustomResourceOptions): BandwidthPackage
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
bandwidth: Optional[int] = None,
billing_type: Optional[str] = None,
business_status: Optional[str] = None,
cen_bandwidth_package_id: Optional[str] = None,
cen_bandwidth_package_name: Optional[str] = None,
cen_ids: Optional[Sequence[str]] = None,
creation_time: Optional[str] = None,
deleted_time: Optional[str] = None,
description: Optional[str] = None,
expired_time: Optional[str] = None,
local_geographic_region_set_id: Optional[str] = None,
peer_geographic_region_set_id: Optional[str] = None,
period: Optional[int] = None,
period_unit: Optional[str] = None,
project_name: Optional[str] = None,
remaining_bandwidth: Optional[int] = None,
status: Optional[str] = None,
tags: Optional[Sequence[BandwidthPackageTagArgs]] = None,
update_time: Optional[str] = None) -> BandwidthPackage
func GetBandwidthPackage(ctx *Context, name string, id IDInput, state *BandwidthPackageState, opts ...ResourceOption) (*BandwidthPackage, error)
public static BandwidthPackage Get(string name, Input<string> id, BandwidthPackageState? state, CustomResourceOptions? opts = null)
public static BandwidthPackage get(String name, Output<String> id, BandwidthPackageState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Id string - The account ID of the cen bandwidth package.
- Bandwidth int
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- Billing
Type string - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - Business
Status string - The business status of the cen bandwidth package.
- Cen
Bandwidth stringPackage Id - The ID of the cen bandwidth package.
- Cen
Bandwidth stringPackage Name - The name of the cen bandwidth package.
- Cen
Ids List<string> - The cen IDs of the bandwidth package.
- Creation
Time string - The create time of the cen bandwidth package.
- Deleted
Time string - The deleted time of the cen bandwidth package.
- Description string
- The description of the cen bandwidth package.
- Expired
Time string - The expired time of the cen bandwidth package.
- Local
Geographic stringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - Peer
Geographic stringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - Period int
- The period of the cen bandwidth package. Default value is 1.
- Period
Unit string - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - Project
Name string - The ProjectName of the cen bandwidth package.
- Remaining
Bandwidth int - The remain bandwidth of the cen bandwidth package.
- Status string
- The status of the cen bandwidth package.
- List<Bandwidth
Package Tag> - Tags.
- Update
Time string - The update time of the cen bandwidth package.
- Account
Id string - The account ID of the cen bandwidth package.
- Bandwidth int
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- Billing
Type string - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - Business
Status string - The business status of the cen bandwidth package.
- Cen
Bandwidth stringPackage Id - The ID of the cen bandwidth package.
- Cen
Bandwidth stringPackage Name - The name of the cen bandwidth package.
- Cen
Ids []string - The cen IDs of the bandwidth package.
- Creation
Time string - The create time of the cen bandwidth package.
- Deleted
Time string - The deleted time of the cen bandwidth package.
- Description string
- The description of the cen bandwidth package.
- Expired
Time string - The expired time of the cen bandwidth package.
- Local
Geographic stringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - Peer
Geographic stringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - Period int
- The period of the cen bandwidth package. Default value is 1.
- Period
Unit string - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - Project
Name string - The ProjectName of the cen bandwidth package.
- Remaining
Bandwidth int - The remain bandwidth of the cen bandwidth package.
- Status string
- The status of the cen bandwidth package.
- []Bandwidth
Package Tag Args - Tags.
- Update
Time string - The update time of the cen bandwidth package.
- account
Id String - The account ID of the cen bandwidth package.
- bandwidth Integer
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- billing
Type String - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - business
Status String - The business status of the cen bandwidth package.
- cen
Bandwidth StringPackage Id - The ID of the cen bandwidth package.
- cen
Bandwidth StringPackage Name - The name of the cen bandwidth package.
- cen
Ids List<String> - The cen IDs of the bandwidth package.
- creation
Time String - The create time of the cen bandwidth package.
- deleted
Time String - The deleted time of the cen bandwidth package.
- description String
- The description of the cen bandwidth package.
- expired
Time String - The expired time of the cen bandwidth package.
- local
Geographic StringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - peer
Geographic StringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - period Integer
- The period of the cen bandwidth package. Default value is 1.
- period
Unit String - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - project
Name String - The ProjectName of the cen bandwidth package.
- remaining
Bandwidth Integer - The remain bandwidth of the cen bandwidth package.
- status String
- The status of the cen bandwidth package.
- List<Bandwidth
Package Tag> - Tags.
- update
Time String - The update time of the cen bandwidth package.
- account
Id string - The account ID of the cen bandwidth package.
- bandwidth number
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- billing
Type string - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - business
Status string - The business status of the cen bandwidth package.
- cen
Bandwidth stringPackage Id - The ID of the cen bandwidth package.
- cen
Bandwidth stringPackage Name - The name of the cen bandwidth package.
- cen
Ids string[] - The cen IDs of the bandwidth package.
- creation
Time string - The create time of the cen bandwidth package.
- deleted
Time string - The deleted time of the cen bandwidth package.
- description string
- The description of the cen bandwidth package.
- expired
Time string - The expired time of the cen bandwidth package.
- local
Geographic stringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - peer
Geographic stringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - period number
- The period of the cen bandwidth package. Default value is 1.
- period
Unit string - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - project
Name string - The ProjectName of the cen bandwidth package.
- remaining
Bandwidth number - The remain bandwidth of the cen bandwidth package.
- status string
- The status of the cen bandwidth package.
- Bandwidth
Package Tag[] - Tags.
- update
Time string - The update time of the cen bandwidth package.
- account_
id str - The account ID of the cen bandwidth package.
- bandwidth int
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- billing_
type str - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - business_
status str - The business status of the cen bandwidth package.
- cen_
bandwidth_ strpackage_ id - The ID of the cen bandwidth package.
- cen_
bandwidth_ strpackage_ name - The name of the cen bandwidth package.
- cen_
ids Sequence[str] - The cen IDs of the bandwidth package.
- creation_
time str - The create time of the cen bandwidth package.
- deleted_
time str - The deleted time of the cen bandwidth package.
- description str
- The description of the cen bandwidth package.
- expired_
time str - The expired time of the cen bandwidth package.
- local_
geographic_ strregion_ set_ id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - peer_
geographic_ strregion_ set_ id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - period int
- The period of the cen bandwidth package. Default value is 1.
- period_
unit str - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - project_
name str - The ProjectName of the cen bandwidth package.
- remaining_
bandwidth int - The remain bandwidth of the cen bandwidth package.
- status str
- The status of the cen bandwidth package.
- Sequence[Bandwidth
Package Tag Args] - Tags.
- update_
time str - The update time of the cen bandwidth package.
- account
Id String - The account ID of the cen bandwidth package.
- bandwidth Number
- The bandwidth of the cen bandwidth package. Value: 2~10000.
- billing
Type String - The billing type of the cen bandwidth package. Only support
PrePaid
and default value isPrePaid
. - business
Status String - The business status of the cen bandwidth package.
- cen
Bandwidth StringPackage Id - The ID of the cen bandwidth package.
- cen
Bandwidth StringPackage Name - The name of the cen bandwidth package.
- cen
Ids List<String> - The cen IDs of the bandwidth package.
- creation
Time String - The create time of the cen bandwidth package.
- deleted
Time String - The deleted time of the cen bandwidth package.
- description String
- The description of the cen bandwidth package.
- expired
Time String - The expired time of the cen bandwidth package.
- local
Geographic StringRegion Set Id - The local geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - peer
Geographic StringRegion Set Id - The peer geographic region set id of the cen bandwidth package. Valid value:
China
,Asia
. - period Number
- The period of the cen bandwidth package. Default value is 1.
- period
Unit String - The period unit of the cen bandwidth package. Value:
Month
,Year
. Default value isMonth
. - project
Name String - The ProjectName of the cen bandwidth package.
- remaining
Bandwidth Number - The remain bandwidth of the cen bandwidth package.
- status String
- The status of the cen bandwidth package.
- List<Property Map>
- Tags.
- update
Time String - The update time of the cen bandwidth package.
Supporting Types
BandwidthPackageTag, BandwidthPackageTagArgs
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.