1. Packages
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. Ga2AccelerateArea
Viewing docs for tencentcloud 1.83.7
published on Tuesday, Jun 30, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.7
published on Tuesday, Jun 30, 2026 by tencentcloudstack

    Provides a resource to create a Tencent Cloud Global Accelerator V2 (GA2) accelerate area.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.Ga2GlobalAccelerator("example", {
        name: "tf-example",
        instanceChargeType: "POSTPAID",
        description: "tf example global accelerator",
        tags: {
            createdBy: "Terraform",
        },
    });
    const exampleGa2AccelerateArea = new tencentcloud.Ga2AccelerateArea("example", {
        globalAcceleratorId: example.ga2GlobalAcceleratorId,
        accelerateRegion: "ap-guangzhou",
        bandwidth: 10,
        ispType: "BGP",
        ipVersion: "IPv4",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.Ga2GlobalAccelerator("example",
        name="tf-example",
        instance_charge_type="POSTPAID",
        description="tf example global accelerator",
        tags={
            "createdBy": "Terraform",
        })
    example_ga2_accelerate_area = tencentcloud.Ga2AccelerateArea("example",
        global_accelerator_id=example.ga2_global_accelerator_id,
        accelerate_region="ap-guangzhou",
        bandwidth=10,
        isp_type="BGP",
        ip_version="IPv4")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := tencentcloud.NewGa2GlobalAccelerator(ctx, "example", &tencentcloud.Ga2GlobalAcceleratorArgs{
    			Name:               pulumi.String("tf-example"),
    			InstanceChargeType: pulumi.String("POSTPAID"),
    			Description:        pulumi.String("tf example global accelerator"),
    			Tags: pulumi.StringMap{
    				"createdBy": pulumi.String("Terraform"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = tencentcloud.NewGa2AccelerateArea(ctx, "example", &tencentcloud.Ga2AccelerateAreaArgs{
    			GlobalAcceleratorId: example.Ga2GlobalAcceleratorId,
    			AccelerateRegion:    pulumi.String("ap-guangzhou"),
    			Bandwidth:           pulumi.Float64(10),
    			IspType:             pulumi.String("BGP"),
    			IpVersion:           pulumi.String("IPv4"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.Ga2GlobalAccelerator("example", new()
        {
            Name = "tf-example",
            InstanceChargeType = "POSTPAID",
            Description = "tf example global accelerator",
            Tags = 
            {
                { "createdBy", "Terraform" },
            },
        });
    
        var exampleGa2AccelerateArea = new Tencentcloud.Ga2AccelerateArea("example", new()
        {
            GlobalAcceleratorId = example.Ga2GlobalAcceleratorId,
            AccelerateRegion = "ap-guangzhou",
            Bandwidth = 10,
            IspType = "BGP",
            IpVersion = "IPv4",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.Ga2GlobalAccelerator;
    import com.pulumi.tencentcloud.Ga2GlobalAcceleratorArgs;
    import com.pulumi.tencentcloud.Ga2AccelerateArea;
    import com.pulumi.tencentcloud.Ga2AccelerateAreaArgs;
    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 example = new Ga2GlobalAccelerator("example", Ga2GlobalAcceleratorArgs.builder()
                .name("tf-example")
                .instanceChargeType("POSTPAID")
                .description("tf example global accelerator")
                .tags(Map.of("createdBy", "Terraform"))
                .build());
    
            var exampleGa2AccelerateArea = new Ga2AccelerateArea("exampleGa2AccelerateArea", Ga2AccelerateAreaArgs.builder()
                .globalAcceleratorId(example.ga2GlobalAcceleratorId())
                .accelerateRegion("ap-guangzhou")
                .bandwidth(10.0)
                .ispType("BGP")
                .ipVersion("IPv4")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:Ga2GlobalAccelerator
        properties:
          name: tf-example
          instanceChargeType: POSTPAID
          description: tf example global accelerator
          tags:
            createdBy: Terraform
      exampleGa2AccelerateArea:
        type: tencentcloud:Ga2AccelerateArea
        name: example
        properties:
          globalAcceleratorId: ${example.ga2GlobalAcceleratorId}
          accelerateRegion: ap-guangzhou
          bandwidth: 10
          ispType: BGP
          ipVersion: IPv4
    
    Example coming soon!
    

    Create Ga2AccelerateArea Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Ga2AccelerateArea(name: string, args: Ga2AccelerateAreaArgs, opts?: CustomResourceOptions);
    @overload
    def Ga2AccelerateArea(resource_name: str,
                          args: Ga2AccelerateAreaArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def Ga2AccelerateArea(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          accelerate_region: Optional[str] = None,
                          global_accelerator_id: Optional[str] = None,
                          bandwidth: Optional[float] = None,
                          ga2_accelerate_area_id: Optional[str] = None,
                          ip_addresses: Optional[Sequence[str]] = None,
                          ip_version: Optional[str] = None,
                          isp_type: Optional[str] = None,
                          timeouts: Optional[Ga2AccelerateAreaTimeoutsArgs] = None)
    func NewGa2AccelerateArea(ctx *Context, name string, args Ga2AccelerateAreaArgs, opts ...ResourceOption) (*Ga2AccelerateArea, error)
    public Ga2AccelerateArea(string name, Ga2AccelerateAreaArgs args, CustomResourceOptions? opts = null)
    public Ga2AccelerateArea(String name, Ga2AccelerateAreaArgs args)
    public Ga2AccelerateArea(String name, Ga2AccelerateAreaArgs args, CustomResourceOptions options)
    
    type: tencentcloud:Ga2AccelerateArea
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "tencentcloud_ga2acceleratearea" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args Ga2AccelerateAreaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args Ga2AccelerateAreaArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args Ga2AccelerateAreaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Ga2AccelerateAreaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Ga2AccelerateAreaArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Ga2AccelerateArea 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 Ga2AccelerateArea resource accepts the following input properties:

    AccelerateRegion string
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    GlobalAcceleratorId string
    Global accelerator instance ID this acceleration region belongs to.
    Bandwidth double
    Acceleration bandwidth in Mbps.
    Ga2AccelerateAreaId string
    ID of the resource.
    IpAddresses List<string>
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    IpVersion string
    IP version. Only IPv4 is supported. Default: IPv4.
    IspType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    Timeouts Ga2AccelerateAreaTimeouts
    AccelerateRegion string
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    GlobalAcceleratorId string
    Global accelerator instance ID this acceleration region belongs to.
    Bandwidth float64
    Acceleration bandwidth in Mbps.
    Ga2AccelerateAreaId string
    ID of the resource.
    IpAddresses []string
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    IpVersion string
    IP version. Only IPv4 is supported. Default: IPv4.
    IspType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    Timeouts Ga2AccelerateAreaTimeoutsArgs
    accelerate_region string
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    global_accelerator_id string
    Global accelerator instance ID this acceleration region belongs to.
    bandwidth number
    Acceleration bandwidth in Mbps.
    ga2_accelerate_area_id string
    ID of the resource.
    ip_addresses list(string)
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ip_version string
    IP version. Only IPv4 is supported. Default: IPv4.
    isp_type string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts object
    accelerateRegion String
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    globalAcceleratorId String
    Global accelerator instance ID this acceleration region belongs to.
    bandwidth Double
    Acceleration bandwidth in Mbps.
    ga2AccelerateAreaId String
    ID of the resource.
    ipAddresses List<String>
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ipVersion String
    IP version. Only IPv4 is supported. Default: IPv4.
    ispType String
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts Ga2AccelerateAreaTimeouts
    accelerateRegion string
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    globalAcceleratorId string
    Global accelerator instance ID this acceleration region belongs to.
    bandwidth number
    Acceleration bandwidth in Mbps.
    ga2AccelerateAreaId string
    ID of the resource.
    ipAddresses string[]
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ipVersion string
    IP version. Only IPv4 is supported. Default: IPv4.
    ispType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts Ga2AccelerateAreaTimeouts
    accelerate_region str
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    global_accelerator_id str
    Global accelerator instance ID this acceleration region belongs to.
    bandwidth float
    Acceleration bandwidth in Mbps.
    ga2_accelerate_area_id str
    ID of the resource.
    ip_addresses Sequence[str]
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ip_version str
    IP version. Only IPv4 is supported. Default: IPv4.
    isp_type str
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts Ga2AccelerateAreaTimeoutsArgs
    accelerateRegion String
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    globalAcceleratorId String
    Global accelerator instance ID this acceleration region belongs to.
    bandwidth Number
    Acceleration bandwidth in Mbps.
    ga2AccelerateAreaId String
    ID of the resource.
    ipAddresses List<String>
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ipVersion String
    IP version. Only IPv4 is supported. Default: IPv4.
    ispType String
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts Property Map

    Outputs

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

    AcceleratorAreaId string
    Acceleration region ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    IpAddressInfoSets List<Ga2AccelerateAreaIpAddressInfoSet>
    IP address information list.
    AcceleratorAreaId string
    Acceleration region ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    IpAddressInfoSets []Ga2AccelerateAreaIpAddressInfoSet
    IP address information list.
    accelerator_area_id string
    Acceleration region ID.
    id string
    The provider-assigned unique ID for this managed resource.
    ip_address_info_sets list(object)
    IP address information list.
    acceleratorAreaId String
    Acceleration region ID.
    id String
    The provider-assigned unique ID for this managed resource.
    ipAddressInfoSets List<Ga2AccelerateAreaIpAddressInfoSet>
    IP address information list.
    acceleratorAreaId string
    Acceleration region ID.
    id string
    The provider-assigned unique ID for this managed resource.
    ipAddressInfoSets Ga2AccelerateAreaIpAddressInfoSet[]
    IP address information list.
    accelerator_area_id str
    Acceleration region ID.
    id str
    The provider-assigned unique ID for this managed resource.
    ip_address_info_sets Sequence[Ga2AccelerateAreaIpAddressInfoSet]
    IP address information list.
    acceleratorAreaId String
    Acceleration region ID.
    id String
    The provider-assigned unique ID for this managed resource.
    ipAddressInfoSets List<Property Map>
    IP address information list.

    Look up Existing Ga2AccelerateArea Resource

    Get an existing Ga2AccelerateArea 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?: Ga2AccelerateAreaState, opts?: CustomResourceOptions): Ga2AccelerateArea
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accelerate_region: Optional[str] = None,
            accelerator_area_id: Optional[str] = None,
            bandwidth: Optional[float] = None,
            ga2_accelerate_area_id: Optional[str] = None,
            global_accelerator_id: Optional[str] = None,
            ip_address_info_sets: Optional[Sequence[Ga2AccelerateAreaIpAddressInfoSetArgs]] = None,
            ip_addresses: Optional[Sequence[str]] = None,
            ip_version: Optional[str] = None,
            isp_type: Optional[str] = None,
            timeouts: Optional[Ga2AccelerateAreaTimeoutsArgs] = None) -> Ga2AccelerateArea
    func GetGa2AccelerateArea(ctx *Context, name string, id IDInput, state *Ga2AccelerateAreaState, opts ...ResourceOption) (*Ga2AccelerateArea, error)
    public static Ga2AccelerateArea Get(string name, Input<string> id, Ga2AccelerateAreaState? state, CustomResourceOptions? opts = null)
    public static Ga2AccelerateArea get(String name, Output<String> id, Ga2AccelerateAreaState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:Ga2AccelerateArea    get:      id: ${id}
    import {
      to = tencentcloud_ga2acceleratearea.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccelerateRegion string
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    AcceleratorAreaId string
    Acceleration region ID.
    Bandwidth double
    Acceleration bandwidth in Mbps.
    Ga2AccelerateAreaId string
    ID of the resource.
    GlobalAcceleratorId string
    Global accelerator instance ID this acceleration region belongs to.
    IpAddressInfoSets List<Ga2AccelerateAreaIpAddressInfoSet>
    IP address information list.
    IpAddresses List<string>
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    IpVersion string
    IP version. Only IPv4 is supported. Default: IPv4.
    IspType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    Timeouts Ga2AccelerateAreaTimeouts
    AccelerateRegion string
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    AcceleratorAreaId string
    Acceleration region ID.
    Bandwidth float64
    Acceleration bandwidth in Mbps.
    Ga2AccelerateAreaId string
    ID of the resource.
    GlobalAcceleratorId string
    Global accelerator instance ID this acceleration region belongs to.
    IpAddressInfoSets []Ga2AccelerateAreaIpAddressInfoSetArgs
    IP address information list.
    IpAddresses []string
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    IpVersion string
    IP version. Only IPv4 is supported. Default: IPv4.
    IspType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    Timeouts Ga2AccelerateAreaTimeoutsArgs
    accelerate_region string
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    accelerator_area_id string
    Acceleration region ID.
    bandwidth number
    Acceleration bandwidth in Mbps.
    ga2_accelerate_area_id string
    ID of the resource.
    global_accelerator_id string
    Global accelerator instance ID this acceleration region belongs to.
    ip_address_info_sets list(object)
    IP address information list.
    ip_addresses list(string)
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ip_version string
    IP version. Only IPv4 is supported. Default: IPv4.
    isp_type string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts object
    accelerateRegion String
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    acceleratorAreaId String
    Acceleration region ID.
    bandwidth Double
    Acceleration bandwidth in Mbps.
    ga2AccelerateAreaId String
    ID of the resource.
    globalAcceleratorId String
    Global accelerator instance ID this acceleration region belongs to.
    ipAddressInfoSets List<Ga2AccelerateAreaIpAddressInfoSet>
    IP address information list.
    ipAddresses List<String>
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ipVersion String
    IP version. Only IPv4 is supported. Default: IPv4.
    ispType String
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts Ga2AccelerateAreaTimeouts
    accelerateRegion string
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    acceleratorAreaId string
    Acceleration region ID.
    bandwidth number
    Acceleration bandwidth in Mbps.
    ga2AccelerateAreaId string
    ID of the resource.
    globalAcceleratorId string
    Global accelerator instance ID this acceleration region belongs to.
    ipAddressInfoSets Ga2AccelerateAreaIpAddressInfoSet[]
    IP address information list.
    ipAddresses string[]
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ipVersion string
    IP version. Only IPv4 is supported. Default: IPv4.
    ispType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts Ga2AccelerateAreaTimeouts
    accelerate_region str
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    accelerator_area_id str
    Acceleration region ID.
    bandwidth float
    Acceleration bandwidth in Mbps.
    ga2_accelerate_area_id str
    ID of the resource.
    global_accelerator_id str
    Global accelerator instance ID this acceleration region belongs to.
    ip_address_info_sets Sequence[Ga2AccelerateAreaIpAddressInfoSetArgs]
    IP address information list.
    ip_addresses Sequence[str]
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ip_version str
    IP version. Only IPv4 is supported. Default: IPv4.
    isp_type str
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts Ga2AccelerateAreaTimeoutsArgs
    accelerateRegion String
    Acceleration region. Serves as the natural key used to resolve the acceleration region ID after creation. Cannot be modified after creation; modifying it forces a new resource.
    acceleratorAreaId String
    Acceleration region ID.
    bandwidth Number
    Acceleration bandwidth in Mbps.
    ga2AccelerateAreaId String
    ID of the resource.
    globalAcceleratorId String
    Global accelerator instance ID this acceleration region belongs to.
    ipAddressInfoSets List<Property Map>
    IP address information list.
    ipAddresses List<String>
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ipVersion String
    IP version. Only IPv4 is supported. Default: IPv4.
    ispType String
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    timeouts Property Map

    Supporting Types

    Ga2AccelerateAreaIpAddressInfoSet, Ga2AccelerateAreaIpAddressInfoSetArgs

    IpAddress string
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    IspType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    IpAddress string
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    IspType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    ip_address string
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    isp_type string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    ipAddress String
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ispType String
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    ipAddress string
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ispType string
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    ip_address str
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    isp_type str
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.
    ipAddress String
    Bound IP address list. Treated as an unordered set; HCL element order has no semantic meaning.
    ispType String
    ISP type. Default: BGP. Besides BGP, multi-line and premium BGP ISP types are also supported; refer to the CreateAccelerateAreas API for the exact enum values.

    Ga2AccelerateAreaTimeouts, Ga2AccelerateAreaTimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create string
    delete string
    update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Import

    GA2 accelerate area can be imported using the composite id <global_accelerator_id>#<accelerator_area_id>, e.g.

    $ pulumi import tencentcloud:index/ga2AccelerateArea:Ga2AccelerateArea example ga-jg9gepn0#area-jrsub43y
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.83.7
    published on Tuesday, Jun 30, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial