tencentcloud-sdk-python 3.0.1406__py2.py3-none-any.whl → 3.0.1408__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/apm/v20210622/models.py +15 -0
- tencentcloud/asr/v20190614/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +168 -4
- tencentcloud/cdb/v20170320/cdb_client.py +5 -5
- tencentcloud/cdb/v20170320/models.py +42 -38
- tencentcloud/cdn/v20180606/errorcodes.py +9 -0
- tencentcloud/cdn/v20180606/models.py +2 -2
- tencentcloud/cfs/v20190719/models.py +25 -6
- tencentcloud/ckafka/v20190819/models.py +30 -0
- tencentcloud/csip/v20221121/csip_client.py +299 -0
- tencentcloud/csip/v20221121/models.py +11315 -6743
- tencentcloud/dts/v20211206/models.py +15 -0
- tencentcloud/es/v20180416/models.py +77 -0
- tencentcloud/es/v20250101/models.py +32 -0
- tencentcloud/ess/v20201111/errorcodes.py +33 -0
- tencentcloud/ess/v20201111/ess_client.py +80 -0
- tencentcloud/ess/v20201111/models.py +596 -8
- tencentcloud/essbasic/v20210526/errorcodes.py +9 -3
- tencentcloud/essbasic/v20210526/essbasic_client.py +84 -1
- tencentcloud/essbasic/v20210526/models.py +599 -2
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hunyuan/v20230901/models.py +9 -5
- tencentcloud/ioa/v20220601/models.py +75 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +34 -11
- tencentcloud/iotexplorer/v20190423/models.py +258 -0
- tencentcloud/live/v20180801/live_client.py +90 -21
- tencentcloud/live/v20180801/models.py +903 -177
- tencentcloud/lkeap/v20240522/lkeap_client.py +0 -23
- tencentcloud/lkeap/v20240522/models.py +0 -167
- tencentcloud/ocr/v20181119/models.py +38 -0
- tencentcloud/ocr/v20181119/ocr_client.py +10 -0
- tencentcloud/ssl/v20191205/models.py +1081 -29
- tencentcloud/ssl/v20191205/ssl_client.py +92 -0
- tencentcloud/tcbr/v20220217/models.py +17 -0
- tencentcloud/tdmq/v20200217/models.py +107 -68
- tencentcloud/tdmq/v20200217/tdmq_client.py +2 -2
- tencentcloud/trocket/v20230308/errorcodes.py +3 -0
- tencentcloud/trocket/v20230308/models.py +512 -107
- tencentcloud/trocket/v20230308/trocket_client.py +34 -2
- tencentcloud/trtc/v20190722/models.py +6 -6
- tencentcloud/tse/v20201207/models.py +30 -0
- tencentcloud/wedata/v20210820/models.py +1280 -2
- tencentcloud/wedata/v20210820/wedata_client.py +46 -0
- {tencentcloud_sdk_python-3.0.1406.dist-info → tencentcloud_sdk_python-3.0.1408.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1406.dist-info → tencentcloud_sdk_python-3.0.1408.dist-info}/RECORD +49 -49
- {tencentcloud_sdk_python-3.0.1406.dist-info → tencentcloud_sdk_python-3.0.1408.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1406.dist-info → tencentcloud_sdk_python-3.0.1408.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1406.dist-info → tencentcloud_sdk_python-3.0.1408.dist-info}/top_level.txt +0 -0
@@ -6509,6 +6509,152 @@ class DeployCertificateRecordRollbackResponse(AbstractModel):
|
|
6509
6509
|
self._RequestId = params.get("RequestId")
|
6510
6510
|
|
6511
6511
|
|
6512
|
+
class DeployRecord(AbstractModel):
|
6513
|
+
"""托管记录
|
6514
|
+
|
6515
|
+
"""
|
6516
|
+
|
6517
|
+
def __init__(self):
|
6518
|
+
r"""
|
6519
|
+
:param _TotalCount: 总数
|
6520
|
+
:type TotalCount: int
|
6521
|
+
:param _SuccessTotalCount: 成功总数
|
6522
|
+
:type SuccessTotalCount: int
|
6523
|
+
:param _FailedTotalCount: 失败总数
|
6524
|
+
:type FailedTotalCount: int
|
6525
|
+
:param _RunningTotalCount: 部署中总数
|
6526
|
+
:type RunningTotalCount: int
|
6527
|
+
:param _Type: 部署记录类型 0 为部署, 1 为回滚
|
6528
|
+
:type Type: int
|
6529
|
+
:param _RecordDetailList: 部署记录详情列表
|
6530
|
+
:type RecordDetailList: list of DeployRecordList
|
6531
|
+
:param _Status: 托管资源部署状态:0 等待部署, 1 部署成功, 2 部署失败 3 部署中, 4 回滚成功, 5 回滚失败
|
6532
|
+
:type Status: int
|
6533
|
+
:param _CreateTime: 托管资源创建时间
|
6534
|
+
:type CreateTime: str
|
6535
|
+
"""
|
6536
|
+
self._TotalCount = None
|
6537
|
+
self._SuccessTotalCount = None
|
6538
|
+
self._FailedTotalCount = None
|
6539
|
+
self._RunningTotalCount = None
|
6540
|
+
self._Type = None
|
6541
|
+
self._RecordDetailList = None
|
6542
|
+
self._Status = None
|
6543
|
+
self._CreateTime = None
|
6544
|
+
|
6545
|
+
@property
|
6546
|
+
def TotalCount(self):
|
6547
|
+
"""总数
|
6548
|
+
:rtype: int
|
6549
|
+
"""
|
6550
|
+
return self._TotalCount
|
6551
|
+
|
6552
|
+
@TotalCount.setter
|
6553
|
+
def TotalCount(self, TotalCount):
|
6554
|
+
self._TotalCount = TotalCount
|
6555
|
+
|
6556
|
+
@property
|
6557
|
+
def SuccessTotalCount(self):
|
6558
|
+
"""成功总数
|
6559
|
+
:rtype: int
|
6560
|
+
"""
|
6561
|
+
return self._SuccessTotalCount
|
6562
|
+
|
6563
|
+
@SuccessTotalCount.setter
|
6564
|
+
def SuccessTotalCount(self, SuccessTotalCount):
|
6565
|
+
self._SuccessTotalCount = SuccessTotalCount
|
6566
|
+
|
6567
|
+
@property
|
6568
|
+
def FailedTotalCount(self):
|
6569
|
+
"""失败总数
|
6570
|
+
:rtype: int
|
6571
|
+
"""
|
6572
|
+
return self._FailedTotalCount
|
6573
|
+
|
6574
|
+
@FailedTotalCount.setter
|
6575
|
+
def FailedTotalCount(self, FailedTotalCount):
|
6576
|
+
self._FailedTotalCount = FailedTotalCount
|
6577
|
+
|
6578
|
+
@property
|
6579
|
+
def RunningTotalCount(self):
|
6580
|
+
"""部署中总数
|
6581
|
+
:rtype: int
|
6582
|
+
"""
|
6583
|
+
return self._RunningTotalCount
|
6584
|
+
|
6585
|
+
@RunningTotalCount.setter
|
6586
|
+
def RunningTotalCount(self, RunningTotalCount):
|
6587
|
+
self._RunningTotalCount = RunningTotalCount
|
6588
|
+
|
6589
|
+
@property
|
6590
|
+
def Type(self):
|
6591
|
+
"""部署记录类型 0 为部署, 1 为回滚
|
6592
|
+
:rtype: int
|
6593
|
+
"""
|
6594
|
+
return self._Type
|
6595
|
+
|
6596
|
+
@Type.setter
|
6597
|
+
def Type(self, Type):
|
6598
|
+
self._Type = Type
|
6599
|
+
|
6600
|
+
@property
|
6601
|
+
def RecordDetailList(self):
|
6602
|
+
"""部署记录详情列表
|
6603
|
+
:rtype: list of DeployRecordList
|
6604
|
+
"""
|
6605
|
+
return self._RecordDetailList
|
6606
|
+
|
6607
|
+
@RecordDetailList.setter
|
6608
|
+
def RecordDetailList(self, RecordDetailList):
|
6609
|
+
self._RecordDetailList = RecordDetailList
|
6610
|
+
|
6611
|
+
@property
|
6612
|
+
def Status(self):
|
6613
|
+
"""托管资源部署状态:0 等待部署, 1 部署成功, 2 部署失败 3 部署中, 4 回滚成功, 5 回滚失败
|
6614
|
+
:rtype: int
|
6615
|
+
"""
|
6616
|
+
return self._Status
|
6617
|
+
|
6618
|
+
@Status.setter
|
6619
|
+
def Status(self, Status):
|
6620
|
+
self._Status = Status
|
6621
|
+
|
6622
|
+
@property
|
6623
|
+
def CreateTime(self):
|
6624
|
+
"""托管资源创建时间
|
6625
|
+
:rtype: str
|
6626
|
+
"""
|
6627
|
+
return self._CreateTime
|
6628
|
+
|
6629
|
+
@CreateTime.setter
|
6630
|
+
def CreateTime(self, CreateTime):
|
6631
|
+
self._CreateTime = CreateTime
|
6632
|
+
|
6633
|
+
|
6634
|
+
def _deserialize(self, params):
|
6635
|
+
self._TotalCount = params.get("TotalCount")
|
6636
|
+
self._SuccessTotalCount = params.get("SuccessTotalCount")
|
6637
|
+
self._FailedTotalCount = params.get("FailedTotalCount")
|
6638
|
+
self._RunningTotalCount = params.get("RunningTotalCount")
|
6639
|
+
self._Type = params.get("Type")
|
6640
|
+
if params.get("RecordDetailList") is not None:
|
6641
|
+
self._RecordDetailList = []
|
6642
|
+
for item in params.get("RecordDetailList"):
|
6643
|
+
obj = DeployRecordList()
|
6644
|
+
obj._deserialize(item)
|
6645
|
+
self._RecordDetailList.append(obj)
|
6646
|
+
self._Status = params.get("Status")
|
6647
|
+
self._CreateTime = params.get("CreateTime")
|
6648
|
+
memeber_set = set(params.keys())
|
6649
|
+
for name, value in vars(self).items():
|
6650
|
+
property_name = name[1:]
|
6651
|
+
if property_name in memeber_set:
|
6652
|
+
memeber_set.remove(property_name)
|
6653
|
+
if len(memeber_set) > 0:
|
6654
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6655
|
+
|
6656
|
+
|
6657
|
+
|
6512
6658
|
class DeployRecordDetail(AbstractModel):
|
6513
6659
|
"""部署记录详情
|
6514
6660
|
|
@@ -6946,36 +7092,445 @@ class DeployRecordInfo(AbstractModel):
|
|
6946
7092
|
self._Status = Status
|
6947
7093
|
|
6948
7094
|
@property
|
6949
|
-
def CreateTime(self):
|
6950
|
-
"""部署时间
|
6951
|
-
:rtype: str
|
7095
|
+
def CreateTime(self):
|
7096
|
+
"""部署时间
|
7097
|
+
:rtype: str
|
7098
|
+
"""
|
7099
|
+
return self._CreateTime
|
7100
|
+
|
7101
|
+
@CreateTime.setter
|
7102
|
+
def CreateTime(self, CreateTime):
|
7103
|
+
self._CreateTime = CreateTime
|
7104
|
+
|
7105
|
+
@property
|
7106
|
+
def UpdateTime(self):
|
7107
|
+
"""最近一次更新时间
|
7108
|
+
:rtype: str
|
7109
|
+
"""
|
7110
|
+
return self._UpdateTime
|
7111
|
+
|
7112
|
+
@UpdateTime.setter
|
7113
|
+
def UpdateTime(self, UpdateTime):
|
7114
|
+
self._UpdateTime = UpdateTime
|
7115
|
+
|
7116
|
+
|
7117
|
+
def _deserialize(self, params):
|
7118
|
+
self._Id = params.get("Id")
|
7119
|
+
self._CertId = params.get("CertId")
|
7120
|
+
self._ResourceType = params.get("ResourceType")
|
7121
|
+
self._Region = params.get("Region")
|
7122
|
+
self._Status = params.get("Status")
|
7123
|
+
self._CreateTime = params.get("CreateTime")
|
7124
|
+
self._UpdateTime = params.get("UpdateTime")
|
7125
|
+
memeber_set = set(params.keys())
|
7126
|
+
for name, value in vars(self).items():
|
7127
|
+
property_name = name[1:]
|
7128
|
+
if property_name in memeber_set:
|
7129
|
+
memeber_set.remove(property_name)
|
7130
|
+
if len(memeber_set) > 0:
|
7131
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7132
|
+
|
7133
|
+
|
7134
|
+
|
7135
|
+
class DeployRecordItem(AbstractModel):
|
7136
|
+
"""部署记录详情
|
7137
|
+
|
7138
|
+
"""
|
7139
|
+
|
7140
|
+
def __init__(self):
|
7141
|
+
r"""
|
7142
|
+
:param _Id: 部署记录详情ID
|
7143
|
+
:type Id: int
|
7144
|
+
:param _OldCertId: 原绑定证书ID
|
7145
|
+
:type OldCertId: str
|
7146
|
+
:param _InstanceId: 部署实例ID
|
7147
|
+
:type InstanceId: str
|
7148
|
+
:param _InstanceName: 部署实例名称
|
7149
|
+
:type InstanceName: str
|
7150
|
+
:param _ListenerId: 部署监听器ID
|
7151
|
+
:type ListenerId: str
|
7152
|
+
:param _Domains: 部署域名列表
|
7153
|
+
:type Domains: list of str
|
7154
|
+
:param _Protocol: 部署监听器协议
|
7155
|
+
:type Protocol: str
|
7156
|
+
:param _Status: 部署状态
|
7157
|
+
:type Status: int
|
7158
|
+
:param _ErrorMsg: 部署错误信息
|
7159
|
+
:type ErrorMsg: str
|
7160
|
+
:param _CreateTime: 部署记录详情创建时间
|
7161
|
+
:type CreateTime: str
|
7162
|
+
:param _UpdateTime: 部署记录详情最后一次更新时间
|
7163
|
+
:type UpdateTime: str
|
7164
|
+
:param _ListenerName: 部署监听器名称
|
7165
|
+
:type ListenerName: str
|
7166
|
+
:param _SniSwitch: 是否开启SNI
|
7167
|
+
:type SniSwitch: int
|
7168
|
+
:param _Bucket: COS存储桶名称
|
7169
|
+
:type Bucket: str
|
7170
|
+
:param _Namespace: 命名空间名称
|
7171
|
+
:type Namespace: str
|
7172
|
+
:param _SecretName: secret名称
|
7173
|
+
:type SecretName: str
|
7174
|
+
:param _Port: 端口
|
7175
|
+
:type Port: int
|
7176
|
+
:param _Region: 部署的TCB地域
|
7177
|
+
:type Region: str
|
7178
|
+
:param _Forward: 负载均衡类型,0 传统型负载均衡; 1 应用型负载均衡
|
7179
|
+
:type Forward: int
|
7180
|
+
:param _SSLMode: 证书认证模式:UNIDIRECTIONAL单向认证,MUTUAL双向认证
|
7181
|
+
:type SSLMode: str
|
7182
|
+
:param _ResourceType: 部署资源类型
|
7183
|
+
:type ResourceType: str
|
7184
|
+
"""
|
7185
|
+
self._Id = None
|
7186
|
+
self._OldCertId = None
|
7187
|
+
self._InstanceId = None
|
7188
|
+
self._InstanceName = None
|
7189
|
+
self._ListenerId = None
|
7190
|
+
self._Domains = None
|
7191
|
+
self._Protocol = None
|
7192
|
+
self._Status = None
|
7193
|
+
self._ErrorMsg = None
|
7194
|
+
self._CreateTime = None
|
7195
|
+
self._UpdateTime = None
|
7196
|
+
self._ListenerName = None
|
7197
|
+
self._SniSwitch = None
|
7198
|
+
self._Bucket = None
|
7199
|
+
self._Namespace = None
|
7200
|
+
self._SecretName = None
|
7201
|
+
self._Port = None
|
7202
|
+
self._Region = None
|
7203
|
+
self._Forward = None
|
7204
|
+
self._SSLMode = None
|
7205
|
+
self._ResourceType = None
|
7206
|
+
|
7207
|
+
@property
|
7208
|
+
def Id(self):
|
7209
|
+
"""部署记录详情ID
|
7210
|
+
:rtype: int
|
7211
|
+
"""
|
7212
|
+
return self._Id
|
7213
|
+
|
7214
|
+
@Id.setter
|
7215
|
+
def Id(self, Id):
|
7216
|
+
self._Id = Id
|
7217
|
+
|
7218
|
+
@property
|
7219
|
+
def OldCertId(self):
|
7220
|
+
"""原绑定证书ID
|
7221
|
+
:rtype: str
|
7222
|
+
"""
|
7223
|
+
return self._OldCertId
|
7224
|
+
|
7225
|
+
@OldCertId.setter
|
7226
|
+
def OldCertId(self, OldCertId):
|
7227
|
+
self._OldCertId = OldCertId
|
7228
|
+
|
7229
|
+
@property
|
7230
|
+
def InstanceId(self):
|
7231
|
+
"""部署实例ID
|
7232
|
+
:rtype: str
|
7233
|
+
"""
|
7234
|
+
return self._InstanceId
|
7235
|
+
|
7236
|
+
@InstanceId.setter
|
7237
|
+
def InstanceId(self, InstanceId):
|
7238
|
+
self._InstanceId = InstanceId
|
7239
|
+
|
7240
|
+
@property
|
7241
|
+
def InstanceName(self):
|
7242
|
+
"""部署实例名称
|
7243
|
+
:rtype: str
|
7244
|
+
"""
|
7245
|
+
return self._InstanceName
|
7246
|
+
|
7247
|
+
@InstanceName.setter
|
7248
|
+
def InstanceName(self, InstanceName):
|
7249
|
+
self._InstanceName = InstanceName
|
7250
|
+
|
7251
|
+
@property
|
7252
|
+
def ListenerId(self):
|
7253
|
+
"""部署监听器ID
|
7254
|
+
:rtype: str
|
7255
|
+
"""
|
7256
|
+
return self._ListenerId
|
7257
|
+
|
7258
|
+
@ListenerId.setter
|
7259
|
+
def ListenerId(self, ListenerId):
|
7260
|
+
self._ListenerId = ListenerId
|
7261
|
+
|
7262
|
+
@property
|
7263
|
+
def Domains(self):
|
7264
|
+
"""部署域名列表
|
7265
|
+
:rtype: list of str
|
7266
|
+
"""
|
7267
|
+
return self._Domains
|
7268
|
+
|
7269
|
+
@Domains.setter
|
7270
|
+
def Domains(self, Domains):
|
7271
|
+
self._Domains = Domains
|
7272
|
+
|
7273
|
+
@property
|
7274
|
+
def Protocol(self):
|
7275
|
+
"""部署监听器协议
|
7276
|
+
:rtype: str
|
7277
|
+
"""
|
7278
|
+
return self._Protocol
|
7279
|
+
|
7280
|
+
@Protocol.setter
|
7281
|
+
def Protocol(self, Protocol):
|
7282
|
+
self._Protocol = Protocol
|
7283
|
+
|
7284
|
+
@property
|
7285
|
+
def Status(self):
|
7286
|
+
"""部署状态
|
7287
|
+
:rtype: int
|
7288
|
+
"""
|
7289
|
+
return self._Status
|
7290
|
+
|
7291
|
+
@Status.setter
|
7292
|
+
def Status(self, Status):
|
7293
|
+
self._Status = Status
|
7294
|
+
|
7295
|
+
@property
|
7296
|
+
def ErrorMsg(self):
|
7297
|
+
"""部署错误信息
|
7298
|
+
:rtype: str
|
7299
|
+
"""
|
7300
|
+
return self._ErrorMsg
|
7301
|
+
|
7302
|
+
@ErrorMsg.setter
|
7303
|
+
def ErrorMsg(self, ErrorMsg):
|
7304
|
+
self._ErrorMsg = ErrorMsg
|
7305
|
+
|
7306
|
+
@property
|
7307
|
+
def CreateTime(self):
|
7308
|
+
"""部署记录详情创建时间
|
7309
|
+
:rtype: str
|
7310
|
+
"""
|
7311
|
+
return self._CreateTime
|
7312
|
+
|
7313
|
+
@CreateTime.setter
|
7314
|
+
def CreateTime(self, CreateTime):
|
7315
|
+
self._CreateTime = CreateTime
|
7316
|
+
|
7317
|
+
@property
|
7318
|
+
def UpdateTime(self):
|
7319
|
+
"""部署记录详情最后一次更新时间
|
7320
|
+
:rtype: str
|
7321
|
+
"""
|
7322
|
+
return self._UpdateTime
|
7323
|
+
|
7324
|
+
@UpdateTime.setter
|
7325
|
+
def UpdateTime(self, UpdateTime):
|
7326
|
+
self._UpdateTime = UpdateTime
|
7327
|
+
|
7328
|
+
@property
|
7329
|
+
def ListenerName(self):
|
7330
|
+
"""部署监听器名称
|
7331
|
+
:rtype: str
|
7332
|
+
"""
|
7333
|
+
return self._ListenerName
|
7334
|
+
|
7335
|
+
@ListenerName.setter
|
7336
|
+
def ListenerName(self, ListenerName):
|
7337
|
+
self._ListenerName = ListenerName
|
7338
|
+
|
7339
|
+
@property
|
7340
|
+
def SniSwitch(self):
|
7341
|
+
"""是否开启SNI
|
7342
|
+
:rtype: int
|
7343
|
+
"""
|
7344
|
+
return self._SniSwitch
|
7345
|
+
|
7346
|
+
@SniSwitch.setter
|
7347
|
+
def SniSwitch(self, SniSwitch):
|
7348
|
+
self._SniSwitch = SniSwitch
|
7349
|
+
|
7350
|
+
@property
|
7351
|
+
def Bucket(self):
|
7352
|
+
"""COS存储桶名称
|
7353
|
+
:rtype: str
|
7354
|
+
"""
|
7355
|
+
return self._Bucket
|
7356
|
+
|
7357
|
+
@Bucket.setter
|
7358
|
+
def Bucket(self, Bucket):
|
7359
|
+
self._Bucket = Bucket
|
7360
|
+
|
7361
|
+
@property
|
7362
|
+
def Namespace(self):
|
7363
|
+
"""命名空间名称
|
7364
|
+
:rtype: str
|
7365
|
+
"""
|
7366
|
+
return self._Namespace
|
7367
|
+
|
7368
|
+
@Namespace.setter
|
7369
|
+
def Namespace(self, Namespace):
|
7370
|
+
self._Namespace = Namespace
|
7371
|
+
|
7372
|
+
@property
|
7373
|
+
def SecretName(self):
|
7374
|
+
"""secret名称
|
7375
|
+
:rtype: str
|
7376
|
+
"""
|
7377
|
+
return self._SecretName
|
7378
|
+
|
7379
|
+
@SecretName.setter
|
7380
|
+
def SecretName(self, SecretName):
|
7381
|
+
self._SecretName = SecretName
|
7382
|
+
|
7383
|
+
@property
|
7384
|
+
def Port(self):
|
7385
|
+
"""端口
|
7386
|
+
:rtype: int
|
7387
|
+
"""
|
7388
|
+
return self._Port
|
7389
|
+
|
7390
|
+
@Port.setter
|
7391
|
+
def Port(self, Port):
|
7392
|
+
self._Port = Port
|
7393
|
+
|
7394
|
+
@property
|
7395
|
+
def Region(self):
|
7396
|
+
"""部署的TCB地域
|
7397
|
+
:rtype: str
|
7398
|
+
"""
|
7399
|
+
return self._Region
|
7400
|
+
|
7401
|
+
@Region.setter
|
7402
|
+
def Region(self, Region):
|
7403
|
+
self._Region = Region
|
7404
|
+
|
7405
|
+
@property
|
7406
|
+
def Forward(self):
|
7407
|
+
"""负载均衡类型,0 传统型负载均衡; 1 应用型负载均衡
|
7408
|
+
:rtype: int
|
7409
|
+
"""
|
7410
|
+
return self._Forward
|
7411
|
+
|
7412
|
+
@Forward.setter
|
7413
|
+
def Forward(self, Forward):
|
7414
|
+
self._Forward = Forward
|
7415
|
+
|
7416
|
+
@property
|
7417
|
+
def SSLMode(self):
|
7418
|
+
"""证书认证模式:UNIDIRECTIONAL单向认证,MUTUAL双向认证
|
7419
|
+
:rtype: str
|
7420
|
+
"""
|
7421
|
+
return self._SSLMode
|
7422
|
+
|
7423
|
+
@SSLMode.setter
|
7424
|
+
def SSLMode(self, SSLMode):
|
7425
|
+
self._SSLMode = SSLMode
|
7426
|
+
|
7427
|
+
@property
|
7428
|
+
def ResourceType(self):
|
7429
|
+
"""部署资源类型
|
7430
|
+
:rtype: str
|
7431
|
+
"""
|
7432
|
+
return self._ResourceType
|
7433
|
+
|
7434
|
+
@ResourceType.setter
|
7435
|
+
def ResourceType(self, ResourceType):
|
7436
|
+
self._ResourceType = ResourceType
|
7437
|
+
|
7438
|
+
|
7439
|
+
def _deserialize(self, params):
|
7440
|
+
self._Id = params.get("Id")
|
7441
|
+
self._OldCertId = params.get("OldCertId")
|
7442
|
+
self._InstanceId = params.get("InstanceId")
|
7443
|
+
self._InstanceName = params.get("InstanceName")
|
7444
|
+
self._ListenerId = params.get("ListenerId")
|
7445
|
+
self._Domains = params.get("Domains")
|
7446
|
+
self._Protocol = params.get("Protocol")
|
7447
|
+
self._Status = params.get("Status")
|
7448
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
7449
|
+
self._CreateTime = params.get("CreateTime")
|
7450
|
+
self._UpdateTime = params.get("UpdateTime")
|
7451
|
+
self._ListenerName = params.get("ListenerName")
|
7452
|
+
self._SniSwitch = params.get("SniSwitch")
|
7453
|
+
self._Bucket = params.get("Bucket")
|
7454
|
+
self._Namespace = params.get("Namespace")
|
7455
|
+
self._SecretName = params.get("SecretName")
|
7456
|
+
self._Port = params.get("Port")
|
7457
|
+
self._Region = params.get("Region")
|
7458
|
+
self._Forward = params.get("Forward")
|
7459
|
+
self._SSLMode = params.get("SSLMode")
|
7460
|
+
self._ResourceType = params.get("ResourceType")
|
7461
|
+
memeber_set = set(params.keys())
|
7462
|
+
for name, value in vars(self).items():
|
7463
|
+
property_name = name[1:]
|
7464
|
+
if property_name in memeber_set:
|
7465
|
+
memeber_set.remove(property_name)
|
7466
|
+
if len(memeber_set) > 0:
|
7467
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7468
|
+
|
7469
|
+
|
7470
|
+
|
7471
|
+
class DeployRecordList(AbstractModel):
|
7472
|
+
"""托管记录详情信息
|
7473
|
+
|
7474
|
+
"""
|
7475
|
+
|
7476
|
+
def __init__(self):
|
7477
|
+
r"""
|
7478
|
+
:param _ResourceType: 部署资源类型
|
7479
|
+
:type ResourceType: str
|
7480
|
+
:param _List: 部署资源详情列表
|
7481
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7482
|
+
:type List: list of DeployRecordItem
|
7483
|
+
:param _TotalCount: 该部署资源总数
|
7484
|
+
:type TotalCount: int
|
7485
|
+
"""
|
7486
|
+
self._ResourceType = None
|
7487
|
+
self._List = None
|
7488
|
+
self._TotalCount = None
|
7489
|
+
|
7490
|
+
@property
|
7491
|
+
def ResourceType(self):
|
7492
|
+
"""部署资源类型
|
7493
|
+
:rtype: str
|
7494
|
+
"""
|
7495
|
+
return self._ResourceType
|
7496
|
+
|
7497
|
+
@ResourceType.setter
|
7498
|
+
def ResourceType(self, ResourceType):
|
7499
|
+
self._ResourceType = ResourceType
|
7500
|
+
|
7501
|
+
@property
|
7502
|
+
def List(self):
|
7503
|
+
"""部署资源详情列表
|
7504
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7505
|
+
:rtype: list of DeployRecordItem
|
6952
7506
|
"""
|
6953
|
-
return self.
|
7507
|
+
return self._List
|
6954
7508
|
|
6955
|
-
@
|
6956
|
-
def
|
6957
|
-
self.
|
7509
|
+
@List.setter
|
7510
|
+
def List(self, List):
|
7511
|
+
self._List = List
|
6958
7512
|
|
6959
7513
|
@property
|
6960
|
-
def
|
6961
|
-
"""
|
6962
|
-
:rtype:
|
7514
|
+
def TotalCount(self):
|
7515
|
+
"""该部署资源总数
|
7516
|
+
:rtype: int
|
6963
7517
|
"""
|
6964
|
-
return self.
|
7518
|
+
return self._TotalCount
|
6965
7519
|
|
6966
|
-
@
|
6967
|
-
def
|
6968
|
-
self.
|
7520
|
+
@TotalCount.setter
|
7521
|
+
def TotalCount(self, TotalCount):
|
7522
|
+
self._TotalCount = TotalCount
|
6969
7523
|
|
6970
7524
|
|
6971
7525
|
def _deserialize(self, params):
|
6972
|
-
self._Id = params.get("Id")
|
6973
|
-
self._CertId = params.get("CertId")
|
6974
7526
|
self._ResourceType = params.get("ResourceType")
|
6975
|
-
|
6976
|
-
|
6977
|
-
|
6978
|
-
|
7527
|
+
if params.get("List") is not None:
|
7528
|
+
self._List = []
|
7529
|
+
for item in params.get("List"):
|
7530
|
+
obj = DeployRecordItem()
|
7531
|
+
obj._deserialize(item)
|
7532
|
+
self._List.append(obj)
|
7533
|
+
self._TotalCount = params.get("TotalCount")
|
6979
7534
|
memeber_set = set(params.keys())
|
6980
7535
|
for name, value in vars(self).items():
|
6981
7536
|
property_name = name[1:]
|
@@ -12826,9 +13381,253 @@ class DescribeHostUpdateRecordRequest(AbstractModel):
|
|
12826
13381
|
"""
|
12827
13382
|
return self._CertificateId
|
12828
13383
|
|
12829
|
-
@CertificateId.setter
|
12830
|
-
def CertificateId(self, CertificateId):
|
12831
|
-
self._CertificateId = CertificateId
|
13384
|
+
@CertificateId.setter
|
13385
|
+
def CertificateId(self, CertificateId):
|
13386
|
+
self._CertificateId = CertificateId
|
13387
|
+
|
13388
|
+
@property
|
13389
|
+
def OldCertificateId(self):
|
13390
|
+
"""原证书ID
|
13391
|
+
:rtype: str
|
13392
|
+
"""
|
13393
|
+
return self._OldCertificateId
|
13394
|
+
|
13395
|
+
@OldCertificateId.setter
|
13396
|
+
def OldCertificateId(self, OldCertificateId):
|
13397
|
+
self._OldCertificateId = OldCertificateId
|
13398
|
+
|
13399
|
+
|
13400
|
+
def _deserialize(self, params):
|
13401
|
+
self._Offset = params.get("Offset")
|
13402
|
+
self._Limit = params.get("Limit")
|
13403
|
+
self._CertificateId = params.get("CertificateId")
|
13404
|
+
self._OldCertificateId = params.get("OldCertificateId")
|
13405
|
+
memeber_set = set(params.keys())
|
13406
|
+
for name, value in vars(self).items():
|
13407
|
+
property_name = name[1:]
|
13408
|
+
if property_name in memeber_set:
|
13409
|
+
memeber_set.remove(property_name)
|
13410
|
+
if len(memeber_set) > 0:
|
13411
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13412
|
+
|
13413
|
+
|
13414
|
+
|
13415
|
+
class DescribeHostUpdateRecordResponse(AbstractModel):
|
13416
|
+
"""DescribeHostUpdateRecord返回参数结构体
|
13417
|
+
|
13418
|
+
"""
|
13419
|
+
|
13420
|
+
def __init__(self):
|
13421
|
+
r"""
|
13422
|
+
:param _TotalCount: 总数
|
13423
|
+
:type TotalCount: int
|
13424
|
+
:param _DeployRecordList: 证书部署记录列表
|
13425
|
+
:type DeployRecordList: list of UpdateRecordInfo
|
13426
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13427
|
+
:type RequestId: str
|
13428
|
+
"""
|
13429
|
+
self._TotalCount = None
|
13430
|
+
self._DeployRecordList = None
|
13431
|
+
self._RequestId = None
|
13432
|
+
|
13433
|
+
@property
|
13434
|
+
def TotalCount(self):
|
13435
|
+
"""总数
|
13436
|
+
:rtype: int
|
13437
|
+
"""
|
13438
|
+
return self._TotalCount
|
13439
|
+
|
13440
|
+
@TotalCount.setter
|
13441
|
+
def TotalCount(self, TotalCount):
|
13442
|
+
self._TotalCount = TotalCount
|
13443
|
+
|
13444
|
+
@property
|
13445
|
+
def DeployRecordList(self):
|
13446
|
+
"""证书部署记录列表
|
13447
|
+
:rtype: list of UpdateRecordInfo
|
13448
|
+
"""
|
13449
|
+
return self._DeployRecordList
|
13450
|
+
|
13451
|
+
@DeployRecordList.setter
|
13452
|
+
def DeployRecordList(self, DeployRecordList):
|
13453
|
+
self._DeployRecordList = DeployRecordList
|
13454
|
+
|
13455
|
+
@property
|
13456
|
+
def RequestId(self):
|
13457
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13458
|
+
:rtype: str
|
13459
|
+
"""
|
13460
|
+
return self._RequestId
|
13461
|
+
|
13462
|
+
@RequestId.setter
|
13463
|
+
def RequestId(self, RequestId):
|
13464
|
+
self._RequestId = RequestId
|
13465
|
+
|
13466
|
+
|
13467
|
+
def _deserialize(self, params):
|
13468
|
+
self._TotalCount = params.get("TotalCount")
|
13469
|
+
if params.get("DeployRecordList") is not None:
|
13470
|
+
self._DeployRecordList = []
|
13471
|
+
for item in params.get("DeployRecordList"):
|
13472
|
+
obj = UpdateRecordInfo()
|
13473
|
+
obj._deserialize(item)
|
13474
|
+
self._DeployRecordList.append(obj)
|
13475
|
+
self._RequestId = params.get("RequestId")
|
13476
|
+
|
13477
|
+
|
13478
|
+
class DescribeHostUploadUpdateRecordDetailRequest(AbstractModel):
|
13479
|
+
"""DescribeHostUploadUpdateRecordDetail请求参数结构体
|
13480
|
+
|
13481
|
+
"""
|
13482
|
+
|
13483
|
+
def __init__(self):
|
13484
|
+
r"""
|
13485
|
+
:param _DeployRecordId: 托管记录ID
|
13486
|
+
:type DeployRecordId: int
|
13487
|
+
:param _Limit: 每页数量,默认为10,最大为200, 超过200则为200
|
13488
|
+
:type Limit: int
|
13489
|
+
:param _Offset: 偏移量,默认为0
|
13490
|
+
:type Offset: int
|
13491
|
+
"""
|
13492
|
+
self._DeployRecordId = None
|
13493
|
+
self._Limit = None
|
13494
|
+
self._Offset = None
|
13495
|
+
|
13496
|
+
@property
|
13497
|
+
def DeployRecordId(self):
|
13498
|
+
"""托管记录ID
|
13499
|
+
:rtype: int
|
13500
|
+
"""
|
13501
|
+
return self._DeployRecordId
|
13502
|
+
|
13503
|
+
@DeployRecordId.setter
|
13504
|
+
def DeployRecordId(self, DeployRecordId):
|
13505
|
+
self._DeployRecordId = DeployRecordId
|
13506
|
+
|
13507
|
+
@property
|
13508
|
+
def Limit(self):
|
13509
|
+
"""每页数量,默认为10,最大为200, 超过200则为200
|
13510
|
+
:rtype: int
|
13511
|
+
"""
|
13512
|
+
return self._Limit
|
13513
|
+
|
13514
|
+
@Limit.setter
|
13515
|
+
def Limit(self, Limit):
|
13516
|
+
self._Limit = Limit
|
13517
|
+
|
13518
|
+
@property
|
13519
|
+
def Offset(self):
|
13520
|
+
"""偏移量,默认为0
|
13521
|
+
:rtype: int
|
13522
|
+
"""
|
13523
|
+
return self._Offset
|
13524
|
+
|
13525
|
+
@Offset.setter
|
13526
|
+
def Offset(self, Offset):
|
13527
|
+
self._Offset = Offset
|
13528
|
+
|
13529
|
+
|
13530
|
+
def _deserialize(self, params):
|
13531
|
+
self._DeployRecordId = params.get("DeployRecordId")
|
13532
|
+
self._Limit = params.get("Limit")
|
13533
|
+
self._Offset = params.get("Offset")
|
13534
|
+
memeber_set = set(params.keys())
|
13535
|
+
for name, value in vars(self).items():
|
13536
|
+
property_name = name[1:]
|
13537
|
+
if property_name in memeber_set:
|
13538
|
+
memeber_set.remove(property_name)
|
13539
|
+
if len(memeber_set) > 0:
|
13540
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13541
|
+
|
13542
|
+
|
13543
|
+
|
13544
|
+
class DescribeHostUploadUpdateRecordDetailResponse(AbstractModel):
|
13545
|
+
"""DescribeHostUploadUpdateRecordDetail返回参数结构体
|
13546
|
+
|
13547
|
+
"""
|
13548
|
+
|
13549
|
+
def __init__(self):
|
13550
|
+
r"""
|
13551
|
+
:param _DeployRecordDetail: 托管记录详情列表
|
13552
|
+
:type DeployRecordDetail: list of DeployRecord
|
13553
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13554
|
+
:type RequestId: str
|
13555
|
+
"""
|
13556
|
+
self._DeployRecordDetail = None
|
13557
|
+
self._RequestId = None
|
13558
|
+
|
13559
|
+
@property
|
13560
|
+
def DeployRecordDetail(self):
|
13561
|
+
"""托管记录详情列表
|
13562
|
+
:rtype: list of DeployRecord
|
13563
|
+
"""
|
13564
|
+
return self._DeployRecordDetail
|
13565
|
+
|
13566
|
+
@DeployRecordDetail.setter
|
13567
|
+
def DeployRecordDetail(self, DeployRecordDetail):
|
13568
|
+
self._DeployRecordDetail = DeployRecordDetail
|
13569
|
+
|
13570
|
+
@property
|
13571
|
+
def RequestId(self):
|
13572
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13573
|
+
:rtype: str
|
13574
|
+
"""
|
13575
|
+
return self._RequestId
|
13576
|
+
|
13577
|
+
@RequestId.setter
|
13578
|
+
def RequestId(self, RequestId):
|
13579
|
+
self._RequestId = RequestId
|
13580
|
+
|
13581
|
+
|
13582
|
+
def _deserialize(self, params):
|
13583
|
+
if params.get("DeployRecordDetail") is not None:
|
13584
|
+
self._DeployRecordDetail = []
|
13585
|
+
for item in params.get("DeployRecordDetail"):
|
13586
|
+
obj = DeployRecord()
|
13587
|
+
obj._deserialize(item)
|
13588
|
+
self._DeployRecordDetail.append(obj)
|
13589
|
+
self._RequestId = params.get("RequestId")
|
13590
|
+
|
13591
|
+
|
13592
|
+
class DescribeHostUploadUpdateRecordRequest(AbstractModel):
|
13593
|
+
"""DescribeHostUploadUpdateRecord请求参数结构体
|
13594
|
+
|
13595
|
+
"""
|
13596
|
+
|
13597
|
+
def __init__(self):
|
13598
|
+
r"""
|
13599
|
+
:param _Offset: 分页偏移量,从0开始。
|
13600
|
+
:type Offset: int
|
13601
|
+
:param _Limit: 每页数量,默认10。
|
13602
|
+
:type Limit: int
|
13603
|
+
:param _OldCertificateId: 原证书ID
|
13604
|
+
:type OldCertificateId: str
|
13605
|
+
"""
|
13606
|
+
self._Offset = None
|
13607
|
+
self._Limit = None
|
13608
|
+
self._OldCertificateId = None
|
13609
|
+
|
13610
|
+
@property
|
13611
|
+
def Offset(self):
|
13612
|
+
"""分页偏移量,从0开始。
|
13613
|
+
:rtype: int
|
13614
|
+
"""
|
13615
|
+
return self._Offset
|
13616
|
+
|
13617
|
+
@Offset.setter
|
13618
|
+
def Offset(self, Offset):
|
13619
|
+
self._Offset = Offset
|
13620
|
+
|
13621
|
+
@property
|
13622
|
+
def Limit(self):
|
13623
|
+
"""每页数量,默认10。
|
13624
|
+
:rtype: int
|
13625
|
+
"""
|
13626
|
+
return self._Limit
|
13627
|
+
|
13628
|
+
@Limit.setter
|
13629
|
+
def Limit(self, Limit):
|
13630
|
+
self._Limit = Limit
|
12832
13631
|
|
12833
13632
|
@property
|
12834
13633
|
def OldCertificateId(self):
|
@@ -12845,7 +13644,6 @@ class DescribeHostUpdateRecordRequest(AbstractModel):
|
|
12845
13644
|
def _deserialize(self, params):
|
12846
13645
|
self._Offset = params.get("Offset")
|
12847
13646
|
self._Limit = params.get("Limit")
|
12848
|
-
self._CertificateId = params.get("CertificateId")
|
12849
13647
|
self._OldCertificateId = params.get("OldCertificateId")
|
12850
13648
|
memeber_set = set(params.keys())
|
12851
13649
|
for name, value in vars(self).items():
|
@@ -12857,8 +13655,8 @@ class DescribeHostUpdateRecordRequest(AbstractModel):
|
|
12857
13655
|
|
12858
13656
|
|
12859
13657
|
|
12860
|
-
class
|
12861
|
-
"""
|
13658
|
+
class DescribeHostUploadUpdateRecordResponse(AbstractModel):
|
13659
|
+
"""DescribeHostUploadUpdateRecord返回参数结构体
|
12862
13660
|
|
12863
13661
|
"""
|
12864
13662
|
|
@@ -12867,7 +13665,7 @@ class DescribeHostUpdateRecordResponse(AbstractModel):
|
|
12867
13665
|
:param _TotalCount: 总数
|
12868
13666
|
:type TotalCount: int
|
12869
13667
|
:param _DeployRecordList: 证书部署记录列表
|
12870
|
-
:type DeployRecordList: list of
|
13668
|
+
:type DeployRecordList: list of UploadUpdateRecordInfo
|
12871
13669
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12872
13670
|
:type RequestId: str
|
12873
13671
|
"""
|
@@ -12889,7 +13687,7 @@ class DescribeHostUpdateRecordResponse(AbstractModel):
|
|
12889
13687
|
@property
|
12890
13688
|
def DeployRecordList(self):
|
12891
13689
|
"""证书部署记录列表
|
12892
|
-
:rtype: list of
|
13690
|
+
:rtype: list of UploadUpdateRecordInfo
|
12893
13691
|
"""
|
12894
13692
|
return self._DeployRecordList
|
12895
13693
|
|
@@ -12914,7 +13712,7 @@ class DescribeHostUpdateRecordResponse(AbstractModel):
|
|
12914
13712
|
if params.get("DeployRecordList") is not None:
|
12915
13713
|
self._DeployRecordList = []
|
12916
13714
|
for item in params.get("DeployRecordList"):
|
12917
|
-
obj =
|
13715
|
+
obj = UploadUpdateRecordInfo()
|
12918
13716
|
obj._deserialize(item)
|
12919
13717
|
self._DeployRecordList.append(obj)
|
12920
13718
|
self._RequestId = params.get("RequestId")
|
@@ -21504,6 +22302,260 @@ class UploadUpdateCertificateInstanceResponse(AbstractModel):
|
|
21504
22302
|
self._RequestId = params.get("RequestId")
|
21505
22303
|
|
21506
22304
|
|
22305
|
+
class UploadUpdateCertificateRecordRetryRequest(AbstractModel):
|
22306
|
+
"""UploadUpdateCertificateRecordRetry请求参数结构体
|
22307
|
+
|
22308
|
+
"""
|
22309
|
+
|
22310
|
+
def __init__(self):
|
22311
|
+
r"""
|
22312
|
+
:param _DeployRecordId: 待重试部署记录ID,通过UpdateCertificateInstance得到部署记录ID。 本参数不传的话,则DeployRecordDetailId必传
|
22313
|
+
:type DeployRecordId: int
|
22314
|
+
:param _DeployRecordDetailId: 待重试部署记录详情ID,通过DescribeHostUpdateRecordDetail接口获得, 本参数不传的话, 则DeployRecordId必传
|
22315
|
+
:type DeployRecordDetailId: int
|
22316
|
+
"""
|
22317
|
+
self._DeployRecordId = None
|
22318
|
+
self._DeployRecordDetailId = None
|
22319
|
+
|
22320
|
+
@property
|
22321
|
+
def DeployRecordId(self):
|
22322
|
+
"""待重试部署记录ID,通过UpdateCertificateInstance得到部署记录ID。 本参数不传的话,则DeployRecordDetailId必传
|
22323
|
+
:rtype: int
|
22324
|
+
"""
|
22325
|
+
return self._DeployRecordId
|
22326
|
+
|
22327
|
+
@DeployRecordId.setter
|
22328
|
+
def DeployRecordId(self, DeployRecordId):
|
22329
|
+
self._DeployRecordId = DeployRecordId
|
22330
|
+
|
22331
|
+
@property
|
22332
|
+
def DeployRecordDetailId(self):
|
22333
|
+
"""待重试部署记录详情ID,通过DescribeHostUpdateRecordDetail接口获得, 本参数不传的话, 则DeployRecordId必传
|
22334
|
+
:rtype: int
|
22335
|
+
"""
|
22336
|
+
return self._DeployRecordDetailId
|
22337
|
+
|
22338
|
+
@DeployRecordDetailId.setter
|
22339
|
+
def DeployRecordDetailId(self, DeployRecordDetailId):
|
22340
|
+
self._DeployRecordDetailId = DeployRecordDetailId
|
22341
|
+
|
22342
|
+
|
22343
|
+
def _deserialize(self, params):
|
22344
|
+
self._DeployRecordId = params.get("DeployRecordId")
|
22345
|
+
self._DeployRecordDetailId = params.get("DeployRecordDetailId")
|
22346
|
+
memeber_set = set(params.keys())
|
22347
|
+
for name, value in vars(self).items():
|
22348
|
+
property_name = name[1:]
|
22349
|
+
if property_name in memeber_set:
|
22350
|
+
memeber_set.remove(property_name)
|
22351
|
+
if len(memeber_set) > 0:
|
22352
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
22353
|
+
|
22354
|
+
|
22355
|
+
|
22356
|
+
class UploadUpdateCertificateRecordRetryResponse(AbstractModel):
|
22357
|
+
"""UploadUpdateCertificateRecordRetry返回参数结构体
|
22358
|
+
|
22359
|
+
"""
|
22360
|
+
|
22361
|
+
def __init__(self):
|
22362
|
+
r"""
|
22363
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
22364
|
+
:type RequestId: str
|
22365
|
+
"""
|
22366
|
+
self._RequestId = None
|
22367
|
+
|
22368
|
+
@property
|
22369
|
+
def RequestId(self):
|
22370
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
22371
|
+
:rtype: str
|
22372
|
+
"""
|
22373
|
+
return self._RequestId
|
22374
|
+
|
22375
|
+
@RequestId.setter
|
22376
|
+
def RequestId(self, RequestId):
|
22377
|
+
self._RequestId = RequestId
|
22378
|
+
|
22379
|
+
|
22380
|
+
def _deserialize(self, params):
|
22381
|
+
self._RequestId = params.get("RequestId")
|
22382
|
+
|
22383
|
+
|
22384
|
+
class UploadUpdateCertificateRecordRollbackRequest(AbstractModel):
|
22385
|
+
"""UploadUpdateCertificateRecordRollback请求参数结构体
|
22386
|
+
|
22387
|
+
"""
|
22388
|
+
|
22389
|
+
def __init__(self):
|
22390
|
+
r"""
|
22391
|
+
:param _DeployRecordId: 更新证书待回滚的记录ID, 通过UpdateCertificateInstance获得
|
22392
|
+
:type DeployRecordId: int
|
22393
|
+
"""
|
22394
|
+
self._DeployRecordId = None
|
22395
|
+
|
22396
|
+
@property
|
22397
|
+
def DeployRecordId(self):
|
22398
|
+
"""更新证书待回滚的记录ID, 通过UpdateCertificateInstance获得
|
22399
|
+
:rtype: int
|
22400
|
+
"""
|
22401
|
+
return self._DeployRecordId
|
22402
|
+
|
22403
|
+
@DeployRecordId.setter
|
22404
|
+
def DeployRecordId(self, DeployRecordId):
|
22405
|
+
self._DeployRecordId = DeployRecordId
|
22406
|
+
|
22407
|
+
|
22408
|
+
def _deserialize(self, params):
|
22409
|
+
self._DeployRecordId = params.get("DeployRecordId")
|
22410
|
+
memeber_set = set(params.keys())
|
22411
|
+
for name, value in vars(self).items():
|
22412
|
+
property_name = name[1:]
|
22413
|
+
if property_name in memeber_set:
|
22414
|
+
memeber_set.remove(property_name)
|
22415
|
+
if len(memeber_set) > 0:
|
22416
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
22417
|
+
|
22418
|
+
|
22419
|
+
|
22420
|
+
class UploadUpdateCertificateRecordRollbackResponse(AbstractModel):
|
22421
|
+
"""UploadUpdateCertificateRecordRollback返回参数结构体
|
22422
|
+
|
22423
|
+
"""
|
22424
|
+
|
22425
|
+
def __init__(self):
|
22426
|
+
r"""
|
22427
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
22428
|
+
:type RequestId: str
|
22429
|
+
"""
|
22430
|
+
self._RequestId = None
|
22431
|
+
|
22432
|
+
@property
|
22433
|
+
def RequestId(self):
|
22434
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
22435
|
+
:rtype: str
|
22436
|
+
"""
|
22437
|
+
return self._RequestId
|
22438
|
+
|
22439
|
+
@RequestId.setter
|
22440
|
+
def RequestId(self, RequestId):
|
22441
|
+
self._RequestId = RequestId
|
22442
|
+
|
22443
|
+
|
22444
|
+
def _deserialize(self, params):
|
22445
|
+
self._RequestId = params.get("RequestId")
|
22446
|
+
|
22447
|
+
|
22448
|
+
class UploadUpdateRecordInfo(AbstractModel):
|
22449
|
+
"""部署记录列表信息
|
22450
|
+
|
22451
|
+
"""
|
22452
|
+
|
22453
|
+
def __init__(self):
|
22454
|
+
r"""
|
22455
|
+
:param _Id: 记录ID
|
22456
|
+
:type Id: int
|
22457
|
+
:param _OldCertId: 原证书ID
|
22458
|
+
:type OldCertId: str
|
22459
|
+
:param _ResourceTypes: 部署资源类型列表
|
22460
|
+
:type ResourceTypes: list of str
|
22461
|
+
:param _Status: 部署状态
|
22462
|
+
:type Status: int
|
22463
|
+
:param _CreateTime: 部署时间
|
22464
|
+
:type CreateTime: str
|
22465
|
+
:param _UpdateTime: 最后一次更新时间
|
22466
|
+
:type UpdateTime: str
|
22467
|
+
"""
|
22468
|
+
self._Id = None
|
22469
|
+
self._OldCertId = None
|
22470
|
+
self._ResourceTypes = None
|
22471
|
+
self._Status = None
|
22472
|
+
self._CreateTime = None
|
22473
|
+
self._UpdateTime = None
|
22474
|
+
|
22475
|
+
@property
|
22476
|
+
def Id(self):
|
22477
|
+
"""记录ID
|
22478
|
+
:rtype: int
|
22479
|
+
"""
|
22480
|
+
return self._Id
|
22481
|
+
|
22482
|
+
@Id.setter
|
22483
|
+
def Id(self, Id):
|
22484
|
+
self._Id = Id
|
22485
|
+
|
22486
|
+
@property
|
22487
|
+
def OldCertId(self):
|
22488
|
+
"""原证书ID
|
22489
|
+
:rtype: str
|
22490
|
+
"""
|
22491
|
+
return self._OldCertId
|
22492
|
+
|
22493
|
+
@OldCertId.setter
|
22494
|
+
def OldCertId(self, OldCertId):
|
22495
|
+
self._OldCertId = OldCertId
|
22496
|
+
|
22497
|
+
@property
|
22498
|
+
def ResourceTypes(self):
|
22499
|
+
"""部署资源类型列表
|
22500
|
+
:rtype: list of str
|
22501
|
+
"""
|
22502
|
+
return self._ResourceTypes
|
22503
|
+
|
22504
|
+
@ResourceTypes.setter
|
22505
|
+
def ResourceTypes(self, ResourceTypes):
|
22506
|
+
self._ResourceTypes = ResourceTypes
|
22507
|
+
|
22508
|
+
@property
|
22509
|
+
def Status(self):
|
22510
|
+
"""部署状态
|
22511
|
+
:rtype: int
|
22512
|
+
"""
|
22513
|
+
return self._Status
|
22514
|
+
|
22515
|
+
@Status.setter
|
22516
|
+
def Status(self, Status):
|
22517
|
+
self._Status = Status
|
22518
|
+
|
22519
|
+
@property
|
22520
|
+
def CreateTime(self):
|
22521
|
+
"""部署时间
|
22522
|
+
:rtype: str
|
22523
|
+
"""
|
22524
|
+
return self._CreateTime
|
22525
|
+
|
22526
|
+
@CreateTime.setter
|
22527
|
+
def CreateTime(self, CreateTime):
|
22528
|
+
self._CreateTime = CreateTime
|
22529
|
+
|
22530
|
+
@property
|
22531
|
+
def UpdateTime(self):
|
22532
|
+
"""最后一次更新时间
|
22533
|
+
:rtype: str
|
22534
|
+
"""
|
22535
|
+
return self._UpdateTime
|
22536
|
+
|
22537
|
+
@UpdateTime.setter
|
22538
|
+
def UpdateTime(self, UpdateTime):
|
22539
|
+
self._UpdateTime = UpdateTime
|
22540
|
+
|
22541
|
+
|
22542
|
+
def _deserialize(self, params):
|
22543
|
+
self._Id = params.get("Id")
|
22544
|
+
self._OldCertId = params.get("OldCertId")
|
22545
|
+
self._ResourceTypes = params.get("ResourceTypes")
|
22546
|
+
self._Status = params.get("Status")
|
22547
|
+
self._CreateTime = params.get("CreateTime")
|
22548
|
+
self._UpdateTime = params.get("UpdateTime")
|
22549
|
+
memeber_set = set(params.keys())
|
22550
|
+
for name, value in vars(self).items():
|
22551
|
+
property_name = name[1:]
|
22552
|
+
if property_name in memeber_set:
|
22553
|
+
memeber_set.remove(property_name)
|
22554
|
+
if len(memeber_set) > 0:
|
22555
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
22556
|
+
|
22557
|
+
|
22558
|
+
|
21507
22559
|
class VODInstanceList(AbstractModel):
|
21508
22560
|
"""vod实例详情 - 异步关联云资源数据结构
|
21509
22561
|
|