1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getClbInstanceDetail
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getClbInstanceDetail

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query detailed information of clb instance_detail

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const instanceDetail = tencentcloud.getClbInstanceDetail({
        targetType: "NODE",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    instance_detail = tencentcloud.get_clb_instance_detail(target_type="NODE")
    
    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.GetClbInstanceDetail(ctx, &tencentcloud.GetClbInstanceDetailArgs{
    			TargetType: pulumi.StringRef("NODE"),
    		}, nil)
    		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 instanceDetail = Tencentcloud.GetClbInstanceDetail.Invoke(new()
        {
            TargetType = "NODE",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetClbInstanceDetailArgs;
    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 instanceDetail = TencentcloudFunctions.getClbInstanceDetail(GetClbInstanceDetailArgs.builder()
                .targetType("NODE")
                .build());
    
        }
    }
    
    variables:
      instanceDetail:
        fn::invoke:
          function: tencentcloud:getClbInstanceDetail
          arguments:
            targetType: NODE
    

    Using getClbInstanceDetail

    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 getClbInstanceDetail(args: GetClbInstanceDetailArgs, opts?: InvokeOptions): Promise<GetClbInstanceDetailResult>
    function getClbInstanceDetailOutput(args: GetClbInstanceDetailOutputArgs, opts?: InvokeOptions): Output<GetClbInstanceDetailResult>
    def get_clb_instance_detail(fields: Optional[Sequence[str]] = None,
                                filters: Optional[Sequence[GetClbInstanceDetailFilter]] = None,
                                id: Optional[str] = None,
                                result_output_file: Optional[str] = None,
                                target_type: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetClbInstanceDetailResult
    def get_clb_instance_detail_output(fields: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetClbInstanceDetailFilterArgs]]]] = None,
                                id: Optional[pulumi.Input[str]] = None,
                                result_output_file: Optional[pulumi.Input[str]] = None,
                                target_type: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetClbInstanceDetailResult]
    func GetClbInstanceDetail(ctx *Context, args *GetClbInstanceDetailArgs, opts ...InvokeOption) (*GetClbInstanceDetailResult, error)
    func GetClbInstanceDetailOutput(ctx *Context, args *GetClbInstanceDetailOutputArgs, opts ...InvokeOption) GetClbInstanceDetailResultOutput

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

    public static class GetClbInstanceDetail 
    {
        public static Task<GetClbInstanceDetailResult> InvokeAsync(GetClbInstanceDetailArgs args, InvokeOptions? opts = null)
        public static Output<GetClbInstanceDetailResult> Invoke(GetClbInstanceDetailInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetClbInstanceDetailResult> getClbInstanceDetail(GetClbInstanceDetailArgs args, InvokeOptions options)
    public static Output<GetClbInstanceDetailResult> getClbInstanceDetail(GetClbInstanceDetailArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getClbInstanceDetail:getClbInstanceDetail
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Fields List<string>
    List of fields. Only fields specified will be returned. If it's left blank, null is returned. The fields LoadBalancerId and LoadBalancerName are added by default. For details about fields.
    Filters List<GetClbInstanceDetailFilter>
    Filter condition of querying lists describing CLB instance details:loadbalancer-id - String - Required: no - (Filter condition) CLB instance ID, such as lb-12345678; project-id - String - Required: no - (Filter condition) Project ID, such as 0 and 123; network - String - Required: no - (Filter condition) Network type of the CLB instance, such as Public and Private.&lt;/li&gt;&lt;li&gt; vip - String - Required: no - (Filter condition) CLB instance VIP, such as 1.1.1.1 and 2204::22:3; target-ip - String - Required: no - (Filter condition) Private IP of the target real servers, such as1.1.1.1 and 2203::214:4; vpcid - String - Required: no - (Filter condition) Identifier of the VPC instance to which the CLB instance belongs, such as vpc-12345678; zone - String - Required: no - (Filter condition) Availability zone where the CLB instance resides, such as ap-guangzhou-1; tag-key - String - Required: no - (Filter condition) Tag key of the CLB instance, such as name; tag:* - String - Required: no - (Filter condition) CLB instance tag, followed by tag key after the colon. For example, use {Name: tag:name,Values: [zhangsan, lisi]} to filter the tag key name with the tag value zhangsan and lisi; fuzzy-search - String - Required: no - (Filter condition) Fuzzy search for CLB instance VIP and CLB instance name, such as 1.
    Id string
    ResultOutputFile string
    Used to save results.
    TargetType string
    Target type. Valid values: NODE and GROUP. If the list of fields contains TargetId, TargetAddress, TargetPort, TargetWeight and other fields, Target of the target group or non-target group must be exported.
    Fields []string
    List of fields. Only fields specified will be returned. If it's left blank, null is returned. The fields LoadBalancerId and LoadBalancerName are added by default. For details about fields.
    Filters []GetClbInstanceDetailFilter
    Filter condition of querying lists describing CLB instance details:loadbalancer-id - String - Required: no - (Filter condition) CLB instance ID, such as lb-12345678; project-id - String - Required: no - (Filter condition) Project ID, such as 0 and 123; network - String - Required: no - (Filter condition) Network type of the CLB instance, such as Public and Private.&lt;/li&gt;&lt;li&gt; vip - String - Required: no - (Filter condition) CLB instance VIP, such as 1.1.1.1 and 2204::22:3; target-ip - String - Required: no - (Filter condition) Private IP of the target real servers, such as1.1.1.1 and 2203::214:4; vpcid - String - Required: no - (Filter condition) Identifier of the VPC instance to which the CLB instance belongs, such as vpc-12345678; zone - String - Required: no - (Filter condition) Availability zone where the CLB instance resides, such as ap-guangzhou-1; tag-key - String - Required: no - (Filter condition) Tag key of the CLB instance, such as name; tag:* - String - Required: no - (Filter condition) CLB instance tag, followed by tag key after the colon. For example, use {Name: tag:name,Values: [zhangsan, lisi]} to filter the tag key name with the tag value zhangsan and lisi; fuzzy-search - String - Required: no - (Filter condition) Fuzzy search for CLB instance VIP and CLB instance name, such as 1.
    Id string
    ResultOutputFile string
    Used to save results.
    TargetType string
    Target type. Valid values: NODE and GROUP. If the list of fields contains TargetId, TargetAddress, TargetPort, TargetWeight and other fields, Target of the target group or non-target group must be exported.
    fields List<String>
    List of fields. Only fields specified will be returned. If it's left blank, null is returned. The fields LoadBalancerId and LoadBalancerName are added by default. For details about fields.
    filters List<GetClbInstanceDetailFilter>
    Filter condition of querying lists describing CLB instance details:loadbalancer-id - String - Required: no - (Filter condition) CLB instance ID, such as lb-12345678; project-id - String - Required: no - (Filter condition) Project ID, such as 0 and 123; network - String - Required: no - (Filter condition) Network type of the CLB instance, such as Public and Private.&lt;/li&gt;&lt;li&gt; vip - String - Required: no - (Filter condition) CLB instance VIP, such as 1.1.1.1 and 2204::22:3; target-ip - String - Required: no - (Filter condition) Private IP of the target real servers, such as1.1.1.1 and 2203::214:4; vpcid - String - Required: no - (Filter condition) Identifier of the VPC instance to which the CLB instance belongs, such as vpc-12345678; zone - String - Required: no - (Filter condition) Availability zone where the CLB instance resides, such as ap-guangzhou-1; tag-key - String - Required: no - (Filter condition) Tag key of the CLB instance, such as name; tag:* - String - Required: no - (Filter condition) CLB instance tag, followed by tag key after the colon. For example, use {Name: tag:name,Values: [zhangsan, lisi]} to filter the tag key name with the tag value zhangsan and lisi; fuzzy-search - String - Required: no - (Filter condition) Fuzzy search for CLB instance VIP and CLB instance name, such as 1.
    id String
    resultOutputFile String
    Used to save results.
    targetType String
    Target type. Valid values: NODE and GROUP. If the list of fields contains TargetId, TargetAddress, TargetPort, TargetWeight and other fields, Target of the target group or non-target group must be exported.
    fields string[]
    List of fields. Only fields specified will be returned. If it's left blank, null is returned. The fields LoadBalancerId and LoadBalancerName are added by default. For details about fields.
    filters GetClbInstanceDetailFilter[]
    Filter condition of querying lists describing CLB instance details:loadbalancer-id - String - Required: no - (Filter condition) CLB instance ID, such as lb-12345678; project-id - String - Required: no - (Filter condition) Project ID, such as 0 and 123; network - String - Required: no - (Filter condition) Network type of the CLB instance, such as Public and Private.&lt;/li&gt;&lt;li&gt; vip - String - Required: no - (Filter condition) CLB instance VIP, such as 1.1.1.1 and 2204::22:3; target-ip - String - Required: no - (Filter condition) Private IP of the target real servers, such as1.1.1.1 and 2203::214:4; vpcid - String - Required: no - (Filter condition) Identifier of the VPC instance to which the CLB instance belongs, such as vpc-12345678; zone - String - Required: no - (Filter condition) Availability zone where the CLB instance resides, such as ap-guangzhou-1; tag-key - String - Required: no - (Filter condition) Tag key of the CLB instance, such as name; tag:* - String - Required: no - (Filter condition) CLB instance tag, followed by tag key after the colon. For example, use {Name: tag:name,Values: [zhangsan, lisi]} to filter the tag key name with the tag value zhangsan and lisi; fuzzy-search - String - Required: no - (Filter condition) Fuzzy search for CLB instance VIP and CLB instance name, such as 1.
    id string
    resultOutputFile string
    Used to save results.
    targetType string
    Target type. Valid values: NODE and GROUP. If the list of fields contains TargetId, TargetAddress, TargetPort, TargetWeight and other fields, Target of the target group or non-target group must be exported.
    fields Sequence[str]
    List of fields. Only fields specified will be returned. If it's left blank, null is returned. The fields LoadBalancerId and LoadBalancerName are added by default. For details about fields.
    filters Sequence[GetClbInstanceDetailFilter]
    Filter condition of querying lists describing CLB instance details:loadbalancer-id - String - Required: no - (Filter condition) CLB instance ID, such as lb-12345678; project-id - String - Required: no - (Filter condition) Project ID, such as 0 and 123; network - String - Required: no - (Filter condition) Network type of the CLB instance, such as Public and Private.&lt;/li&gt;&lt;li&gt; vip - String - Required: no - (Filter condition) CLB instance VIP, such as 1.1.1.1 and 2204::22:3; target-ip - String - Required: no - (Filter condition) Private IP of the target real servers, such as1.1.1.1 and 2203::214:4; vpcid - String - Required: no - (Filter condition) Identifier of the VPC instance to which the CLB instance belongs, such as vpc-12345678; zone - String - Required: no - (Filter condition) Availability zone where the CLB instance resides, such as ap-guangzhou-1; tag-key - String - Required: no - (Filter condition) Tag key of the CLB instance, such as name; tag:* - String - Required: no - (Filter condition) CLB instance tag, followed by tag key after the colon. For example, use {Name: tag:name,Values: [zhangsan, lisi]} to filter the tag key name with the tag value zhangsan and lisi; fuzzy-search - String - Required: no - (Filter condition) Fuzzy search for CLB instance VIP and CLB instance name, such as 1.
    id str
    result_output_file str
    Used to save results.
    target_type str
    Target type. Valid values: NODE and GROUP. If the list of fields contains TargetId, TargetAddress, TargetPort, TargetWeight and other fields, Target of the target group or non-target group must be exported.
    fields List<String>
    List of fields. Only fields specified will be returned. If it's left blank, null is returned. The fields LoadBalancerId and LoadBalancerName are added by default. For details about fields.
    filters List<Property Map>
    Filter condition of querying lists describing CLB instance details:loadbalancer-id - String - Required: no - (Filter condition) CLB instance ID, such as lb-12345678; project-id - String - Required: no - (Filter condition) Project ID, such as 0 and 123; network - String - Required: no - (Filter condition) Network type of the CLB instance, such as Public and Private.&lt;/li&gt;&lt;li&gt; vip - String - Required: no - (Filter condition) CLB instance VIP, such as 1.1.1.1 and 2204::22:3; target-ip - String - Required: no - (Filter condition) Private IP of the target real servers, such as1.1.1.1 and 2203::214:4; vpcid - String - Required: no - (Filter condition) Identifier of the VPC instance to which the CLB instance belongs, such as vpc-12345678; zone - String - Required: no - (Filter condition) Availability zone where the CLB instance resides, such as ap-guangzhou-1; tag-key - String - Required: no - (Filter condition) Tag key of the CLB instance, such as name; tag:* - String - Required: no - (Filter condition) CLB instance tag, followed by tag key after the colon. For example, use {Name: tag:name,Values: [zhangsan, lisi]} to filter the tag key name with the tag value zhangsan and lisi; fuzzy-search - String - Required: no - (Filter condition) Fuzzy search for CLB instance VIP and CLB instance name, such as 1.
    id String
    resultOutputFile String
    Used to save results.
    targetType String
    Target type. Valid values: NODE and GROUP. If the list of fields contains TargetId, TargetAddress, TargetPort, TargetWeight and other fields, Target of the target group or non-target group must be exported.

    getClbInstanceDetail Result

    The following output properties are available:

    Id string
    LoadBalancerDetailSets List<GetClbInstanceDetailLoadBalancerDetailSet>
    List of CLB instance details.Note: this field may return null, indicating that no valid values can be obtained.
    Fields List<string>
    Filters List<GetClbInstanceDetailFilter>
    ResultOutputFile string
    TargetType string
    Id string
    LoadBalancerDetailSets []GetClbInstanceDetailLoadBalancerDetailSet
    List of CLB instance details.Note: this field may return null, indicating that no valid values can be obtained.
    Fields []string
    Filters []GetClbInstanceDetailFilter
    ResultOutputFile string
    TargetType string
    id String
    loadBalancerDetailSets List<GetClbInstanceDetailLoadBalancerDetailSet>
    List of CLB instance details.Note: this field may return null, indicating that no valid values can be obtained.
    fields List<String>
    filters List<GetClbInstanceDetailFilter>
    resultOutputFile String
    targetType String
    id string
    loadBalancerDetailSets GetClbInstanceDetailLoadBalancerDetailSet[]
    List of CLB instance details.Note: this field may return null, indicating that no valid values can be obtained.
    fields string[]
    filters GetClbInstanceDetailFilter[]
    resultOutputFile string
    targetType string
    id str
    load_balancer_detail_sets Sequence[GetClbInstanceDetailLoadBalancerDetailSet]
    List of CLB instance details.Note: this field may return null, indicating that no valid values can be obtained.
    fields Sequence[str]
    filters Sequence[GetClbInstanceDetailFilter]
    result_output_file str
    target_type str
    id String
    loadBalancerDetailSets List<Property Map>
    List of CLB instance details.Note: this field may return null, indicating that no valid values can be obtained.
    fields List<String>
    filters List<Property Map>
    resultOutputFile String
    targetType String

    Supporting Types

    GetClbInstanceDetailFilter

    Name string
    Filter name.
    Values List<string>
    Filter value array.
    Name string
    Filter name.
    Values []string
    Filter value array.
    name String
    Filter name.
    values List<String>
    Filter value array.
    name string
    Filter name.
    values string[]
    Filter value array.
    name str
    Filter name.
    values Sequence[str]
    Filter value array.
    name String
    Filter name.
    values List<String>
    Filter value array.

    GetClbInstanceDetailLoadBalancerDetailSet

    Address string
    CLB instance VIP.Note: this field may return null, indicating that no valid values can be obtained.
    AddressIpVersion string
    IP version of the CLB instance. Valid values: IPv4, IPv6.Note: this field may return null, indicating that no valid values can be obtained.
    AddressIpv6 string
    IPv6 VIP address of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    AddressIsp string
    ISP to which the CLB IP address belongs.Note: this field may return null, indicating that no valid values can be obtained.
    ChargeType string
    CLB instance billing mode.Note: this field may return null, indicating that no valid values can be obtained.
    ConfigId string
    Custom configuration IDs of CLB instances. Multiple IDs must be separated by commas (,).Note: This field may return null, indicating that no valid values can be obtained.
    CreateTime string
    CLB instance creation time.Note: this field may return null, indicating that no valid values can be obtained.
    Domain string
    Domain name of the forwarding rule.Note: this field may return null, indicating that no valid values can be obtained.
    Domains string
    List o domain names associated with the forwarding ruleNote: This field may return null, indicating that no valid values can be obtained.
    ExtraInfos List<GetClbInstanceDetailLoadBalancerDetailSetExtraInfo>
    Reserved field, which can be ignored generally.Note: this field may return null, indicating that no valid values can be obtained.
    Ipv6Mode string
    IPv6 address type of the CLB instance. Valid values: IPv6Nat64, IPv6FullChain.Note: this field may return null, indicating that no valid values can be obtained.
    Isolation double
    0: not isolated; 1: isolated.Note: this field may return null, indicating that no valid values can be obtained.
    ListenerId string
    CLB listener ID.Note: this field may return null, indicating that no valid values can be obtained.
    LoadBalancerDomain string
    Domain name of the CLB instance.Note: This field may return null, indicating that no valid values can be obtained.
    LoadBalancerId string
    CLB instance ID.
    LoadBalancerName string
    CLB instance name.
    LoadBalancerPassToTarget double
    Whether the CLB instance is billed by IP.Note: this field may return null, indicating that no valid values can be obtained.
    LoadBalancerType string
    CLB instance network type:Public: public network; Private: private network.Note: this field may return null, indicating that no valid values can be obtained.
    LocationId string
    Forwarding rule ID.Note: this field may return null, indicating that no valid values can be obtained.
    NetworkAttributes List<GetClbInstanceDetailLoadBalancerDetailSetNetworkAttribute>
    CLB instance network attribute.Note: this field may return null, indicating that no valid values can be obtained.
    Port double
    Listener port.Note: this field may return null, indicating that no valid values can be obtained.
    PrepaidAttributes List<GetClbInstanceDetailLoadBalancerDetailSetPrepaidAttribute>
    Pay-as-you-go attribute of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    ProjectId double
    ID of the project to which the CLB instance belongs. 0: default project.Note: this field may return null, indicating that no valid values can be obtained.
    Protocol string
    Listener protocol.Note: this field may return null, indicating that no valid values can be obtained.
    SecurityGroups List<string>
    List of the security groups bound to the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    SlaveZones List<string>
    The secondary zone of multi-AZ CLB instanceNote: This field may return null, indicating that no valid values can be obtained.
    SniSwitch double
    Whether SNI is enabled. This parameter is only meaningful for HTTPS listeners.Note: This field may return null, indicating that no valid values can be obtained.
    Status double
    CLB instance status, including:0: creating; 1: running.Note: this field may return null, indicating that no valid values can be obtained.
    Tags List<GetClbInstanceDetailLoadBalancerDetailSetTag>
    CLB instance tag information.Note: this field may return null, indicating that no valid values can be obtained.
    TargetAddress string
    Address of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    TargetHealth string
    Health status of the target real server.Note: this field may return null, indicating that no valid values can be obtained.
    TargetId string
    ID of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    TargetPort double
    Listening port of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    TargetWeight double
    Forwarding weight of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    Url string
    Forwarding rule path.Note: this field may return null, indicating that no valid values can be obtained.
    VpcId string
    ID of the VPC instance to which the CLB instance belongs.Note: this field may return null, indicating that no valid values can be obtained.
    Zone string
    Availability zone where the CLB instance resides.Note: this field may return null, indicating that no valid values can be obtained.
    Zones List<string>
    The AZ of private CLB instance. This is only available for beta users.Note: This field may return null, indicating that no valid values can be obtained.
    Address string
    CLB instance VIP.Note: this field may return null, indicating that no valid values can be obtained.
    AddressIpVersion string
    IP version of the CLB instance. Valid values: IPv4, IPv6.Note: this field may return null, indicating that no valid values can be obtained.
    AddressIpv6 string
    IPv6 VIP address of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    AddressIsp string
    ISP to which the CLB IP address belongs.Note: this field may return null, indicating that no valid values can be obtained.
    ChargeType string
    CLB instance billing mode.Note: this field may return null, indicating that no valid values can be obtained.
    ConfigId string
    Custom configuration IDs of CLB instances. Multiple IDs must be separated by commas (,).Note: This field may return null, indicating that no valid values can be obtained.
    CreateTime string
    CLB instance creation time.Note: this field may return null, indicating that no valid values can be obtained.
    Domain string
    Domain name of the forwarding rule.Note: this field may return null, indicating that no valid values can be obtained.
    Domains string
    List o domain names associated with the forwarding ruleNote: This field may return null, indicating that no valid values can be obtained.
    ExtraInfos []GetClbInstanceDetailLoadBalancerDetailSetExtraInfo
    Reserved field, which can be ignored generally.Note: this field may return null, indicating that no valid values can be obtained.
    Ipv6Mode string
    IPv6 address type of the CLB instance. Valid values: IPv6Nat64, IPv6FullChain.Note: this field may return null, indicating that no valid values can be obtained.
    Isolation float64
    0: not isolated; 1: isolated.Note: this field may return null, indicating that no valid values can be obtained.
    ListenerId string
    CLB listener ID.Note: this field may return null, indicating that no valid values can be obtained.
    LoadBalancerDomain string
    Domain name of the CLB instance.Note: This field may return null, indicating that no valid values can be obtained.
    LoadBalancerId string
    CLB instance ID.
    LoadBalancerName string
    CLB instance name.
    LoadBalancerPassToTarget float64
    Whether the CLB instance is billed by IP.Note: this field may return null, indicating that no valid values can be obtained.
    LoadBalancerType string
    CLB instance network type:Public: public network; Private: private network.Note: this field may return null, indicating that no valid values can be obtained.
    LocationId string
    Forwarding rule ID.Note: this field may return null, indicating that no valid values can be obtained.
    NetworkAttributes []GetClbInstanceDetailLoadBalancerDetailSetNetworkAttribute
    CLB instance network attribute.Note: this field may return null, indicating that no valid values can be obtained.
    Port float64
    Listener port.Note: this field may return null, indicating that no valid values can be obtained.
    PrepaidAttributes []GetClbInstanceDetailLoadBalancerDetailSetPrepaidAttribute
    Pay-as-you-go attribute of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    ProjectId float64
    ID of the project to which the CLB instance belongs. 0: default project.Note: this field may return null, indicating that no valid values can be obtained.
    Protocol string
    Listener protocol.Note: this field may return null, indicating that no valid values can be obtained.
    SecurityGroups []string
    List of the security groups bound to the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    SlaveZones []string
    The secondary zone of multi-AZ CLB instanceNote: This field may return null, indicating that no valid values can be obtained.
    SniSwitch float64
    Whether SNI is enabled. This parameter is only meaningful for HTTPS listeners.Note: This field may return null, indicating that no valid values can be obtained.
    Status float64
    CLB instance status, including:0: creating; 1: running.Note: this field may return null, indicating that no valid values can be obtained.
    Tags []GetClbInstanceDetailLoadBalancerDetailSetTag
    CLB instance tag information.Note: this field may return null, indicating that no valid values can be obtained.
    TargetAddress string
    Address of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    TargetHealth string
    Health status of the target real server.Note: this field may return null, indicating that no valid values can be obtained.
    TargetId string
    ID of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    TargetPort float64
    Listening port of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    TargetWeight float64
    Forwarding weight of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    Url string
    Forwarding rule path.Note: this field may return null, indicating that no valid values can be obtained.
    VpcId string
    ID of the VPC instance to which the CLB instance belongs.Note: this field may return null, indicating that no valid values can be obtained.
    Zone string
    Availability zone where the CLB instance resides.Note: this field may return null, indicating that no valid values can be obtained.
    Zones []string
    The AZ of private CLB instance. This is only available for beta users.Note: This field may return null, indicating that no valid values can be obtained.
    address String
    CLB instance VIP.Note: this field may return null, indicating that no valid values can be obtained.
    addressIpVersion String
    IP version of the CLB instance. Valid values: IPv4, IPv6.Note: this field may return null, indicating that no valid values can be obtained.
    addressIpv6 String
    IPv6 VIP address of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    addressIsp String
    ISP to which the CLB IP address belongs.Note: this field may return null, indicating that no valid values can be obtained.
    chargeType String
    CLB instance billing mode.Note: this field may return null, indicating that no valid values can be obtained.
    configId String
    Custom configuration IDs of CLB instances. Multiple IDs must be separated by commas (,).Note: This field may return null, indicating that no valid values can be obtained.
    createTime String
    CLB instance creation time.Note: this field may return null, indicating that no valid values can be obtained.
    domain String
    Domain name of the forwarding rule.Note: this field may return null, indicating that no valid values can be obtained.
    domains String
    List o domain names associated with the forwarding ruleNote: This field may return null, indicating that no valid values can be obtained.
    extraInfos List<GetClbInstanceDetailLoadBalancerDetailSetExtraInfo>
    Reserved field, which can be ignored generally.Note: this field may return null, indicating that no valid values can be obtained.
    ipv6Mode String
    IPv6 address type of the CLB instance. Valid values: IPv6Nat64, IPv6FullChain.Note: this field may return null, indicating that no valid values can be obtained.
    isolation Double
    0: not isolated; 1: isolated.Note: this field may return null, indicating that no valid values can be obtained.
    listenerId String
    CLB listener ID.Note: this field may return null, indicating that no valid values can be obtained.
    loadBalancerDomain String
    Domain name of the CLB instance.Note: This field may return null, indicating that no valid values can be obtained.
    loadBalancerId String
    CLB instance ID.
    loadBalancerName String
    CLB instance name.
    loadBalancerPassToTarget Double
    Whether the CLB instance is billed by IP.Note: this field may return null, indicating that no valid values can be obtained.
    loadBalancerType String
    CLB instance network type:Public: public network; Private: private network.Note: this field may return null, indicating that no valid values can be obtained.
    locationId String
    Forwarding rule ID.Note: this field may return null, indicating that no valid values can be obtained.
    networkAttributes List<GetClbInstanceDetailLoadBalancerDetailSetNetworkAttribute>
    CLB instance network attribute.Note: this field may return null, indicating that no valid values can be obtained.
    port Double
    Listener port.Note: this field may return null, indicating that no valid values can be obtained.
    prepaidAttributes List<GetClbInstanceDetailLoadBalancerDetailSetPrepaidAttribute>
    Pay-as-you-go attribute of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    projectId Double
    ID of the project to which the CLB instance belongs. 0: default project.Note: this field may return null, indicating that no valid values can be obtained.
    protocol String
    Listener protocol.Note: this field may return null, indicating that no valid values can be obtained.
    securityGroups List<String>
    List of the security groups bound to the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    slaveZones List<String>
    The secondary zone of multi-AZ CLB instanceNote: This field may return null, indicating that no valid values can be obtained.
    sniSwitch Double
    Whether SNI is enabled. This parameter is only meaningful for HTTPS listeners.Note: This field may return null, indicating that no valid values can be obtained.
    status Double
    CLB instance status, including:0: creating; 1: running.Note: this field may return null, indicating that no valid values can be obtained.
    tags List<GetClbInstanceDetailLoadBalancerDetailSetTag>
    CLB instance tag information.Note: this field may return null, indicating that no valid values can be obtained.
    targetAddress String
    Address of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetHealth String
    Health status of the target real server.Note: this field may return null, indicating that no valid values can be obtained.
    targetId String
    ID of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetPort Double
    Listening port of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetWeight Double
    Forwarding weight of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    url String
    Forwarding rule path.Note: this field may return null, indicating that no valid values can be obtained.
    vpcId String
    ID of the VPC instance to which the CLB instance belongs.Note: this field may return null, indicating that no valid values can be obtained.
    zone String
    Availability zone where the CLB instance resides.Note: this field may return null, indicating that no valid values can be obtained.
    zones List<String>
    The AZ of private CLB instance. This is only available for beta users.Note: This field may return null, indicating that no valid values can be obtained.
    address string
    CLB instance VIP.Note: this field may return null, indicating that no valid values can be obtained.
    addressIpVersion string
    IP version of the CLB instance. Valid values: IPv4, IPv6.Note: this field may return null, indicating that no valid values can be obtained.
    addressIpv6 string
    IPv6 VIP address of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    addressIsp string
    ISP to which the CLB IP address belongs.Note: this field may return null, indicating that no valid values can be obtained.
    chargeType string
    CLB instance billing mode.Note: this field may return null, indicating that no valid values can be obtained.
    configId string
    Custom configuration IDs of CLB instances. Multiple IDs must be separated by commas (,).Note: This field may return null, indicating that no valid values can be obtained.
    createTime string
    CLB instance creation time.Note: this field may return null, indicating that no valid values can be obtained.
    domain string
    Domain name of the forwarding rule.Note: this field may return null, indicating that no valid values can be obtained.
    domains string
    List o domain names associated with the forwarding ruleNote: This field may return null, indicating that no valid values can be obtained.
    extraInfos GetClbInstanceDetailLoadBalancerDetailSetExtraInfo[]
    Reserved field, which can be ignored generally.Note: this field may return null, indicating that no valid values can be obtained.
    ipv6Mode string
    IPv6 address type of the CLB instance. Valid values: IPv6Nat64, IPv6FullChain.Note: this field may return null, indicating that no valid values can be obtained.
    isolation number
    0: not isolated; 1: isolated.Note: this field may return null, indicating that no valid values can be obtained.
    listenerId string
    CLB listener ID.Note: this field may return null, indicating that no valid values can be obtained.
    loadBalancerDomain string
    Domain name of the CLB instance.Note: This field may return null, indicating that no valid values can be obtained.
    loadBalancerId string
    CLB instance ID.
    loadBalancerName string
    CLB instance name.
    loadBalancerPassToTarget number
    Whether the CLB instance is billed by IP.Note: this field may return null, indicating that no valid values can be obtained.
    loadBalancerType string
    CLB instance network type:Public: public network; Private: private network.Note: this field may return null, indicating that no valid values can be obtained.
    locationId string
    Forwarding rule ID.Note: this field may return null, indicating that no valid values can be obtained.
    networkAttributes GetClbInstanceDetailLoadBalancerDetailSetNetworkAttribute[]
    CLB instance network attribute.Note: this field may return null, indicating that no valid values can be obtained.
    port number
    Listener port.Note: this field may return null, indicating that no valid values can be obtained.
    prepaidAttributes GetClbInstanceDetailLoadBalancerDetailSetPrepaidAttribute[]
    Pay-as-you-go attribute of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    projectId number
    ID of the project to which the CLB instance belongs. 0: default project.Note: this field may return null, indicating that no valid values can be obtained.
    protocol string
    Listener protocol.Note: this field may return null, indicating that no valid values can be obtained.
    securityGroups string[]
    List of the security groups bound to the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    slaveZones string[]
    The secondary zone of multi-AZ CLB instanceNote: This field may return null, indicating that no valid values can be obtained.
    sniSwitch number
    Whether SNI is enabled. This parameter is only meaningful for HTTPS listeners.Note: This field may return null, indicating that no valid values can be obtained.
    status number
    CLB instance status, including:0: creating; 1: running.Note: this field may return null, indicating that no valid values can be obtained.
    tags GetClbInstanceDetailLoadBalancerDetailSetTag[]
    CLB instance tag information.Note: this field may return null, indicating that no valid values can be obtained.
    targetAddress string
    Address of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetHealth string
    Health status of the target real server.Note: this field may return null, indicating that no valid values can be obtained.
    targetId string
    ID of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetPort number
    Listening port of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetWeight number
    Forwarding weight of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    url string
    Forwarding rule path.Note: this field may return null, indicating that no valid values can be obtained.
    vpcId string
    ID of the VPC instance to which the CLB instance belongs.Note: this field may return null, indicating that no valid values can be obtained.
    zone string
    Availability zone where the CLB instance resides.Note: this field may return null, indicating that no valid values can be obtained.
    zones string[]
    The AZ of private CLB instance. This is only available for beta users.Note: This field may return null, indicating that no valid values can be obtained.
    address str
    CLB instance VIP.Note: this field may return null, indicating that no valid values can be obtained.
    address_ip_version str
    IP version of the CLB instance. Valid values: IPv4, IPv6.Note: this field may return null, indicating that no valid values can be obtained.
    address_ipv6 str
    IPv6 VIP address of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    address_isp str
    ISP to which the CLB IP address belongs.Note: this field may return null, indicating that no valid values can be obtained.
    charge_type str
    CLB instance billing mode.Note: this field may return null, indicating that no valid values can be obtained.
    config_id str
    Custom configuration IDs of CLB instances. Multiple IDs must be separated by commas (,).Note: This field may return null, indicating that no valid values can be obtained.
    create_time str
    CLB instance creation time.Note: this field may return null, indicating that no valid values can be obtained.
    domain str
    Domain name of the forwarding rule.Note: this field may return null, indicating that no valid values can be obtained.
    domains str
    List o domain names associated with the forwarding ruleNote: This field may return null, indicating that no valid values can be obtained.
    extra_infos Sequence[GetClbInstanceDetailLoadBalancerDetailSetExtraInfo]
    Reserved field, which can be ignored generally.Note: this field may return null, indicating that no valid values can be obtained.
    ipv6_mode str
    IPv6 address type of the CLB instance. Valid values: IPv6Nat64, IPv6FullChain.Note: this field may return null, indicating that no valid values can be obtained.
    isolation float
    0: not isolated; 1: isolated.Note: this field may return null, indicating that no valid values can be obtained.
    listener_id str
    CLB listener ID.Note: this field may return null, indicating that no valid values can be obtained.
    load_balancer_domain str
    Domain name of the CLB instance.Note: This field may return null, indicating that no valid values can be obtained.
    load_balancer_id str
    CLB instance ID.
    load_balancer_name str
    CLB instance name.
    load_balancer_pass_to_target float
    Whether the CLB instance is billed by IP.Note: this field may return null, indicating that no valid values can be obtained.
    load_balancer_type str
    CLB instance network type:Public: public network; Private: private network.Note: this field may return null, indicating that no valid values can be obtained.
    location_id str
    Forwarding rule ID.Note: this field may return null, indicating that no valid values can be obtained.
    network_attributes Sequence[GetClbInstanceDetailLoadBalancerDetailSetNetworkAttribute]
    CLB instance network attribute.Note: this field may return null, indicating that no valid values can be obtained.
    port float
    Listener port.Note: this field may return null, indicating that no valid values can be obtained.
    prepaid_attributes Sequence[GetClbInstanceDetailLoadBalancerDetailSetPrepaidAttribute]
    Pay-as-you-go attribute of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    project_id float
    ID of the project to which the CLB instance belongs. 0: default project.Note: this field may return null, indicating that no valid values can be obtained.
    protocol str
    Listener protocol.Note: this field may return null, indicating that no valid values can be obtained.
    security_groups Sequence[str]
    List of the security groups bound to the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    slave_zones Sequence[str]
    The secondary zone of multi-AZ CLB instanceNote: This field may return null, indicating that no valid values can be obtained.
    sni_switch float
    Whether SNI is enabled. This parameter is only meaningful for HTTPS listeners.Note: This field may return null, indicating that no valid values can be obtained.
    status float
    CLB instance status, including:0: creating; 1: running.Note: this field may return null, indicating that no valid values can be obtained.
    tags Sequence[GetClbInstanceDetailLoadBalancerDetailSetTag]
    CLB instance tag information.Note: this field may return null, indicating that no valid values can be obtained.
    target_address str
    Address of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    target_health str
    Health status of the target real server.Note: this field may return null, indicating that no valid values can be obtained.
    target_id str
    ID of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    target_port float
    Listening port of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    target_weight float
    Forwarding weight of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    url str
    Forwarding rule path.Note: this field may return null, indicating that no valid values can be obtained.
    vpc_id str
    ID of the VPC instance to which the CLB instance belongs.Note: this field may return null, indicating that no valid values can be obtained.
    zone str
    Availability zone where the CLB instance resides.Note: this field may return null, indicating that no valid values can be obtained.
    zones Sequence[str]
    The AZ of private CLB instance. This is only available for beta users.Note: This field may return null, indicating that no valid values can be obtained.
    address String
    CLB instance VIP.Note: this field may return null, indicating that no valid values can be obtained.
    addressIpVersion String
    IP version of the CLB instance. Valid values: IPv4, IPv6.Note: this field may return null, indicating that no valid values can be obtained.
    addressIpv6 String
    IPv6 VIP address of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    addressIsp String
    ISP to which the CLB IP address belongs.Note: this field may return null, indicating that no valid values can be obtained.
    chargeType String
    CLB instance billing mode.Note: this field may return null, indicating that no valid values can be obtained.
    configId String
    Custom configuration IDs of CLB instances. Multiple IDs must be separated by commas (,).Note: This field may return null, indicating that no valid values can be obtained.
    createTime String
    CLB instance creation time.Note: this field may return null, indicating that no valid values can be obtained.
    domain String
    Domain name of the forwarding rule.Note: this field may return null, indicating that no valid values can be obtained.
    domains String
    List o domain names associated with the forwarding ruleNote: This field may return null, indicating that no valid values can be obtained.
    extraInfos List<Property Map>
    Reserved field, which can be ignored generally.Note: this field may return null, indicating that no valid values can be obtained.
    ipv6Mode String
    IPv6 address type of the CLB instance. Valid values: IPv6Nat64, IPv6FullChain.Note: this field may return null, indicating that no valid values can be obtained.
    isolation Number
    0: not isolated; 1: isolated.Note: this field may return null, indicating that no valid values can be obtained.
    listenerId String
    CLB listener ID.Note: this field may return null, indicating that no valid values can be obtained.
    loadBalancerDomain String
    Domain name of the CLB instance.Note: This field may return null, indicating that no valid values can be obtained.
    loadBalancerId String
    CLB instance ID.
    loadBalancerName String
    CLB instance name.
    loadBalancerPassToTarget Number
    Whether the CLB instance is billed by IP.Note: this field may return null, indicating that no valid values can be obtained.
    loadBalancerType String
    CLB instance network type:Public: public network; Private: private network.Note: this field may return null, indicating that no valid values can be obtained.
    locationId String
    Forwarding rule ID.Note: this field may return null, indicating that no valid values can be obtained.
    networkAttributes List<Property Map>
    CLB instance network attribute.Note: this field may return null, indicating that no valid values can be obtained.
    port Number
    Listener port.Note: this field may return null, indicating that no valid values can be obtained.
    prepaidAttributes List<Property Map>
    Pay-as-you-go attribute of the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    projectId Number
    ID of the project to which the CLB instance belongs. 0: default project.Note: this field may return null, indicating that no valid values can be obtained.
    protocol String
    Listener protocol.Note: this field may return null, indicating that no valid values can be obtained.
    securityGroups List<String>
    List of the security groups bound to the CLB instance.Note: this field may return null, indicating that no valid values can be obtained.
    slaveZones List<String>
    The secondary zone of multi-AZ CLB instanceNote: This field may return null, indicating that no valid values can be obtained.
    sniSwitch Number
    Whether SNI is enabled. This parameter is only meaningful for HTTPS listeners.Note: This field may return null, indicating that no valid values can be obtained.
    status Number
    CLB instance status, including:0: creating; 1: running.Note: this field may return null, indicating that no valid values can be obtained.
    tags List<Property Map>
    CLB instance tag information.Note: this field may return null, indicating that no valid values can be obtained.
    targetAddress String
    Address of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetHealth String
    Health status of the target real server.Note: this field may return null, indicating that no valid values can be obtained.
    targetId String
    ID of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetPort Number
    Listening port of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    targetWeight Number
    Forwarding weight of target real servers.Note: this field may return null, indicating that no valid values can be obtained.
    url String
    Forwarding rule path.Note: this field may return null, indicating that no valid values can be obtained.
    vpcId String
    ID of the VPC instance to which the CLB instance belongs.Note: this field may return null, indicating that no valid values can be obtained.
    zone String
    Availability zone where the CLB instance resides.Note: this field may return null, indicating that no valid values can be obtained.
    zones List<String>
    The AZ of private CLB instance. This is only available for beta users.Note: This field may return null, indicating that no valid values can be obtained.

    GetClbInstanceDetailLoadBalancerDetailSetExtraInfo

    TgwGroupName string
    TgwGroup nameNote: This field may return null, indicating that no valid values can be obtained.
    ZhiTong bool
    Whether to enable VIP direct connectionNote: This field may return null, indicating that no valid values can be obtained.
    TgwGroupName string
    TgwGroup nameNote: This field may return null, indicating that no valid values can be obtained.
    ZhiTong bool
    Whether to enable VIP direct connectionNote: This field may return null, indicating that no valid values can be obtained.
    tgwGroupName String
    TgwGroup nameNote: This field may return null, indicating that no valid values can be obtained.
    zhiTong Boolean
    Whether to enable VIP direct connectionNote: This field may return null, indicating that no valid values can be obtained.
    tgwGroupName string
    TgwGroup nameNote: This field may return null, indicating that no valid values can be obtained.
    zhiTong boolean
    Whether to enable VIP direct connectionNote: This field may return null, indicating that no valid values can be obtained.
    tgw_group_name str
    TgwGroup nameNote: This field may return null, indicating that no valid values can be obtained.
    zhi_tong bool
    Whether to enable VIP direct connectionNote: This field may return null, indicating that no valid values can be obtained.
    tgwGroupName String
    TgwGroup nameNote: This field may return null, indicating that no valid values can be obtained.
    zhiTong Boolean
    Whether to enable VIP direct connectionNote: This field may return null, indicating that no valid values can be obtained.

    GetClbInstanceDetailLoadBalancerDetailSetNetworkAttribute

    BandwidthPkgSubType string
    Bandwidth package type, such as SINGLEISPNote: This field may return null, indicating that no valid values can be obtained.
    InternetChargeType string
    TRAFFIC_POSTPAID_BY_HOUR: hourly pay-as-you-go by traffic; BANDWIDTH_POSTPAID_BY_HOUR: hourly pay-as-you-go by bandwidth;BANDWIDTH_PACKAGE: billed by bandwidth package (currently, this method is supported only if the ISP is specified).
    InternetMaxBandwidthOut double
    Maximum outbound bandwidth in Mbps, which applies only to public network CLB. Value range: 0-65,535. Default value: 10.
    BandwidthPkgSubType string
    Bandwidth package type, such as SINGLEISPNote: This field may return null, indicating that no valid values can be obtained.
    InternetChargeType string
    TRAFFIC_POSTPAID_BY_HOUR: hourly pay-as-you-go by traffic; BANDWIDTH_POSTPAID_BY_HOUR: hourly pay-as-you-go by bandwidth;BANDWIDTH_PACKAGE: billed by bandwidth package (currently, this method is supported only if the ISP is specified).
    InternetMaxBandwidthOut float64
    Maximum outbound bandwidth in Mbps, which applies only to public network CLB. Value range: 0-65,535. Default value: 10.
    bandwidthPkgSubType String
    Bandwidth package type, such as SINGLEISPNote: This field may return null, indicating that no valid values can be obtained.
    internetChargeType String
    TRAFFIC_POSTPAID_BY_HOUR: hourly pay-as-you-go by traffic; BANDWIDTH_POSTPAID_BY_HOUR: hourly pay-as-you-go by bandwidth;BANDWIDTH_PACKAGE: billed by bandwidth package (currently, this method is supported only if the ISP is specified).
    internetMaxBandwidthOut Double
    Maximum outbound bandwidth in Mbps, which applies only to public network CLB. Value range: 0-65,535. Default value: 10.
    bandwidthPkgSubType string
    Bandwidth package type, such as SINGLEISPNote: This field may return null, indicating that no valid values can be obtained.
    internetChargeType string
    TRAFFIC_POSTPAID_BY_HOUR: hourly pay-as-you-go by traffic; BANDWIDTH_POSTPAID_BY_HOUR: hourly pay-as-you-go by bandwidth;BANDWIDTH_PACKAGE: billed by bandwidth package (currently, this method is supported only if the ISP is specified).
    internetMaxBandwidthOut number
    Maximum outbound bandwidth in Mbps, which applies only to public network CLB. Value range: 0-65,535. Default value: 10.
    bandwidth_pkg_sub_type str
    Bandwidth package type, such as SINGLEISPNote: This field may return null, indicating that no valid values can be obtained.
    internet_charge_type str
    TRAFFIC_POSTPAID_BY_HOUR: hourly pay-as-you-go by traffic; BANDWIDTH_POSTPAID_BY_HOUR: hourly pay-as-you-go by bandwidth;BANDWIDTH_PACKAGE: billed by bandwidth package (currently, this method is supported only if the ISP is specified).
    internet_max_bandwidth_out float
    Maximum outbound bandwidth in Mbps, which applies only to public network CLB. Value range: 0-65,535. Default value: 10.
    bandwidthPkgSubType String
    Bandwidth package type, such as SINGLEISPNote: This field may return null, indicating that no valid values can be obtained.
    internetChargeType String
    TRAFFIC_POSTPAID_BY_HOUR: hourly pay-as-you-go by traffic; BANDWIDTH_POSTPAID_BY_HOUR: hourly pay-as-you-go by bandwidth;BANDWIDTH_PACKAGE: billed by bandwidth package (currently, this method is supported only if the ISP is specified).
    internetMaxBandwidthOut Number
    Maximum outbound bandwidth in Mbps, which applies only to public network CLB. Value range: 0-65,535. Default value: 10.

    GetClbInstanceDetailLoadBalancerDetailSetPrepaidAttribute

    Period double
    Cycle, indicating the number of months (reserved field)Note: This field may return null, indicating that no valid values can be obtained.
    RenewFlag string
    Renewal type. AUTO_RENEW: automatic renewal; MANUAL_RENEW: manual renewalNote: This field may return null, indicating that no valid values can be obtained.
    Period float64
    Cycle, indicating the number of months (reserved field)Note: This field may return null, indicating that no valid values can be obtained.
    RenewFlag string
    Renewal type. AUTO_RENEW: automatic renewal; MANUAL_RENEW: manual renewalNote: This field may return null, indicating that no valid values can be obtained.
    period Double
    Cycle, indicating the number of months (reserved field)Note: This field may return null, indicating that no valid values can be obtained.
    renewFlag String
    Renewal type. AUTO_RENEW: automatic renewal; MANUAL_RENEW: manual renewalNote: This field may return null, indicating that no valid values can be obtained.
    period number
    Cycle, indicating the number of months (reserved field)Note: This field may return null, indicating that no valid values can be obtained.
    renewFlag string
    Renewal type. AUTO_RENEW: automatic renewal; MANUAL_RENEW: manual renewalNote: This field may return null, indicating that no valid values can be obtained.
    period float
    Cycle, indicating the number of months (reserved field)Note: This field may return null, indicating that no valid values can be obtained.
    renew_flag str
    Renewal type. AUTO_RENEW: automatic renewal; MANUAL_RENEW: manual renewalNote: This field may return null, indicating that no valid values can be obtained.
    period Number
    Cycle, indicating the number of months (reserved field)Note: This field may return null, indicating that no valid values can be obtained.
    renewFlag String
    Renewal type. AUTO_RENEW: automatic renewal; MANUAL_RENEW: manual renewalNote: This field may return null, indicating that no valid values can be obtained.

    GetClbInstanceDetailLoadBalancerDetailSetTag

    TagKey string
    Tag key.
    TagValue string
    Tag value.
    TagKey string
    Tag key.
    TagValue string
    Tag value.
    tagKey String
    Tag key.
    tagValue String
    Tag value.
    tagKey string
    Tag key.
    tagValue string
    Tag value.
    tag_key str
    Tag key.
    tag_value str
    Tag value.
    tagKey String
    Tag key.
    tagValue String
    Tag value.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack