1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cen
  5. BandwidthPackage
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.cen.BandwidthPackage

Explore with Pulumi AI

Import

CEN bandwidth package can be imported using the id, e.g.

$ pulumi import alicloud:cen/bandwidthPackage:BandwidthPackage example cenbwp-abc123456
Copy

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: BandwidthPackageArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def BandwidthPackage(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     bandwidth: Optional[int] = None,
                     cen_bandwidth_package_name: Optional[str] = None,
                     charge_type: Optional[str] = None,
                     description: Optional[str] = None,
                     geographic_region_a_id: Optional[str] = None,
                     geographic_region_b_id: Optional[str] = None,
                     geographic_region_ids: Optional[Sequence[str]] = None,
                     name: Optional[str] = None,
                     payment_type: Optional[str] = None,
                     period: Optional[int] = None)
func NewBandwidthPackage(ctx *Context, name string, args BandwidthPackageArgs, opts ...ResourceOption) (*BandwidthPackage, error)
public BandwidthPackage(string name, BandwidthPackageArgs args, CustomResourceOptions? opts = null)
public BandwidthPackage(String name, BandwidthPackageArgs args)
public BandwidthPackage(String name, BandwidthPackageArgs args, CustomResourceOptions options)
type: alicloud:cen:BandwidthPackage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. BandwidthPackageArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. BandwidthPackageArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. BandwidthPackageArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 bandwidthPackageResource = new AliCloud.Cen.BandwidthPackage("bandwidthPackageResource", new()
{
    Bandwidth = 0,
    CenBandwidthPackageName = "string",
    Description = "string",
    GeographicRegionAId = "string",
    GeographicRegionBId = "string",
    PaymentType = "string",
    Period = 0,
});
Copy
example, err := cen.NewBandwidthPackage(ctx, "bandwidthPackageResource", &cen.BandwidthPackageArgs{
	Bandwidth:               pulumi.Int(0),
	CenBandwidthPackageName: pulumi.String("string"),
	Description:             pulumi.String("string"),
	GeographicRegionAId:     pulumi.String("string"),
	GeographicRegionBId:     pulumi.String("string"),
	PaymentType:             pulumi.String("string"),
	Period:                  pulumi.Int(0),
})
Copy
var bandwidthPackageResource = new BandwidthPackage("bandwidthPackageResource", BandwidthPackageArgs.builder()
    .bandwidth(0)
    .cenBandwidthPackageName("string")
    .description("string")
    .geographicRegionAId("string")
    .geographicRegionBId("string")
    .paymentType("string")
    .period(0)
    .build());
Copy
bandwidth_package_resource = alicloud.cen.BandwidthPackage("bandwidthPackageResource",
    bandwidth=0,
    cen_bandwidth_package_name="string",
    description="string",
    geographic_region_a_id="string",
    geographic_region_b_id="string",
    payment_type="string",
    period=0)
Copy
const bandwidthPackageResource = new alicloud.cen.BandwidthPackage("bandwidthPackageResource", {
    bandwidth: 0,
    cenBandwidthPackageName: "string",
    description: "string",
    geographicRegionAId: "string",
    geographicRegionBId: "string",
    paymentType: "string",
    period: 0,
});
Copy
type: alicloud:cen:BandwidthPackage
properties:
    bandwidth: 0
    cenBandwidthPackageName: string
    description: string
    geographicRegionAId: string
    geographicRegionBId: string
    paymentType: string
    period: 0
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The BandwidthPackage resource accepts the following input properties:

Bandwidth This property is required. int
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
CenBandwidthPackageName string

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

ChargeType Changes to this property will trigger replacement. string
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

Description string
The description of the bandwidth package. Default to null.
GeographicRegionAId Changes to this property will trigger replacement. string
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
GeographicRegionBId Changes to this property will trigger replacement. string
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
GeographicRegionIds Changes to this property will trigger replacement. List<string>
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

Name string
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

PaymentType Changes to this property will trigger replacement. string
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
Period int

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

Bandwidth This property is required. int
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
CenBandwidthPackageName string

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

ChargeType Changes to this property will trigger replacement. string
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

