Viewing docs for tencentcloud 1.83.23
published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.23
published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack
Use this data source to query detailed information of SSL certificate bind resource task detail, including the bind details of the certificate across various cloud resources (CLB, CDN, WAF, DDoS, Live, VOD, TKE, APIGateway, TCB, TEO, TSE, COS, TDMQ, MQTT, GAAP, SCF).
Example Usage
Query all resource types bind details by task id
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getSslCertificateBindResourceTaskDetail({
taskId: "51403728",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_ssl_certificate_bind_resource_task_detail(task_id="51403728")
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.GetSslCertificateBindResourceTaskDetail(ctx, &tencentcloud.GetSslCertificateBindResourceTaskDetailArgs{
TaskId: "51403728",
}, 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 example = Tencentcloud.GetSslCertificateBindResourceTaskDetail.Invoke(new()
{
TaskId = "51403728",
});
});
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.GetSslCertificateBindResourceTaskDetailArgs;
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 example = TencentcloudFunctions.getSslCertificateBindResourceTaskDetail(GetSslCertificateBindResourceTaskDetailArgs.builder()
.taskId("51403728")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getSslCertificateBindResourceTaskDetail
arguments:
taskId: '51403728'
Example coming soon!
Query specific resource types bind details
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getSslCertificateBindResourceTaskDetail({
taskId: "51403728",
resourceTypes: [
"clb",
"cdn",
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_ssl_certificate_bind_resource_task_detail(task_id="51403728",
resource_types=[
"clb",
"cdn",
])
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.GetSslCertificateBindResourceTaskDetail(ctx, &tencentcloud.GetSslCertificateBindResourceTaskDetailArgs{
TaskId: "51403728",
ResourceTypes: []string{
"clb",
"cdn",
},
}, 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 example = Tencentcloud.GetSslCertificateBindResourceTaskDetail.Invoke(new()
{
TaskId = "51403728",
ResourceTypes = new[]
{
"clb",
"cdn",
},
});
});
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.GetSslCertificateBindResourceTaskDetailArgs;
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 example = TencentcloudFunctions.getSslCertificateBindResourceTaskDetail(GetSslCertificateBindResourceTaskDetailArgs.builder()
.taskId("51403728")
.resourceTypes(
"clb",
"cdn")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getSslCertificateBindResourceTaskDetail
arguments:
taskId: '51403728'
resourceTypes:
- clb
- cdn
Example coming soon!
Query bind details with regions filter
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getSslCertificateBindResourceTaskDetail({
taskId: "51403728",
resourceTypes: [
"clb",
"cdn",
],
regions: [
"ap-guangzhou",
"ap-beijing",
],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_ssl_certificate_bind_resource_task_detail(task_id="51403728",
resource_types=[
"clb",
"cdn",
],
regions=[
"ap-guangzhou",
"ap-beijing",
])
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.GetSslCertificateBindResourceTaskDetail(ctx, &tencentcloud.GetSslCertificateBindResourceTaskDetailArgs{
TaskId: "51403728",
ResourceTypes: []string{
"clb",
"cdn",
},
Regions: []string{
"ap-guangzhou",
"ap-beijing",
},
}, 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 example = Tencentcloud.GetSslCertificateBindResourceTaskDetail.Invoke(new()
{
TaskId = "51403728",
ResourceTypes = new[]
{
"clb",
"cdn",
},
Regions = new[]
{
"ap-guangzhou",
"ap-beijing",
},
});
});
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.GetSslCertificateBindResourceTaskDetailArgs;
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 example = TencentcloudFunctions.getSslCertificateBindResourceTaskDetail(GetSslCertificateBindResourceTaskDetailArgs.builder()
.taskId("51403728")
.resourceTypes(
"clb",
"cdn")
.regions(
"ap-guangzhou",
"ap-beijing")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getSslCertificateBindResourceTaskDetail
arguments:
taskId: '51403728'
resourceTypes:
- clb
- cdn
regions:
- ap-guangzhou
- ap-beijing
Example coming soon!
Using getSslCertificateBindResourceTaskDetail
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 getSslCertificateBindResourceTaskDetail(args: GetSslCertificateBindResourceTaskDetailArgs, opts?: InvokeOptions): Promise<GetSslCertificateBindResourceTaskDetailResult>
function getSslCertificateBindResourceTaskDetailOutput(args: GetSslCertificateBindResourceTaskDetailOutputArgs, opts?: InvokeOptions): Output<GetSslCertificateBindResourceTaskDetailResult>def get_ssl_certificate_bind_resource_task_detail(id: Optional[str] = None,
regions: Optional[Sequence[str]] = None,
resource_types: Optional[Sequence[str]] = None,
result_output_file: Optional[str] = None,
task_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSslCertificateBindResourceTaskDetailResult
def get_ssl_certificate_bind_resource_task_detail_output(id: pulumi.Input[Optional[str]] = None,
regions: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
resource_types: pulumi.Input[Optional[Sequence[pulumi.Input[str]]]] = None,
result_output_file: pulumi.Input[Optional[str]] = None,
task_id: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSslCertificateBindResourceTaskDetailResult]func GetSslCertificateBindResourceTaskDetail(ctx *Context, args *GetSslCertificateBindResourceTaskDetailArgs, opts ...InvokeOption) (*GetSslCertificateBindResourceTaskDetailResult, error)
func GetSslCertificateBindResourceTaskDetailOutput(ctx *Context, args *GetSslCertificateBindResourceTaskDetailOutputArgs, opts ...InvokeOption) GetSslCertificateBindResourceTaskDetailResultOutput> Note: This function is named GetSslCertificateBindResourceTaskDetail in the Go SDK.
public static class GetSslCertificateBindResourceTaskDetail
{
public static Task<GetSslCertificateBindResourceTaskDetailResult> InvokeAsync(GetSslCertificateBindResourceTaskDetailArgs args, InvokeOptions? opts = null)
public static Output<GetSslCertificateBindResourceTaskDetailResult> Invoke(GetSslCertificateBindResourceTaskDetailInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSslCertificateBindResourceTaskDetailResult> getSslCertificateBindResourceTaskDetail(GetSslCertificateBindResourceTaskDetailArgs args, InvokeOptions options)
public static Output<GetSslCertificateBindResourceTaskDetailResult> getSslCertificateBindResourceTaskDetail(GetSslCertificateBindResourceTaskDetailArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getSslCertificateBindResourceTaskDetail:getSslCertificateBindResourceTaskDetail
arguments:
# arguments dictionarydata "tencentcloud_get_ssl_certificate_bind_resource_task_detail" "name" {
# arguments
}The following arguments are supported:
- Task
Id string - Task ID, query the bind cloud resource result according to the task ID obtained by CreateCertificateBindResourceSyncTask.
- Id string
- Gateway certificate ID.
- Regions List<string>
- List of regions to query. clb, tke, waf, apigateway, tcb, cos, tse support region query.
- Resource
Types List<string> - Query the result details of the resource type. If not passed, query all. Supported values: clb, cdn, ddos, live, vod, waf, apigateway, teo, tke, cos, tse, tcb, tdmq, mqtt, gaap, scf.
- Result
Output stringFile - Used to save results.
- Task
Id string - Task ID, query the bind cloud resource result according to the task ID obtained by CreateCertificateBindResourceSyncTask.
- Id string
- Gateway certificate ID.
- Regions []string
- List of regions to query. clb, tke, waf, apigateway, tcb, cos, tse support region query.
- Resource
Types []string - Query the result details of the resource type. If not passed, query all. Supported values: clb, cdn, ddos, live, vod, waf, apigateway, teo, tke, cos, tse, tcb, tdmq, mqtt, gaap, scf.
- Result
Output stringFile - Used to save results.
- task_
id string - Task ID, query the bind cloud resource result according to the task ID obtained by CreateCertificateBindResourceSyncTask.
- id string
- Gateway certificate ID.
- regions list(string)
- List of regions to query. clb, tke, waf, apigateway, tcb, cos, tse support region query.
- resource_
types list(string) - Query the result details of the resource type. If not passed, query all. Supported values: clb, cdn, ddos, live, vod, waf, apigateway, teo, tke, cos, tse, tcb, tdmq, mqtt, gaap, scf.
- result_
output_ stringfile - Used to save results.
- task
Id String - Task ID, query the bind cloud resource result according to the task ID obtained by CreateCertificateBindResourceSyncTask.
- id String
- Gateway certificate ID.
- regions List<String>
- List of regions to query. clb, tke, waf, apigateway, tcb, cos, tse support region query.
- resource
Types List<String> - Query the result details of the resource type. If not passed, query all. Supported values: clb, cdn, ddos, live, vod, waf, apigateway, teo, tke, cos, tse, tcb, tdmq, mqtt, gaap, scf.
- result
Output StringFile - Used to save results.
- task
Id string - Task ID, query the bind cloud resource result according to the task ID obtained by CreateCertificateBindResourceSyncTask.
- id string
- Gateway certificate ID.
- regions string[]
- List of regions to query. clb, tke, waf, apigateway, tcb, cos, tse support region query.
- resource
Types string[] - Query the result details of the resource type. If not passed, query all. Supported values: clb, cdn, ddos, live, vod, waf, apigateway, teo, tke, cos, tse, tcb, tdmq, mqtt, gaap, scf.
- result
Output stringFile - Used to save results.
- task_
id str - Task ID, query the bind cloud resource result according to the task ID obtained by CreateCertificateBindResourceSyncTask.
- id str
- Gateway certificate ID.
- regions Sequence[str]
- List of regions to query. clb, tke, waf, apigateway, tcb, cos, tse support region query.
- resource_
types Sequence[str] - Query the result details of the resource type. If not passed, query all. Supported values: clb, cdn, ddos, live, vod, waf, apigateway, teo, tke, cos, tse, tcb, tdmq, mqtt, gaap, scf.
- result_
output_ strfile - Used to save results.
- task
Id String - Task ID, query the bind cloud resource result according to the task ID obtained by CreateCertificateBindResourceSyncTask.
- id String
- Gateway certificate ID.
- regions List<String>
- List of regions to query. clb, tke, waf, apigateway, tcb, cos, tse support region query.
- resource
Types List<String> - Query the result details of the resource type. If not passed, query all. Supported values: clb, cdn, ddos, live, vod, waf, apigateway, teo, tke, cos, tse, tcb, tdmq, mqtt, gaap, scf.
- result
Output StringFile - Used to save results.
getSslCertificateBindResourceTaskDetail Result
The following output properties are available:
- Apigateways
List<Get
Ssl Certificate Bind Resource Task Detail Apigateway> - Associated APIGateway resource detail list.
- Cache
Time string - Current result cache time.
- Cdns
List<Get
Ssl Certificate Bind Resource Task Detail Cdn> - Associated CDN resource detail list.
- Clbs
List<Get
Ssl Certificate Bind Resource Task Detail Clb> - Associated CLB resource detail list. Note: This field may return null, indicating that no valid value can be obtained.
- Cos
List<Get
Ssl Certificate Bind Resource Task Detail Co> - Associated COS resource detail list.
- Ddos
List<Get
Ssl Certificate Bind Resource Task Detail Ddo> - Associated DDoS resource detail list.
- Gaaps
List<Get
Ssl Certificate Bind Resource Task Detail Gaap> - Associated GAAP resource detail list.
- Id string
- Gateway certificate ID.
- Lives
List<Get
Ssl Certificate Bind Resource Task Detail Life> - Associated Live resource detail list.
- Mqtts
List<Get
Ssl Certificate Bind Resource Task Detail Mqtt> - Associated MQTT resource detail list.
- Scfs
List<Get
Ssl Certificate Bind Resource Task Detail Scf> - Associated SCF resource detail list.
- Status double
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- Task
Id string - Tcbs
List<Get
Ssl Certificate Bind Resource Task Detail Tcb> - Associated TCB resource detail list.
- Tdmqs
List<Get
Ssl Certificate Bind Resource Task Detail Tdmq> - Associated TDMQ resource detail list.
- Teos
List<Get
Ssl Certificate Bind Resource Task Detail Teo> - Associated TEO resource detail list.
- Tkes
List<Get
Ssl Certificate Bind Resource Task Detail Tke> - Associated TKE resource detail list.
- Tses
List<Get
Ssl Certificate Bind Resource Task Detail Tse> - Associated TSE resource detail list.
- Vods
List<Get
Ssl Certificate Bind Resource Task Detail Vod> - Associated VOD resource detail list.
- Wafs
List<Get
Ssl Certificate Bind Resource Task Detail Waf> - Associated WAF resource detail list.
- Regions List<string>
- Resource
Types List<string> - Result
Output stringFile
- Apigateways
[]Get
Ssl Certificate Bind Resource Task Detail Apigateway - Associated APIGateway resource detail list.
- Cache
Time string - Current result cache time.
- Cdns
[]Get
Ssl Certificate Bind Resource Task Detail Cdn - Associated CDN resource detail list.
- Clbs
[]Get
Ssl Certificate Bind Resource Task Detail Clb - Associated CLB resource detail list. Note: This field may return null, indicating that no valid value can be obtained.
- Cos
[]Get
Ssl Certificate Bind Resource Task Detail Co - Associated COS resource detail list.
- Ddos
[]Get
Ssl Certificate Bind Resource Task Detail Ddo - Associated DDoS resource detail list.
- Gaaps
[]Get
Ssl Certificate Bind Resource Task Detail Gaap - Associated GAAP resource detail list.
- Id string
- Gateway certificate ID.
- Lives
[]Get
Ssl Certificate Bind Resource Task Detail Life - Associated Live resource detail list.
- Mqtts
[]Get
Ssl Certificate Bind Resource Task Detail Mqtt - Associated MQTT resource detail list.
- Scfs
[]Get
Ssl Certificate Bind Resource Task Detail Scf - Associated SCF resource detail list.
- Status float64
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- Task
Id string - Tcbs
[]Get
Ssl Certificate Bind Resource Task Detail Tcb - Associated TCB resource detail list.
- Tdmqs
[]Get
Ssl Certificate Bind Resource Task Detail Tdmq - Associated TDMQ resource detail list.
- Teos
[]Get
Ssl Certificate Bind Resource Task Detail Teo - Associated TEO resource detail list.
- Tkes
[]Get
Ssl Certificate Bind Resource Task Detail Tke - Associated TKE resource detail list.
- Tses
[]Get
Ssl Certificate Bind Resource Task Detail Tse - Associated TSE resource detail list.
- Vods
[]Get
Ssl Certificate Bind Resource Task Detail Vod - Associated VOD resource detail list.
- Wafs
[]Get
Ssl Certificate Bind Resource Task Detail Waf - Associated WAF resource detail list.
- Regions []string
- Resource
Types []string - Result
Output stringFile
- apigateways list(object)
- Associated APIGateway resource detail list.
- cache_
time string - Current result cache time.
- cdns list(object)
- Associated CDN resource detail list.
- clbs list(object)
- Associated CLB resource detail list. Note: This field may return null, indicating that no valid value can be obtained.
- cos list(object)
- Associated COS resource detail list.
- ddos list(object)
- Associated DDoS resource detail list.
- gaaps list(object)
- Associated GAAP resource detail list.
- id string
- Gateway certificate ID.
- lives list(object)
- Associated Live resource detail list.
- mqtts list(object)
- Associated MQTT resource detail list.
- scfs list(object)
- Associated SCF resource detail list.
- status number
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- task_
id string - tcbs list(object)
- Associated TCB resource detail list.
- tdmqs list(object)
- Associated TDMQ resource detail list.
- teos list(object)
- Associated TEO resource detail list.
- tkes list(object)
- Associated TKE resource detail list.
- tses list(object)
- Associated TSE resource detail list.
- vods list(object)
- Associated VOD resource detail list.
- wafs list(object)
- Associated WAF resource detail list.
- regions list(string)
- resource_
types list(string) - result_
output_ stringfile
- apigateways
List<Get
Ssl Certificate Bind Resource Task Detail Apigateway> - Associated APIGateway resource detail list.
- cache
Time String - Current result cache time.
- cdns
List<Get
Ssl Certificate Bind Resource Task Detail Cdn> - Associated CDN resource detail list.
- clbs
List<Get
Ssl Certificate Bind Resource Task Detail Clb> - Associated CLB resource detail list. Note: This field may return null, indicating that no valid value can be obtained.
- cos
List<Get
Ssl Certificate Bind Resource Task Detail Co> - Associated COS resource detail list.
- ddos
List<Get
Ssl Certificate Bind Resource Task Detail Ddo> - Associated DDoS resource detail list.
- gaaps
List<Get
Ssl Certificate Bind Resource Task Detail Gaap> - Associated GAAP resource detail list.
- id String
- Gateway certificate ID.
- lives
List<Get
Ssl Certificate Bind Resource Task Detail Life> - Associated Live resource detail list.
- mqtts
List<Get
Ssl Certificate Bind Resource Task Detail Mqtt> - Associated MQTT resource detail list.
- scfs
List<Get
Ssl Certificate Bind Resource Task Detail Scf> - Associated SCF resource detail list.
- status Double
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- task
Id String - tcbs
List<Get
Ssl Certificate Bind Resource Task Detail Tcb> - Associated TCB resource detail list.
- tdmqs
List<Get
Ssl Certificate Bind Resource Task Detail Tdmq> - Associated TDMQ resource detail list.
- teos
List<Get
Ssl Certificate Bind Resource Task Detail Teo> - Associated TEO resource detail list.
- tkes
List<Get
Ssl Certificate Bind Resource Task Detail Tke> - Associated TKE resource detail list.
- tses
List<Get
Ssl Certificate Bind Resource Task Detail Tse> - Associated TSE resource detail list.
- vods
List<Get
Ssl Certificate Bind Resource Task Detail Vod> - Associated VOD resource detail list.
- wafs
List<Get
Ssl Certificate Bind Resource Task Detail Waf> - Associated WAF resource detail list.
- regions List<String>
- resource
Types List<String> - result
Output StringFile
- apigateways
Get
Ssl Certificate Bind Resource Task Detail Apigateway[] - Associated APIGateway resource detail list.
- cache
Time string - Current result cache time.
- cdns
Get
Ssl Certificate Bind Resource Task Detail Cdn[] - Associated CDN resource detail list.
- clbs
Get
Ssl Certificate Bind Resource Task Detail Clb[] - Associated CLB resource detail list. Note: This field may return null, indicating that no valid value can be obtained.
- cos
Get
Ssl Certificate Bind Resource Task Detail Co[] - Associated COS resource detail list.
- ddos
Get
Ssl Certificate Bind Resource Task Detail Ddo[] - Associated DDoS resource detail list.
- gaaps
Get
Ssl Certificate Bind Resource Task Detail Gaap[] - Associated GAAP resource detail list.
- id string
- Gateway certificate ID.
- lives
Get
Ssl Certificate Bind Resource Task Detail Life[] - Associated Live resource detail list.
- mqtts
Get
Ssl Certificate Bind Resource Task Detail Mqtt[] - Associated MQTT resource detail list.
- scfs
Get
Ssl Certificate Bind Resource Task Detail Scf[] - Associated SCF resource detail list.
- status number
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- task
Id string - tcbs
Get
Ssl Certificate Bind Resource Task Detail Tcb[] - Associated TCB resource detail list.
- tdmqs
Get
Ssl Certificate Bind Resource Task Detail Tdmq[] - Associated TDMQ resource detail list.
- teos
Get
Ssl Certificate Bind Resource Task Detail Teo[] - Associated TEO resource detail list.
- tkes
Get
Ssl Certificate Bind Resource Task Detail Tke[] - Associated TKE resource detail list.
- tses
Get
Ssl Certificate Bind Resource Task Detail Tse[] - Associated TSE resource detail list.
- vods
Get
Ssl Certificate Bind Resource Task Detail Vod[] - Associated VOD resource detail list.
- wafs
Get
Ssl Certificate Bind Resource Task Detail Waf[] - Associated WAF resource detail list.
- regions string[]
- resource
Types string[] - result
Output stringFile
- apigateways
Sequence[Get
Ssl Certificate Bind Resource Task Detail Apigateway] - Associated APIGateway resource detail list.
- cache_
time str - Current result cache time.
- cdns
Sequence[Get
Ssl Certificate Bind Resource Task Detail Cdn] - Associated CDN resource detail list.
- clbs
Sequence[Get
Ssl Certificate Bind Resource Task Detail Clb] - Associated CLB resource detail list. Note: This field may return null, indicating that no valid value can be obtained.
- cos
Sequence[Get
Ssl Certificate Bind Resource Task Detail Co] - Associated COS resource detail list.
- ddos
Sequence[Get
Ssl Certificate Bind Resource Task Detail Ddo] - Associated DDoS resource detail list.
- gaaps
Sequence[Get
Ssl Certificate Bind Resource Task Detail Gaap] - Associated GAAP resource detail list.
- id str
- Gateway certificate ID.
- lives
Sequence[Get
Ssl Certificate Bind Resource Task Detail Life] - Associated Live resource detail list.
- mqtts
Sequence[Get
Ssl Certificate Bind Resource Task Detail Mqtt] - Associated MQTT resource detail list.
- scfs
Sequence[Get
Ssl Certificate Bind Resource Task Detail Scf] - Associated SCF resource detail list.
- status float
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- task_
id str - tcbs
Sequence[Get
Ssl Certificate Bind Resource Task Detail Tcb] - Associated TCB resource detail list.
- tdmqs
Sequence[Get
Ssl Certificate Bind Resource Task Detail Tdmq] - Associated TDMQ resource detail list.
- teos
Sequence[Get
Ssl Certificate Bind Resource Task Detail Teo] - Associated TEO resource detail list.
- tkes
Sequence[Get
Ssl Certificate Bind Resource Task Detail Tke] - Associated TKE resource detail list.
- tses
Sequence[Get
Ssl Certificate Bind Resource Task Detail Tse] - Associated TSE resource detail list.
- vods
Sequence[Get
Ssl Certificate Bind Resource Task Detail Vod] - Associated VOD resource detail list.
- wafs
Sequence[Get
Ssl Certificate Bind Resource Task Detail Waf] - Associated WAF resource detail list.
- regions Sequence[str]
- resource_
types Sequence[str] - result_
output_ strfile
- apigateways List<Property Map>
- Associated APIGateway resource detail list.
- cache
Time String - Current result cache time.
- cdns List<Property Map>
- Associated CDN resource detail list.
- clbs List<Property Map>
- Associated CLB resource detail list. Note: This field may return null, indicating that no valid value can be obtained.
- cos List<Property Map>
- Associated COS resource detail list.
- ddos List<Property Map>
- Associated DDoS resource detail list.
- gaaps List<Property Map>
- Associated GAAP resource detail list.
- id String
- Gateway certificate ID.
- lives List<Property Map>
- Associated Live resource detail list.
- mqtts List<Property Map>
- Associated MQTT resource detail list.
- scfs List<Property Map>
- Associated SCF resource detail list.
- status Number
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- task
Id String - tcbs List<Property Map>
- Associated TCB resource detail list.
- tdmqs List<Property Map>
- Associated TDMQ resource detail list.
- teos List<Property Map>
- Associated TEO resource detail list.
- tkes List<Property Map>
- Associated TKE resource detail list.
- tses List<Property Map>
- Associated TSE resource detail list.
- vods List<Property Map>
- Associated VOD resource detail list.
- wafs List<Property Map>
- Associated WAF resource detail list.
- regions List<String>
- resource
Types List<String> - result
Output StringFile
Supporting Types
GetSslCertificateBindResourceTaskDetailApigateway
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Apigateway Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Apigateway Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Apigateway Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Apigateway Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Apigateway Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailApigatewayInstanceList
- Cert
Id string - Certificate ID.
- Domain string
- Domain name.
- Protocol string
- Protocol.
- Service
Id string - Service ID.
- Service
Name string - Service name.
- Cert
Id string - Certificate ID.
- Domain string
- Domain name.
- Protocol string
- Protocol.
- Service
Id string - Service ID.
- Service
Name string - Service name.
- cert_
id string - Certificate ID.
- domain string
- Domain name.
- protocol string
- Protocol.
- service_
id string - Service ID.
- service_
name string - Service name.
- cert
Id String - Certificate ID.
- domain String
- Domain name.
- protocol String
- Protocol.
- service
Id String - Service ID.
- service
Name String - Service name.
- cert
Id string - Certificate ID.
- domain string
- Domain name.
- protocol string
- Protocol.
- service
Id string - Service ID.
- service
Name string - Service name.
- cert_
id str - Certificate ID.
- domain str
- Domain name.
- protocol str
- Protocol.
- service_
id str - Service ID.
- service_
name str - Service name.
- cert
Id String - Certificate ID.
- domain String
- Domain name.
- protocol String
- Protocol.
- service
Id String - Service ID.
- service
Name String - Service name.
GetSslCertificateBindResourceTaskDetailCdn
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Cdn Instance List> - WAF instance detail list.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Cdn Instance List - WAF instance detail list.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Cdn Instance List> - WAF instance detail list.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Cdn Instance List[] - WAF instance detail list.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Cdn Instance List] - WAF instance detail list.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailCdnInstanceList
- Cert
Id string - Certificate ID.
- Domain string
- Domain name.
- Https
Billing stringSwitch - Domain billing status, on means enabled, off means disabled.
- Status string
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- Cert
Id string - Certificate ID.
- Domain string
- Domain name.
- Https
Billing stringSwitch - Domain billing status, on means enabled, off means disabled.
- Status string
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- cert_
id string - Certificate ID.
- domain string
- Domain name.
- https_
billing_ stringswitch - Domain billing status, on means enabled, off means disabled.
- status string
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- cert
Id String - Certificate ID.
- domain String
- Domain name.
- https
Billing StringSwitch - Domain billing status, on means enabled, off means disabled.
- status String
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- cert
Id string - Certificate ID.
- domain string
- Domain name.
- https
Billing stringSwitch - Domain billing status, on means enabled, off means disabled.
- status string
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- cert_
id str - Certificate ID.
- domain str
- Domain name.
- https_
billing_ strswitch - Domain billing status, on means enabled, off means disabled.
- status str
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- cert
Id String - Certificate ID.
- domain String
- Domain name.
- https
Billing StringSwitch - Domain billing status, on means enabled, off means disabled.
- status String
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
GetSslCertificateBindResourceTaskDetailClb
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Clb Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Clb Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Clb Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Clb Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Clb Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailClbInstanceList
- Forward double
- Load balancer type, 0 traditional load balancer; 1 application load balancer.
- Listeners
List<Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener> - CLB listener list.
- Load
Balancer stringId - CLB instance ID.
- Load
Balancer stringName - CLB instance name.
- Forward float64
- Load balancer type, 0 traditional load balancer; 1 application load balancer.
- Listeners
[]Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener - CLB listener list.
- Load
Balancer stringId - CLB instance ID.
- Load
Balancer stringName - CLB instance name.
- forward number
- Load balancer type, 0 traditional load balancer; 1 application load balancer.
- listeners list(object)
- CLB listener list.
- load_
balancer_ stringid - CLB instance ID.
- load_
balancer_ stringname - CLB instance name.
- forward Double
- Load balancer type, 0 traditional load balancer; 1 application load balancer.
- listeners
List<Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener> - CLB listener list.
- load
Balancer StringId - CLB instance ID.
- load
Balancer StringName - CLB instance name.
- forward number
- Load balancer type, 0 traditional load balancer; 1 application load balancer.
- listeners
Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener[] - CLB listener list.
- load
Balancer stringId - CLB instance ID.
- load
Balancer stringName - CLB instance name.
- forward float
- Load balancer type, 0 traditional load balancer; 1 application load balancer.
- listeners
Sequence[Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener] - CLB listener list.
- load_
balancer_ strid - CLB instance ID.
- load_
balancer_ strname - CLB instance name.
- forward Number
- Load balancer type, 0 traditional load balancer; 1 application load balancer.
- listeners List<Property Map>
- CLB listener list.
- load
Balancer StringId - CLB instance ID.
- load
Balancer StringName - CLB instance name.
GetSslCertificateBindResourceTaskDetailClbInstanceListListener
- Certificates
List<Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Certificate> - Certificate data bound to the rule.
- Listener
Id string - Listener ID.
- Listener
Name string - Listener name.
- No
Match List<string>Domains - List of domains that do not match the new certificate.
- Protocol string
- Protocol.
- Rules
List<Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule> - Listener rule list.
- Sni
Switch double - Whether to enable SNI, 1 for enable, 0 for disable.
- Certificates
[]Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Certificate - Certificate data bound to the rule.
- Listener
Id string - Listener ID.
- Listener
Name string - Listener name.
- No
Match []stringDomains - List of domains that do not match the new certificate.
- Protocol string
- Protocol.
- Rules
[]Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule - Listener rule list.
- Sni
Switch float64 - Whether to enable SNI, 1 for enable, 0 for disable.
- certificates list(object)
- Certificate data bound to the rule.
- listener_
id string - Listener ID.
- listener_
name string - Listener name.
- no_
match_ list(string)domains - List of domains that do not match the new certificate.
- protocol string
- Protocol.
- rules list(object)
- Listener rule list.
- sni_
switch number - Whether to enable SNI, 1 for enable, 0 for disable.
- certificates
List<Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Certificate> - Certificate data bound to the rule.
- listener
Id String - Listener ID.
- listener
Name String - Listener name.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- protocol String
- Protocol.
- rules
List<Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule> - Listener rule list.
- sni
Switch Double - Whether to enable SNI, 1 for enable, 0 for disable.
- certificates
Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Certificate[] - Certificate data bound to the rule.
- listener
Id string - Listener ID.
- listener
Name string - Listener name.
- no
Match string[]Domains - List of domains that do not match the new certificate.
- protocol string
- Protocol.
- rules
Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule[] - Listener rule list.
- sni
Switch number - Whether to enable SNI, 1 for enable, 0 for disable.
- certificates
Sequence[Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Certificate] - Certificate data bound to the rule.
- listener_
id str - Listener ID.
- listener_
name str - Listener name.
- no_
match_ Sequence[str]domains - List of domains that do not match the new certificate.
- protocol str
- Protocol.
- rules
Sequence[Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule] - Listener rule list.
- sni_
switch float - Whether to enable SNI, 1 for enable, 0 for disable.
- certificates List<Property Map>
- Certificate data bound to the rule.
- listener
Id String - Listener ID.
- listener
Name String - Listener name.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- protocol String
- Protocol.
- rules List<Property Map>
- Listener rule list.
- sni
Switch Number - Whether to enable SNI, 1 for enable, 0 for disable.
GetSslCertificateBindResourceTaskDetailClbInstanceListListenerCertificate
- cert_
ca_ stringid - Root certificate ID.
- cert_
id string - Certificate ID.
- dns_
names list(string) - Domain names bound to the certificate.
- ssl_
mode string - Certificate authentication mode: UNIDIRECTIONAL one-way authentication, MUTUAL two-way authentication.
- cert_
ca_ strid - Root certificate ID.
- cert_
id str - Certificate ID.
- dns_
names Sequence[str] - Domain names bound to the certificate.
- ssl_
mode str - Certificate authentication mode: UNIDIRECTIONAL one-way authentication, MUTUAL two-way authentication.
GetSslCertificateBindResourceTaskDetailClbInstanceListListenerRule
- Certificates
List<Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule Certificate> - Certificate data bound to the rule.
- Domain string
- Domain name.
- Is
Match bool - Whether the rule matches the domain name of the certificate to be bound.
- Location
Id string - Rule ID.
- No
Match List<string>Domains - List of domains that do not match the new certificate.
- Url string
- Path bound to the rule.
- Certificates
[]Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule Certificate - Certificate data bound to the rule.
- Domain string
- Domain name.
- Is
Match bool - Whether the rule matches the domain name of the certificate to be bound.
- Location
Id string - Rule ID.
- No
Match []stringDomains - List of domains that do not match the new certificate.
- Url string
- Path bound to the rule.
- certificates list(object)
- Certificate data bound to the rule.
- domain string
- Domain name.
- is_
match bool - Whether the rule matches the domain name of the certificate to be bound.
- location_
id string - Rule ID.
- no_
match_ list(string)domains - List of domains that do not match the new certificate.
- url string
- Path bound to the rule.
- certificates
List<Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule Certificate> - Certificate data bound to the rule.
- domain String
- Domain name.
- is
Match Boolean - Whether the rule matches the domain name of the certificate to be bound.
- location
Id String - Rule ID.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- url String
- Path bound to the rule.
- certificates
Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule Certificate[] - Certificate data bound to the rule.
- domain string
- Domain name.
- is
Match boolean - Whether the rule matches the domain name of the certificate to be bound.
- location
Id string - Rule ID.
- no
Match string[]Domains - List of domains that do not match the new certificate.
- url string
- Path bound to the rule.
- certificates
Sequence[Get
Ssl Certificate Bind Resource Task Detail Clb Instance List Listener Rule Certificate] - Certificate data bound to the rule.
- domain str
- Domain name.
- is_
match bool - Whether the rule matches the domain name of the certificate to be bound.
- location_
id str - Rule ID.
- no_
match_ Sequence[str]domains - List of domains that do not match the new certificate.
- url str
- Path bound to the rule.
- certificates List<Property Map>
- Certificate data bound to the rule.
- domain String
- Domain name.
- is
Match Boolean - Whether the rule matches the domain name of the certificate to be bound.
- location
Id String - Rule ID.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- url String
- Path bound to the rule.
GetSslCertificateBindResourceTaskDetailClbInstanceListListenerRuleCertificate
- cert_
ca_ stringid - Root certificate ID.
- cert_
id string - Certificate ID.
- dns_
names list(string) - Domain names bound to the certificate.
- ssl_
mode string - Certificate authentication mode: UNIDIRECTIONAL one-way authentication, MUTUAL two-way authentication.
- cert_
ca_ strid - Root certificate ID.
- cert_
id str - Certificate ID.
- dns_
names Sequence[str] - Domain names bound to the certificate.
- ssl_
mode str - Certificate authentication mode: UNIDIRECTIONAL one-way authentication, MUTUAL two-way authentication.
GetSslCertificateBindResourceTaskDetailCo
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Co Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Co Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Co Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Co Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Co Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailCoInstanceList
GetSslCertificateBindResourceTaskDetailDdo
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Ddo Instance List> - WAF instance detail list.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Ddo Instance List - WAF instance detail list.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Ddo Instance List> - WAF instance detail list.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Ddo Instance List[] - WAF instance detail list.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Ddo Instance List] - WAF instance detail list.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailDdoInstanceList
- Cert
Id string - Certificate ID.
- Domain string
- Domain name.
- Instance
Id string - Instance ID.
- Protocol string
- Protocol.
- Virtual
Port string - Forwarding port.
- Cert
Id string - Certificate ID.
- Domain string
- Domain name.
- Instance
Id string - Instance ID.
- Protocol string
- Protocol.
- Virtual
Port string - Forwarding port.
- cert_
id string - Certificate ID.
- domain string
- Domain name.
- instance_
id string - Instance ID.
- protocol string
- Protocol.
- virtual_
port string - Forwarding port.
- cert
Id String - Certificate ID.
- domain String
- Domain name.
- instance
Id String - Instance ID.
- protocol String
- Protocol.
- virtual
Port String - Forwarding port.
- cert
Id string - Certificate ID.
- domain string
- Domain name.
- instance
Id string - Instance ID.
- protocol string
- Protocol.
- virtual
Port string - Forwarding port.
- cert_
id str - Certificate ID.
- domain str
- Domain name.
- instance_
id str - Instance ID.
- protocol str
- Protocol.
- virtual_
port str - Forwarding port.
- cert
Id String - Certificate ID.
- domain String
- Domain name.
- instance
Id String - Instance ID.
- protocol String
- Protocol.
- virtual
Port String - Forwarding port.
GetSslCertificateBindResourceTaskDetailGaap
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Gaap Instance List> - WAF instance detail list.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Gaap Instance List - WAF instance detail list.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Gaap Instance List> - WAF instance detail list.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Gaap Instance List[] - WAF instance detail list.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Gaap Instance List] - WAF instance detail list.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailGaapInstanceList
- Instance
Id string - Instance ID.
- Instance
Name string - Instance name.
- Listener
Lists List<GetSsl Certificate Bind Resource Task Detail Gaap Instance List Listener List> - Listener list.
- Instance
Id string - Instance ID.
- Instance
Name string - Instance name.
- Listener
Lists []GetSsl Certificate Bind Resource Task Detail Gaap Instance List Listener List - Listener list.
- instance_
id string - Instance ID.
- instance_
name string - Instance name.
- listener_
lists list(object) - Listener list.
- instance
Id String - Instance ID.
- instance
Name String - Instance name.
- listener
Lists List<GetSsl Certificate Bind Resource Task Detail Gaap Instance List Listener List> - Listener list.
- instance
Id string - Instance ID.
- instance
Name string - Instance name.
- listener
Lists GetSsl Certificate Bind Resource Task Detail Gaap Instance List Listener List[] - Listener list.
- instance_
id str - Instance ID.
- instance_
name str - Instance name.
- listener_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Gaap Instance List Listener List] - Listener list.
- instance
Id String - Instance ID.
- instance
Name String - Instance name.
- listener
Lists List<Property Map> - Listener list.
GetSslCertificateBindResourceTaskDetailGaapInstanceListListenerList
- Cert
Id List<string>Lists - Certificate ID list bound to the instance.
- Listener
Id string - Listener ID.
- Listener
Name string - Listener name.
- Listener
Status string - Listener status.
- No
Match List<string>Domains - List of domains that do not match the new certificate.
- Protocol string
- Protocol.
- Cert
Id []stringLists - Certificate ID list bound to the instance.
- Listener
Id string - Listener ID.
- Listener
Name string - Listener name.
- Listener
Status string - Listener status.
- No
Match []stringDomains - List of domains that do not match the new certificate.
- Protocol string
- Protocol.
- cert_
id_ list(string)lists - Certificate ID list bound to the instance.
- listener_
id string - Listener ID.
- listener_
name string - Listener name.
- listener_
status string - Listener status.
- no_
match_ list(string)domains - List of domains that do not match the new certificate.
- protocol string
- Protocol.
- cert
Id List<String>Lists - Certificate ID list bound to the instance.
- listener
Id String - Listener ID.
- listener
Name String - Listener name.
- listener
Status String - Listener status.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- protocol String
- Protocol.
- cert
Id string[]Lists - Certificate ID list bound to the instance.
- listener
Id string - Listener ID.
- listener
Name string - Listener name.
- listener
Status string - Listener status.
- no
Match string[]Domains - List of domains that do not match the new certificate.
- protocol string
- Protocol.
- cert_
id_ Sequence[str]lists - Certificate ID list bound to the instance.
- listener_
id str - Listener ID.
- listener_
name str - Listener name.
- listener_
status str - Listener status.
- no_
match_ Sequence[str]domains - List of domains that do not match the new certificate.
- protocol str
- Protocol.
- cert
Id List<String>Lists - Certificate ID list bound to the instance.
- listener
Id String - Listener ID.
- listener
Name String - Listener name.
- listener
Status String - Listener status.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- protocol String
- Protocol.
GetSslCertificateBindResourceTaskDetailLife
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Life Instance List> - WAF instance detail list.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Life Instance List - WAF instance detail list.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Life Instance List> - WAF instance detail list.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Life Instance List[] - WAF instance detail list.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Life Instance List] - WAF instance detail list.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailLifeInstanceList
GetSslCertificateBindResourceTaskDetailMqtt
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Mqtt Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Mqtt Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Mqtt Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Mqtt Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Mqtt Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailMqttInstanceList
- Ca
Cert List<string>Id Lists - CA certificate list.
- Instance
Id string - Instance ID.
- Instance
Name string - Instance name.
- Instance
Status string - Instance status.
- No
Match List<string>Domains - List of domains that do not match the new certificate.
- Server
Cert List<string>Id Lists - Server certificate list.
- Ca
Cert []stringId Lists - CA certificate list.
- Instance
Id string - Instance ID.
- Instance
Name string - Instance name.
- Instance
Status string - Instance status.
- No
Match []stringDomains - List of domains that do not match the new certificate.
- Server
Cert []stringId Lists - Server certificate list.
- ca_
cert_ list(string)id_ lists - CA certificate list.
- instance_
id string - Instance ID.
- instance_
name string - Instance name.
- instance_
status string - Instance status.
- no_
match_ list(string)domains - List of domains that do not match the new certificate.
- server_
cert_ list(string)id_ lists - Server certificate list.
- ca
Cert List<String>Id Lists - CA certificate list.
- instance
Id String - Instance ID.
- instance
Name String - Instance name.
- instance
Status String - Instance status.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- server
Cert List<String>Id Lists - Server certificate list.
- ca
Cert string[]Id Lists - CA certificate list.
- instance
Id string - Instance ID.
- instance
Name string - Instance name.
- instance
Status string - Instance status.
- no
Match string[]Domains - List of domains that do not match the new certificate.
- server
Cert string[]Id Lists - Server certificate list.
- ca_
cert_ Sequence[str]id_ lists - CA certificate list.
- instance_
id str - Instance ID.
- instance_
name str - Instance name.
- instance_
status str - Instance status.
- no_
match_ Sequence[str]domains - List of domains that do not match the new certificate.
- server_
cert_ Sequence[str]id_ lists - Server certificate list.
- ca
Cert List<String>Id Lists - CA certificate list.
- instance
Id String - Instance ID.
- instance
Name String - Instance name.
- instance
Status String - Instance status.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- server
Cert List<String>Id Lists - Server certificate list.
GetSslCertificateBindResourceTaskDetailScf
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Scf Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Scf Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Scf Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Scf Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Scf Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailScfInstanceList
- Certificate
Id string - Certificate ID.
- Domain string
- Domain name.
- Protocol string
- Protocol.
- Region string
- Region.
- Certificate
Id string - Certificate ID.
- Domain string
- Domain name.
- Protocol string
- Protocol.
- Region string
- Region.
- certificate_
id string - Certificate ID.
- domain string
- Domain name.
- protocol string
- Protocol.
- region string
- Region.
- certificate
Id String - Certificate ID.
- domain String
- Domain name.
- protocol String
- Protocol.
- region String
- Region.
- certificate
Id string - Certificate ID.
- domain string
- Domain name.
- protocol string
- Protocol.
- region string
- Region.
- certificate_
id str - Certificate ID.
- domain str
- Domain name.
- protocol str
- Protocol.
- region str
- Region.
- certificate
Id String - Certificate ID.
- domain String
- Domain name.
- protocol String
- Protocol.
- region String
- Region.
GetSslCertificateBindResourceTaskDetailTcb
- Environments
List<Get
Ssl Certificate Bind Resource Task Detail Tcb Environment> - TCB environment instance detail list.
- Error string
- Query error message.
- Region string
- Region.
- Environments
[]Get
Ssl Certificate Bind Resource Task Detail Tcb Environment - TCB environment instance detail list.
- Error string
- Query error message.
- Region string
- Region.
- environments list(object)
- TCB environment instance detail list.
- error string
- Query error message.
- region string
- Region.
- environments
List<Get
Ssl Certificate Bind Resource Task Detail Tcb Environment> - TCB environment instance detail list.
- error String
- Query error message.
- region String
- Region.
- environments
Get
Ssl Certificate Bind Resource Task Detail Tcb Environment[] - TCB environment instance detail list.
- error string
- Query error message.
- region string
- Region.
- environments
Sequence[Get
Ssl Certificate Bind Resource Task Detail Tcb Environment] - TCB environment instance detail list.
- error str
- Query error message.
- region str
- Region.
- environments List<Property Map>
- TCB environment instance detail list.
- error String
- Query error message.
- region String
- Region.
GetSslCertificateBindResourceTaskDetailTcbEnvironment
- access_
services list(object) - Access service.
- environments list(object)
- TCB environment.
- host_
services list(object) - Host service.
- access_
services Sequence[GetSsl Certificate Bind Resource Task Detail Tcb Environment Access Service] - Access service.
- environments
Sequence[Get
Ssl Certificate Bind Resource Task Detail Tcb Environment Environment] - TCB environment.
- host_
services Sequence[GetSsl Certificate Bind Resource Task Detail Tcb Environment Host Service] - Host service.
- access
Services List<Property Map> - Access service.
- environments List<Property Map>
- TCB environment.
- host
Services List<Property Map> - Host service.
GetSslCertificateBindResourceTaskDetailTcbEnvironmentAccessService
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tcb Environment Access Service Instance List> - WAF instance detail list.
- Total
Count double - Total number of WAF instances in the region.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Tcb Environment Access Service Instance List - WAF instance detail list.
- Total
Count float64 - Total number of WAF instances in the region.
- instance_
lists list(object) - WAF instance detail list.
- total_
count number - Total number of WAF instances in the region.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tcb Environment Access Service Instance List> - WAF instance detail list.
- total
Count Double - Total number of WAF instances in the region.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Tcb Environment Access Service Instance List[] - WAF instance detail list.
- total
Count number - Total number of WAF instances in the region.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tcb Environment Access Service Instance List] - WAF instance detail list.
- total_
count float - Total number of WAF instances in the region.
- instance
Lists List<Property Map> - WAF instance detail list.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailTcbEnvironmentAccessServiceInstanceList
- Domain string
- Domain name.
- ICPStatus double
- ICP blacklist status, 0-not banned, 1-banned.
- Is
Preempted bool - Whether preempted.
- Old
Certificate stringId - Bound certificate ID.
- Status double
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- Union
Status double - Unified domain status.
- Domain string
- Domain name.
- ICPStatus float64
- ICP blacklist status, 0-not banned, 1-banned.
- Is
Preempted bool - Whether preempted.
- Old
Certificate stringId - Bound certificate ID.
- Status float64
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- Union
Status float64 - Unified domain status.
- domain string
- Domain name.
- i_
cp_ numberstatus - ICP blacklist status, 0-not banned, 1-banned.
- is_
preempted bool - Whether preempted.
- old_
certificate_ stringid - Bound certificate ID.
- status number
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- union_
status number - Unified domain status.
- domain String
- Domain name.
- i
CPStatus Double - ICP blacklist status, 0-not banned, 1-banned.
- is
Preempted Boolean - Whether preempted.
- old
Certificate StringId - Bound certificate ID.
- status Double
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- union
Status Double - Unified domain status.
- domain string
- Domain name.
- i
CPStatus number - ICP blacklist status, 0-not banned, 1-banned.
- is
Preempted boolean - Whether preempted.
- old
Certificate stringId - Bound certificate ID.
- status number
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- union
Status number - Unified domain status.
- domain str
- Domain name.
- i_
cp_ floatstatus - ICP blacklist status, 0-not banned, 1-banned.
- is_
preempted bool - Whether preempted.
- old_
certificate_ strid - Bound certificate ID.
- status float
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- union_
status float - Unified domain status.
- domain String
- Domain name.
- i
CPStatus Number - ICP blacklist status, 0-not banned, 1-banned.
- is
Preempted Boolean - Whether preempted.
- old
Certificate StringId - Bound certificate ID.
- status Number
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- union
Status Number - Unified domain status.
GetSslCertificateBindResourceTaskDetailTcbEnvironmentEnvironment
GetSslCertificateBindResourceTaskDetailTcbEnvironmentHostService
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tcb Environment Host Service Instance List> - WAF instance detail list.
- Total
Count double - Total number of WAF instances in the region.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Tcb Environment Host Service Instance List - WAF instance detail list.
- Total
Count float64 - Total number of WAF instances in the region.
- instance_
lists list(object) - WAF instance detail list.
- total_
count number - Total number of WAF instances in the region.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tcb Environment Host Service Instance List> - WAF instance detail list.
- total
Count Double - Total number of WAF instances in the region.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Tcb Environment Host Service Instance List[] - WAF instance detail list.
- total
Count number - Total number of WAF instances in the region.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tcb Environment Host Service Instance List] - WAF instance detail list.
- total_
count float - Total number of WAF instances in the region.
- instance
Lists List<Property Map> - WAF instance detail list.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailTcbEnvironmentHostServiceInstanceList
- DNSStatus string
- DNS status.
- Domain string
- Domain name.
- Old
Certificate stringId - Bound certificate ID.
- Status string
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- DNSStatus string
- DNS status.
- Domain string
- Domain name.
- Old
Certificate stringId - Bound certificate ID.
- Status string
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- d_
ns_ stringstatus - DNS status.
- domain string
- Domain name.
- old_
certificate_ stringid - Bound certificate ID.
- status string
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- d
NSStatus String - DNS status.
- domain String
- Domain name.
- old
Certificate StringId - Bound certificate ID.
- status String
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- d
NSStatus string - DNS status.
- domain string
- Domain name.
- old
Certificate stringId - Bound certificate ID.
- status string
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- d_
ns_ strstatus - DNS status.
- domain str
- Domain name.
- old_
certificate_ strid - Bound certificate ID.
- status str
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
- d
NSStatus String - DNS status.
- domain String
- Domain name.
- old
Certificate StringId - Bound certificate ID.
- status String
- Domain status. deployed: deployed; processing: deploying; applying: applying; failed: apply failed; issued: bind failed.
GetSslCertificateBindResourceTaskDetailTdmq
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tdmq Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Tdmq Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tdmq Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Tdmq Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tdmq Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailTdmqInstanceList
- Ca
Cert stringId - CA certificate ID.
- Cert
Id string - Certificate ID.
- Instance
Id string - Instance ID.
- Instance
Name string - Instance name.
- Instance
Status string - Instance status.
- No
Match List<string>Domains - List of domains that do not match the new certificate.
- Ca
Cert stringId - CA certificate ID.
- Cert
Id string - Certificate ID.
- Instance
Id string - Instance ID.
- Instance
Name string - Instance name.
- Instance
Status string - Instance status.
- No
Match []stringDomains - List of domains that do not match the new certificate.
- ca_
cert_ stringid - CA certificate ID.
- cert_
id string - Certificate ID.
- instance_
id string - Instance ID.
- instance_
name string - Instance name.
- instance_
status string - Instance status.
- no_
match_ list(string)domains - List of domains that do not match the new certificate.
- ca
Cert StringId - CA certificate ID.
- cert
Id String - Certificate ID.
- instance
Id String - Instance ID.
- instance
Name String - Instance name.
- instance
Status String - Instance status.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- ca
Cert stringId - CA certificate ID.
- cert
Id string - Certificate ID.
- instance
Id string - Instance ID.
- instance
Name string - Instance name.
- instance
Status string - Instance status.
- no
Match string[]Domains - List of domains that do not match the new certificate.
- ca_
cert_ strid - CA certificate ID.
- cert_
id str - Certificate ID.
- instance_
id str - Instance ID.
- instance_
name str - Instance name.
- instance_
status str - Instance status.
- no_
match_ Sequence[str]domains - List of domains that do not match the new certificate.
- ca
Cert StringId - CA certificate ID.
- cert
Id String - Certificate ID.
- instance
Id String - Instance ID.
- instance
Name String - Instance name.
- instance
Status String - Instance status.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
GetSslCertificateBindResourceTaskDetailTeo
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Teo Instance List> - WAF instance detail list.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Teo Instance List - WAF instance detail list.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Teo Instance List> - WAF instance detail list.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Teo Instance List[] - WAF instance detail list.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Teo Instance List] - WAF instance detail list.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailTeoInstanceList
GetSslCertificateBindResourceTaskDetailTke
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tke Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Tke Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tke Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Tke Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tke Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailTkeInstanceList
- Cluster
Id string - Cluster ID.
- Cluster
Name string - Cluster name.
- Cluster
Type string - Cluster type.
- Cluster
Version string - Cluster version.
- Namespace
Lists List<GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List> - Cluster namespace list.
- Cluster
Id string - Cluster ID.
- Cluster
Name string - Cluster name.
- Cluster
Type string - Cluster type.
- Cluster
Version string - Cluster version.
- Namespace
Lists []GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List - Cluster namespace list.
- cluster_
id string - Cluster ID.
- cluster_
name string - Cluster name.
- cluster_
type string - Cluster type.
- cluster_
version string - Cluster version.
- namespace_
lists list(object) - Cluster namespace list.
- cluster
Id String - Cluster ID.
- cluster
Name String - Cluster name.
- cluster
Type String - Cluster type.
- cluster
Version String - Cluster version.
- namespace
Lists List<GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List> - Cluster namespace list.
- cluster
Id string - Cluster ID.
- cluster
Name string - Cluster name.
- cluster
Type string - Cluster type.
- cluster
Version string - Cluster version.
- namespace
Lists GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List[] - Cluster namespace list.
- cluster_
id str - Cluster ID.
- cluster_
name str - Cluster name.
- cluster_
type str - Cluster type.
- cluster_
version str - Cluster version.
- namespace_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List] - Cluster namespace list.
- cluster
Id String - Cluster ID.
- cluster
Name String - Cluster name.
- cluster
Type String - Cluster type.
- cluster
Version String - Cluster version.
- namespace
Lists List<Property Map> - Cluster namespace list.
GetSslCertificateBindResourceTaskDetailTkeInstanceListNamespaceList
- Name string
- Gateway certificate name.
- Secret
Lists List<GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List> - Secret list.
- Name string
- Gateway certificate name.
- Secret
Lists []GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List - Secret list.
- name string
- Gateway certificate name.
- secret_
lists list(object) - Secret list.
- name String
- Gateway certificate name.
- secret
Lists List<GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List> - Secret list.
- name string
- Gateway certificate name.
- secret
Lists GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List[] - Secret list.
- name str
- Gateway certificate name.
- secret_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List] - Secret list.
- name String
- Gateway certificate name.
- secret
Lists List<Property Map> - Secret list.
GetSslCertificateBindResourceTaskDetailTkeInstanceListNamespaceListSecretList
- Cert
Id string - Certificate ID.
- Ingress
Lists List<GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List Ingress List> - Ingress list.
- Name string
- Gateway certificate name.
- No
Match List<string>Domains - List of domains that do not match the new certificate.
- Cert
Id string - Certificate ID.
- Ingress
Lists []GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List Ingress List - Ingress list.
- Name string
- Gateway certificate name.
- No
Match []stringDomains - List of domains that do not match the new certificate.
- cert_
id string - Certificate ID.
- ingress_
lists list(object) - Ingress list.
- name string
- Gateway certificate name.
- no_
match_ list(string)domains - List of domains that do not match the new certificate.
- cert
Id String - Certificate ID.
- ingress
Lists List<GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List Ingress List> - Ingress list.
- name String
- Gateway certificate name.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
- cert
Id string - Certificate ID.
- ingress
Lists GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List Ingress List[] - Ingress list.
- name string
- Gateway certificate name.
- no
Match string[]Domains - List of domains that do not match the new certificate.
- cert_
id str - Certificate ID.
- ingress_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tke Instance List Namespace List Secret List Ingress List] - Ingress list.
- name str
- Gateway certificate name.
- no_
match_ Sequence[str]domains - List of domains that do not match the new certificate.
- cert
Id String - Certificate ID.
- ingress
Lists List<Property Map> - Ingress list.
- name String
- Gateway certificate name.
- no
Match List<String>Domains - List of domains that do not match the new certificate.
GetSslCertificateBindResourceTaskDetailTkeInstanceListNamespaceListSecretListIngressList
- Domains List<string>
- Ingress domain list.
- Ingress
Name string - Ingress name.
- Tls
Domains List<string> - TLS domain list.
- Domains []string
- Ingress domain list.
- Ingress
Name string - Ingress name.
- Tls
Domains []string - TLS domain list.
- domains list(string)
- Ingress domain list.
- ingress_
name string - Ingress name.
- tls_
domains list(string) - TLS domain list.
- domains List<String>
- Ingress domain list.
- ingress
Name String - Ingress name.
- tls
Domains List<String> - TLS domain list.
- domains string[]
- Ingress domain list.
- ingress
Name string - Ingress name.
- tls
Domains string[] - TLS domain list.
- domains Sequence[str]
- Ingress domain list.
- ingress_
name str - Ingress name.
- tls_
domains Sequence[str] - TLS domain list.
- domains List<String>
- Ingress domain list.
- ingress
Name String - Ingress name.
- tls
Domains List<String> - TLS domain list.
GetSslCertificateBindResourceTaskDetailTse
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tse Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Tse Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Tse Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Tse Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tse Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailTseInstanceList
- Certificate
Lists List<GetSsl Certificate Bind Resource Task Detail Tse Instance List Certificate List> - Gateway certificate list.
- Gateway
Id string - Gateway ID.
- Gateway
Name string - Gateway name.
- Certificate
Lists []GetSsl Certificate Bind Resource Task Detail Tse Instance List Certificate List - Gateway certificate list.
- Gateway
Id string - Gateway ID.
- Gateway
Name string - Gateway name.
- certificate_
lists list(object) - Gateway certificate list.
- gateway_
id string - Gateway ID.
- gateway_
name string - Gateway name.
- certificate
Lists List<GetSsl Certificate Bind Resource Task Detail Tse Instance List Certificate List> - Gateway certificate list.
- gateway
Id String - Gateway ID.
- gateway
Name String - Gateway name.
- certificate
Lists GetSsl Certificate Bind Resource Task Detail Tse Instance List Certificate List[] - Gateway certificate list.
- gateway
Id string - Gateway ID.
- gateway
Name string - Gateway name.
- certificate_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Tse Instance List Certificate List] - Gateway certificate list.
- gateway_
id str - Gateway ID.
- gateway_
name str - Gateway name.
- certificate
Lists List<Property Map> - Gateway certificate list.
- gateway
Id String - Gateway ID.
- gateway
Name String - Gateway name.
GetSslCertificateBindResourceTaskDetailTseInstanceListCertificateList
- Bind
Domains List<string> - Bound domains.
- Cert
Id string - Certificate ID.
- Cert
Source string - Certificate source.
- Id string
- Gateway certificate ID.
- Name string
- Gateway certificate name.
- Bind
Domains []string - Bound domains.
- Cert
Id string - Certificate ID.
- Cert
Source string - Certificate source.
- Id string
- Gateway certificate ID.
- Name string
- Gateway certificate name.
- bind_
domains list(string) - Bound domains.
- cert_
id string - Certificate ID.
- cert_
source string - Certificate source.
- id string
- Gateway certificate ID.
- name string
- Gateway certificate name.
- bind
Domains List<String> - Bound domains.
- cert
Id String - Certificate ID.
- cert
Source String - Certificate source.
- id String
- Gateway certificate ID.
- name String
- Gateway certificate name.
- bind
Domains string[] - Bound domains.
- cert
Id string - Certificate ID.
- cert
Source string - Certificate source.
- id string
- Gateway certificate ID.
- name string
- Gateway certificate name.
- bind_
domains Sequence[str] - Bound domains.
- cert_
id str - Certificate ID.
- cert_
source str - Certificate source.
- id str
- Gateway certificate ID.
- name str
- Gateway certificate name.
- bind
Domains List<String> - Bound domains.
- cert
Id String - Certificate ID.
- cert
Source String - Certificate source.
- id String
- Gateway certificate ID.
- name String
- Gateway certificate name.
GetSslCertificateBindResourceTaskDetailVod
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Vod Instance List> - WAF instance detail list.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Vod Instance List - WAF instance detail list.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Vod Instance List> - WAF instance detail list.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Vod Instance List[] - WAF instance detail list.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Vod Instance List] - WAF instance detail list.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailVodInstanceList
GetSslCertificateBindResourceTaskDetailWaf
- Error string
- Query error message.
- Instance
Lists List<GetSsl Certificate Bind Resource Task Detail Waf Instance List> - WAF instance detail list.
- Region string
- Region.
- Total
Count double - Total number of WAF instances in the region.
- Error string
- Query error message.
- Instance
Lists []GetSsl Certificate Bind Resource Task Detail Waf Instance List - WAF instance detail list.
- Region string
- Region.
- Total
Count float64 - Total number of WAF instances in the region.
- error string
- Query error message.
- instance_
lists list(object) - WAF instance detail list.
- region string
- Region.
- total_
count number - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<GetSsl Certificate Bind Resource Task Detail Waf Instance List> - WAF instance detail list.
- region String
- Region.
- total
Count Double - Total number of WAF instances in the region.
- error string
- Query error message.
- instance
Lists GetSsl Certificate Bind Resource Task Detail Waf Instance List[] - WAF instance detail list.
- region string
- Region.
- total
Count number - Total number of WAF instances in the region.
- error str
- Query error message.
- instance_
lists Sequence[GetSsl Certificate Bind Resource Task Detail Waf Instance List] - WAF instance detail list.
- region str
- Region.
- total_
count float - Total number of WAF instances in the region.
- error String
- Query error message.
- instance
Lists List<Property Map> - WAF instance detail list.
- region String
- Region.
- total
Count Number - Total number of WAF instances in the region.
GetSslCertificateBindResourceTaskDetailWafInstanceList
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
Viewing docs for tencentcloud 1.83.23
published on Friday, Aug 14, 2026 by tencentcloudstack
published on Friday, Aug 14, 2026 by tencentcloudstack