tencentcloud.GaapProxy
Explore with Pulumi AI
Provides a resource to create a GAAP proxy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const foo = new tencentcloud.GaapProxy("foo", {
accessRegion: "SouthChina",
bandwidth: 10,
concurrent: 2,
realserverRegion: "NorthChina",
tags: {
test: "test",
},
});
import pulumi
import pulumi_tencentcloud as tencentcloud
foo = tencentcloud.GaapProxy("foo",
access_region="SouthChina",
bandwidth=10,
concurrent=2,
realserver_region="NorthChina",
tags={
"test": "test",
})
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 {
_, err := tencentcloud.NewGaapProxy(ctx, "foo", &tencentcloud.GaapProxyArgs{
AccessRegion: pulumi.String("SouthChina"),
Bandwidth: pulumi.Float64(10),
Concurrent: pulumi.Float64(2),
RealserverRegion: pulumi.String("NorthChina"),
Tags: pulumi.StringMap{
"test": pulumi.String("test"),
},
})
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 foo = new Tencentcloud.GaapProxy("foo", new()
{
AccessRegion = "SouthChina",
Bandwidth = 10,
Concurrent = 2,
RealserverRegion = "NorthChina",
Tags =
{
{ "test", "test" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.GaapProxy;
import com.pulumi.tencentcloud.GaapProxyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new GaapProxy("foo", GaapProxyArgs.builder()
.accessRegion("SouthChina")
.bandwidth(10)
.concurrent(2)
.realserverRegion("NorthChina")
.tags(Map.of("test", "test"))
.build());
}
}
resources:
foo:
type: tencentcloud:GaapProxy
properties:
accessRegion: SouthChina
bandwidth: 10
concurrent: 2
realserverRegion: NorthChina
tags:
test: test
Create GaapProxy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GaapProxy(name: string, args: GaapProxyArgs, opts?: CustomResourceOptions);
@overload
def GaapProxy(resource_name: str,
args: GaapProxyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GaapProxy(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_region: Optional[str] = None,
bandwidth: Optional[float] = None,
concurrent: Optional[float] = None,
realserver_region: Optional[str] = None,
enable: Optional[bool] = None,
gaap_proxy_id: Optional[str] = None,
name: Optional[str] = None,
network_type: Optional[str] = None,
project_id: Optional[float] = None,
tags: Optional[Mapping[str, str]] = None)
func NewGaapProxy(ctx *Context, name string, args GaapProxyArgs, opts ...ResourceOption) (*GaapProxy, error)
public GaapProxy(string name, GaapProxyArgs args, CustomResourceOptions? opts = null)
public GaapProxy(String name, GaapProxyArgs args)
public GaapProxy(String name, GaapProxyArgs args, CustomResourceOptions options)
type: tencentcloud:GaapProxy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GaapProxyArgs
- 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 GaapProxyArgs
- 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 GaapProxyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GaapProxyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GaapProxyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
GaapProxy 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 GaapProxy resource accepts the following input properties:
- Access
Region string - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - Bandwidth double
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - Concurrent double
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - Realserver
Region string - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - Enable bool
- Indicates whether GAAP proxy is enabled, default value is
true
. - Gaap
Proxy stringId - ID of the resource.
- Name string
- Name of the GAAP proxy, the maximum length is 30.
- Network
Type string - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - Project
Id double - ID of the project within the GAAP proxy,
0
means is default project. - Dictionary<string, string>
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- Access
Region string - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - Bandwidth float64
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - Concurrent float64
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - Realserver
Region string - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - Enable bool
- Indicates whether GAAP proxy is enabled, default value is
true
. - Gaap
Proxy stringId - ID of the resource.
- Name string
- Name of the GAAP proxy, the maximum length is 30.
- Network
Type string - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - Project
Id float64 - ID of the project within the GAAP proxy,
0
means is default project. - map[string]string
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- access
Region String - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - bandwidth Double
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - concurrent Double
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - realserver
Region String - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - enable Boolean
- Indicates whether GAAP proxy is enabled, default value is
true
. - gaap
Proxy StringId - ID of the resource.
- name String
- Name of the GAAP proxy, the maximum length is 30.
- network
Type String - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - project
Id Double - ID of the project within the GAAP proxy,
0
means is default project. - Map<String,String>
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- access
Region string - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - bandwidth number
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - concurrent number
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - realserver
Region string - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - enable boolean
- Indicates whether GAAP proxy is enabled, default value is
true
. - gaap
Proxy stringId - ID of the resource.
- name string
- Name of the GAAP proxy, the maximum length is 30.
- network
Type string - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - project
Id number - ID of the project within the GAAP proxy,
0
means is default project. - {[key: string]: string}
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- access_
region str - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - bandwidth float
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - concurrent float
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - realserver_
region str - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - enable bool
- Indicates whether GAAP proxy is enabled, default value is
true
. - gaap_
proxy_ strid - ID of the resource.
- name str
- Name of the GAAP proxy, the maximum length is 30.
- network_
type str - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - project_
id float - ID of the project within the GAAP proxy,
0
means is default project. - Mapping[str, str]
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- access
Region String - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - bandwidth Number
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - concurrent Number
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - realserver
Region String - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - enable Boolean
- Indicates whether GAAP proxy is enabled, default value is
true
. - gaap
Proxy StringId - ID of the resource.
- name String
- Name of the GAAP proxy, the maximum length is 30.
- network
Type String - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - project
Id Number - ID of the project within the GAAP proxy,
0
means is default project. - Map<String>
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
Outputs
All input properties are implicitly available as output properties. Additionally, the GaapProxy resource produces the following output properties:
- Create
Time string - Creation time of the GAAP proxy.
- Domain string
- Access domain of the GAAP proxy.
- Forward
Ip string - Forwarding IP of the GAAP proxy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip string
- Access IP of the GAAP proxy.
- Scalable bool
- Indicates whether GAAP proxy can scalable.
- Status string
- Status of the GAAP proxy.
- Support
Protocols List<string> - Supported protocols of the GAAP proxy.
- Create
Time string - Creation time of the GAAP proxy.
- Domain string
- Access domain of the GAAP proxy.
- Forward
Ip string - Forwarding IP of the GAAP proxy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip string
- Access IP of the GAAP proxy.
- Scalable bool
- Indicates whether GAAP proxy can scalable.
- Status string
- Status of the GAAP proxy.
- Support
Protocols []string - Supported protocols of the GAAP proxy.
- create
Time String - Creation time of the GAAP proxy.
- domain String
- Access domain of the GAAP proxy.
- forward
Ip String - Forwarding IP of the GAAP proxy.
- id String
- The provider-assigned unique ID for this managed resource.
- ip String
- Access IP of the GAAP proxy.
- scalable Boolean
- Indicates whether GAAP proxy can scalable.
- status String
- Status of the GAAP proxy.
- support
Protocols List<String> - Supported protocols of the GAAP proxy.
- create
Time string - Creation time of the GAAP proxy.
- domain string
- Access domain of the GAAP proxy.
- forward
Ip string - Forwarding IP of the GAAP proxy.
- id string
- The provider-assigned unique ID for this managed resource.
- ip string
- Access IP of the GAAP proxy.
- scalable boolean
- Indicates whether GAAP proxy can scalable.
- status string
- Status of the GAAP proxy.
- support
Protocols string[] - Supported protocols of the GAAP proxy.
- create_
time str - Creation time of the GAAP proxy.
- domain str
- Access domain of the GAAP proxy.
- forward_
ip str - Forwarding IP of the GAAP proxy.
- id str
- The provider-assigned unique ID for this managed resource.
- ip str
- Access IP of the GAAP proxy.
- scalable bool
- Indicates whether GAAP proxy can scalable.
- status str
- Status of the GAAP proxy.
- support_
protocols Sequence[str] - Supported protocols of the GAAP proxy.
- create
Time String - Creation time of the GAAP proxy.
- domain String
- Access domain of the GAAP proxy.
- forward
Ip String - Forwarding IP of the GAAP proxy.
- id String
- The provider-assigned unique ID for this managed resource.
- ip String
- Access IP of the GAAP proxy.
- scalable Boolean
- Indicates whether GAAP proxy can scalable.
- status String
- Status of the GAAP proxy.
- support
Protocols List<String> - Supported protocols of the GAAP proxy.
Look up Existing GaapProxy Resource
Get an existing GaapProxy 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?: GaapProxyState, opts?: CustomResourceOptions): GaapProxy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_region: Optional[str] = None,
bandwidth: Optional[float] = None,
concurrent: Optional[float] = None,
create_time: Optional[str] = None,
domain: Optional[str] = None,
enable: Optional[bool] = None,
forward_ip: Optional[str] = None,
gaap_proxy_id: Optional[str] = None,
ip: Optional[str] = None,
name: Optional[str] = None,
network_type: Optional[str] = None,
project_id: Optional[float] = None,
realserver_region: Optional[str] = None,
scalable: Optional[bool] = None,
status: Optional[str] = None,
support_protocols: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None) -> GaapProxy
func GetGaapProxy(ctx *Context, name string, id IDInput, state *GaapProxyState, opts ...ResourceOption) (*GaapProxy, error)
public static GaapProxy Get(string name, Input<string> id, GaapProxyState? state, CustomResourceOptions? opts = null)
public static GaapProxy get(String name, Output<String> id, GaapProxyState state, CustomResourceOptions options)
resources: _: type: tencentcloud:GaapProxy get: 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.
- Access
Region string - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - Bandwidth double
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - Concurrent double
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - Create
Time string - Creation time of the GAAP proxy.
- Domain string
- Access domain of the GAAP proxy.
- Enable bool
- Indicates whether GAAP proxy is enabled, default value is
true
. - Forward
Ip string - Forwarding IP of the GAAP proxy.
- Gaap
Proxy stringId - ID of the resource.
- Ip string
- Access IP of the GAAP proxy.
- Name string
- Name of the GAAP proxy, the maximum length is 30.
- Network
Type string - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - Project
Id double - ID of the project within the GAAP proxy,
0
means is default project. - Realserver
Region string - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - Scalable bool
- Indicates whether GAAP proxy can scalable.
- Status string
- Status of the GAAP proxy.
- Support
Protocols List<string> - Supported protocols of the GAAP proxy.
- Dictionary<string, string>
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- Access
Region string - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - Bandwidth float64
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - Concurrent float64
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - Create
Time string - Creation time of the GAAP proxy.
- Domain string
- Access domain of the GAAP proxy.
- Enable bool
- Indicates whether GAAP proxy is enabled, default value is
true
. - Forward
Ip string - Forwarding IP of the GAAP proxy.
- Gaap
Proxy stringId - ID of the resource.
- Ip string
- Access IP of the GAAP proxy.
- Name string
- Name of the GAAP proxy, the maximum length is 30.
- Network
Type string - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - Project
Id float64 - ID of the project within the GAAP proxy,
0
means is default project. - Realserver
Region string - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - Scalable bool
- Indicates whether GAAP proxy can scalable.
- Status string
- Status of the GAAP proxy.
- Support
Protocols []string - Supported protocols of the GAAP proxy.
- map[string]string
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- access
Region String - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - bandwidth Double
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - concurrent Double
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - create
Time String - Creation time of the GAAP proxy.
- domain String
- Access domain of the GAAP proxy.
- enable Boolean
- Indicates whether GAAP proxy is enabled, default value is
true
. - forward
Ip String - Forwarding IP of the GAAP proxy.
- gaap
Proxy StringId - ID of the resource.
- ip String
- Access IP of the GAAP proxy.
- name String
- Name of the GAAP proxy, the maximum length is 30.
- network
Type String - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - project
Id Double - ID of the project within the GAAP proxy,
0
means is default project. - realserver
Region String - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - scalable Boolean
- Indicates whether GAAP proxy can scalable.
- status String
- Status of the GAAP proxy.
- support
Protocols List<String> - Supported protocols of the GAAP proxy.
- Map<String,String>
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- access
Region string - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - bandwidth number
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - concurrent number
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - create
Time string - Creation time of the GAAP proxy.
- domain string
- Access domain of the GAAP proxy.
- enable boolean
- Indicates whether GAAP proxy is enabled, default value is
true
. - forward
Ip string - Forwarding IP of the GAAP proxy.
- gaap
Proxy stringId - ID of the resource.
- ip string
- Access IP of the GAAP proxy.
- name string
- Name of the GAAP proxy, the maximum length is 30.
- network
Type string - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - project
Id number - ID of the project within the GAAP proxy,
0
means is default project. - realserver
Region string - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - scalable boolean
- Indicates whether GAAP proxy can scalable.
- status string
- Status of the GAAP proxy.
- support
Protocols string[] - Supported protocols of the GAAP proxy.
- {[key: string]: string}
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- access_
region str - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - bandwidth float
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - concurrent float
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - create_
time str - Creation time of the GAAP proxy.
- domain str
- Access domain of the GAAP proxy.
- enable bool
- Indicates whether GAAP proxy is enabled, default value is
true
. - forward_
ip str - Forwarding IP of the GAAP proxy.
- gaap_
proxy_ strid - ID of the resource.
- ip str
- Access IP of the GAAP proxy.
- name str
- Name of the GAAP proxy, the maximum length is 30.
- network_
type str - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - project_
id float - ID of the project within the GAAP proxy,
0
means is default project. - realserver_
region str - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - scalable bool
- Indicates whether GAAP proxy can scalable.
- status str
- Status of the GAAP proxy.
- support_
protocols Sequence[str] - Supported protocols of the GAAP proxy.
- Mapping[str, str]
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
- access
Region String - Access region of the GAAP proxy. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
,Changsha
,Xian
,Wuhan
,Fuzhou
,Shenyang
,Zhengzhou
,Jinan
,Hangzhou
,Shijiazhuang
,Hefei
. - bandwidth Number
- Maximum bandwidth of the GAAP proxy, unit is Mbps. Valid value:
10
,20
,50
,100
,200
,500
,1000
,2000
,5000
and10000
. To set2000
,5000
or10000
, you need to apply for a whitelist from Tencent Cloud. - concurrent Number
- Maximum concurrency of the GAAP proxy, unit is 10k. Valid value:
2
,5
,10
,20
,30
,40
,50
,60
,70
,80
,90
,100
,150
,200
,250
and300
. To set150
,200
,250
or300
, you need to apply for a whitelist from Tencent Cloud. - create
Time String - Creation time of the GAAP proxy.
- domain String
- Access domain of the GAAP proxy.
- enable Boolean
- Indicates whether GAAP proxy is enabled, default value is
true
. - forward
Ip String - Forwarding IP of the GAAP proxy.
- gaap
Proxy StringId - ID of the resource.
- ip String
- Access IP of the GAAP proxy.
- name String
- Name of the GAAP proxy, the maximum length is 30.
- network
Type String - Network type.
normal
: regular BGP,cn2
: boutique BGP,triple
: triple play. - project
Id Number - ID of the project within the GAAP proxy,
0
means is default project. - realserver
Region String - Region of the GAAP realserver. Valid value:
Hongkong
,SoutheastAsia
,Korea
,Europe
,NorthAmerica
,Canada
,WestIndia
,Thailand
,Virginia
,Japan
,Taipei
,SL_AZURE_NorthUAE
,SL_AZURE_EastAUS
,SL_AZURE_NorthCentralUSA
,SL_AZURE_SouthIndia
,SL_AZURE_SouthBrazil
,SL_AZURE_NorthZAF
,SL_AZURE_SoutheastAsia
,SL_AZURE_CentralFrance
,SL_AZURE_SouthEngland
,SL_AZURE_EastUS
,SL_AZURE_WestUS
,SL_AZURE_SouthCentralUSA
,Jakarta
,Beijing
,Shanghai
,Guangzhou
,Chengdu
,SL_AZURE_NorwayEast
,Chongqing
,Nanjing
,SaoPaulo
,SL_AZURE_JapanEast
. - scalable Boolean
- Indicates whether GAAP proxy can scalable.
- status String
- Status of the GAAP proxy.
- support
Protocols List<String> - Supported protocols of the GAAP proxy.
- Map<String>
- Tags of the GAAP proxy. Tags that do not exist are not created automatically.
Import
GAAP proxy can be imported using the id, e.g.
$ pulumi import tencentcloud:index/gaapProxy:GaapProxy tencentcloud_gaap_proxy.foo link-11112222
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.