Description string
The description of the bandwidth package. Default to null.
GeographicRegionAId Changes to this property will trigger replacement. string
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
GeographicRegionBId Changes to this property will trigger replacement. string
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
GeographicRegionIds Changes to this property will trigger replacement. []string
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

Name string
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

PaymentType Changes to this property will trigger replacement. string
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
Period int

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

bandwidth This property is required. Integer
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
cenBandwidthPackageName String

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

chargeType Changes to this property will trigger replacement. String
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

description String
The description of the bandwidth package. Default to null.
geographicRegionAId Changes to this property will trigger replacement. String
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionBId Changes to this property will trigger replacement. String
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionIds Changes to this property will trigger replacement. List<String>
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

name String
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

paymentType Changes to this property will trigger replacement. String
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
period Integer

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

bandwidth This property is required. number
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
cenBandwidthPackageName string

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

chargeType Changes to this property will trigger replacement. string
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

description string
The description of the bandwidth package. Default to null.
geographicRegionAId Changes to this property will trigger replacement. string
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionBId Changes to this property will trigger replacement. string
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionIds Changes to this property will trigger replacement. string[]
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

name string
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

paymentType Changes to this property will trigger replacement. string
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
period number

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

bandwidth This property is required. int
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
cen_bandwidth_package_name str

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

charge_type Changes to this property will trigger replacement. str
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

description str
The description of the bandwidth package. Default to null.
geographic_region_a_id Changes to this property will trigger replacement. str
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographic_region_b_id Changes to this property will trigger replacement. str
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographic_region_ids Changes to this property will trigger replacement. Sequence[str]
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

name str
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

payment_type Changes to this property will trigger replacement. str
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
period int

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

bandwidth This property is required. Number
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
cenBandwidthPackageName String

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

chargeType Changes to this property will trigger replacement. String
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

description String
The description of the bandwidth package. Default to null.
geographicRegionAId Changes to this property will trigger replacement. String
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionBId Changes to this property will trigger replacement. String
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionIds Changes to this property will trigger replacement. List<String>
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

name String
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

paymentType Changes to this property will trigger replacement. String
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
period Number

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the BandwidthPackage resource produces the following output properties:

ExpiredTime string
The time of the bandwidth package to expire.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The association status of the bandwidth package.
ExpiredTime string
The time of the bandwidth package to expire.
Id string
The provider-assigned unique ID for this managed resource.
Status string
The association status of the bandwidth package.
expiredTime String
The time of the bandwidth package to expire.
id String
The provider-assigned unique ID for this managed resource.
status String
The association status of the bandwidth package.
expiredTime string
The time of the bandwidth package to expire.
id string
The provider-assigned unique ID for this managed resource.
status string
The association status of the bandwidth package.
expired_time str
The time of the bandwidth package to expire.
id str
The provider-assigned unique ID for this managed resource.
status str
The association status of the bandwidth package.
expiredTime String
The time of the bandwidth package to expire.
id String
The provider-assigned unique ID for this managed resource.
status String
The association status of the 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,
        bandwidth: Optional[int] = None,
        cen_bandwidth_package_name: Optional[str] = None,
        charge_type: Optional[str] = None,
        description: Optional[str] = None,
        expired_time: Optional[str] = None,
        geographic_region_a_id: Optional[str] = None,
        geographic_region_b_id: Optional[str] = None,
        geographic_region_ids: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        payment_type: Optional[str] = None,
        period: Optional[int] = None,
        status: 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)
resources:  _:    type: alicloud:cen:BandwidthPackage    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Bandwidth int
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
CenBandwidthPackageName string

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

ChargeType Changes to this property will trigger replacement. string
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

Description string
The description of the bandwidth package. Default to null.
ExpiredTime string
The time of the bandwidth package to expire.
GeographicRegionAId Changes to this property will trigger replacement. string
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
GeographicRegionBId Changes to this property will trigger replacement. string
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
GeographicRegionIds Changes to this property will trigger replacement. List<string>
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

Name string
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

PaymentType Changes to this property will trigger replacement. string
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
Period int

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

Status string
The association status of the bandwidth package.
Bandwidth int
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
CenBandwidthPackageName string

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

