1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. vpc
  5. getCommonBandwidthPackages
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.vpc.getCommonBandwidthPackages

Explore with Pulumi AI

This data source provides a list of Common Bandwidth Packages owned by an Alibaba Cloud account.

NOTE: Available in 1.36.0+.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const fooCommonBandwithPackage = new alicloud.vpc.CommonBandwithPackage("foo", {
    bandwidth: "2",
    name: "tf-testAccCommonBandwidthPackage",
    description: "tf-testAcc-CommonBandwidthPackage",
});
const foo = alicloud.vpc.getCommonBandwidthPackagesOutput({
    nameRegex: "^tf-testAcc.*",
    ids: [fooCommonBandwithPackage.id],
});
Copy
import pulumi
import pulumi_alicloud as alicloud

foo_common_bandwith_package = alicloud.vpc.CommonBandwithPackage("foo",
    bandwidth="2",
    name="tf-testAccCommonBandwidthPackage",
    description="tf-testAcc-CommonBandwidthPackage")
foo = alicloud.vpc.get_common_bandwidth_packages_output(name_regex="^tf-testAcc.*",
    ids=[foo_common_bandwith_package.id])
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		fooCommonBandwithPackage, err := vpc.NewCommonBandwithPackage(ctx, "foo", &vpc.CommonBandwithPackageArgs{
			Bandwidth:   pulumi.String("2"),
			Name:        pulumi.String("tf-testAccCommonBandwidthPackage"),
			Description: pulumi.String("tf-testAcc-CommonBandwidthPackage"),
		})
		if err != nil {
			return err
		}
		_ = vpc.GetCommonBandwidthPackagesOutput(ctx, vpc.GetCommonBandwidthPackagesOutputArgs{
			NameRegex: pulumi.String("^tf-testAcc.*"),
			Ids: pulumi.StringArray{
				fooCommonBandwithPackage.ID(),
			},
		}, nil)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var fooCommonBandwithPackage = new AliCloud.Vpc.CommonBandwithPackage("foo", new()
    {
        Bandwidth = "2",
        Name = "tf-testAccCommonBandwidthPackage",
        Description = "tf-testAcc-CommonBandwidthPackage",
    });

    var foo = AliCloud.Vpc.GetCommonBandwidthPackages.Invoke(new()
    {
        NameRegex = "^tf-testAcc.*",
        Ids = new[]
        {
            fooCommonBandwithPackage.Id,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vpc.CommonBandwithPackage;
import com.pulumi.alicloud.vpc.CommonBandwithPackageArgs;
import com.pulumi.alicloud.vpc.VpcFunctions;
import com.pulumi.alicloud.vpc.inputs.GetCommonBandwidthPackagesArgs;
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 fooCommonBandwithPackage = new CommonBandwithPackage("fooCommonBandwithPackage", CommonBandwithPackageArgs.builder()
            .bandwidth("2")
            .name("tf-testAccCommonBandwidthPackage")
            .description("tf-testAcc-CommonBandwidthPackage")
            .build());

        final var foo = VpcFunctions.getCommonBandwidthPackages(GetCommonBandwidthPackagesArgs.builder()
            .nameRegex("^tf-testAcc.*")
            .ids(fooCommonBandwithPackage.id())
            .build());

    }
}
Copy
resources:
  fooCommonBandwithPackage:
    type: alicloud:vpc:CommonBandwithPackage
    name: foo
    properties:
      bandwidth: '2'
      name: tf-testAccCommonBandwidthPackage
      description: tf-testAcc-CommonBandwidthPackage
variables:
  foo:
    fn::invoke:
      function: alicloud:vpc:getCommonBandwidthPackages
      arguments:
        nameRegex: ^tf-testAcc.*
        ids:
          - ${fooCommonBandwithPackage.id}
Copy

Public ip addresses Block

The public ip addresses mapping supports the following:

  • ip_address - The address of the EIP.
  • allocation_id - The ID of the EIP instance.
  • bandwidth_package_ip_relation_status - The IP relation status of bandwidth package.

Using getCommonBandwidthPackages

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getCommonBandwidthPackages(args: GetCommonBandwidthPackagesArgs, opts?: InvokeOptions): Promise<GetCommonBandwidthPackagesResult>
function getCommonBandwidthPackagesOutput(args: GetCommonBandwidthPackagesOutputArgs, opts?: InvokeOptions): Output<GetCommonBandwidthPackagesResult>
Copy
def get_common_bandwidth_packages(bandwidth_package_name: Optional[str] = None,
                                  dry_run: Optional[bool] = None,
                                  ids: Optional[Sequence[str]] = None,
                                  include_reservation_data: Optional[bool] = None,
                                  name_regex: Optional[str] = None,
                                  output_file: Optional[str] = None,
                                  resource_group_id: Optional[str] = None,
                                  status: Optional[str] = None,
                                  opts: Optional[InvokeOptions] = None) -> GetCommonBandwidthPackagesResult
def get_common_bandwidth_packages_output(bandwidth_package_name: Optional[pulumi.Input[str]] = None,
                                  dry_run: Optional[pulumi.Input[bool]] = None,
                                  ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                  include_reservation_data: Optional[pulumi.Input[bool]] = None,
                                  name_regex: Optional[pulumi.Input[str]] = None,
                                  output_file: Optional[pulumi.Input[str]] = None,
                                  resource_group_id: Optional[pulumi.Input[str]] = None,
                                  status: Optional[pulumi.Input[str]] = None,
                                  opts: Optional[InvokeOptions] = None) -> Output[GetCommonBandwidthPackagesResult]
Copy
func GetCommonBandwidthPackages(ctx *Context, args *GetCommonBandwidthPackagesArgs, opts ...InvokeOption) (*GetCommonBandwidthPackagesResult, error)
func GetCommonBandwidthPackagesOutput(ctx *Context, args *GetCommonBandwidthPackagesOutputArgs, opts ...InvokeOption) GetCommonBandwidthPackagesResultOutput
Copy

> Note: This function is named GetCommonBandwidthPackages in the Go SDK.

public static class GetCommonBandwidthPackages 
{
    public static Task<GetCommonBandwidthPackagesResult> InvokeAsync(GetCommonBandwidthPackagesArgs args, InvokeOptions? opts = null)
    public static Output<GetCommonBandwidthPackagesResult> Invoke(GetCommonBandwidthPackagesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetCommonBandwidthPackagesResult> getCommonBandwidthPackages(GetCommonBandwidthPackagesArgs args, InvokeOptions options)
public static Output<GetCommonBandwidthPackagesResult> getCommonBandwidthPackages(GetCommonBandwidthPackagesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: alicloud:vpc/getCommonBandwidthPackages:getCommonBandwidthPackages
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

BandwidthPackageName Changes to this property will trigger replacement. string
The name of bandwidth package.
DryRun Changes to this property will trigger replacement. bool
Specifies whether to precheck only the request.
Ids Changes to this property will trigger replacement. List<string>
A list of Common Bandwidth Packages IDs.
IncludeReservationData Changes to this property will trigger replacement. bool
Specifies whether to return data of orders that have not taken effect.
NameRegex Changes to this property will trigger replacement. string
A regex string to filter results by name.
OutputFile string
File name where to save data source results (after running pulumi preview).
ResourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the common bandwidth package belongs.
Status Changes to this property will trigger replacement. string
The status of bandwidth package. Valid values: Available and Pending.
BandwidthPackageName Changes to this property will trigger replacement. string
The name of bandwidth package.
DryRun Changes to this property will trigger replacement. bool
Specifies whether to precheck only the request.
Ids Changes to this property will trigger replacement. []string
A list of Common Bandwidth Packages IDs.
IncludeReservationData Changes to this property will trigger replacement. bool
Specifies whether to return data of orders that have not taken effect.
NameRegex Changes to this property will trigger replacement. string
A regex string to filter results by name.
OutputFile string
File name where to save data source results (after running pulumi preview).
ResourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the common bandwidth package belongs.
Status Changes to this property will trigger replacement. string
The status of bandwidth package. Valid values: Available and Pending.
bandwidthPackageName Changes to this property will trigger replacement. String
The name of bandwidth package.
dryRun Changes to this property will trigger replacement. Boolean
Specifies whether to precheck only the request.
ids Changes to this property will trigger replacement. List<String>
A list of Common Bandwidth Packages IDs.
includeReservationData Changes to this property will trigger replacement. Boolean
Specifies whether to return data of orders that have not taken effect.
nameRegex Changes to this property will trigger replacement. String
A regex string to filter results by name.
outputFile String
File name where to save data source results (after running pulumi preview).
resourceGroupId Changes to this property will trigger replacement. String
The Id of resource group which the common bandwidth package belongs.
status Changes to this property will trigger replacement. String
The status of bandwidth package. Valid values: Available and Pending.
bandwidthPackageName Changes to this property will trigger replacement. string
The name of bandwidth package.
dryRun Changes to this property will trigger replacement. boolean
Specifies whether to precheck only the request.
ids Changes to this property will trigger replacement. string[]
A list of Common Bandwidth Packages IDs.
includeReservationData Changes to this property will trigger replacement. boolean
Specifies whether to return data of orders that have not taken effect.
nameRegex Changes to this property will trigger replacement. string
A regex string to filter results by name.
outputFile string
File name where to save data source results (after running pulumi preview).
resourceGroupId Changes to this property will trigger replacement. string
The Id of resource group which the common bandwidth package belongs.
status Changes to this property will trigger replacement. string
The status of bandwidth package. Valid values: Available and Pending.
bandwidth_package_name Changes to this property will trigger replacement. str
The name of bandwidth package.
dry_run Changes to this property will trigger replacement. bool
Specifies whether to precheck only the request.
ids Changes to this property will trigger replacement. Sequence[str]
A list of Common Bandwidth Packages IDs.
include_reservation_data Changes to this property will trigger replacement. bool
Specifies whether to return data of orders that have not taken effect.
name_regex Changes to this property will trigger replacement. str
A regex string to filter results by name.
output_file str
File name where to save data source results (after running pulumi preview).
resource_group_id Changes to this property will trigger replacement. str
The Id of resource group which the common bandwidth package belongs.
status Changes to this property will trigger replacement. str
The status of bandwidth package. Valid values: Available and Pending.
bandwidthPackageName Changes to this property will trigger replacement. String
The name of bandwidth package.
dryRun Changes to this property will trigger replacement. Boolean
Specifies whether to precheck only the request.
ids Changes to this property will trigger replacement. List<String>
A list of Common Bandwidth Packages IDs.
includeReservationData Changes to this property will trigger replacement. Boolean
Specifies whether to return data of orders that have not taken effect.
nameRegex Changes to this property will trigger replacement. String
A regex string to filter results by name.
outputFile String
File name where to save data source results (after running pulumi preview).
resourceGroupId Changes to this property will trigger replacement. String
The Id of resource group which the common bandwidth package belongs.
status Changes to this property will trigger replacement. String
The status of bandwidth package. Valid values: Available and Pending.

getCommonBandwidthPackages Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Ids List<string>
(Optional) A list of Common Bandwidth Packages IDs.
Names List<string>
A list of Common Bandwidth Packages names.
Packages List<Pulumi.AliCloud.Vpc.Outputs.GetCommonBandwidthPackagesPackage>
A list of Common Bandwidth Packages. Each element contains the following attributes:
BandwidthPackageName string
The name of bandwidth package.
DryRun bool
IncludeReservationData bool
NameRegex string
OutputFile string
ResourceGroupId string
The Id of resource group which the common bandwidth package belongs.
Status string
Status of the Common Bandwidth Package.
Id string
The provider-assigned unique ID for this managed resource.
Ids []string
(Optional) A list of Common Bandwidth Packages IDs.
Names []string
A list of Common Bandwidth Packages names.
Packages []GetCommonBandwidthPackagesPackage
A list of Common Bandwidth Packages. Each element contains the following attributes:
BandwidthPackageName string
The name of bandwidth package.
DryRun bool
IncludeReservationData bool
NameRegex string
OutputFile string
ResourceGroupId string
The Id of resource group which the common bandwidth package belongs.
Status string
Status of the Common Bandwidth Package.
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
(Optional) A list of Common Bandwidth Packages IDs.
names List<String>
A list of Common Bandwidth Packages names.
packages List<GetCommonBandwidthPackagesPackage>
A list of Common Bandwidth Packages. Each element contains the following attributes:
bandwidthPackageName String
The name of bandwidth package.
dryRun Boolean
includeReservationData Boolean
nameRegex String
outputFile String
resourceGroupId String
The Id of resource group which the common bandwidth package belongs.
status String
Status of the Common Bandwidth Package.
id string
The provider-assigned unique ID for this managed resource.
ids string[]
(Optional) A list of Common Bandwidth Packages IDs.
names string[]
A list of Common Bandwidth Packages names.
packages GetCommonBandwidthPackagesPackage[]
A list of Common Bandwidth Packages. Each element contains the following attributes:
bandwidthPackageName string
The name of bandwidth package.
dryRun boolean
includeReservationData boolean
nameRegex string
outputFile string
resourceGroupId string
The Id of resource group which the common bandwidth package belongs.
status string
Status of the Common Bandwidth Package.
id str
The provider-assigned unique ID for this managed resource.
ids Sequence[str]
(Optional) A list of Common Bandwidth Packages IDs.
names Sequence[str]
A list of Common Bandwidth Packages names.
packages Sequence[GetCommonBandwidthPackagesPackage]
A list of Common Bandwidth Packages. Each element contains the following attributes:
bandwidth_package_name str
The name of bandwidth package.
dry_run bool
include_reservation_data bool
name_regex str
output_file str
resource_group_id str
The Id of resource group which the common bandwidth package belongs.
status str
Status of the Common Bandwidth Package.
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
(Optional) A list of Common Bandwidth Packages IDs.
names List<String>
A list of Common Bandwidth Packages names.
packages List<Property Map>
A list of Common Bandwidth Packages. Each element contains the following attributes:
bandwidthPackageName String
The name of bandwidth package.
dryRun Boolean
includeReservationData Boolean
nameRegex String
outputFile String
resourceGroupId String
The Id of resource group which the common bandwidth package belongs.
status String
Status of the Common Bandwidth Package.

Supporting Types

GetCommonBandwidthPackagesPackage

Bandwidth This property is required. string
The peak bandwidth of the Internet Shared Bandwidth instance.
BandwidthPackageId This property is required. string
The resource ID of bandwidth package.
BandwidthPackageName This property is required. string
The name of bandwidth package.
BusinessStatus This property is required. string
The business status of the Common Bandwidth Package instance.
DeletionProtection This property is required. bool
The deletion protection of bandwidth package.
Description This property is required. string
The description of the Common Bandwidth Package instance.
ExpiredTime This property is required. string
The expired time of bandwidth package.
HasReservationData This property is required. bool
Is has reservation data.
Id This property is required. string
ID of the Common Bandwidth Package.
InternetChargeType This property is required. string
The internet charge type of bandwidth package.
Isp This property is required. string
ISP of the Common Bandwidth Package.
Name This property is required. string
Name of the Common Bandwidth Package.
PaymentType This property is required. string
The payment type of bandwidth package.
PublicIpAddresses This property is required. List<Pulumi.AliCloud.Vpc.Inputs.GetCommonBandwidthPackagesPackagePublicIpAddress>
Public ip addresses that in the Common Bandwidth Pakcage.
Ratio This property is required. int
The ratio of bandwidth package.
ReservationActiveTime This property is required. string
The active time of reservation.
ReservationBandwidth This property is required. string
The bandwidth of reservation.
ReservationInternetChargeType This property is required. string
The charge type of reservation internet.
ReservationOrderType This property is required. string
The type of reservation order.
ResourceGroupId This property is required. string
The Id of resource group which the common bandwidth package belongs.
ServiceManaged This property is required. int
The service managed.
Status This property is required. string
The status of bandwidth package. Valid values: Available and Pending.
Bandwidth This property is required. string
The peak bandwidth of the Internet Shared Bandwidth instance.
BandwidthPackageId This property is required. string
The resource ID of bandwidth package.
BandwidthPackageName This property is required. string
The name of bandwidth package.
BusinessStatus This property is required. string
The business status of the Common Bandwidth Package instance.
DeletionProtection This property is required. bool
The deletion protection of bandwidth package.
Description This property is required. string
The description of the Common Bandwidth Package instance.
ExpiredTime This property is required. string
The expired time of bandwidth package.
HasReservationData This property is required. bool
Is has reservation data.
Id This property is required. string
ID of the Common Bandwidth Package.
InternetChargeType This property is required. string
The internet charge type of bandwidth package.
Isp This property is required. string
ISP of the Common Bandwidth Package.
Name This property is required. string
Name of the Common Bandwidth Package.
PaymentType This property is required. string
The payment type of bandwidth package.
PublicIpAddresses This property is required. []GetCommonBandwidthPackagesPackagePublicIpAddress
Public ip addresses that in the Common Bandwidth Pakcage.
Ratio This property is required. int
The ratio of bandwidth package.
ReservationActiveTime This property is required. string
The active time of reservation.
ReservationBandwidth This property is required. string
The bandwidth of reservation.
ReservationInternetChargeType This property is required. string
The charge type of reservation internet.
ReservationOrderType This property is required. string
The type of reservation order.
ResourceGroupId This property is required. string
The Id of resource group which the common bandwidth package belongs.
ServiceManaged This property is required. int
The service managed.
Status This property is required. string
The status of bandwidth package. Valid values: Available and Pending.
bandwidth This property is required. String
The peak bandwidth of the Internet Shared Bandwidth instance.
bandwidthPackageId This property is required. String
The resource ID of bandwidth package.
bandwidthPackageName This property is required. String
The name of bandwidth package.
businessStatus This property is required. String
The business status of the Common Bandwidth Package instance.
deletionProtection This property is required. Boolean
The deletion protection of bandwidth package.
description This property is required. String
The description of the Common Bandwidth Package instance.
expiredTime This property is required. String
The expired time of bandwidth package.
hasReservationData This property is required. Boolean
Is has reservation data.
id This property is required. String
ID of the Common Bandwidth Package.
internetChargeType This property is required. String
The internet charge type of bandwidth package.
isp This property is required. String
ISP of the Common Bandwidth Package.
name This property is required. String
Name of the Common Bandwidth Package.
paymentType This property is required. String
The payment type of bandwidth package.
publicIpAddresses This property is required. List<GetCommonBandwidthPackagesPackagePublicIpAddress>
Public ip addresses that in the Common Bandwidth Pakcage.
ratio This property is required. Integer
The ratio of bandwidth package.
reservationActiveTime This property is required. String
The active time of reservation.
reservationBandwidth This property is required. String
The bandwidth of reservation.
reservationInternetChargeType This property is required. String
The charge type of reservation internet.
reservationOrderType This property is required. String
The type of reservation order.
resourceGroupId This property is required. String
The Id of resource group which the common bandwidth package belongs.
serviceManaged This property is required. Integer
The service managed.
status This property is required. String
The status of bandwidth package. Valid values: Available and Pending.
bandwidth This property is required. string
The peak bandwidth of the Internet Shared Bandwidth instance.
bandwidthPackageId This property is required. string
The resource ID of bandwidth package.
bandwidthPackageName This property is required. string
The name of bandwidth package.
businessStatus This property is required. string
The business status of the Common Bandwidth Package instance.
deletionProtection This property is required. boolean
The deletion protection of bandwidth package.
description This property is required. string
The description of the Common Bandwidth Package instance.
expiredTime This property is required. string
The expired time of bandwidth package.
hasReservationData This property is required. boolean
Is has reservation data.
id This property is required. string
ID of the Common Bandwidth Package.
internetChargeType This property is required. string
The internet charge type of bandwidth package.
isp This property is required. string
ISP of the Common Bandwidth Package.
name This property is required. string
Name of the Common Bandwidth Package.
paymentType This property is required. string
The payment type of bandwidth package.
publicIpAddresses This property is required. GetCommonBandwidthPackagesPackagePublicIpAddress[]
Public ip addresses that in the Common Bandwidth Pakcage.
ratio This property is required. number
The ratio of bandwidth package.
reservationActiveTime This property is required. string
The active time of reservation.
reservationBandwidth This property is required. string
The bandwidth of reservation.
reservationInternetChargeType This property is required. string
The charge type of reservation internet.
reservationOrderType This property is required. string
The type of reservation order.
resourceGroupId This property is required. string
The Id of resource group which the common bandwidth package belongs.
serviceManaged This property is required. number
The service managed.
status This property is required. string
The status of bandwidth package. Valid values: Available and Pending.
bandwidth This property is required. str
The peak bandwidth of the Internet Shared Bandwidth instance.
bandwidth_package_id This property is required. str
The resource ID of bandwidth package.
bandwidth_package_name This property is required. str
The name of bandwidth package.
business_status This property is required. str
The business status of the Common Bandwidth Package instance.
deletion_protection This property is required. bool
The deletion protection of bandwidth package.
description This property is required. str
The description of the Common Bandwidth Package instance.
expired_time This property is required. str
The expired time of bandwidth package.
has_reservation_data This property is required. bool
Is has reservation data.
id This property is required. str
ID of the Common Bandwidth Package.
internet_charge_type This property is required. str
The internet charge type of bandwidth package.
isp This property is required. str
ISP of the Common Bandwidth Package.
name This property is required. str
Name of the Common Bandwidth Package.
payment_type This property is required. str
The payment type of bandwidth package.
public_ip_addresses This property is required. Sequence[GetCommonBandwidthPackagesPackagePublicIpAddress]
Public ip addresses that in the Common Bandwidth Pakcage.
ratio This property is required. int
The ratio of bandwidth package.
reservation_active_time This property is required. str
The active time of reservation.
reservation_bandwidth This property is required. str
The bandwidth of reservation.
reservation_internet_charge_type This property is required. str
The charge type of reservation internet.
reservation_order_type This property is required. str
The type of reservation order.
resource_group_id This property is required. str
The Id of resource group which the common bandwidth package belongs.
service_managed This property is required. int
The service managed.
status This property is required. str
The status of bandwidth package. Valid values: Available and Pending.
bandwidth This property is required. String
The peak bandwidth of the Internet Shared Bandwidth instance.
bandwidthPackageId This property is required. String
The resource ID of bandwidth package.
bandwidthPackageName This property is required. String
The name of bandwidth package.
businessStatus This property is required. String
The business status of the Common Bandwidth Package instance.
deletionProtection This property is required. Boolean
The deletion protection of bandwidth package.
description This property is required. String
The description of the Common Bandwidth Package instance.
expiredTime This property is required. String
The expired time of bandwidth package.
hasReservationData This property is required. Boolean
Is has reservation data.
id This property is required. String
ID of the Common Bandwidth Package.
internetChargeType This property is required. String
The internet charge type of bandwidth package.
isp This property is required. String
ISP of the Common Bandwidth Package.
name This property is required. String
Name of the Common Bandwidth Package.
paymentType This property is required. String
The payment type of bandwidth package.
publicIpAddresses This property is required. List<Property Map>
Public ip addresses that in the Common Bandwidth Pakcage.
ratio This property is required. Number
The ratio of bandwidth package.
reservationActiveTime This property is required. String
The active time of reservation.
reservationBandwidth This property is required. String
The bandwidth of reservation.
reservationInternetChargeType This property is required. String
The charge type of reservation internet.
reservationOrderType This property is required. String
The type of reservation order.
resourceGroupId This property is required. String
The Id of resource group which the common bandwidth package belongs.
serviceManaged This property is required. Number
The service managed.
status This property is required. String
The status of bandwidth package. Valid values: Available and Pending.

GetCommonBandwidthPackagesPackagePublicIpAddress

AllocationId This property is required. string
BandwidthPackageIpRelationStatus This property is required. string
IpAddress This property is required. string
AllocationId This property is required. string
BandwidthPackageIpRelationStatus This property is required. string
IpAddress This property is required. string
allocationId This property is required. String
bandwidthPackageIpRelationStatus This property is required. String
ipAddress This property is required. String
allocationId This property is required. string
bandwidthPackageIpRelationStatus This property is required. string
ipAddress This property is required. string
allocation_id This property is required. str
bandwidth_package_ip_relation_status This property is required. str
ip_address This property is required. str
allocationId This property is required. String
bandwidthPackageIpRelationStatus This property is required. String
ipAddress This property is required. String

Package Details

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