Alibaba Cloud v3.57.1 published on Wednesday, Jun 26, 2024 by Pulumi
alicloud.ga.getBasicAccelerators
Explore with Pulumi AI
This data source provides the Global Accelerator (GA) Basic Accelerators of the current Alibaba Cloud user.
NOTE: Available in v1.194.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.ga.getBasicAccelerators({
ids: ["example_id"],
});
export const gaBasicAcceleratorId1 = ids.then(ids => ids.accelerators?.[0]?.id);
const nameRegex = alicloud.ga.getBasicAccelerators({
nameRegex: "tf-example",
});
export const gaBasicAcceleratorId2 = nameRegex.then(nameRegex => nameRegex.accelerators?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.ga.get_basic_accelerators(ids=["example_id"])
pulumi.export("gaBasicAcceleratorId1", ids.accelerators[0].id)
name_regex = alicloud.ga.get_basic_accelerators(name_regex="tf-example")
pulumi.export("gaBasicAcceleratorId2", name_regex.accelerators[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ga"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
ids, err := ga.GetBasicAccelerators(ctx, &ga.GetBasicAcceleratorsArgs{
Ids: []string{
"example_id",
},
}, nil)
if err != nil {
return err
}
ctx.Export("gaBasicAcceleratorId1", ids.Accelerators[0].Id)
nameRegex, err := ga.GetBasicAccelerators(ctx, &ga.GetBasicAcceleratorsArgs{
NameRegex: pulumi.StringRef("tf-example"),
}, nil)
if err != nil {
return err
}
ctx.Export("gaBasicAcceleratorId2", nameRegex.Accelerators[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var ids = AliCloud.Ga.GetBasicAccelerators.Invoke(new()
{
Ids = new[]
{
"example_id",
},
});
var nameRegex = AliCloud.Ga.GetBasicAccelerators.Invoke(new()
{
NameRegex = "tf-example",
});
return new Dictionary<string, object?>
{
["gaBasicAcceleratorId1"] = ids.Apply(getBasicAcceleratorsResult => getBasicAcceleratorsResult.Accelerators[0]?.Id),
["gaBasicAcceleratorId2"] = nameRegex.Apply(getBasicAcceleratorsResult => getBasicAcceleratorsResult.Accelerators[0]?.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ga.GaFunctions;
import com.pulumi.alicloud.ga.inputs.GetBasicAcceleratorsArgs;
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) {
final var ids = GaFunctions.getBasicAccelerators(GetBasicAcceleratorsArgs.builder()
.ids("example_id")
.build());
ctx.export("gaBasicAcceleratorId1", ids.applyValue(getBasicAcceleratorsResult -> getBasicAcceleratorsResult.accelerators()[0].id()));
final var nameRegex = GaFunctions.getBasicAccelerators(GetBasicAcceleratorsArgs.builder()
.nameRegex("tf-example")
.build());
ctx.export("gaBasicAcceleratorId2", nameRegex.applyValue(getBasicAcceleratorsResult -> getBasicAcceleratorsResult.accelerators()[0].id()));
}
}
variables:
ids:
fn::invoke:
Function: alicloud:ga:getBasicAccelerators
Arguments:
ids:
- example_id
nameRegex:
fn::invoke:
Function: alicloud:ga:getBasicAccelerators
Arguments:
nameRegex: tf-example
outputs:
gaBasicAcceleratorId1: ${ids.accelerators[0].id}
gaBasicAcceleratorId2: ${nameRegex.accelerators[0].id}
Using getBasicAccelerators
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 getBasicAccelerators(args: GetBasicAcceleratorsArgs, opts?: InvokeOptions): Promise<GetBasicAcceleratorsResult>
function getBasicAcceleratorsOutput(args: GetBasicAcceleratorsOutputArgs, opts?: InvokeOptions): Output<GetBasicAcceleratorsResult>
def get_basic_accelerators(accelerator_id: Optional[str] = None,
ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
page_number: Optional[int] = None,
page_size: Optional[int] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBasicAcceleratorsResult
def get_basic_accelerators_output(accelerator_id: Optional[pulumi.Input[str]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
page_number: Optional[pulumi.Input[int]] = None,
page_size: Optional[pulumi.Input[int]] = None,
status: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBasicAcceleratorsResult]
func GetBasicAccelerators(ctx *Context, args *GetBasicAcceleratorsArgs, opts ...InvokeOption) (*GetBasicAcceleratorsResult, error)
func GetBasicAcceleratorsOutput(ctx *Context, args *GetBasicAcceleratorsOutputArgs, opts ...InvokeOption) GetBasicAcceleratorsResultOutput
> Note: This function is named GetBasicAccelerators
in the Go SDK.
public static class GetBasicAccelerators
{
public static Task<GetBasicAcceleratorsResult> InvokeAsync(GetBasicAcceleratorsArgs args, InvokeOptions? opts = null)
public static Output<GetBasicAcceleratorsResult> Invoke(GetBasicAcceleratorsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetBasicAcceleratorsResult> getBasicAccelerators(GetBasicAcceleratorsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:ga/getBasicAccelerators:getBasicAccelerators
arguments:
# arguments dictionary
The following arguments are supported:
- Accelerator
Id string - The ID of the Global Accelerator Basic Accelerator instance.
- Ids List<string>
- A list of Global Accelerator Basic Accelerator IDs.
- Name
Regex string - A regex string to filter results by Global Accelerator Basic Accelerator name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Page
Number int - Page
Size int - Status string
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- Accelerator
Id string - The ID of the Global Accelerator Basic Accelerator instance.
- Ids []string
- A list of Global Accelerator Basic Accelerator IDs.
- Name
Regex string - A regex string to filter results by Global Accelerator Basic Accelerator name.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Page
Number int - Page
Size int - Status string
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- accelerator
Id String - The ID of the Global Accelerator Basic Accelerator instance.
- ids List<String>
- A list of Global Accelerator Basic Accelerator IDs.
- name
Regex String - A regex string to filter results by Global Accelerator Basic Accelerator name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - page
Number Integer - page
Size Integer - status String
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- accelerator
Id string - The ID of the Global Accelerator Basic Accelerator instance.
- ids string[]
- A list of Global Accelerator Basic Accelerator IDs.
- name
Regex string - A regex string to filter results by Global Accelerator Basic Accelerator name.
- output
File string - File name where to save data source results (after running
pulumi preview
). - page
Number number - page
Size number - status string
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- accelerator_
id str - The ID of the Global Accelerator Basic Accelerator instance.
- ids Sequence[str]
- A list of Global Accelerator Basic Accelerator IDs.
- name_
regex str - A regex string to filter results by Global Accelerator Basic Accelerator name.
- output_
file str - File name where to save data source results (after running
pulumi preview
). - page_
number int - page_
size int - status str
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- accelerator
Id String - The ID of the Global Accelerator Basic Accelerator instance.
- ids List<String>
- A list of Global Accelerator Basic Accelerator IDs.
- name
Regex String - A regex string to filter results by Global Accelerator Basic Accelerator name.
- output
File String - File name where to save data source results (after running
pulumi preview
). - page
Number Number - page
Size Number - status String
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
getBasicAccelerators Result
The following output properties are available:
- Accelerators
List<Pulumi.
Ali Cloud. Ga. Outputs. Get Basic Accelerators Accelerator> - A list of Global Accelerator Basic Accelerators. Each element contains the following attributes:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
- A list of Global Accelerator Basic Accelerator names.
- Accelerator
Id string - Name
Regex string - Output
File string - Page
Number int - Page
Size int - Status string
- The status of the Global Accelerator Basic Accelerator instance.
- Accelerators
[]Get
Basic Accelerators Accelerator - A list of Global Accelerator Basic Accelerators. Each element contains the following attributes:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- A list of Global Accelerator Basic Accelerator names.
- Accelerator
Id string - Name
Regex string - Output
File string - Page
Number int - Page
Size int - Status string
- The status of the Global Accelerator Basic Accelerator instance.
- accelerators
List<Get
Basic Accelerators Accelerator> - A list of Global Accelerator Basic Accelerators. Each element contains the following attributes:
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- A list of Global Accelerator Basic Accelerator names.
- accelerator
Id String - name
Regex String - output
File String - page
Number Integer - page
Size Integer - status String
- The status of the Global Accelerator Basic Accelerator instance.
- accelerators
Get
Basic Accelerators Accelerator[] - A list of Global Accelerator Basic Accelerators. Each element contains the following attributes:
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- A list of Global Accelerator Basic Accelerator names.
- accelerator
Id string - name
Regex string - output
File string - page
Number number - page
Size number - status string
- The status of the Global Accelerator Basic Accelerator instance.
- accelerators
Sequence[Get
Basic Accelerators Accelerator] - A list of Global Accelerator Basic Accelerators. Each element contains the following attributes:
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- A list of Global Accelerator Basic Accelerator names.
- accelerator_
id str - name_
regex str - output_
file str - page_
number int - page_
size int - status str
- The status of the Global Accelerator Basic Accelerator instance.
- accelerators List<Property Map>
- A list of Global Accelerator Basic Accelerators. Each element contains the following attributes:
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- A list of Global Accelerator Basic Accelerator names.
- accelerator
Id String - name
Regex String - output
File String - page
Number Number - page
Size Number - status String
- The status of the Global Accelerator Basic Accelerator instance.
Supporting Types
GetBasicAcceleratorsAccelerator
- Bandwidth
Billing stringType - The bandwidth billing method.
- Basic
Accelerator stringId - The id of the Global Accelerator Basic Accelerator instance.
- Basic
Accelerator stringName - The name of the Global Accelerator Basic Accelerator instance.
- Basic
Bandwidth List<Pulumi.Packages Ali Cloud. Ga. Inputs. Get Basic Accelerators Accelerator Basic Bandwidth Package> - The details about the basic bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance.
- Basic
Endpoint stringGroup Id - The ID of the endpoint group that is associated with the Global Accelerator Basic Accelerator instance.
- Basic
Ip stringSet Id - The ID of the acceleration region.
- Create
Time int - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was created.
- Cross
Domain List<Pulumi.Bandwidth Packages Ali Cloud. Ga. Inputs. Get Basic Accelerators Accelerator Cross Domain Bandwidth Package> - The details about the cross-region acceleration bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance. NOTE: This array is returned only for Global Accelerator Basic Accelerator instances that are created on the International site.
- Description string
- The description of the Global Accelerator Basic Accelerator instance.
- Expired
Time int - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was expired.
- Id string
- The id of the Global Accelerator Basic Accelerator.
- Instance
Charge stringType - The billing method of the Global Accelerator Basic Accelerator instance. Only
PREPAY
is returned, which indicates the subscription billing method. - Region
Id string - The ID of the region where the Global Accelerator Basic Accelerator instance is deployed.
- Status string
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- Bandwidth
Billing stringType - The bandwidth billing method.
- Basic
Accelerator stringId - The id of the Global Accelerator Basic Accelerator instance.
- Basic
Accelerator stringName - The name of the Global Accelerator Basic Accelerator instance.
- Basic
Bandwidth []GetPackages Basic Accelerators Accelerator Basic Bandwidth Package - The details about the basic bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance.
- Basic
Endpoint stringGroup Id - The ID of the endpoint group that is associated with the Global Accelerator Basic Accelerator instance.
- Basic
Ip stringSet Id - The ID of the acceleration region.
- Create
Time int - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was created.
- Cross
Domain []GetBandwidth Packages Basic Accelerators Accelerator Cross Domain Bandwidth Package - The details about the cross-region acceleration bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance. NOTE: This array is returned only for Global Accelerator Basic Accelerator instances that are created on the International site.
- Description string
- The description of the Global Accelerator Basic Accelerator instance.
- Expired
Time int - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was expired.
- Id string
- The id of the Global Accelerator Basic Accelerator.
- Instance
Charge stringType - The billing method of the Global Accelerator Basic Accelerator instance. Only
PREPAY
is returned, which indicates the subscription billing method. - Region
Id string - The ID of the region where the Global Accelerator Basic Accelerator instance is deployed.
- Status string
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- bandwidth
Billing StringType - The bandwidth billing method.
- basic
Accelerator StringId - The id of the Global Accelerator Basic Accelerator instance.
- basic
Accelerator StringName - The name of the Global Accelerator Basic Accelerator instance.
- basic
Bandwidth List<GetPackages Basic Accelerators Accelerator Basic Bandwidth Package> - The details about the basic bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance.
- basic
Endpoint StringGroup Id - The ID of the endpoint group that is associated with the Global Accelerator Basic Accelerator instance.
- basic
Ip StringSet Id - The ID of the acceleration region.
- create
Time Integer - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was created.
- cross
Domain List<GetBandwidth Packages Basic Accelerators Accelerator Cross Domain Bandwidth Package> - The details about the cross-region acceleration bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance. NOTE: This array is returned only for Global Accelerator Basic Accelerator instances that are created on the International site.
- description String
- The description of the Global Accelerator Basic Accelerator instance.
- expired
Time Integer - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was expired.
- id String
- The id of the Global Accelerator Basic Accelerator.
- instance
Charge StringType - The billing method of the Global Accelerator Basic Accelerator instance. Only
PREPAY
is returned, which indicates the subscription billing method. - region
Id String - The ID of the region where the Global Accelerator Basic Accelerator instance is deployed.
- status String
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- bandwidth
Billing stringType - The bandwidth billing method.
- basic
Accelerator stringId - The id of the Global Accelerator Basic Accelerator instance.
- basic
Accelerator stringName - The name of the Global Accelerator Basic Accelerator instance.
- basic
Bandwidth GetPackages Basic Accelerators Accelerator Basic Bandwidth Package[] - The details about the basic bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance.
- basic
Endpoint stringGroup Id - The ID of the endpoint group that is associated with the Global Accelerator Basic Accelerator instance.
- basic
Ip stringSet Id - The ID of the acceleration region.
- create
Time number - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was created.
- cross
Domain GetBandwidth Packages Basic Accelerators Accelerator Cross Domain Bandwidth Package[] - The details about the cross-region acceleration bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance. NOTE: This array is returned only for Global Accelerator Basic Accelerator instances that are created on the International site.
- description string
- The description of the Global Accelerator Basic Accelerator instance.
- expired
Time number - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was expired.
- id string
- The id of the Global Accelerator Basic Accelerator.
- instance
Charge stringType - The billing method of the Global Accelerator Basic Accelerator instance. Only
PREPAY
is returned, which indicates the subscription billing method. - region
Id string - The ID of the region where the Global Accelerator Basic Accelerator instance is deployed.
- status string
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- bandwidth_
billing_ strtype - The bandwidth billing method.
- basic_
accelerator_ strid - The id of the Global Accelerator Basic Accelerator instance.
- basic_
accelerator_ strname - The name of the Global Accelerator Basic Accelerator instance.
- basic_
bandwidth_ Sequence[Getpackages Basic Accelerators Accelerator Basic Bandwidth Package] - The details about the basic bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance.
- basic_
endpoint_ strgroup_ id - The ID of the endpoint group that is associated with the Global Accelerator Basic Accelerator instance.
- basic_
ip_ strset_ id - The ID of the acceleration region.
- create_
time int - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was created.
- cross_
domain_ Sequence[Getbandwidth_ packages Basic Accelerators Accelerator Cross Domain Bandwidth Package] - The details about the cross-region acceleration bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance. NOTE: This array is returned only for Global Accelerator Basic Accelerator instances that are created on the International site.
- description str
- The description of the Global Accelerator Basic Accelerator instance.
- expired_
time int - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was expired.
- id str
- The id of the Global Accelerator Basic Accelerator.
- instance_
charge_ strtype - The billing method of the Global Accelerator Basic Accelerator instance. Only
PREPAY
is returned, which indicates the subscription billing method. - region_
id str - The ID of the region where the Global Accelerator Basic Accelerator instance is deployed.
- status str
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
- bandwidth
Billing StringType - The bandwidth billing method.
- basic
Accelerator StringId - The id of the Global Accelerator Basic Accelerator instance.
- basic
Accelerator StringName - The name of the Global Accelerator Basic Accelerator instance.
- basic
Bandwidth List<Property Map>Packages - The details about the basic bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance.
- basic
Endpoint StringGroup Id - The ID of the endpoint group that is associated with the Global Accelerator Basic Accelerator instance.
- basic
Ip StringSet Id - The ID of the acceleration region.
- create
Time Number - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was created.
- cross
Domain List<Property Map>Bandwidth Packages - The details about the cross-region acceleration bandwidth plan that is associated with the Global Accelerator Basic Accelerator instance. NOTE: This array is returned only for Global Accelerator Basic Accelerator instances that are created on the International site.
- description String
- The description of the Global Accelerator Basic Accelerator instance.
- expired
Time Number - The timestamp that indicates when the Global Accelerator Basic Accelerator instance was expired.
- id String
- The id of the Global Accelerator Basic Accelerator.
- instance
Charge StringType - The billing method of the Global Accelerator Basic Accelerator instance. Only
PREPAY
is returned, which indicates the subscription billing method. - region
Id String - The ID of the region where the Global Accelerator Basic Accelerator instance is deployed.
- status String
- The status of the Global Accelerator Basic Accelerator instance. Valid Value:
init
,active
,configuring
,binding
,unbinding
,deleting
,finacialLocked
.
GetBasicAcceleratorsAcceleratorBasicBandwidthPackage
- Bandwidth int
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- Bandwidth
Type string - The type of the bandwidth that is provided by the basic bandwidth plan.
- Instance
Id string - The ID of the cross-region acceleration bandwidth plan.
- Bandwidth int
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- Bandwidth
Type string - The type of the bandwidth that is provided by the basic bandwidth plan.
- Instance
Id string - The ID of the cross-region acceleration bandwidth plan.
- bandwidth Integer
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- bandwidth
Type String - The type of the bandwidth that is provided by the basic bandwidth plan.
- instance
Id String - The ID of the cross-region acceleration bandwidth plan.
- bandwidth number
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- bandwidth
Type string - The type of the bandwidth that is provided by the basic bandwidth plan.
- instance
Id string - The ID of the cross-region acceleration bandwidth plan.
- bandwidth int
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- bandwidth_
type str - The type of the bandwidth that is provided by the basic bandwidth plan.
- instance_
id str - The ID of the cross-region acceleration bandwidth plan.
- bandwidth Number
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- bandwidth
Type String - The type of the bandwidth that is provided by the basic bandwidth plan.
- instance
Id String - The ID of the cross-region acceleration bandwidth plan.
GetBasicAcceleratorsAcceleratorCrossDomainBandwidthPackage
- Bandwidth int
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- Instance
Id string - The ID of the cross-region acceleration bandwidth plan.
- Bandwidth int
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- Instance
Id string - The ID of the cross-region acceleration bandwidth plan.
- bandwidth Integer
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- instance
Id String - The ID of the cross-region acceleration bandwidth plan.
- bandwidth number
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- instance
Id string - The ID of the cross-region acceleration bandwidth plan.
- bandwidth int
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- instance_
id str - The ID of the cross-region acceleration bandwidth plan.
- bandwidth Number
- The bandwidth value of the cross-region acceleration bandwidth plan. Unit: Mbit/s.
- instance
Id String - The ID of the cross-region acceleration bandwidth plan.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.