tencentcloud-sdk-ssl 3.0.572 → 3.0.573
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20191205/client.rb +504 -0
- data/lib/v20191205/models.rb +2165 -6
- metadata +2 -2
data/lib/v20191205/models.rb
CHANGED
@@ -17,6 +17,39 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Ssl
|
19
19
|
module V20191205
|
20
|
+
# apiGateway实例详情
|
21
|
+
class ApiGatewayInstanceDetail < TencentCloud::Common::AbstractModel
|
22
|
+
# @param ServiceId: 实例ID
|
23
|
+
# @type ServiceId: String
|
24
|
+
# @param ServiceName: 实例名称
|
25
|
+
# @type ServiceName: String
|
26
|
+
# @param Domain: 域名
|
27
|
+
# @type Domain: String
|
28
|
+
# @param CertId: 证书ID
|
29
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30
|
+
# @type CertId: String
|
31
|
+
# @param Protocol: 使用协议
|
32
|
+
# @type Protocol: String
|
33
|
+
|
34
|
+
attr_accessor :ServiceId, :ServiceName, :Domain, :CertId, :Protocol
|
35
|
+
|
36
|
+
def initialize(serviceid=nil, servicename=nil, domain=nil, certid=nil, protocol=nil)
|
37
|
+
@ServiceId = serviceid
|
38
|
+
@ServiceName = servicename
|
39
|
+
@Domain = domain
|
40
|
+
@CertId = certid
|
41
|
+
@Protocol = protocol
|
42
|
+
end
|
43
|
+
|
44
|
+
def deserialize(params)
|
45
|
+
@ServiceId = params['ServiceId']
|
46
|
+
@ServiceName = params['ServiceName']
|
47
|
+
@Domain = params['Domain']
|
48
|
+
@CertId = params['CertId']
|
49
|
+
@Protocol = params['Protocol']
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
20
53
|
# ApplyCertificate请求参数结构体
|
21
54
|
class ApplyCertificateRequest < TencentCloud::Common::AbstractModel
|
22
55
|
# @param DvAuthMethod: 验证方式:DNS_AUTO = 自动DNS验证,DNS = 手动DNS验证,FILE = 文件验证。
|
@@ -141,6 +174,30 @@ module TencentCloud
|
|
141
174
|
end
|
142
175
|
end
|
143
176
|
|
177
|
+
# CDN实例详情
|
178
|
+
class CdnInstanceDetail < TencentCloud::Common::AbstractModel
|
179
|
+
# @param Domain: 域名
|
180
|
+
# @type Domain: String
|
181
|
+
# @param CertId: 已部署证书ID
|
182
|
+
# @type CertId: String
|
183
|
+
# @param Status: 域名状态
|
184
|
+
# @type Status: String
|
185
|
+
|
186
|
+
attr_accessor :Domain, :CertId, :Status
|
187
|
+
|
188
|
+
def initialize(domain=nil, certid=nil, status=nil)
|
189
|
+
@Domain = domain
|
190
|
+
@CertId = certid
|
191
|
+
@Status = status
|
192
|
+
end
|
193
|
+
|
194
|
+
def deserialize(params)
|
195
|
+
@Domain = params['Domain']
|
196
|
+
@CertId = params['CertId']
|
197
|
+
@Status = params['Status']
|
198
|
+
end
|
199
|
+
end
|
200
|
+
|
144
201
|
# 云资源配置详情
|
145
202
|
class CertHostingInfo < TencentCloud::Common::AbstractModel
|
146
203
|
# @param CertId: 证书ID
|
@@ -172,6 +229,26 @@ module TencentCloud
|
|
172
229
|
end
|
173
230
|
end
|
174
231
|
|
232
|
+
# CLB证书详情
|
233
|
+
class Certificate < TencentCloud::Common::AbstractModel
|
234
|
+
# @param CertId: 证书ID
|
235
|
+
# @type CertId: String
|
236
|
+
# @param DnsNames: 证书绑定的域名
|
237
|
+
# @type DnsNames: Array
|
238
|
+
|
239
|
+
attr_accessor :CertId, :DnsNames
|
240
|
+
|
241
|
+
def initialize(certid=nil, dnsnames=nil)
|
242
|
+
@CertId = certid
|
243
|
+
@DnsNames = dnsnames
|
244
|
+
end
|
245
|
+
|
246
|
+
def deserialize(params)
|
247
|
+
@CertId = params['CertId']
|
248
|
+
@DnsNames = params['DnsNames']
|
249
|
+
end
|
250
|
+
end
|
251
|
+
|
175
252
|
# 获取证书列表(DescribeCertificates)返回参数键为 Certificates 数组下,key为CertificateExtra 的内容。
|
176
253
|
class CertificateExtra < TencentCloud::Common::AbstractModel
|
177
254
|
# @param DomainNumber: 证书可配置域名数量。
|
@@ -478,6 +555,128 @@ module TencentCloud
|
|
478
555
|
end
|
479
556
|
end
|
480
557
|
|
558
|
+
# clb实例详情
|
559
|
+
class ClbInstanceDetail < TencentCloud::Common::AbstractModel
|
560
|
+
# @param LoadBalancerId: CLB实例ID
|
561
|
+
# @type LoadBalancerId: String
|
562
|
+
# @param LoadBalancerName: CLB实例名称
|
563
|
+
# @type LoadBalancerName: String
|
564
|
+
# @param Listeners: CLB监听器列表
|
565
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
566
|
+
# @type Listeners: Array
|
567
|
+
|
568
|
+
attr_accessor :LoadBalancerId, :LoadBalancerName, :Listeners
|
569
|
+
|
570
|
+
def initialize(loadbalancerid=nil, loadbalancername=nil, listeners=nil)
|
571
|
+
@LoadBalancerId = loadbalancerid
|
572
|
+
@LoadBalancerName = loadbalancername
|
573
|
+
@Listeners = listeners
|
574
|
+
end
|
575
|
+
|
576
|
+
def deserialize(params)
|
577
|
+
@LoadBalancerId = params['LoadBalancerId']
|
578
|
+
@LoadBalancerName = params['LoadBalancerName']
|
579
|
+
unless params['Listeners'].nil?
|
580
|
+
@Listeners = []
|
581
|
+
params['Listeners'].each do |i|
|
582
|
+
clblistener_tmp = ClbListener.new
|
583
|
+
clblistener_tmp.deserialize(i)
|
584
|
+
@Listeners << clblistener_tmp
|
585
|
+
end
|
586
|
+
end
|
587
|
+
end
|
588
|
+
end
|
589
|
+
|
590
|
+
# CLB实例监听器
|
591
|
+
class ClbListener < TencentCloud::Common::AbstractModel
|
592
|
+
# @param ListenerId: 监听器ID
|
593
|
+
# @type ListenerId: String
|
594
|
+
# @param ListenerName: 监听器名称
|
595
|
+
# @type ListenerName: String
|
596
|
+
# @param SniSwitch: 是否开启SNI,1为开启,0为关闭
|
597
|
+
# @type SniSwitch: Integer
|
598
|
+
# @param Protocol: 监听器协议类型, HTTPS|TCP_SSL
|
599
|
+
# @type Protocol: String
|
600
|
+
# @param Certificate: 监听器绑定的证书数据
|
601
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
602
|
+
# @type Certificate: :class:`Tencentcloud::Ssl.v20191205.models.Certificate`
|
603
|
+
# @param Rules: 监听器规则列表
|
604
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
605
|
+
# @type Rules: Array
|
606
|
+
# @param NoMatchDomains: 不匹配域名列表
|
607
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
608
|
+
# @type NoMatchDomains: Array
|
609
|
+
|
610
|
+
attr_accessor :ListenerId, :ListenerName, :SniSwitch, :Protocol, :Certificate, :Rules, :NoMatchDomains
|
611
|
+
|
612
|
+
def initialize(listenerid=nil, listenername=nil, sniswitch=nil, protocol=nil, certificate=nil, rules=nil, nomatchdomains=nil)
|
613
|
+
@ListenerId = listenerid
|
614
|
+
@ListenerName = listenername
|
615
|
+
@SniSwitch = sniswitch
|
616
|
+
@Protocol = protocol
|
617
|
+
@Certificate = certificate
|
618
|
+
@Rules = rules
|
619
|
+
@NoMatchDomains = nomatchdomains
|
620
|
+
end
|
621
|
+
|
622
|
+
def deserialize(params)
|
623
|
+
@ListenerId = params['ListenerId']
|
624
|
+
@ListenerName = params['ListenerName']
|
625
|
+
@SniSwitch = params['SniSwitch']
|
626
|
+
@Protocol = params['Protocol']
|
627
|
+
unless params['Certificate'].nil?
|
628
|
+
@Certificate = Certificate.new
|
629
|
+
@Certificate.deserialize(params['Certificate'])
|
630
|
+
end
|
631
|
+
unless params['Rules'].nil?
|
632
|
+
@Rules = []
|
633
|
+
params['Rules'].each do |i|
|
634
|
+
clblistenerrule_tmp = ClbListenerRule.new
|
635
|
+
clblistenerrule_tmp.deserialize(i)
|
636
|
+
@Rules << clblistenerrule_tmp
|
637
|
+
end
|
638
|
+
end
|
639
|
+
@NoMatchDomains = params['NoMatchDomains']
|
640
|
+
end
|
641
|
+
end
|
642
|
+
|
643
|
+
# CLB监听器规则
|
644
|
+
class ClbListenerRule < TencentCloud::Common::AbstractModel
|
645
|
+
# @param LocationId: 规则ID
|
646
|
+
# @type LocationId: String
|
647
|
+
# @param Domain: 规则绑定的域名
|
648
|
+
# @type Domain: String
|
649
|
+
# @param IsMatch: 规则是否匹配待绑定证书的域名
|
650
|
+
# @type IsMatch: Boolean
|
651
|
+
# @param Certificate: 规则已绑定的证书数据
|
652
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
653
|
+
# @type Certificate: :class:`Tencentcloud::Ssl.v20191205.models.Certificate`
|
654
|
+
# @param NoMatchDomains: 不匹配域名列表
|
655
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
656
|
+
# @type NoMatchDomains: Array
|
657
|
+
|
658
|
+
attr_accessor :LocationId, :Domain, :IsMatch, :Certificate, :NoMatchDomains
|
659
|
+
|
660
|
+
def initialize(locationid=nil, domain=nil, ismatch=nil, certificate=nil, nomatchdomains=nil)
|
661
|
+
@LocationId = locationid
|
662
|
+
@Domain = domain
|
663
|
+
@IsMatch = ismatch
|
664
|
+
@Certificate = certificate
|
665
|
+
@NoMatchDomains = nomatchdomains
|
666
|
+
end
|
667
|
+
|
668
|
+
def deserialize(params)
|
669
|
+
@LocationId = params['LocationId']
|
670
|
+
@Domain = params['Domain']
|
671
|
+
@IsMatch = params['IsMatch']
|
672
|
+
unless params['Certificate'].nil?
|
673
|
+
@Certificate = Certificate.new
|
674
|
+
@Certificate.deserialize(params['Certificate'])
|
675
|
+
end
|
676
|
+
@NoMatchDomains = params['NoMatchDomains']
|
677
|
+
end
|
678
|
+
end
|
679
|
+
|
481
680
|
# CommitCertificateInformation请求参数结构体
|
482
681
|
class CommitCertificateInformationRequest < TencentCloud::Common::AbstractModel
|
483
682
|
# @param CertificateId: 证书 ID。
|
@@ -604,6 +803,42 @@ module TencentCloud
|
|
604
803
|
end
|
605
804
|
end
|
606
805
|
|
806
|
+
# COS实例详情
|
807
|
+
class CosInstanceDetail < TencentCloud::Common::AbstractModel
|
808
|
+
# @param Domain: 域名
|
809
|
+
# @type Domain: String
|
810
|
+
# @param CertId: 已绑定的证书ID
|
811
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
812
|
+
# @type CertId: String
|
813
|
+
# @param Status: ENABLED: 域名上线状态
|
814
|
+
# DISABLED:域名下线状态
|
815
|
+
# @type Status: String
|
816
|
+
# @param Bucket: 存储桶名称
|
817
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
818
|
+
# @type Bucket: String
|
819
|
+
# @param Region: 存储桶地域
|
820
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
821
|
+
# @type Region: String
|
822
|
+
|
823
|
+
attr_accessor :Domain, :CertId, :Status, :Bucket, :Region
|
824
|
+
|
825
|
+
def initialize(domain=nil, certid=nil, status=nil, bucket=nil, region=nil)
|
826
|
+
@Domain = domain
|
827
|
+
@CertId = certid
|
828
|
+
@Status = status
|
829
|
+
@Bucket = bucket
|
830
|
+
@Region = region
|
831
|
+
end
|
832
|
+
|
833
|
+
def deserialize(params)
|
834
|
+
@Domain = params['Domain']
|
835
|
+
@CertId = params['CertId']
|
836
|
+
@Status = params['Status']
|
837
|
+
@Bucket = params['Bucket']
|
838
|
+
@Region = params['Region']
|
839
|
+
end
|
840
|
+
end
|
841
|
+
|
607
842
|
# CreateCertificate请求参数结构体
|
608
843
|
class CreateCertificateRequest < TencentCloud::Common::AbstractModel
|
609
844
|
# @param ProductId: 证书商品ID,3 = SecureSite 增强型企业版(EV Pro), 4 = SecureSite 增强型(EV), 5 = SecureSite 企业型专业版(OV Pro), 6 = SecureSite 企业型(OV), 7 = SecureSite 企业型(OV)通配符, 8 = Geotrust 增强型(EV), 9 = Geotrust 企业型(OV), 10 = Geotrust 企业型(OV)通配符, 11 = TrustAsia 域名型多域名 SSL 证书, 12 = TrustAsia 域名型(DV)通配符, 13 = TrustAsia 企业型通配符(OV)SSL 证书(D3), 14 = TrustAsia 企业型(OV)SSL 证书(D3), 15 = TrustAsia 企业型多域名 (OV)SSL 证书(D3), 16 = TrustAsia 增强型 (EV)SSL 证书(D3), 17 = TrustAsia 增强型多域名(EV)SSL 证书(D3), 18 = GlobalSign 企业型(OV)SSL 证书, 19 = GlobalSign 企业型通配符 (OV)SSL 证书, 20 = GlobalSign 增强型 (EV)SSL 证书, 21 = TrustAsia 企业型通配符多域名(OV)SSL 证书(D3), 22 = GlobalSign 企业型多域名(OV)SSL 证书, 23 = GlobalSign 企业型通配符多域名(OV)SSL 证书, 24 = GlobalSign 增强型多域名(EV)SSL 证书,25 = Wotrus 域名型证书,26 = Wotrus 域名型多域名证书,27 = Wotrus 域名型通配符证书,28 = Wotrus 企业型证书,29 = Wotrus 企业型多域名证书,30 = Wotrus 企业型通配符证书,31 = Wotrus 增强型证书,32 = Wotrus 增强型多域名证书,33 = DNSPod 国密域名型证书,34 = DNSPod 国密域名型多域名证书,35 = DNSPod 国密域名型通配符证书,37 = DNSPod 国密企业型证书,38 = DNSPod 国密企业型多域名证书,39 = DNSPod 国密企业型通配符证书,40 = DNSPod 国密增强型证书,41 = DNSPod 国密增强型多域名证书,42 = TrustAsia 域名型通配符多域名证书。
|
@@ -652,6 +887,39 @@ module TencentCloud
|
|
652
887
|
end
|
653
888
|
end
|
654
889
|
|
890
|
+
# ddos复杂类型
|
891
|
+
class DdosInstanceDetail < TencentCloud::Common::AbstractModel
|
892
|
+
# @param Domain: 域名
|
893
|
+
# @type Domain: String
|
894
|
+
# @param InstanceId: 实例ID
|
895
|
+
# @type InstanceId: String
|
896
|
+
# @param Protocol: 协议类型
|
897
|
+
# @type Protocol: String
|
898
|
+
# @param CertId: 证书ID
|
899
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
900
|
+
# @type CertId: String
|
901
|
+
# @param VirtualPort: 转发端口
|
902
|
+
# @type VirtualPort: String
|
903
|
+
|
904
|
+
attr_accessor :Domain, :InstanceId, :Protocol, :CertId, :VirtualPort
|
905
|
+
|
906
|
+
def initialize(domain=nil, instanceid=nil, protocol=nil, certid=nil, virtualport=nil)
|
907
|
+
@Domain = domain
|
908
|
+
@InstanceId = instanceid
|
909
|
+
@Protocol = protocol
|
910
|
+
@CertId = certid
|
911
|
+
@VirtualPort = virtualport
|
912
|
+
end
|
913
|
+
|
914
|
+
def deserialize(params)
|
915
|
+
@Domain = params['Domain']
|
916
|
+
@InstanceId = params['InstanceId']
|
917
|
+
@Protocol = params['Protocol']
|
918
|
+
@CertId = params['CertId']
|
919
|
+
@VirtualPort = params['VirtualPort']
|
920
|
+
end
|
921
|
+
end
|
922
|
+
|
655
923
|
# DeleteCertificate请求参数结构体
|
656
924
|
class DeleteCertificateRequest < TencentCloud::Common::AbstractModel
|
657
925
|
# @param CertificateId: 证书 ID。
|
@@ -724,6 +992,267 @@ module TencentCloud
|
|
724
992
|
end
|
725
993
|
end
|
726
994
|
|
995
|
+
# DeployCertificateInstance请求参数结构体
|
996
|
+
class DeployCertificateInstanceRequest < TencentCloud::Common::AbstractModel
|
997
|
+
# @param CertificateId: 待部署的证书ID
|
998
|
+
# @type CertificateId: String
|
999
|
+
# @param InstanceIdList: 需要部署实例列表
|
1000
|
+
# @type InstanceIdList: Array
|
1001
|
+
# @param ResourceType: 部署的云资源类型
|
1002
|
+
# @type ResourceType: String
|
1003
|
+
# @param Status: 部署云资源状态:
|
1004
|
+
# 云直播:
|
1005
|
+
# -1:域名未关联证书。
|
1006
|
+
# 1: 域名https已开启。
|
1007
|
+
# 0: 域名https已关闭。
|
1008
|
+
# @type Status: Integer
|
1009
|
+
|
1010
|
+
attr_accessor :CertificateId, :InstanceIdList, :ResourceType, :Status
|
1011
|
+
|
1012
|
+
def initialize(certificateid=nil, instanceidlist=nil, resourcetype=nil, status=nil)
|
1013
|
+
@CertificateId = certificateid
|
1014
|
+
@InstanceIdList = instanceidlist
|
1015
|
+
@ResourceType = resourcetype
|
1016
|
+
@Status = status
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
def deserialize(params)
|
1020
|
+
@CertificateId = params['CertificateId']
|
1021
|
+
@InstanceIdList = params['InstanceIdList']
|
1022
|
+
@ResourceType = params['ResourceType']
|
1023
|
+
@Status = params['Status']
|
1024
|
+
end
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
# DeployCertificateInstance返回参数结构体
|
1028
|
+
class DeployCertificateInstanceResponse < TencentCloud::Common::AbstractModel
|
1029
|
+
# @param DeployRecordId: 云资源部署任务ID
|
1030
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1031
|
+
# @type DeployRecordId: Integer
|
1032
|
+
# @param DeployStatus: 部署状态,1表示部署成功,0表示部署失败
|
1033
|
+
# @type DeployStatus: Integer
|
1034
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1035
|
+
# @type RequestId: String
|
1036
|
+
|
1037
|
+
attr_accessor :DeployRecordId, :DeployStatus, :RequestId
|
1038
|
+
|
1039
|
+
def initialize(deployrecordid=nil, deploystatus=nil, requestid=nil)
|
1040
|
+
@DeployRecordId = deployrecordid
|
1041
|
+
@DeployStatus = deploystatus
|
1042
|
+
@RequestId = requestid
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
def deserialize(params)
|
1046
|
+
@DeployRecordId = params['DeployRecordId']
|
1047
|
+
@DeployStatus = params['DeployStatus']
|
1048
|
+
@RequestId = params['RequestId']
|
1049
|
+
end
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
# DeployCertificateRecordRetry请求参数结构体
|
1053
|
+
class DeployCertificateRecordRetryRequest < TencentCloud::Common::AbstractModel
|
1054
|
+
# @param DeployRecordId: 待重试部署记录ID
|
1055
|
+
# @type DeployRecordId: Integer
|
1056
|
+
# @param DeployRecordDetailId: 待重试部署记录详情ID
|
1057
|
+
# @type DeployRecordDetailId: Integer
|
1058
|
+
|
1059
|
+
attr_accessor :DeployRecordId, :DeployRecordDetailId
|
1060
|
+
|
1061
|
+
def initialize(deployrecordid=nil, deployrecorddetailid=nil)
|
1062
|
+
@DeployRecordId = deployrecordid
|
1063
|
+
@DeployRecordDetailId = deployrecorddetailid
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
def deserialize(params)
|
1067
|
+
@DeployRecordId = params['DeployRecordId']
|
1068
|
+
@DeployRecordDetailId = params['DeployRecordDetailId']
|
1069
|
+
end
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
# DeployCertificateRecordRetry返回参数结构体
|
1073
|
+
class DeployCertificateRecordRetryResponse < TencentCloud::Common::AbstractModel
|
1074
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1075
|
+
# @type RequestId: String
|
1076
|
+
|
1077
|
+
attr_accessor :RequestId
|
1078
|
+
|
1079
|
+
def initialize(requestid=nil)
|
1080
|
+
@RequestId = requestid
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
def deserialize(params)
|
1084
|
+
@RequestId = params['RequestId']
|
1085
|
+
end
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
# DeployCertificateRecordRollback请求参数结构体
|
1089
|
+
class DeployCertificateRecordRollbackRequest < TencentCloud::Common::AbstractModel
|
1090
|
+
# @param DeployRecordId: 待重试部署记录ID
|
1091
|
+
# @type DeployRecordId: Integer
|
1092
|
+
|
1093
|
+
attr_accessor :DeployRecordId
|
1094
|
+
|
1095
|
+
def initialize(deployrecordid=nil)
|
1096
|
+
@DeployRecordId = deployrecordid
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
def deserialize(params)
|
1100
|
+
@DeployRecordId = params['DeployRecordId']
|
1101
|
+
end
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
# DeployCertificateRecordRollback返回参数结构体
|
1105
|
+
class DeployCertificateRecordRollbackResponse < TencentCloud::Common::AbstractModel
|
1106
|
+
# @param DeployRecordId: 回滚部署记录ID
|
1107
|
+
# @type DeployRecordId: Integer
|
1108
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1109
|
+
# @type RequestId: String
|
1110
|
+
|
1111
|
+
attr_accessor :DeployRecordId, :RequestId
|
1112
|
+
|
1113
|
+
def initialize(deployrecordid=nil, requestid=nil)
|
1114
|
+
@DeployRecordId = deployrecordid
|
1115
|
+
@RequestId = requestid
|
1116
|
+
end
|
1117
|
+
|
1118
|
+
def deserialize(params)
|
1119
|
+
@DeployRecordId = params['DeployRecordId']
|
1120
|
+
@RequestId = params['RequestId']
|
1121
|
+
end
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
# 部署记录详情
|
1125
|
+
class DeployRecordDetail < TencentCloud::Common::AbstractModel
|
1126
|
+
# @param Id: 部署记录详情ID
|
1127
|
+
# @type Id: Integer
|
1128
|
+
# @param CertId: 部署证书ID
|
1129
|
+
# @type CertId: String
|
1130
|
+
# @param OldCertId: 原绑定证书ID
|
1131
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1132
|
+
# @type OldCertId: String
|
1133
|
+
# @param InstanceId: 部署实例ID
|
1134
|
+
# @type InstanceId: String
|
1135
|
+
# @param InstanceName: 部署实例名称
|
1136
|
+
# @type InstanceName: String
|
1137
|
+
# @param ListenerId: 部署监听器ID
|
1138
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1139
|
+
# @type ListenerId: String
|
1140
|
+
# @param Domains: 部署域名列表
|
1141
|
+
# @type Domains: Array
|
1142
|
+
# @param Protocol: 部署监听器协议
|
1143
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1144
|
+
# @type Protocol: String
|
1145
|
+
# @param Status: 部署状态
|
1146
|
+
# @type Status: Integer
|
1147
|
+
# @param ErrorMsg: 部署错误信息
|
1148
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1149
|
+
# @type ErrorMsg: String
|
1150
|
+
# @param CreateTime: 部署记录详情创建时间
|
1151
|
+
# @type CreateTime: String
|
1152
|
+
# @param UpdateTime: 部署记录详情最后一次更新时间
|
1153
|
+
# @type UpdateTime: String
|
1154
|
+
# @param ListenerName: 部署监听器名称
|
1155
|
+
# @type ListenerName: String
|
1156
|
+
# @param SniSwitch: 是否开启SNI
|
1157
|
+
# @type SniSwitch: Integer
|
1158
|
+
# @param Bucket: COS存储桶名称
|
1159
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1160
|
+
# @type Bucket: String
|
1161
|
+
# @param Namespace: 命名空间名称
|
1162
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1163
|
+
# @type Namespace: String
|
1164
|
+
# @param SecretName: secret名称
|
1165
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1166
|
+
# @type SecretName: String
|
1167
|
+
# @param Port: 端口
|
1168
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1169
|
+
# @type Port: Integer
|
1170
|
+
|
1171
|
+
attr_accessor :Id, :CertId, :OldCertId, :InstanceId, :InstanceName, :ListenerId, :Domains, :Protocol, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :ListenerName, :SniSwitch, :Bucket, :Namespace, :SecretName, :Port
|
1172
|
+
|
1173
|
+
def initialize(id=nil, certid=nil, oldcertid=nil, instanceid=nil, instancename=nil, listenerid=nil, domains=nil, protocol=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, listenername=nil, sniswitch=nil, bucket=nil, namespace=nil, secretname=nil, port=nil)
|
1174
|
+
@Id = id
|
1175
|
+
@CertId = certid
|
1176
|
+
@OldCertId = oldcertid
|
1177
|
+
@InstanceId = instanceid
|
1178
|
+
@InstanceName = instancename
|
1179
|
+
@ListenerId = listenerid
|
1180
|
+
@Domains = domains
|
1181
|
+
@Protocol = protocol
|
1182
|
+
@Status = status
|
1183
|
+
@ErrorMsg = errormsg
|
1184
|
+
@CreateTime = createtime
|
1185
|
+
@UpdateTime = updatetime
|
1186
|
+
@ListenerName = listenername
|
1187
|
+
@SniSwitch = sniswitch
|
1188
|
+
@Bucket = bucket
|
1189
|
+
@Namespace = namespace
|
1190
|
+
@SecretName = secretname
|
1191
|
+
@Port = port
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
def deserialize(params)
|
1195
|
+
@Id = params['Id']
|
1196
|
+
@CertId = params['CertId']
|
1197
|
+
@OldCertId = params['OldCertId']
|
1198
|
+
@InstanceId = params['InstanceId']
|
1199
|
+
@InstanceName = params['InstanceName']
|
1200
|
+
@ListenerId = params['ListenerId']
|
1201
|
+
@Domains = params['Domains']
|
1202
|
+
@Protocol = params['Protocol']
|
1203
|
+
@Status = params['Status']
|
1204
|
+
@ErrorMsg = params['ErrorMsg']
|
1205
|
+
@CreateTime = params['CreateTime']
|
1206
|
+
@UpdateTime = params['UpdateTime']
|
1207
|
+
@ListenerName = params['ListenerName']
|
1208
|
+
@SniSwitch = params['SniSwitch']
|
1209
|
+
@Bucket = params['Bucket']
|
1210
|
+
@Namespace = params['Namespace']
|
1211
|
+
@SecretName = params['SecretName']
|
1212
|
+
@Port = params['Port']
|
1213
|
+
end
|
1214
|
+
end
|
1215
|
+
|
1216
|
+
# 部署记录信息
|
1217
|
+
class DeployRecordInfo < TencentCloud::Common::AbstractModel
|
1218
|
+
# @param Id: 部署记录ID
|
1219
|
+
# @type Id: Integer
|
1220
|
+
# @param CertId: 部署证书ID
|
1221
|
+
# @type CertId: String
|
1222
|
+
# @param ResourceType: 部署资源类型
|
1223
|
+
# @type ResourceType: String
|
1224
|
+
# @param Region: 部署地域
|
1225
|
+
# @type Region: String
|
1226
|
+
# @param Status: 部署状态
|
1227
|
+
# @type Status: Integer
|
1228
|
+
# @param CreateTime: 部署时间
|
1229
|
+
# @type CreateTime: String
|
1230
|
+
# @param UpdateTime: 最近一次更新时间
|
1231
|
+
# @type UpdateTime: String
|
1232
|
+
|
1233
|
+
attr_accessor :Id, :CertId, :ResourceType, :Region, :Status, :CreateTime, :UpdateTime
|
1234
|
+
|
1235
|
+
def initialize(id=nil, certid=nil, resourcetype=nil, region=nil, status=nil, createtime=nil, updatetime=nil)
|
1236
|
+
@Id = id
|
1237
|
+
@CertId = certid
|
1238
|
+
@ResourceType = resourcetype
|
1239
|
+
@Region = region
|
1240
|
+
@Status = status
|
1241
|
+
@CreateTime = createtime
|
1242
|
+
@UpdateTime = updatetime
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
def deserialize(params)
|
1246
|
+
@Id = params['Id']
|
1247
|
+
@CertId = params['CertId']
|
1248
|
+
@ResourceType = params['ResourceType']
|
1249
|
+
@Region = params['Region']
|
1250
|
+
@Status = params['Status']
|
1251
|
+
@CreateTime = params['CreateTime']
|
1252
|
+
@UpdateTime = params['UpdateTime']
|
1253
|
+
end
|
1254
|
+
end
|
1255
|
+
|
727
1256
|
# 资源详情
|
728
1257
|
class DeployedResources < TencentCloud::Common::AbstractModel
|
729
1258
|
# @param CertificateId: 证书ID
|
@@ -1483,12 +2012,1091 @@ module TencentCloud
|
|
1483
2012
|
end
|
1484
2013
|
|
1485
2014
|
def deserialize(params)
|
1486
|
-
unless params['DeployedResources'].nil?
|
1487
|
-
@DeployedResources = []
|
1488
|
-
params['DeployedResources'].each do |i|
|
1489
|
-
deployedresources_tmp = DeployedResources.new
|
1490
|
-
deployedresources_tmp.deserialize(i)
|
1491
|
-
@DeployedResources << deployedresources_tmp
|
2015
|
+
unless params['DeployedResources'].nil?
|
2016
|
+
@DeployedResources = []
|
2017
|
+
params['DeployedResources'].each do |i|
|
2018
|
+
deployedresources_tmp = DeployedResources.new
|
2019
|
+
deployedresources_tmp.deserialize(i)
|
2020
|
+
@DeployedResources << deployedresources_tmp
|
2021
|
+
end
|
2022
|
+
end
|
2023
|
+
@RequestId = params['RequestId']
|
2024
|
+
end
|
2025
|
+
end
|
2026
|
+
|
2027
|
+
# DescribeHostApiGatewayInstanceList请求参数结构体
|
2028
|
+
class DescribeHostApiGatewayInstanceListRequest < TencentCloud::Common::AbstractModel
|
2029
|
+
# @param CertificateId: 待部署的证书ID
|
2030
|
+
# @type CertificateId: String
|
2031
|
+
# @param ResourceType: 部署资源类型
|
2032
|
+
# @type ResourceType: String
|
2033
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2034
|
+
# @type IsCache: Integer
|
2035
|
+
# @param Filters: 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
|
2036
|
+
# @type Filters: Array
|
2037
|
+
# @param OldCertificateId: 已部署的证书ID
|
2038
|
+
# @type OldCertificateId: String
|
2039
|
+
|
2040
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters, :OldCertificateId
|
2041
|
+
|
2042
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil, oldcertificateid=nil)
|
2043
|
+
@CertificateId = certificateid
|
2044
|
+
@ResourceType = resourcetype
|
2045
|
+
@IsCache = iscache
|
2046
|
+
@Filters = filters
|
2047
|
+
@OldCertificateId = oldcertificateid
|
2048
|
+
end
|
2049
|
+
|
2050
|
+
def deserialize(params)
|
2051
|
+
@CertificateId = params['CertificateId']
|
2052
|
+
@ResourceType = params['ResourceType']
|
2053
|
+
@IsCache = params['IsCache']
|
2054
|
+
unless params['Filters'].nil?
|
2055
|
+
@Filters = []
|
2056
|
+
params['Filters'].each do |i|
|
2057
|
+
filter_tmp = Filter.new
|
2058
|
+
filter_tmp.deserialize(i)
|
2059
|
+
@Filters << filter_tmp
|
2060
|
+
end
|
2061
|
+
end
|
2062
|
+
@OldCertificateId = params['OldCertificateId']
|
2063
|
+
end
|
2064
|
+
end
|
2065
|
+
|
2066
|
+
# DescribeHostApiGatewayInstanceList返回参数结构体
|
2067
|
+
class DescribeHostApiGatewayInstanceListResponse < TencentCloud::Common::AbstractModel
|
2068
|
+
# @param InstanceList: apiGateway实例列表
|
2069
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2070
|
+
# @type InstanceList: Array
|
2071
|
+
# @param TotalCount: 总数
|
2072
|
+
# @type TotalCount: Integer
|
2073
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2074
|
+
# @type RequestId: String
|
2075
|
+
|
2076
|
+
attr_accessor :InstanceList, :TotalCount, :RequestId
|
2077
|
+
|
2078
|
+
def initialize(instancelist=nil, totalcount=nil, requestid=nil)
|
2079
|
+
@InstanceList = instancelist
|
2080
|
+
@TotalCount = totalcount
|
2081
|
+
@RequestId = requestid
|
2082
|
+
end
|
2083
|
+
|
2084
|
+
def deserialize(params)
|
2085
|
+
unless params['InstanceList'].nil?
|
2086
|
+
@InstanceList = []
|
2087
|
+
params['InstanceList'].each do |i|
|
2088
|
+
apigatewayinstancedetail_tmp = ApiGatewayInstanceDetail.new
|
2089
|
+
apigatewayinstancedetail_tmp.deserialize(i)
|
2090
|
+
@InstanceList << apigatewayinstancedetail_tmp
|
2091
|
+
end
|
2092
|
+
end
|
2093
|
+
@TotalCount = params['TotalCount']
|
2094
|
+
@RequestId = params['RequestId']
|
2095
|
+
end
|
2096
|
+
end
|
2097
|
+
|
2098
|
+
# DescribeHostCdnInstanceList请求参数结构体
|
2099
|
+
class DescribeHostCdnInstanceListRequest < TencentCloud::Common::AbstractModel
|
2100
|
+
# @param CertificateId: 待部署的证书ID
|
2101
|
+
# @type CertificateId: String
|
2102
|
+
# @param ResourceType: 部署资源类型
|
2103
|
+
# @type ResourceType: String
|
2104
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2105
|
+
# @type IsCache: Integer
|
2106
|
+
# @param Filters: 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
|
2107
|
+
# @type Filters: Array
|
2108
|
+
# @param OldCertificateId: 原证书ID
|
2109
|
+
# @type OldCertificateId: String
|
2110
|
+
# @param Offset: 分页偏移量,从0开始。
|
2111
|
+
# @type Offset: Integer
|
2112
|
+
# @param Limit: 每页数量,默认10。
|
2113
|
+
# @type Limit: Integer
|
2114
|
+
|
2115
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters, :OldCertificateId, :Offset, :Limit
|
2116
|
+
|
2117
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil, oldcertificateid=nil, offset=nil, limit=nil)
|
2118
|
+
@CertificateId = certificateid
|
2119
|
+
@ResourceType = resourcetype
|
2120
|
+
@IsCache = iscache
|
2121
|
+
@Filters = filters
|
2122
|
+
@OldCertificateId = oldcertificateid
|
2123
|
+
@Offset = offset
|
2124
|
+
@Limit = limit
|
2125
|
+
end
|
2126
|
+
|
2127
|
+
def deserialize(params)
|
2128
|
+
@CertificateId = params['CertificateId']
|
2129
|
+
@ResourceType = params['ResourceType']
|
2130
|
+
@IsCache = params['IsCache']
|
2131
|
+
unless params['Filters'].nil?
|
2132
|
+
@Filters = []
|
2133
|
+
params['Filters'].each do |i|
|
2134
|
+
filter_tmp = Filter.new
|
2135
|
+
filter_tmp.deserialize(i)
|
2136
|
+
@Filters << filter_tmp
|
2137
|
+
end
|
2138
|
+
end
|
2139
|
+
@OldCertificateId = params['OldCertificateId']
|
2140
|
+
@Offset = params['Offset']
|
2141
|
+
@Limit = params['Limit']
|
2142
|
+
end
|
2143
|
+
end
|
2144
|
+
|
2145
|
+
# DescribeHostCdnInstanceList返回参数结构体
|
2146
|
+
class DescribeHostCdnInstanceListResponse < TencentCloud::Common::AbstractModel
|
2147
|
+
# @param InstanceList: CDN实例列表
|
2148
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2149
|
+
# @type InstanceList: Array
|
2150
|
+
# @param TotalCount: CDN域名总数
|
2151
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2152
|
+
# @type TotalCount: Integer
|
2153
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2154
|
+
# @type RequestId: String
|
2155
|
+
|
2156
|
+
attr_accessor :InstanceList, :TotalCount, :RequestId
|
2157
|
+
|
2158
|
+
def initialize(instancelist=nil, totalcount=nil, requestid=nil)
|
2159
|
+
@InstanceList = instancelist
|
2160
|
+
@TotalCount = totalcount
|
2161
|
+
@RequestId = requestid
|
2162
|
+
end
|
2163
|
+
|
2164
|
+
def deserialize(params)
|
2165
|
+
unless params['InstanceList'].nil?
|
2166
|
+
@InstanceList = []
|
2167
|
+
params['InstanceList'].each do |i|
|
2168
|
+
cdninstancedetail_tmp = CdnInstanceDetail.new
|
2169
|
+
cdninstancedetail_tmp.deserialize(i)
|
2170
|
+
@InstanceList << cdninstancedetail_tmp
|
2171
|
+
end
|
2172
|
+
end
|
2173
|
+
@TotalCount = params['TotalCount']
|
2174
|
+
@RequestId = params['RequestId']
|
2175
|
+
end
|
2176
|
+
end
|
2177
|
+
|
2178
|
+
# DescribeHostClbInstanceList请求参数结构体
|
2179
|
+
class DescribeHostClbInstanceListRequest < TencentCloud::Common::AbstractModel
|
2180
|
+
# @param CertificateId: 待部署的证书ID
|
2181
|
+
# @type CertificateId: String
|
2182
|
+
# @param Offset: 分页偏移量,从0开始。
|
2183
|
+
# @type Offset: Integer
|
2184
|
+
# @param Limit: 每页数量,默认10。
|
2185
|
+
# @type Limit: Integer
|
2186
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2187
|
+
# @type IsCache: Integer
|
2188
|
+
# @param Filters: 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
|
2189
|
+
# @type Filters: Array
|
2190
|
+
# @param AsyncCache: 是否异步缓存
|
2191
|
+
# @type AsyncCache: Integer
|
2192
|
+
# @param OldCertificateId: 原证书ID
|
2193
|
+
# @type OldCertificateId: String
|
2194
|
+
|
2195
|
+
attr_accessor :CertificateId, :Offset, :Limit, :IsCache, :Filters, :AsyncCache, :OldCertificateId
|
2196
|
+
|
2197
|
+
def initialize(certificateid=nil, offset=nil, limit=nil, iscache=nil, filters=nil, asynccache=nil, oldcertificateid=nil)
|
2198
|
+
@CertificateId = certificateid
|
2199
|
+
@Offset = offset
|
2200
|
+
@Limit = limit
|
2201
|
+
@IsCache = iscache
|
2202
|
+
@Filters = filters
|
2203
|
+
@AsyncCache = asynccache
|
2204
|
+
@OldCertificateId = oldcertificateid
|
2205
|
+
end
|
2206
|
+
|
2207
|
+
def deserialize(params)
|
2208
|
+
@CertificateId = params['CertificateId']
|
2209
|
+
@Offset = params['Offset']
|
2210
|
+
@Limit = params['Limit']
|
2211
|
+
@IsCache = params['IsCache']
|
2212
|
+
unless params['Filters'].nil?
|
2213
|
+
@Filters = []
|
2214
|
+
params['Filters'].each do |i|
|
2215
|
+
filter_tmp = Filter.new
|
2216
|
+
filter_tmp.deserialize(i)
|
2217
|
+
@Filters << filter_tmp
|
2218
|
+
end
|
2219
|
+
end
|
2220
|
+
@AsyncCache = params['AsyncCache']
|
2221
|
+
@OldCertificateId = params['OldCertificateId']
|
2222
|
+
end
|
2223
|
+
end
|
2224
|
+
|
2225
|
+
# DescribeHostClbInstanceList返回参数结构体
|
2226
|
+
class DescribeHostClbInstanceListResponse < TencentCloud::Common::AbstractModel
|
2227
|
+
# @param TotalCount: 总数
|
2228
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2229
|
+
# @type TotalCount: Integer
|
2230
|
+
# @param InstanceList: CLB实例监听器列表
|
2231
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2232
|
+
# @type InstanceList: Array
|
2233
|
+
# @param AsyncTotalNum: 异步刷新总数
|
2234
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2235
|
+
# @type AsyncTotalNum: Integer
|
2236
|
+
# @param AsyncOffset: 异步刷新当前执行数
|
2237
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2238
|
+
# @type AsyncOffset: Integer
|
2239
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2240
|
+
# @type RequestId: String
|
2241
|
+
|
2242
|
+
attr_accessor :TotalCount, :InstanceList, :AsyncTotalNum, :AsyncOffset, :RequestId
|
2243
|
+
|
2244
|
+
def initialize(totalcount=nil, instancelist=nil, asynctotalnum=nil, asyncoffset=nil, requestid=nil)
|
2245
|
+
@TotalCount = totalcount
|
2246
|
+
@InstanceList = instancelist
|
2247
|
+
@AsyncTotalNum = asynctotalnum
|
2248
|
+
@AsyncOffset = asyncoffset
|
2249
|
+
@RequestId = requestid
|
2250
|
+
end
|
2251
|
+
|
2252
|
+
def deserialize(params)
|
2253
|
+
@TotalCount = params['TotalCount']
|
2254
|
+
unless params['InstanceList'].nil?
|
2255
|
+
@InstanceList = []
|
2256
|
+
params['InstanceList'].each do |i|
|
2257
|
+
clbinstancedetail_tmp = ClbInstanceDetail.new
|
2258
|
+
clbinstancedetail_tmp.deserialize(i)
|
2259
|
+
@InstanceList << clbinstancedetail_tmp
|
2260
|
+
end
|
2261
|
+
end
|
2262
|
+
@AsyncTotalNum = params['AsyncTotalNum']
|
2263
|
+
@AsyncOffset = params['AsyncOffset']
|
2264
|
+
@RequestId = params['RequestId']
|
2265
|
+
end
|
2266
|
+
end
|
2267
|
+
|
2268
|
+
# DescribeHostCosInstanceList请求参数结构体
|
2269
|
+
class DescribeHostCosInstanceListRequest < TencentCloud::Common::AbstractModel
|
2270
|
+
# @param CertificateId: 待部署的证书ID
|
2271
|
+
# @type CertificateId: String
|
2272
|
+
# @param ResourceType: 部署资源类型 cos
|
2273
|
+
# @type ResourceType: String
|
2274
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2275
|
+
# @type IsCache: Integer
|
2276
|
+
# @param Filters: 过滤参数列表
|
2277
|
+
# @type Filters: Array
|
2278
|
+
|
2279
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters
|
2280
|
+
|
2281
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil)
|
2282
|
+
@CertificateId = certificateid
|
2283
|
+
@ResourceType = resourcetype
|
2284
|
+
@IsCache = iscache
|
2285
|
+
@Filters = filters
|
2286
|
+
end
|
2287
|
+
|
2288
|
+
def deserialize(params)
|
2289
|
+
@CertificateId = params['CertificateId']
|
2290
|
+
@ResourceType = params['ResourceType']
|
2291
|
+
@IsCache = params['IsCache']
|
2292
|
+
unless params['Filters'].nil?
|
2293
|
+
@Filters = []
|
2294
|
+
params['Filters'].each do |i|
|
2295
|
+
filter_tmp = Filter.new
|
2296
|
+
filter_tmp.deserialize(i)
|
2297
|
+
@Filters << filter_tmp
|
2298
|
+
end
|
2299
|
+
end
|
2300
|
+
end
|
2301
|
+
end
|
2302
|
+
|
2303
|
+
# DescribeHostCosInstanceList返回参数结构体
|
2304
|
+
class DescribeHostCosInstanceListResponse < TencentCloud::Common::AbstractModel
|
2305
|
+
# @param InstanceList: COS实例列表
|
2306
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2307
|
+
# @type InstanceList: Array
|
2308
|
+
# @param TotalCount: 总数
|
2309
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2310
|
+
# @type TotalCount: Integer
|
2311
|
+
# @param AsyncTotalNum: 异步刷新总数
|
2312
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2313
|
+
# @type AsyncTotalNum: Integer
|
2314
|
+
# @param AsyncOffset: 异步刷新当前执行数
|
2315
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2316
|
+
# @type AsyncOffset: Integer
|
2317
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2318
|
+
# @type RequestId: String
|
2319
|
+
|
2320
|
+
attr_accessor :InstanceList, :TotalCount, :AsyncTotalNum, :AsyncOffset, :RequestId
|
2321
|
+
|
2322
|
+
def initialize(instancelist=nil, totalcount=nil, asynctotalnum=nil, asyncoffset=nil, requestid=nil)
|
2323
|
+
@InstanceList = instancelist
|
2324
|
+
@TotalCount = totalcount
|
2325
|
+
@AsyncTotalNum = asynctotalnum
|
2326
|
+
@AsyncOffset = asyncoffset
|
2327
|
+
@RequestId = requestid
|
2328
|
+
end
|
2329
|
+
|
2330
|
+
def deserialize(params)
|
2331
|
+
unless params['InstanceList'].nil?
|
2332
|
+
@InstanceList = []
|
2333
|
+
params['InstanceList'].each do |i|
|
2334
|
+
cosinstancedetail_tmp = CosInstanceDetail.new
|
2335
|
+
cosinstancedetail_tmp.deserialize(i)
|
2336
|
+
@InstanceList << cosinstancedetail_tmp
|
2337
|
+
end
|
2338
|
+
end
|
2339
|
+
@TotalCount = params['TotalCount']
|
2340
|
+
@AsyncTotalNum = params['AsyncTotalNum']
|
2341
|
+
@AsyncOffset = params['AsyncOffset']
|
2342
|
+
@RequestId = params['RequestId']
|
2343
|
+
end
|
2344
|
+
end
|
2345
|
+
|
2346
|
+
# DescribeHostDdosInstanceList请求参数结构体
|
2347
|
+
class DescribeHostDdosInstanceListRequest < TencentCloud::Common::AbstractModel
|
2348
|
+
# @param CertificateId: 待部署的证书ID
|
2349
|
+
# @type CertificateId: String
|
2350
|
+
# @param ResourceType: 部署资源类型
|
2351
|
+
# @type ResourceType: String
|
2352
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2353
|
+
# @type IsCache: Integer
|
2354
|
+
# @param Filters: 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
|
2355
|
+
# @type Filters: Array
|
2356
|
+
# @param OldCertificateId: 已部署的证书ID
|
2357
|
+
# @type OldCertificateId: String
|
2358
|
+
|
2359
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters, :OldCertificateId
|
2360
|
+
|
2361
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil, oldcertificateid=nil)
|
2362
|
+
@CertificateId = certificateid
|
2363
|
+
@ResourceType = resourcetype
|
2364
|
+
@IsCache = iscache
|
2365
|
+
@Filters = filters
|
2366
|
+
@OldCertificateId = oldcertificateid
|
2367
|
+
end
|
2368
|
+
|
2369
|
+
def deserialize(params)
|
2370
|
+
@CertificateId = params['CertificateId']
|
2371
|
+
@ResourceType = params['ResourceType']
|
2372
|
+
@IsCache = params['IsCache']
|
2373
|
+
unless params['Filters'].nil?
|
2374
|
+
@Filters = []
|
2375
|
+
params['Filters'].each do |i|
|
2376
|
+
filter_tmp = Filter.new
|
2377
|
+
filter_tmp.deserialize(i)
|
2378
|
+
@Filters << filter_tmp
|
2379
|
+
end
|
2380
|
+
end
|
2381
|
+
@OldCertificateId = params['OldCertificateId']
|
2382
|
+
end
|
2383
|
+
end
|
2384
|
+
|
2385
|
+
# DescribeHostDdosInstanceList返回参数结构体
|
2386
|
+
class DescribeHostDdosInstanceListResponse < TencentCloud::Common::AbstractModel
|
2387
|
+
# @param InstanceList: DDOS实例列表
|
2388
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2389
|
+
# @type InstanceList: Array
|
2390
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2391
|
+
# @type RequestId: String
|
2392
|
+
|
2393
|
+
attr_accessor :InstanceList, :RequestId
|
2394
|
+
|
2395
|
+
def initialize(instancelist=nil, requestid=nil)
|
2396
|
+
@InstanceList = instancelist
|
2397
|
+
@RequestId = requestid
|
2398
|
+
end
|
2399
|
+
|
2400
|
+
def deserialize(params)
|
2401
|
+
unless params['InstanceList'].nil?
|
2402
|
+
@InstanceList = []
|
2403
|
+
params['InstanceList'].each do |i|
|
2404
|
+
ddosinstancedetail_tmp = DdosInstanceDetail.new
|
2405
|
+
ddosinstancedetail_tmp.deserialize(i)
|
2406
|
+
@InstanceList << ddosinstancedetail_tmp
|
2407
|
+
end
|
2408
|
+
end
|
2409
|
+
@RequestId = params['RequestId']
|
2410
|
+
end
|
2411
|
+
end
|
2412
|
+
|
2413
|
+
# DescribeHostDeployRecordDetail请求参数结构体
|
2414
|
+
class DescribeHostDeployRecordDetailRequest < TencentCloud::Common::AbstractModel
|
2415
|
+
# @param DeployRecordId: 待部署的证书ID
|
2416
|
+
# @type DeployRecordId: String
|
2417
|
+
# @param Offset: 分页偏移量,从0开始。
|
2418
|
+
# @type Offset: Integer
|
2419
|
+
# @param Limit: 每页数量,默认10。
|
2420
|
+
# @type Limit: Integer
|
2421
|
+
|
2422
|
+
attr_accessor :DeployRecordId, :Offset, :Limit
|
2423
|
+
|
2424
|
+
def initialize(deployrecordid=nil, offset=nil, limit=nil)
|
2425
|
+
@DeployRecordId = deployrecordid
|
2426
|
+
@Offset = offset
|
2427
|
+
@Limit = limit
|
2428
|
+
end
|
2429
|
+
|
2430
|
+
def deserialize(params)
|
2431
|
+
@DeployRecordId = params['DeployRecordId']
|
2432
|
+
@Offset = params['Offset']
|
2433
|
+
@Limit = params['Limit']
|
2434
|
+
end
|
2435
|
+
end
|
2436
|
+
|
2437
|
+
# DescribeHostDeployRecordDetail返回参数结构体
|
2438
|
+
class DescribeHostDeployRecordDetailResponse < TencentCloud::Common::AbstractModel
|
2439
|
+
# @param TotalCount: 总数
|
2440
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2441
|
+
# @type TotalCount: Integer
|
2442
|
+
# @param DeployRecordDetailList: 证书部署记录列表
|
2443
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2444
|
+
# @type DeployRecordDetailList: Array
|
2445
|
+
# @param SuccessTotalCount: 成功总数
|
2446
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2447
|
+
# @type SuccessTotalCount: Integer
|
2448
|
+
# @param FailedTotalCount: 失败总数
|
2449
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2450
|
+
# @type FailedTotalCount: Integer
|
2451
|
+
# @param RunningTotalCount: 部署中总数
|
2452
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2453
|
+
# @type RunningTotalCount: Integer
|
2454
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2455
|
+
# @type RequestId: String
|
2456
|
+
|
2457
|
+
attr_accessor :TotalCount, :DeployRecordDetailList, :SuccessTotalCount, :FailedTotalCount, :RunningTotalCount, :RequestId
|
2458
|
+
|
2459
|
+
def initialize(totalcount=nil, deployrecorddetaillist=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, requestid=nil)
|
2460
|
+
@TotalCount = totalcount
|
2461
|
+
@DeployRecordDetailList = deployrecorddetaillist
|
2462
|
+
@SuccessTotalCount = successtotalcount
|
2463
|
+
@FailedTotalCount = failedtotalcount
|
2464
|
+
@RunningTotalCount = runningtotalcount
|
2465
|
+
@RequestId = requestid
|
2466
|
+
end
|
2467
|
+
|
2468
|
+
def deserialize(params)
|
2469
|
+
@TotalCount = params['TotalCount']
|
2470
|
+
unless params['DeployRecordDetailList'].nil?
|
2471
|
+
@DeployRecordDetailList = []
|
2472
|
+
params['DeployRecordDetailList'].each do |i|
|
2473
|
+
deployrecorddetail_tmp = DeployRecordDetail.new
|
2474
|
+
deployrecorddetail_tmp.deserialize(i)
|
2475
|
+
@DeployRecordDetailList << deployrecorddetail_tmp
|
2476
|
+
end
|
2477
|
+
end
|
2478
|
+
@SuccessTotalCount = params['SuccessTotalCount']
|
2479
|
+
@FailedTotalCount = params['FailedTotalCount']
|
2480
|
+
@RunningTotalCount = params['RunningTotalCount']
|
2481
|
+
@RequestId = params['RequestId']
|
2482
|
+
end
|
2483
|
+
end
|
2484
|
+
|
2485
|
+
# DescribeHostDeployRecord请求参数结构体
|
2486
|
+
class DescribeHostDeployRecordRequest < TencentCloud::Common::AbstractModel
|
2487
|
+
# @param CertificateId: 待部署的证书ID
|
2488
|
+
# @type CertificateId: String
|
2489
|
+
# @param Offset: 分页偏移量,从0开始。
|
2490
|
+
# @type Offset: Integer
|
2491
|
+
# @param Limit: 每页数量,默认10。
|
2492
|
+
# @type Limit: Integer
|
2493
|
+
# @param ResourceType: 资源类型
|
2494
|
+
# @type ResourceType: String
|
2495
|
+
|
2496
|
+
attr_accessor :CertificateId, :Offset, :Limit, :ResourceType
|
2497
|
+
|
2498
|
+
def initialize(certificateid=nil, offset=nil, limit=nil, resourcetype=nil)
|
2499
|
+
@CertificateId = certificateid
|
2500
|
+
@Offset = offset
|
2501
|
+
@Limit = limit
|
2502
|
+
@ResourceType = resourcetype
|
2503
|
+
end
|
2504
|
+
|
2505
|
+
def deserialize(params)
|
2506
|
+
@CertificateId = params['CertificateId']
|
2507
|
+
@Offset = params['Offset']
|
2508
|
+
@Limit = params['Limit']
|
2509
|
+
@ResourceType = params['ResourceType']
|
2510
|
+
end
|
2511
|
+
end
|
2512
|
+
|
2513
|
+
# DescribeHostDeployRecord返回参数结构体
|
2514
|
+
class DescribeHostDeployRecordResponse < TencentCloud::Common::AbstractModel
|
2515
|
+
# @param TotalCount: 总数
|
2516
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2517
|
+
# @type TotalCount: Integer
|
2518
|
+
# @param DeployRecordList: 证书部署记录列表
|
2519
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2520
|
+
# @type DeployRecordList: Array
|
2521
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2522
|
+
# @type RequestId: String
|
2523
|
+
|
2524
|
+
attr_accessor :TotalCount, :DeployRecordList, :RequestId
|
2525
|
+
|
2526
|
+
def initialize(totalcount=nil, deployrecordlist=nil, requestid=nil)
|
2527
|
+
@TotalCount = totalcount
|
2528
|
+
@DeployRecordList = deployrecordlist
|
2529
|
+
@RequestId = requestid
|
2530
|
+
end
|
2531
|
+
|
2532
|
+
def deserialize(params)
|
2533
|
+
@TotalCount = params['TotalCount']
|
2534
|
+
unless params['DeployRecordList'].nil?
|
2535
|
+
@DeployRecordList = []
|
2536
|
+
params['DeployRecordList'].each do |i|
|
2537
|
+
deployrecordinfo_tmp = DeployRecordInfo.new
|
2538
|
+
deployrecordinfo_tmp.deserialize(i)
|
2539
|
+
@DeployRecordList << deployrecordinfo_tmp
|
2540
|
+
end
|
2541
|
+
end
|
2542
|
+
@RequestId = params['RequestId']
|
2543
|
+
end
|
2544
|
+
end
|
2545
|
+
|
2546
|
+
# DescribeHostLighthouseInstanceList请求参数结构体
|
2547
|
+
class DescribeHostLighthouseInstanceListRequest < TencentCloud::Common::AbstractModel
|
2548
|
+
# @param CertificateId: 待部署的证书ID
|
2549
|
+
# @type CertificateId: String
|
2550
|
+
# @param ResourceType: 部署资源类型 lighthouse
|
2551
|
+
# @type ResourceType: String
|
2552
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2553
|
+
# @type IsCache: Integer
|
2554
|
+
# @param Filters: 过滤参数列表
|
2555
|
+
# @type Filters: Array
|
2556
|
+
|
2557
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters
|
2558
|
+
|
2559
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil)
|
2560
|
+
@CertificateId = certificateid
|
2561
|
+
@ResourceType = resourcetype
|
2562
|
+
@IsCache = iscache
|
2563
|
+
@Filters = filters
|
2564
|
+
end
|
2565
|
+
|
2566
|
+
def deserialize(params)
|
2567
|
+
@CertificateId = params['CertificateId']
|
2568
|
+
@ResourceType = params['ResourceType']
|
2569
|
+
@IsCache = params['IsCache']
|
2570
|
+
unless params['Filters'].nil?
|
2571
|
+
@Filters = []
|
2572
|
+
params['Filters'].each do |i|
|
2573
|
+
filter_tmp = Filter.new
|
2574
|
+
filter_tmp.deserialize(i)
|
2575
|
+
@Filters << filter_tmp
|
2576
|
+
end
|
2577
|
+
end
|
2578
|
+
end
|
2579
|
+
end
|
2580
|
+
|
2581
|
+
# DescribeHostLighthouseInstanceList返回参数结构体
|
2582
|
+
class DescribeHostLighthouseInstanceListResponse < TencentCloud::Common::AbstractModel
|
2583
|
+
# @param InstanceList: Lighthouse实例列表
|
2584
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2585
|
+
# @type InstanceList: Array
|
2586
|
+
# @param TotalCount: 总数
|
2587
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2588
|
+
# @type TotalCount: Integer
|
2589
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2590
|
+
# @type RequestId: String
|
2591
|
+
|
2592
|
+
attr_accessor :InstanceList, :TotalCount, :RequestId
|
2593
|
+
|
2594
|
+
def initialize(instancelist=nil, totalcount=nil, requestid=nil)
|
2595
|
+
@InstanceList = instancelist
|
2596
|
+
@TotalCount = totalcount
|
2597
|
+
@RequestId = requestid
|
2598
|
+
end
|
2599
|
+
|
2600
|
+
def deserialize(params)
|
2601
|
+
unless params['InstanceList'].nil?
|
2602
|
+
@InstanceList = []
|
2603
|
+
params['InstanceList'].each do |i|
|
2604
|
+
lighthouseinstancedetail_tmp = LighthouseInstanceDetail.new
|
2605
|
+
lighthouseinstancedetail_tmp.deserialize(i)
|
2606
|
+
@InstanceList << lighthouseinstancedetail_tmp
|
2607
|
+
end
|
2608
|
+
end
|
2609
|
+
@TotalCount = params['TotalCount']
|
2610
|
+
@RequestId = params['RequestId']
|
2611
|
+
end
|
2612
|
+
end
|
2613
|
+
|
2614
|
+
# DescribeHostLiveInstanceList请求参数结构体
|
2615
|
+
class DescribeHostLiveInstanceListRequest < TencentCloud::Common::AbstractModel
|
2616
|
+
# @param CertificateId: 待部署的证书ID
|
2617
|
+
# @type CertificateId: String
|
2618
|
+
# @param ResourceType: 部署资源类型
|
2619
|
+
# @type ResourceType: String
|
2620
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2621
|
+
# @type IsCache: Integer
|
2622
|
+
# @param Filters: 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
|
2623
|
+
# @type Filters: Array
|
2624
|
+
# @param OldCertificateId: 已部署的证书ID
|
2625
|
+
# @type OldCertificateId: String
|
2626
|
+
|
2627
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters, :OldCertificateId
|
2628
|
+
|
2629
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil, oldcertificateid=nil)
|
2630
|
+
@CertificateId = certificateid
|
2631
|
+
@ResourceType = resourcetype
|
2632
|
+
@IsCache = iscache
|
2633
|
+
@Filters = filters
|
2634
|
+
@OldCertificateId = oldcertificateid
|
2635
|
+
end
|
2636
|
+
|
2637
|
+
def deserialize(params)
|
2638
|
+
@CertificateId = params['CertificateId']
|
2639
|
+
@ResourceType = params['ResourceType']
|
2640
|
+
@IsCache = params['IsCache']
|
2641
|
+
unless params['Filters'].nil?
|
2642
|
+
@Filters = []
|
2643
|
+
params['Filters'].each do |i|
|
2644
|
+
filter_tmp = Filter.new
|
2645
|
+
filter_tmp.deserialize(i)
|
2646
|
+
@Filters << filter_tmp
|
2647
|
+
end
|
2648
|
+
end
|
2649
|
+
@OldCertificateId = params['OldCertificateId']
|
2650
|
+
end
|
2651
|
+
end
|
2652
|
+
|
2653
|
+
# DescribeHostLiveInstanceList返回参数结构体
|
2654
|
+
class DescribeHostLiveInstanceListResponse < TencentCloud::Common::AbstractModel
|
2655
|
+
# @param InstanceList: live实例列表
|
2656
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2657
|
+
# @type InstanceList: Array
|
2658
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2659
|
+
# @type RequestId: String
|
2660
|
+
|
2661
|
+
attr_accessor :InstanceList, :RequestId
|
2662
|
+
|
2663
|
+
def initialize(instancelist=nil, requestid=nil)
|
2664
|
+
@InstanceList = instancelist
|
2665
|
+
@RequestId = requestid
|
2666
|
+
end
|
2667
|
+
|
2668
|
+
def deserialize(params)
|
2669
|
+
unless params['InstanceList'].nil?
|
2670
|
+
@InstanceList = []
|
2671
|
+
params['InstanceList'].each do |i|
|
2672
|
+
liveinstancedetail_tmp = LiveInstanceDetail.new
|
2673
|
+
liveinstancedetail_tmp.deserialize(i)
|
2674
|
+
@InstanceList << liveinstancedetail_tmp
|
2675
|
+
end
|
2676
|
+
end
|
2677
|
+
@RequestId = params['RequestId']
|
2678
|
+
end
|
2679
|
+
end
|
2680
|
+
|
2681
|
+
# DescribeHostTeoInstanceList请求参数结构体
|
2682
|
+
class DescribeHostTeoInstanceListRequest < TencentCloud::Common::AbstractModel
|
2683
|
+
# @param CertificateId: 待部署的证书ID
|
2684
|
+
# @type CertificateId: String
|
2685
|
+
# @param ResourceType: 部署资源类型
|
2686
|
+
# @type ResourceType: String
|
2687
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2688
|
+
# @type IsCache: Integer
|
2689
|
+
# @param Filters: 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
|
2690
|
+
# @type Filters: Array
|
2691
|
+
# @param OldCertificateId: 已部署的证书ID
|
2692
|
+
# @type OldCertificateId: String
|
2693
|
+
|
2694
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters, :OldCertificateId
|
2695
|
+
|
2696
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil, oldcertificateid=nil)
|
2697
|
+
@CertificateId = certificateid
|
2698
|
+
@ResourceType = resourcetype
|
2699
|
+
@IsCache = iscache
|
2700
|
+
@Filters = filters
|
2701
|
+
@OldCertificateId = oldcertificateid
|
2702
|
+
end
|
2703
|
+
|
2704
|
+
def deserialize(params)
|
2705
|
+
@CertificateId = params['CertificateId']
|
2706
|
+
@ResourceType = params['ResourceType']
|
2707
|
+
@IsCache = params['IsCache']
|
2708
|
+
unless params['Filters'].nil?
|
2709
|
+
@Filters = []
|
2710
|
+
params['Filters'].each do |i|
|
2711
|
+
filter_tmp = Filter.new
|
2712
|
+
filter_tmp.deserialize(i)
|
2713
|
+
@Filters << filter_tmp
|
2714
|
+
end
|
2715
|
+
end
|
2716
|
+
@OldCertificateId = params['OldCertificateId']
|
2717
|
+
end
|
2718
|
+
end
|
2719
|
+
|
2720
|
+
# DescribeHostTeoInstanceList返回参数结构体
|
2721
|
+
class DescribeHostTeoInstanceListResponse < TencentCloud::Common::AbstractModel
|
2722
|
+
# @param InstanceList: teo实例列表
|
2723
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2724
|
+
# @type InstanceList: Array
|
2725
|
+
# @param TotalCount: 总数
|
2726
|
+
# @type TotalCount: Integer
|
2727
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2728
|
+
# @type RequestId: String
|
2729
|
+
|
2730
|
+
attr_accessor :InstanceList, :TotalCount, :RequestId
|
2731
|
+
|
2732
|
+
def initialize(instancelist=nil, totalcount=nil, requestid=nil)
|
2733
|
+
@InstanceList = instancelist
|
2734
|
+
@TotalCount = totalcount
|
2735
|
+
@RequestId = requestid
|
2736
|
+
end
|
2737
|
+
|
2738
|
+
def deserialize(params)
|
2739
|
+
unless params['InstanceList'].nil?
|
2740
|
+
@InstanceList = []
|
2741
|
+
params['InstanceList'].each do |i|
|
2742
|
+
teoinstancedetail_tmp = TeoInstanceDetail.new
|
2743
|
+
teoinstancedetail_tmp.deserialize(i)
|
2744
|
+
@InstanceList << teoinstancedetail_tmp
|
2745
|
+
end
|
2746
|
+
end
|
2747
|
+
@TotalCount = params['TotalCount']
|
2748
|
+
@RequestId = params['RequestId']
|
2749
|
+
end
|
2750
|
+
end
|
2751
|
+
|
2752
|
+
# DescribeHostTkeInstanceList请求参数结构体
|
2753
|
+
class DescribeHostTkeInstanceListRequest < TencentCloud::Common::AbstractModel
|
2754
|
+
# @param CertificateId: 待部署的证书ID
|
2755
|
+
# @type CertificateId: String
|
2756
|
+
# @param Offset: 分页偏移量,从0开始。
|
2757
|
+
# @type Offset: Integer
|
2758
|
+
# @param Limit: 每页数量,默认10。
|
2759
|
+
# @type Limit: Integer
|
2760
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2761
|
+
# @type IsCache: Integer
|
2762
|
+
# @param Filters: 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
|
2763
|
+
# @type Filters: Array
|
2764
|
+
# @param AsyncCache: 是否异步缓存
|
2765
|
+
# @type AsyncCache: Integer
|
2766
|
+
# @param OldCertificateId: 原证书ID
|
2767
|
+
# @type OldCertificateId: String
|
2768
|
+
|
2769
|
+
attr_accessor :CertificateId, :Offset, :Limit, :IsCache, :Filters, :AsyncCache, :OldCertificateId
|
2770
|
+
|
2771
|
+
def initialize(certificateid=nil, offset=nil, limit=nil, iscache=nil, filters=nil, asynccache=nil, oldcertificateid=nil)
|
2772
|
+
@CertificateId = certificateid
|
2773
|
+
@Offset = offset
|
2774
|
+
@Limit = limit
|
2775
|
+
@IsCache = iscache
|
2776
|
+
@Filters = filters
|
2777
|
+
@AsyncCache = asynccache
|
2778
|
+
@OldCertificateId = oldcertificateid
|
2779
|
+
end
|
2780
|
+
|
2781
|
+
def deserialize(params)
|
2782
|
+
@CertificateId = params['CertificateId']
|
2783
|
+
@Offset = params['Offset']
|
2784
|
+
@Limit = params['Limit']
|
2785
|
+
@IsCache = params['IsCache']
|
2786
|
+
unless params['Filters'].nil?
|
2787
|
+
@Filters = []
|
2788
|
+
params['Filters'].each do |i|
|
2789
|
+
filter_tmp = Filter.new
|
2790
|
+
filter_tmp.deserialize(i)
|
2791
|
+
@Filters << filter_tmp
|
2792
|
+
end
|
2793
|
+
end
|
2794
|
+
@AsyncCache = params['AsyncCache']
|
2795
|
+
@OldCertificateId = params['OldCertificateId']
|
2796
|
+
end
|
2797
|
+
end
|
2798
|
+
|
2799
|
+
# DescribeHostTkeInstanceList返回参数结构体
|
2800
|
+
class DescribeHostTkeInstanceListResponse < TencentCloud::Common::AbstractModel
|
2801
|
+
# @param TotalCount: 总数
|
2802
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2803
|
+
# @type TotalCount: Integer
|
2804
|
+
# @param InstanceList: CLB实例监听器列表
|
2805
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2806
|
+
# @type InstanceList: Array
|
2807
|
+
# @param AsyncTotalNum: 异步刷新总数
|
2808
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2809
|
+
# @type AsyncTotalNum: Integer
|
2810
|
+
# @param AsyncOffset: 异步刷新当前执行数
|
2811
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2812
|
+
# @type AsyncOffset: Integer
|
2813
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2814
|
+
# @type RequestId: String
|
2815
|
+
|
2816
|
+
attr_accessor :TotalCount, :InstanceList, :AsyncTotalNum, :AsyncOffset, :RequestId
|
2817
|
+
|
2818
|
+
def initialize(totalcount=nil, instancelist=nil, asynctotalnum=nil, asyncoffset=nil, requestid=nil)
|
2819
|
+
@TotalCount = totalcount
|
2820
|
+
@InstanceList = instancelist
|
2821
|
+
@AsyncTotalNum = asynctotalnum
|
2822
|
+
@AsyncOffset = asyncoffset
|
2823
|
+
@RequestId = requestid
|
2824
|
+
end
|
2825
|
+
|
2826
|
+
def deserialize(params)
|
2827
|
+
@TotalCount = params['TotalCount']
|
2828
|
+
unless params['InstanceList'].nil?
|
2829
|
+
@InstanceList = []
|
2830
|
+
params['InstanceList'].each do |i|
|
2831
|
+
tkeinstancedetail_tmp = TkeInstanceDetail.new
|
2832
|
+
tkeinstancedetail_tmp.deserialize(i)
|
2833
|
+
@InstanceList << tkeinstancedetail_tmp
|
2834
|
+
end
|
2835
|
+
end
|
2836
|
+
@AsyncTotalNum = params['AsyncTotalNum']
|
2837
|
+
@AsyncOffset = params['AsyncOffset']
|
2838
|
+
@RequestId = params['RequestId']
|
2839
|
+
end
|
2840
|
+
end
|
2841
|
+
|
2842
|
+
# DescribeHostUpdateRecordDetail请求参数结构体
|
2843
|
+
class DescribeHostUpdateRecordDetailRequest < TencentCloud::Common::AbstractModel
|
2844
|
+
# @param DeployRecordId: 待部署的证书ID
|
2845
|
+
# @type DeployRecordId: String
|
2846
|
+
|
2847
|
+
attr_accessor :DeployRecordId
|
2848
|
+
|
2849
|
+
def initialize(deployrecordid=nil)
|
2850
|
+
@DeployRecordId = deployrecordid
|
2851
|
+
end
|
2852
|
+
|
2853
|
+
def deserialize(params)
|
2854
|
+
@DeployRecordId = params['DeployRecordId']
|
2855
|
+
end
|
2856
|
+
end
|
2857
|
+
|
2858
|
+
# DescribeHostUpdateRecordDetail返回参数结构体
|
2859
|
+
class DescribeHostUpdateRecordDetailResponse < TencentCloud::Common::AbstractModel
|
2860
|
+
# @param TotalCount: 总数
|
2861
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2862
|
+
# @type TotalCount: Integer
|
2863
|
+
# @param RecordDetailList: 证书部署记录列表
|
2864
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2865
|
+
# @type RecordDetailList: Array
|
2866
|
+
# @param SuccessTotalCount: 成功总数
|
2867
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2868
|
+
# @type SuccessTotalCount: Integer
|
2869
|
+
# @param FailedTotalCount: 失败总数
|
2870
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2871
|
+
# @type FailedTotalCount: Integer
|
2872
|
+
# @param RunningTotalCount: 部署中总数
|
2873
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2874
|
+
# @type RunningTotalCount: Integer
|
2875
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2876
|
+
# @type RequestId: String
|
2877
|
+
|
2878
|
+
attr_accessor :TotalCount, :RecordDetailList, :SuccessTotalCount, :FailedTotalCount, :RunningTotalCount, :RequestId
|
2879
|
+
|
2880
|
+
def initialize(totalcount=nil, recorddetaillist=nil, successtotalcount=nil, failedtotalcount=nil, runningtotalcount=nil, requestid=nil)
|
2881
|
+
@TotalCount = totalcount
|
2882
|
+
@RecordDetailList = recorddetaillist
|
2883
|
+
@SuccessTotalCount = successtotalcount
|
2884
|
+
@FailedTotalCount = failedtotalcount
|
2885
|
+
@RunningTotalCount = runningtotalcount
|
2886
|
+
@RequestId = requestid
|
2887
|
+
end
|
2888
|
+
|
2889
|
+
def deserialize(params)
|
2890
|
+
@TotalCount = params['TotalCount']
|
2891
|
+
unless params['RecordDetailList'].nil?
|
2892
|
+
@RecordDetailList = []
|
2893
|
+
params['RecordDetailList'].each do |i|
|
2894
|
+
updaterecorddetails_tmp = UpdateRecordDetails.new
|
2895
|
+
updaterecorddetails_tmp.deserialize(i)
|
2896
|
+
@RecordDetailList << updaterecorddetails_tmp
|
2897
|
+
end
|
2898
|
+
end
|
2899
|
+
@SuccessTotalCount = params['SuccessTotalCount']
|
2900
|
+
@FailedTotalCount = params['FailedTotalCount']
|
2901
|
+
@RunningTotalCount = params['RunningTotalCount']
|
2902
|
+
@RequestId = params['RequestId']
|
2903
|
+
end
|
2904
|
+
end
|
2905
|
+
|
2906
|
+
# DescribeHostUpdateRecord请求参数结构体
|
2907
|
+
class DescribeHostUpdateRecordRequest < TencentCloud::Common::AbstractModel
|
2908
|
+
# @param Offset: 分页偏移量,从0开始。
|
2909
|
+
# @type Offset: Integer
|
2910
|
+
# @param Limit: 每页数量,默认10。
|
2911
|
+
# @type Limit: Integer
|
2912
|
+
# @param CertificateId: 新证书ID
|
2913
|
+
# @type CertificateId: String
|
2914
|
+
# @param OldCertificateId: 原证书ID
|
2915
|
+
# @type OldCertificateId: String
|
2916
|
+
|
2917
|
+
attr_accessor :Offset, :Limit, :CertificateId, :OldCertificateId
|
2918
|
+
|
2919
|
+
def initialize(offset=nil, limit=nil, certificateid=nil, oldcertificateid=nil)
|
2920
|
+
@Offset = offset
|
2921
|
+
@Limit = limit
|
2922
|
+
@CertificateId = certificateid
|
2923
|
+
@OldCertificateId = oldcertificateid
|
2924
|
+
end
|
2925
|
+
|
2926
|
+
def deserialize(params)
|
2927
|
+
@Offset = params['Offset']
|
2928
|
+
@Limit = params['Limit']
|
2929
|
+
@CertificateId = params['CertificateId']
|
2930
|
+
@OldCertificateId = params['OldCertificateId']
|
2931
|
+
end
|
2932
|
+
end
|
2933
|
+
|
2934
|
+
# DescribeHostUpdateRecord返回参数结构体
|
2935
|
+
class DescribeHostUpdateRecordResponse < TencentCloud::Common::AbstractModel
|
2936
|
+
# @param TotalCount: 总数
|
2937
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2938
|
+
# @type TotalCount: Integer
|
2939
|
+
# @param DeployRecordList: 证书部署记录列表
|
2940
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2941
|
+
# @type DeployRecordList: Array
|
2942
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2943
|
+
# @type RequestId: String
|
2944
|
+
|
2945
|
+
attr_accessor :TotalCount, :DeployRecordList, :RequestId
|
2946
|
+
|
2947
|
+
def initialize(totalcount=nil, deployrecordlist=nil, requestid=nil)
|
2948
|
+
@TotalCount = totalcount
|
2949
|
+
@DeployRecordList = deployrecordlist
|
2950
|
+
@RequestId = requestid
|
2951
|
+
end
|
2952
|
+
|
2953
|
+
def deserialize(params)
|
2954
|
+
@TotalCount = params['TotalCount']
|
2955
|
+
unless params['DeployRecordList'].nil?
|
2956
|
+
@DeployRecordList = []
|
2957
|
+
params['DeployRecordList'].each do |i|
|
2958
|
+
updaterecordinfo_tmp = UpdateRecordInfo.new
|
2959
|
+
updaterecordinfo_tmp.deserialize(i)
|
2960
|
+
@DeployRecordList << updaterecordinfo_tmp
|
2961
|
+
end
|
2962
|
+
end
|
2963
|
+
@RequestId = params['RequestId']
|
2964
|
+
end
|
2965
|
+
end
|
2966
|
+
|
2967
|
+
# DescribeHostVodInstanceList请求参数结构体
|
2968
|
+
class DescribeHostVodInstanceListRequest < TencentCloud::Common::AbstractModel
|
2969
|
+
# @param CertificateId: 待部署的证书ID
|
2970
|
+
# @type CertificateId: String
|
2971
|
+
# @param ResourceType: 部署资源类型 vod
|
2972
|
+
# @type ResourceType: String
|
2973
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
2974
|
+
# @type IsCache: Integer
|
2975
|
+
# @param Filters: 过滤参数列表
|
2976
|
+
# @type Filters: Array
|
2977
|
+
# @param OldCertificateId: 已部署的证书ID
|
2978
|
+
# @type OldCertificateId: String
|
2979
|
+
|
2980
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters, :OldCertificateId
|
2981
|
+
|
2982
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil, oldcertificateid=nil)
|
2983
|
+
@CertificateId = certificateid
|
2984
|
+
@ResourceType = resourcetype
|
2985
|
+
@IsCache = iscache
|
2986
|
+
@Filters = filters
|
2987
|
+
@OldCertificateId = oldcertificateid
|
2988
|
+
end
|
2989
|
+
|
2990
|
+
def deserialize(params)
|
2991
|
+
@CertificateId = params['CertificateId']
|
2992
|
+
@ResourceType = params['ResourceType']
|
2993
|
+
@IsCache = params['IsCache']
|
2994
|
+
unless params['Filters'].nil?
|
2995
|
+
@Filters = []
|
2996
|
+
params['Filters'].each do |i|
|
2997
|
+
filter_tmp = Filter.new
|
2998
|
+
filter_tmp.deserialize(i)
|
2999
|
+
@Filters << filter_tmp
|
3000
|
+
end
|
3001
|
+
end
|
3002
|
+
@OldCertificateId = params['OldCertificateId']
|
3003
|
+
end
|
3004
|
+
end
|
3005
|
+
|
3006
|
+
# DescribeHostVodInstanceList返回参数结构体
|
3007
|
+
class DescribeHostVodInstanceListResponse < TencentCloud::Common::AbstractModel
|
3008
|
+
# @param InstanceList: Vod实例列表
|
3009
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3010
|
+
# @type InstanceList: Array
|
3011
|
+
# @param TotalCount: 总数
|
3012
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3013
|
+
# @type TotalCount: Integer
|
3014
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3015
|
+
# @type RequestId: String
|
3016
|
+
|
3017
|
+
attr_accessor :InstanceList, :TotalCount, :RequestId
|
3018
|
+
|
3019
|
+
def initialize(instancelist=nil, totalcount=nil, requestid=nil)
|
3020
|
+
@InstanceList = instancelist
|
3021
|
+
@TotalCount = totalcount
|
3022
|
+
@RequestId = requestid
|
3023
|
+
end
|
3024
|
+
|
3025
|
+
def deserialize(params)
|
3026
|
+
unless params['InstanceList'].nil?
|
3027
|
+
@InstanceList = []
|
3028
|
+
params['InstanceList'].each do |i|
|
3029
|
+
vodinstancedetail_tmp = VodInstanceDetail.new
|
3030
|
+
vodinstancedetail_tmp.deserialize(i)
|
3031
|
+
@InstanceList << vodinstancedetail_tmp
|
3032
|
+
end
|
3033
|
+
end
|
3034
|
+
@TotalCount = params['TotalCount']
|
3035
|
+
@RequestId = params['RequestId']
|
3036
|
+
end
|
3037
|
+
end
|
3038
|
+
|
3039
|
+
# DescribeHostWafInstanceList请求参数结构体
|
3040
|
+
class DescribeHostWafInstanceListRequest < TencentCloud::Common::AbstractModel
|
3041
|
+
# @param CertificateId: 待部署的证书ID
|
3042
|
+
# @type CertificateId: String
|
3043
|
+
# @param ResourceType: 部署资源类型
|
3044
|
+
# @type ResourceType: String
|
3045
|
+
# @param IsCache: 是否查询缓存,1:是; 0:否, 默认为查询缓存,缓存半小时
|
3046
|
+
# @type IsCache: Integer
|
3047
|
+
# @param Filters: 过滤参数列表; FilterKey:domainMatch(查询域名是否匹配的实例列表) FilterValue:1,表示查询匹配; 0,表示查询不匹配; 默认查询匹配
|
3048
|
+
# @type Filters: Array
|
3049
|
+
# @param OldCertificateId: 已部署的证书ID
|
3050
|
+
# @type OldCertificateId: String
|
3051
|
+
|
3052
|
+
attr_accessor :CertificateId, :ResourceType, :IsCache, :Filters, :OldCertificateId
|
3053
|
+
|
3054
|
+
def initialize(certificateid=nil, resourcetype=nil, iscache=nil, filters=nil, oldcertificateid=nil)
|
3055
|
+
@CertificateId = certificateid
|
3056
|
+
@ResourceType = resourcetype
|
3057
|
+
@IsCache = iscache
|
3058
|
+
@Filters = filters
|
3059
|
+
@OldCertificateId = oldcertificateid
|
3060
|
+
end
|
3061
|
+
|
3062
|
+
def deserialize(params)
|
3063
|
+
@CertificateId = params['CertificateId']
|
3064
|
+
@ResourceType = params['ResourceType']
|
3065
|
+
@IsCache = params['IsCache']
|
3066
|
+
unless params['Filters'].nil?
|
3067
|
+
@Filters = []
|
3068
|
+
params['Filters'].each do |i|
|
3069
|
+
filter_tmp = Filter.new
|
3070
|
+
filter_tmp.deserialize(i)
|
3071
|
+
@Filters << filter_tmp
|
3072
|
+
end
|
3073
|
+
end
|
3074
|
+
@OldCertificateId = params['OldCertificateId']
|
3075
|
+
end
|
3076
|
+
end
|
3077
|
+
|
3078
|
+
# DescribeHostWafInstanceList返回参数结构体
|
3079
|
+
class DescribeHostWafInstanceListResponse < TencentCloud::Common::AbstractModel
|
3080
|
+
# @param InstanceList: WAF实例列表
|
3081
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3082
|
+
# @type InstanceList: Array
|
3083
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3084
|
+
# @type RequestId: String
|
3085
|
+
|
3086
|
+
attr_accessor :InstanceList, :RequestId
|
3087
|
+
|
3088
|
+
def initialize(instancelist=nil, requestid=nil)
|
3089
|
+
@InstanceList = instancelist
|
3090
|
+
@RequestId = requestid
|
3091
|
+
end
|
3092
|
+
|
3093
|
+
def deserialize(params)
|
3094
|
+
unless params['InstanceList'].nil?
|
3095
|
+
@InstanceList = []
|
3096
|
+
params['InstanceList'].each do |i|
|
3097
|
+
liveinstancedetail_tmp = LiveInstanceDetail.new
|
3098
|
+
liveinstancedetail_tmp.deserialize(i)
|
3099
|
+
@InstanceList << liveinstancedetail_tmp
|
1492
3100
|
end
|
1493
3101
|
end
|
1494
3102
|
@RequestId = params['RequestId']
|
@@ -1909,6 +3517,26 @@ module TencentCloud
|
|
1909
3517
|
end
|
1910
3518
|
end
|
1911
3519
|
|
3520
|
+
# 过滤参数列表
|
3521
|
+
class Filter < TencentCloud::Common::AbstractModel
|
3522
|
+
# @param FilterKey: 过滤参数key
|
3523
|
+
# @type FilterKey: String
|
3524
|
+
# @param FilterValue: 过滤参数值
|
3525
|
+
# @type FilterValue: String
|
3526
|
+
|
3527
|
+
attr_accessor :FilterKey, :FilterValue
|
3528
|
+
|
3529
|
+
def initialize(filterkey=nil, filtervalue=nil)
|
3530
|
+
@FilterKey = filterkey
|
3531
|
+
@FilterValue = filtervalue
|
3532
|
+
end
|
3533
|
+
|
3534
|
+
def deserialize(params)
|
3535
|
+
@FilterKey = params['FilterKey']
|
3536
|
+
@FilterValue = params['FilterValue']
|
3537
|
+
end
|
3538
|
+
end
|
3539
|
+
|
1912
3540
|
# HostCertificate请求参数结构体
|
1913
3541
|
class HostCertificateRequest < TencentCloud::Common::AbstractModel
|
1914
3542
|
# @param CertificateId: 证书ID
|
@@ -1952,6 +3580,61 @@ module TencentCloud
|
|
1952
3580
|
end
|
1953
3581
|
end
|
1954
3582
|
|
3583
|
+
# Lighthouse实例
|
3584
|
+
class LighthouseInstanceDetail < TencentCloud::Common::AbstractModel
|
3585
|
+
# @param InstanceId: 实例ID
|
3586
|
+
# @type InstanceId: String
|
3587
|
+
# @param InstanceName: 实例名称
|
3588
|
+
# @type InstanceName: String
|
3589
|
+
# @param IP: IP地址
|
3590
|
+
# @type IP: Array
|
3591
|
+
# @param Domain: 可选择域名
|
3592
|
+
# @type Domain: Array
|
3593
|
+
|
3594
|
+
attr_accessor :InstanceId, :InstanceName, :IP, :Domain
|
3595
|
+
|
3596
|
+
def initialize(instanceid=nil, instancename=nil, ip=nil, domain=nil)
|
3597
|
+
@InstanceId = instanceid
|
3598
|
+
@InstanceName = instancename
|
3599
|
+
@IP = ip
|
3600
|
+
@Domain = domain
|
3601
|
+
end
|
3602
|
+
|
3603
|
+
def deserialize(params)
|
3604
|
+
@InstanceId = params['InstanceId']
|
3605
|
+
@InstanceName = params['InstanceName']
|
3606
|
+
@IP = params['IP']
|
3607
|
+
@Domain = params['Domain']
|
3608
|
+
end
|
3609
|
+
end
|
3610
|
+
|
3611
|
+
# live实例详情
|
3612
|
+
class LiveInstanceDetail < TencentCloud::Common::AbstractModel
|
3613
|
+
# @param Domain: 域名
|
3614
|
+
# @type Domain: String
|
3615
|
+
# @param CertId: 已绑定的证书ID
|
3616
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3617
|
+
# @type CertId: String
|
3618
|
+
# @param Status: -1:域名未关联证书。
|
3619
|
+
# 1: 域名https已开启。
|
3620
|
+
# 0: 域名https已关闭。
|
3621
|
+
# @type Status: Integer
|
3622
|
+
|
3623
|
+
attr_accessor :Domain, :CertId, :Status
|
3624
|
+
|
3625
|
+
def initialize(domain=nil, certid=nil, status=nil)
|
3626
|
+
@Domain = domain
|
3627
|
+
@CertId = certid
|
3628
|
+
@Status = status
|
3629
|
+
end
|
3630
|
+
|
3631
|
+
def deserialize(params)
|
3632
|
+
@Domain = params['Domain']
|
3633
|
+
@CertId = params['CertId']
|
3634
|
+
@Status = params['Status']
|
3635
|
+
end
|
3636
|
+
end
|
3637
|
+
|
1955
3638
|
# 管理人信息
|
1956
3639
|
class ManagerInfo < TencentCloud::Common::AbstractModel
|
1957
3640
|
# @param Status: 状态: audit: 审核中 ok: 审核通过 invalid: 失效 expiring: 即将过期 expired: 已过期
|
@@ -2438,6 +4121,26 @@ module TencentCloud
|
|
2438
4121
|
end
|
2439
4122
|
end
|
2440
4123
|
|
4124
|
+
# 云资源地域列表
|
4125
|
+
class ResourceTypeRegions < TencentCloud::Common::AbstractModel
|
4126
|
+
# @param ResourceType: 云资源类型
|
4127
|
+
# @type ResourceType: String
|
4128
|
+
# @param Regions: 地域列表
|
4129
|
+
# @type Regions: Array
|
4130
|
+
|
4131
|
+
attr_accessor :ResourceType, :Regions
|
4132
|
+
|
4133
|
+
def initialize(resourcetype=nil, regions=nil)
|
4134
|
+
@ResourceType = resourcetype
|
4135
|
+
@Regions = regions
|
4136
|
+
end
|
4137
|
+
|
4138
|
+
def deserialize(params)
|
4139
|
+
@ResourceType = params['ResourceType']
|
4140
|
+
@Regions = params['Regions']
|
4141
|
+
end
|
4142
|
+
end
|
4143
|
+
|
2441
4144
|
# RevokeCertificate请求参数结构体
|
2442
4145
|
class RevokeCertificateRequest < TencentCloud::Common::AbstractModel
|
2443
4146
|
# @param CertificateId: 证书 ID。
|
@@ -2874,6 +4577,442 @@ module TencentCloud
|
|
2874
4577
|
end
|
2875
4578
|
end
|
2876
4579
|
|
4580
|
+
# teo实例详情
|
4581
|
+
class TeoInstanceDetail < TencentCloud::Common::AbstractModel
|
4582
|
+
# @param Host: 域名
|
4583
|
+
# @type Host: String
|
4584
|
+
# @param CertId: 证书ID
|
4585
|
+
# @type CertId: String
|
4586
|
+
|
4587
|
+
attr_accessor :Host, :CertId
|
4588
|
+
|
4589
|
+
def initialize(host=nil, certid=nil)
|
4590
|
+
@Host = host
|
4591
|
+
@CertId = certid
|
4592
|
+
end
|
4593
|
+
|
4594
|
+
def deserialize(params)
|
4595
|
+
@Host = params['Host']
|
4596
|
+
@CertId = params['CertId']
|
4597
|
+
end
|
4598
|
+
end
|
4599
|
+
|
4600
|
+
# tke ingress实例详情
|
4601
|
+
class TkeIngressDetail < TencentCloud::Common::AbstractModel
|
4602
|
+
# @param IngressName: ingress名称
|
4603
|
+
# @type IngressName: String
|
4604
|
+
# @param TlsDomains: tls域名列表
|
4605
|
+
# @type TlsDomains: Array
|
4606
|
+
# @param Domains: ingress域名列表
|
4607
|
+
# @type Domains: Array
|
4608
|
+
|
4609
|
+
attr_accessor :IngressName, :TlsDomains, :Domains
|
4610
|
+
|
4611
|
+
def initialize(ingressname=nil, tlsdomains=nil, domains=nil)
|
4612
|
+
@IngressName = ingressname
|
4613
|
+
@TlsDomains = tlsdomains
|
4614
|
+
@Domains = domains
|
4615
|
+
end
|
4616
|
+
|
4617
|
+
def deserialize(params)
|
4618
|
+
@IngressName = params['IngressName']
|
4619
|
+
@TlsDomains = params['TlsDomains']
|
4620
|
+
@Domains = params['Domains']
|
4621
|
+
end
|
4622
|
+
end
|
4623
|
+
|
4624
|
+
# tke实例详情
|
4625
|
+
class TkeInstanceDetail < TencentCloud::Common::AbstractModel
|
4626
|
+
# @param ClusterId: 集群ID
|
4627
|
+
# @type ClusterId: String
|
4628
|
+
# @param ClusterName: 集群名称
|
4629
|
+
# @type ClusterName: String
|
4630
|
+
# @param NamespaceList: 集群命名空间列表
|
4631
|
+
# @type NamespaceList: Array
|
4632
|
+
|
4633
|
+
attr_accessor :ClusterId, :ClusterName, :NamespaceList
|
4634
|
+
|
4635
|
+
def initialize(clusterid=nil, clustername=nil, namespacelist=nil)
|
4636
|
+
@ClusterId = clusterid
|
4637
|
+
@ClusterName = clustername
|
4638
|
+
@NamespaceList = namespacelist
|
4639
|
+
end
|
4640
|
+
|
4641
|
+
def deserialize(params)
|
4642
|
+
@ClusterId = params['ClusterId']
|
4643
|
+
@ClusterName = params['ClusterName']
|
4644
|
+
unless params['NamespaceList'].nil?
|
4645
|
+
@NamespaceList = []
|
4646
|
+
params['NamespaceList'].each do |i|
|
4647
|
+
tkenamespacedetail_tmp = TkeNameSpaceDetail.new
|
4648
|
+
tkenamespacedetail_tmp.deserialize(i)
|
4649
|
+
@NamespaceList << tkenamespacedetail_tmp
|
4650
|
+
end
|
4651
|
+
end
|
4652
|
+
end
|
4653
|
+
end
|
4654
|
+
|
4655
|
+
# tke namespace详情
|
4656
|
+
class TkeNameSpaceDetail < TencentCloud::Common::AbstractModel
|
4657
|
+
# @param Name: namespace名称
|
4658
|
+
# @type Name: String
|
4659
|
+
# @param SecretList: secret列表
|
4660
|
+
# @type SecretList: Array
|
4661
|
+
|
4662
|
+
attr_accessor :Name, :SecretList
|
4663
|
+
|
4664
|
+
def initialize(name=nil, secretlist=nil)
|
4665
|
+
@Name = name
|
4666
|
+
@SecretList = secretlist
|
4667
|
+
end
|
4668
|
+
|
4669
|
+
def deserialize(params)
|
4670
|
+
@Name = params['Name']
|
4671
|
+
unless params['SecretList'].nil?
|
4672
|
+
@SecretList = []
|
4673
|
+
params['SecretList'].each do |i|
|
4674
|
+
tkesecretdetail_tmp = TkeSecretDetail.new
|
4675
|
+
tkesecretdetail_tmp.deserialize(i)
|
4676
|
+
@SecretList << tkesecretdetail_tmp
|
4677
|
+
end
|
4678
|
+
end
|
4679
|
+
end
|
4680
|
+
end
|
4681
|
+
|
4682
|
+
# tke secret详情
|
4683
|
+
class TkeSecretDetail < TencentCloud::Common::AbstractModel
|
4684
|
+
# @param Name: secret名称
|
4685
|
+
# @type Name: String
|
4686
|
+
# @param CertId: 证书ID
|
4687
|
+
# @type CertId: String
|
4688
|
+
# @param IngressList: ingress列表
|
4689
|
+
# @type IngressList: Array
|
4690
|
+
# @param NoMatchDomains: 和新证书不匹配的域名列表
|
4691
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4692
|
+
# @type NoMatchDomains: Array
|
4693
|
+
|
4694
|
+
attr_accessor :Name, :CertId, :IngressList, :NoMatchDomains
|
4695
|
+
|
4696
|
+
def initialize(name=nil, certid=nil, ingresslist=nil, nomatchdomains=nil)
|
4697
|
+
@Name = name
|
4698
|
+
@CertId = certid
|
4699
|
+
@IngressList = ingresslist
|
4700
|
+
@NoMatchDomains = nomatchdomains
|
4701
|
+
end
|
4702
|
+
|
4703
|
+
def deserialize(params)
|
4704
|
+
@Name = params['Name']
|
4705
|
+
@CertId = params['CertId']
|
4706
|
+
unless params['IngressList'].nil?
|
4707
|
+
@IngressList = []
|
4708
|
+
params['IngressList'].each do |i|
|
4709
|
+
tkeingressdetail_tmp = TkeIngressDetail.new
|
4710
|
+
tkeingressdetail_tmp.deserialize(i)
|
4711
|
+
@IngressList << tkeingressdetail_tmp
|
4712
|
+
end
|
4713
|
+
end
|
4714
|
+
@NoMatchDomains = params['NoMatchDomains']
|
4715
|
+
end
|
4716
|
+
end
|
4717
|
+
|
4718
|
+
# UpdateCertificateInstance请求参数结构体
|
4719
|
+
class UpdateCertificateInstanceRequest < TencentCloud::Common::AbstractModel
|
4720
|
+
# @param CertificateId: 一键更新新证书ID
|
4721
|
+
# @type CertificateId: String
|
4722
|
+
# @param OldCertificateId: 一键更新原证书ID
|
4723
|
+
# @type OldCertificateId: String
|
4724
|
+
# @param ResourceTypes: 需要部署的资源类型
|
4725
|
+
# @type ResourceTypes: Array
|
4726
|
+
# @param Regions: 需要部署的地域列表(废弃)
|
4727
|
+
# @type Regions: Array
|
4728
|
+
# @param ResourceTypesRegions: 云资源需要部署的地域列表
|
4729
|
+
# @type ResourceTypesRegions: Array
|
4730
|
+
|
4731
|
+
attr_accessor :CertificateId, :OldCertificateId, :ResourceTypes, :Regions, :ResourceTypesRegions
|
4732
|
+
|
4733
|
+
def initialize(certificateid=nil, oldcertificateid=nil, resourcetypes=nil, regions=nil, resourcetypesregions=nil)
|
4734
|
+
@CertificateId = certificateid
|
4735
|
+
@OldCertificateId = oldcertificateid
|
4736
|
+
@ResourceTypes = resourcetypes
|
4737
|
+
@Regions = regions
|
4738
|
+
@ResourceTypesRegions = resourcetypesregions
|
4739
|
+
end
|
4740
|
+
|
4741
|
+
def deserialize(params)
|
4742
|
+
@CertificateId = params['CertificateId']
|
4743
|
+
@OldCertificateId = params['OldCertificateId']
|
4744
|
+
@ResourceTypes = params['ResourceTypes']
|
4745
|
+
@Regions = params['Regions']
|
4746
|
+
unless params['ResourceTypesRegions'].nil?
|
4747
|
+
@ResourceTypesRegions = []
|
4748
|
+
params['ResourceTypesRegions'].each do |i|
|
4749
|
+
resourcetyperegions_tmp = ResourceTypeRegions.new
|
4750
|
+
resourcetyperegions_tmp.deserialize(i)
|
4751
|
+
@ResourceTypesRegions << resourcetyperegions_tmp
|
4752
|
+
end
|
4753
|
+
end
|
4754
|
+
end
|
4755
|
+
end
|
4756
|
+
|
4757
|
+
# UpdateCertificateInstance返回参数结构体
|
4758
|
+
class UpdateCertificateInstanceResponse < TencentCloud::Common::AbstractModel
|
4759
|
+
# @param DeployRecordId: 云资源部署任务ID
|
4760
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4761
|
+
# @type DeployRecordId: Integer
|
4762
|
+
# @param DeployStatus: 部署状态,1表示部署成功,0表示部署失败
|
4763
|
+
# @type DeployStatus: Integer
|
4764
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4765
|
+
# @type RequestId: String
|
4766
|
+
|
4767
|
+
attr_accessor :DeployRecordId, :DeployStatus, :RequestId
|
4768
|
+
|
4769
|
+
def initialize(deployrecordid=nil, deploystatus=nil, requestid=nil)
|
4770
|
+
@DeployRecordId = deployrecordid
|
4771
|
+
@DeployStatus = deploystatus
|
4772
|
+
@RequestId = requestid
|
4773
|
+
end
|
4774
|
+
|
4775
|
+
def deserialize(params)
|
4776
|
+
@DeployRecordId = params['DeployRecordId']
|
4777
|
+
@DeployStatus = params['DeployStatus']
|
4778
|
+
@RequestId = params['RequestId']
|
4779
|
+
end
|
4780
|
+
end
|
4781
|
+
|
4782
|
+
# UpdateCertificateRecordRetry请求参数结构体
|
4783
|
+
class UpdateCertificateRecordRetryRequest < TencentCloud::Common::AbstractModel
|
4784
|
+
# @param DeployRecordId: 待重试部署记录ID
|
4785
|
+
# @type DeployRecordId: Integer
|
4786
|
+
# @param DeployRecordDetailId: 待重试部署记录详情ID
|
4787
|
+
# @type DeployRecordDetailId: Integer
|
4788
|
+
|
4789
|
+
attr_accessor :DeployRecordId, :DeployRecordDetailId
|
4790
|
+
|
4791
|
+
def initialize(deployrecordid=nil, deployrecorddetailid=nil)
|
4792
|
+
@DeployRecordId = deployrecordid
|
4793
|
+
@DeployRecordDetailId = deployrecorddetailid
|
4794
|
+
end
|
4795
|
+
|
4796
|
+
def deserialize(params)
|
4797
|
+
@DeployRecordId = params['DeployRecordId']
|
4798
|
+
@DeployRecordDetailId = params['DeployRecordDetailId']
|
4799
|
+
end
|
4800
|
+
end
|
4801
|
+
|
4802
|
+
# UpdateCertificateRecordRetry返回参数结构体
|
4803
|
+
class UpdateCertificateRecordRetryResponse < TencentCloud::Common::AbstractModel
|
4804
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4805
|
+
# @type RequestId: String
|
4806
|
+
|
4807
|
+
attr_accessor :RequestId
|
4808
|
+
|
4809
|
+
def initialize(requestid=nil)
|
4810
|
+
@RequestId = requestid
|
4811
|
+
end
|
4812
|
+
|
4813
|
+
def deserialize(params)
|
4814
|
+
@RequestId = params['RequestId']
|
4815
|
+
end
|
4816
|
+
end
|
4817
|
+
|
4818
|
+
# UpdateCertificateRecordRollback请求参数结构体
|
4819
|
+
class UpdateCertificateRecordRollbackRequest < TencentCloud::Common::AbstractModel
|
4820
|
+
# @param DeployRecordId: 待重试部署记录ID
|
4821
|
+
# @type DeployRecordId: Integer
|
4822
|
+
|
4823
|
+
attr_accessor :DeployRecordId
|
4824
|
+
|
4825
|
+
def initialize(deployrecordid=nil)
|
4826
|
+
@DeployRecordId = deployrecordid
|
4827
|
+
end
|
4828
|
+
|
4829
|
+
def deserialize(params)
|
4830
|
+
@DeployRecordId = params['DeployRecordId']
|
4831
|
+
end
|
4832
|
+
end
|
4833
|
+
|
4834
|
+
# UpdateCertificateRecordRollback返回参数结构体
|
4835
|
+
class UpdateCertificateRecordRollbackResponse < TencentCloud::Common::AbstractModel
|
4836
|
+
# @param DeployRecordId: 回滚部署记录ID
|
4837
|
+
# @type DeployRecordId: Integer
|
4838
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4839
|
+
# @type RequestId: String
|
4840
|
+
|
4841
|
+
attr_accessor :DeployRecordId, :RequestId
|
4842
|
+
|
4843
|
+
def initialize(deployrecordid=nil, requestid=nil)
|
4844
|
+
@DeployRecordId = deployrecordid
|
4845
|
+
@RequestId = requestid
|
4846
|
+
end
|
4847
|
+
|
4848
|
+
def deserialize(params)
|
4849
|
+
@DeployRecordId = params['DeployRecordId']
|
4850
|
+
@RequestId = params['RequestId']
|
4851
|
+
end
|
4852
|
+
end
|
4853
|
+
|
4854
|
+
# 更新记录详情
|
4855
|
+
class UpdateRecordDetail < TencentCloud::Common::AbstractModel
|
4856
|
+
# @param Id: 详情记录id
|
4857
|
+
# @type Id: Integer
|
4858
|
+
# @param CertId: 新证书ID
|
4859
|
+
# @type CertId: String
|
4860
|
+
# @param OldCertId: 旧证书ID
|
4861
|
+
# @type OldCertId: String
|
4862
|
+
# @param Domains: 部署域名列表
|
4863
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4864
|
+
# @type Domains: Array
|
4865
|
+
# @param ResourceType: 部署资源类型
|
4866
|
+
# @type ResourceType: String
|
4867
|
+
# @param Region: 部署地域
|
4868
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4869
|
+
# @type Region: String
|
4870
|
+
# @param Status: 部署状态
|
4871
|
+
# @type Status: Integer
|
4872
|
+
# @param ErrorMsg: 部署错误信息
|
4873
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4874
|
+
# @type ErrorMsg: String
|
4875
|
+
# @param CreateTime: 部署时间
|
4876
|
+
# @type CreateTime: String
|
4877
|
+
# @param UpdateTime: 最后一次更新时间
|
4878
|
+
# @type UpdateTime: String
|
4879
|
+
# @param InstanceId: 部署实例ID
|
4880
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4881
|
+
# @type InstanceId: String
|
4882
|
+
# @param InstanceName: 部署实例名称
|
4883
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4884
|
+
# @type InstanceName: String
|
4885
|
+
# @param ListenerId: 部署监听器ID
|
4886
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4887
|
+
# @type ListenerId: String
|
4888
|
+
# @param ListenerName: 部署监听器名称
|
4889
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4890
|
+
# @type ListenerName: String
|
4891
|
+
# @param Protocol: 协议
|
4892
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4893
|
+
# @type Protocol: String
|
4894
|
+
# @param SniSwitch: 是否开启SNI
|
4895
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4896
|
+
# @type SniSwitch: Integer
|
4897
|
+
# @param Bucket: bucket名称
|
4898
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4899
|
+
# @type Bucket: String
|
4900
|
+
|
4901
|
+
attr_accessor :Id, :CertId, :OldCertId, :Domains, :ResourceType, :Region, :Status, :ErrorMsg, :CreateTime, :UpdateTime, :InstanceId, :InstanceName, :ListenerId, :ListenerName, :Protocol, :SniSwitch, :Bucket
|
4902
|
+
|
4903
|
+
def initialize(id=nil, certid=nil, oldcertid=nil, domains=nil, resourcetype=nil, region=nil, status=nil, errormsg=nil, createtime=nil, updatetime=nil, instanceid=nil, instancename=nil, listenerid=nil, listenername=nil, protocol=nil, sniswitch=nil, bucket=nil)
|
4904
|
+
@Id = id
|
4905
|
+
@CertId = certid
|
4906
|
+
@OldCertId = oldcertid
|
4907
|
+
@Domains = domains
|
4908
|
+
@ResourceType = resourcetype
|
4909
|
+
@Region = region
|
4910
|
+
@Status = status
|
4911
|
+
@ErrorMsg = errormsg
|
4912
|
+
@CreateTime = createtime
|
4913
|
+
@UpdateTime = updatetime
|
4914
|
+
@InstanceId = instanceid
|
4915
|
+
@InstanceName = instancename
|
4916
|
+
@ListenerId = listenerid
|
4917
|
+
@ListenerName = listenername
|
4918
|
+
@Protocol = protocol
|
4919
|
+
@SniSwitch = sniswitch
|
4920
|
+
@Bucket = bucket
|
4921
|
+
end
|
4922
|
+
|
4923
|
+
def deserialize(params)
|
4924
|
+
@Id = params['Id']
|
4925
|
+
@CertId = params['CertId']
|
4926
|
+
@OldCertId = params['OldCertId']
|
4927
|
+
@Domains = params['Domains']
|
4928
|
+
@ResourceType = params['ResourceType']
|
4929
|
+
@Region = params['Region']
|
4930
|
+
@Status = params['Status']
|
4931
|
+
@ErrorMsg = params['ErrorMsg']
|
4932
|
+
@CreateTime = params['CreateTime']
|
4933
|
+
@UpdateTime = params['UpdateTime']
|
4934
|
+
@InstanceId = params['InstanceId']
|
4935
|
+
@InstanceName = params['InstanceName']
|
4936
|
+
@ListenerId = params['ListenerId']
|
4937
|
+
@ListenerName = params['ListenerName']
|
4938
|
+
@Protocol = params['Protocol']
|
4939
|
+
@SniSwitch = params['SniSwitch']
|
4940
|
+
@Bucket = params['Bucket']
|
4941
|
+
end
|
4942
|
+
end
|
4943
|
+
|
4944
|
+
# 更新记录详情列表
|
4945
|
+
class UpdateRecordDetails < TencentCloud::Common::AbstractModel
|
4946
|
+
# @param ResourceType: 部署资源类型
|
4947
|
+
# @type ResourceType: String
|
4948
|
+
# @param List: 部署资源详情列表
|
4949
|
+
# @type List: Array
|
4950
|
+
|
4951
|
+
attr_accessor :ResourceType, :List
|
4952
|
+
|
4953
|
+
def initialize(resourcetype=nil, list=nil)
|
4954
|
+
@ResourceType = resourcetype
|
4955
|
+
@List = list
|
4956
|
+
end
|
4957
|
+
|
4958
|
+
def deserialize(params)
|
4959
|
+
@ResourceType = params['ResourceType']
|
4960
|
+
unless params['List'].nil?
|
4961
|
+
@List = []
|
4962
|
+
params['List'].each do |i|
|
4963
|
+
updaterecorddetail_tmp = UpdateRecordDetail.new
|
4964
|
+
updaterecorddetail_tmp.deserialize(i)
|
4965
|
+
@List << updaterecorddetail_tmp
|
4966
|
+
end
|
4967
|
+
end
|
4968
|
+
end
|
4969
|
+
end
|
4970
|
+
|
4971
|
+
# 部署记录信息
|
4972
|
+
class UpdateRecordInfo < TencentCloud::Common::AbstractModel
|
4973
|
+
# @param Id: 记录ID
|
4974
|
+
# @type Id: Integer
|
4975
|
+
# @param CertId: 新证书ID
|
4976
|
+
# @type CertId: String
|
4977
|
+
# @param OldCertId: 原证书ID
|
4978
|
+
# @type OldCertId: String
|
4979
|
+
# @param ResourceTypes: 部署资源类型列表
|
4980
|
+
# @type ResourceTypes: Array
|
4981
|
+
# @param Regions: 部署地域列表
|
4982
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4983
|
+
# @type Regions: Array
|
4984
|
+
# @param Status: 部署状态
|
4985
|
+
# @type Status: Integer
|
4986
|
+
# @param CreateTime: 部署时间
|
4987
|
+
# @type CreateTime: String
|
4988
|
+
# @param UpdateTime: 最后一次更新时间
|
4989
|
+
# @type UpdateTime: String
|
4990
|
+
|
4991
|
+
attr_accessor :Id, :CertId, :OldCertId, :ResourceTypes, :Regions, :Status, :CreateTime, :UpdateTime
|
4992
|
+
|
4993
|
+
def initialize(id=nil, certid=nil, oldcertid=nil, resourcetypes=nil, regions=nil, status=nil, createtime=nil, updatetime=nil)
|
4994
|
+
@Id = id
|
4995
|
+
@CertId = certid
|
4996
|
+
@OldCertId = oldcertid
|
4997
|
+
@ResourceTypes = resourcetypes
|
4998
|
+
@Regions = regions
|
4999
|
+
@Status = status
|
5000
|
+
@CreateTime = createtime
|
5001
|
+
@UpdateTime = updatetime
|
5002
|
+
end
|
5003
|
+
|
5004
|
+
def deserialize(params)
|
5005
|
+
@Id = params['Id']
|
5006
|
+
@CertId = params['CertId']
|
5007
|
+
@OldCertId = params['OldCertId']
|
5008
|
+
@ResourceTypes = params['ResourceTypes']
|
5009
|
+
@Regions = params['Regions']
|
5010
|
+
@Status = params['Status']
|
5011
|
+
@CreateTime = params['CreateTime']
|
5012
|
+
@UpdateTime = params['UpdateTime']
|
5013
|
+
end
|
5014
|
+
end
|
5015
|
+
|
2877
5016
|
# UploadCertificate请求参数结构体
|
2878
5017
|
class UploadCertificateRequest < TencentCloud::Common::AbstractModel
|
2879
5018
|
# @param CertificatePublicKey: 证书内容。
|
@@ -3063,6 +5202,26 @@ module TencentCloud
|
|
3063
5202
|
end
|
3064
5203
|
end
|
3065
5204
|
|
5205
|
+
# Vod实例
|
5206
|
+
class VodInstanceDetail < TencentCloud::Common::AbstractModel
|
5207
|
+
# @param Domain: 域名
|
5208
|
+
# @type Domain: String
|
5209
|
+
# @param CertId: 证书ID
|
5210
|
+
# @type CertId: String
|
5211
|
+
|
5212
|
+
attr_accessor :Domain, :CertId
|
5213
|
+
|
5214
|
+
def initialize(domain=nil, certid=nil)
|
5215
|
+
@Domain = domain
|
5216
|
+
@CertId = certid
|
5217
|
+
end
|
5218
|
+
|
5219
|
+
def deserialize(params)
|
5220
|
+
@Domain = params['Domain']
|
5221
|
+
@CertId = params['CertId']
|
5222
|
+
end
|
5223
|
+
end
|
5224
|
+
|
3066
5225
|
end
|
3067
5226
|
end
|
3068
5227
|
end
|