ChargeType Changes to this property will trigger replacement. string
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

Description string
The description of the bandwidth package. Default to null.
ExpiredTime string
The time of the bandwidth package to expire.
GeographicRegionAId Changes to this property will trigger replacement. string
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
GeographicRegionBId Changes to this property will trigger replacement. string
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
GeographicRegionIds Changes to this property will trigger replacement. []string
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

Name string
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

PaymentType Changes to this property will trigger replacement. string
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
Period int

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

Status string
The association status of the bandwidth package.
bandwidth Integer
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
cenBandwidthPackageName String

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

chargeType Changes to this property will trigger replacement. String
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

description String
The description of the bandwidth package. Default to null.
expiredTime String
The time of the bandwidth package to expire.
geographicRegionAId Changes to this property will trigger replacement. String
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionBId Changes to this property will trigger replacement. String
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionIds Changes to this property will trigger replacement. List<String>
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

name String
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

paymentType Changes to this property will trigger replacement. String
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
period Integer

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

status String
The association status of the bandwidth package.
bandwidth number
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
cenBandwidthPackageName string

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

chargeType Changes to this property will trigger replacement. string
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

description string
The description of the bandwidth package. Default to null.
expiredTime string
The time of the bandwidth package to expire.
geographicRegionAId Changes to this property will trigger replacement. string
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionBId Changes to this property will trigger replacement. string
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionIds Changes to this property will trigger replacement. string[]
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

name string
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

paymentType Changes to this property will trigger replacement. string
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
period number

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

status string
The association status of the bandwidth package.
bandwidth int
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
cen_bandwidth_package_name str

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

charge_type Changes to this property will trigger replacement. str
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

description str
The description of the bandwidth package. Default to null.
expired_time str
The time of the bandwidth package to expire.
geographic_region_a_id Changes to this property will trigger replacement. str
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographic_region_b_id Changes to this property will trigger replacement. str
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographic_region_ids Changes to this property will trigger replacement. Sequence[str]
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

name str
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

payment_type Changes to this property will trigger replacement. str
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
period int

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

status str
The association status of the bandwidth package.
bandwidth Number
The bandwidth in Mbps of the bandwidth package. Cannot be less than 2Mbps.
cenBandwidthPackageName String

The name of the bandwidth package. Defaults to null.

->NOTE: PrePaid mode will deduct fees from the account directly and the bandwidth package can't be deleted before expired time.

->NOTE: The PostPaid mode is only for test. Please open a ticket if you need.

chargeType Changes to this property will trigger replacement. String
Field charge_type has been deprecated from version 1.97.0. Use payment_type and instead.

Deprecated: Field 'charge_type' has been deprecated from version 1.98.0. Use 'payment_type' and instead.

description String
The description of the bandwidth package. Default to null.
expiredTime String
The time of the bandwidth package to expire.
geographicRegionAId Changes to this property will trigger replacement. String
The area A to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionBId Changes to this property will trigger replacement. String
The area B to which the network instance belongs. Valid values: China | North-America | Asia-Pacific | Europe | Australia.
geographicRegionIds Changes to this property will trigger replacement. List<String>
Field geographic_region_ids has been deprecated from version 1.97.0. Use geographic_region_a_id and geographic_region_b_id instead.

Deprecated: Field 'geographic_region_ids' has been deprecated from version 1.98.0. Use 'geographic_region_a_id' and 'geographic_region_b_id' instead.

name String
Field name has been deprecated from version 1.97.0. Use cen_bandwidth_package_name and instead.

Deprecated: Field 'name' has been deprecated from version 1.98.0. Use 'cen_bandwidth_package_name' and instead.

paymentType Changes to this property will trigger replacement. String
The billing method. Valid value: PostPaid | PrePaid. Default to PrePaid. If set to PrePaid, the bandwidth package can't be deleted before expired time.
period Number

The purchase period in month. Valid value: 1, 2, 3, 6, 12.

NOTE: The attribute period is only used to create Subscription instance or modify the PayAsYouGo instance to Subscription. Once effect, it will not be modified that means running pulumi up will not effect the resource.

status String
The association status of the bandwidth package.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.