tencentcloud-sdk-python 3.0.1255__py2.py3-none-any.whl → 3.0.1257__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/ccc/v20200210/models.py +12 -0
- tencentcloud/cdb/v20170320/models.py +12 -0
- tencentcloud/cdwdoris/v20211228/models.py +13 -0
- tencentcloud/cfw/v20190904/cfw_client.py +3 -1
- tencentcloud/cfw/v20190904/models.py +8 -2
- tencentcloud/ckafka/v20190819/models.py +1 -1
- tencentcloud/clb/v20180317/models.py +25 -1
- tencentcloud/cwp/v20180228/cwp_client.py +6 -2
- tencentcloud/cwp/v20180228/models.py +65 -28
- tencentcloud/dlc/v20210125/models.py +13 -0
- tencentcloud/emr/v20190103/models.py +12 -0
- tencentcloud/ess/v20201111/models.py +28 -3
- tencentcloud/essbasic/v20210526/models.py +26 -3
- tencentcloud/gaap/v20180529/gaap_client.py +1 -1
- tencentcloud/gaap/v20180529/models.py +67 -39
- tencentcloud/iss/v20230517/models.py +25 -0
- tencentcloud/mqtt/v20240516/models.py +2 -2
- tencentcloud/ocr/v20181119/models.py +1 -0
- tencentcloud/organization/v20210331/errorcodes.py +1 -1
- tencentcloud/partners/v20180321/models.py +71 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/pts/v20210728/models.py +13 -0
- tencentcloud/redis/v20180412/models.py +3 -1
- tencentcloud/redis/v20180412/redis_client.py +1 -1
- tencentcloud/ssl/v20191205/models.py +43 -2
- tencentcloud/tcss/v20201101/models.py +343 -0
- tencentcloud/tdmq/v20200217/models.py +442 -55
- tencentcloud/tdmq/v20200217/tdmq_client.py +46 -0
- tencentcloud/teo/v20220901/errorcodes.py +24 -0
- tencentcloud/teo/v20220901/models.py +6 -6
- tencentcloud/trocket/v20230308/models.py +25 -1
- tencentcloud/trocket/v20230308/trocket_client.py +2 -2
- tencentcloud/tsi/v20210325/models.py +135 -0
- tencentcloud/vod/v20180717/models.py +878 -7
- tencentcloud/vpc/v20170312/models.py +3 -4
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1255.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/top_level.txt +0 -0
@@ -2962,6 +2962,8 @@ class CreateCertificateByPackageRequest(AbstractModel):
|
|
2962
2962
|
:type CompanyId: int
|
2963
2963
|
:param _VerifyType: 验证方式
|
2964
2964
|
:type VerifyType: str
|
2965
|
+
:param _PriceKey: 询价参数
|
2966
|
+
:type PriceKey: str
|
2965
2967
|
"""
|
2966
2968
|
self._ProductPid = None
|
2967
2969
|
self._PackageIds = None
|
@@ -2980,6 +2982,7 @@ class CreateCertificateByPackageRequest(AbstractModel):
|
|
2980
2982
|
self._ManagerId = None
|
2981
2983
|
self._CompanyId = None
|
2982
2984
|
self._VerifyType = None
|
2985
|
+
self._PriceKey = None
|
2983
2986
|
|
2984
2987
|
@property
|
2985
2988
|
def ProductPid(self):
|
@@ -3117,6 +3120,14 @@ class CreateCertificateByPackageRequest(AbstractModel):
|
|
3117
3120
|
def VerifyType(self, VerifyType):
|
3118
3121
|
self._VerifyType = VerifyType
|
3119
3122
|
|
3123
|
+
@property
|
3124
|
+
def PriceKey(self):
|
3125
|
+
return self._PriceKey
|
3126
|
+
|
3127
|
+
@PriceKey.setter
|
3128
|
+
def PriceKey(self, PriceKey):
|
3129
|
+
self._PriceKey = PriceKey
|
3130
|
+
|
3120
3131
|
|
3121
3132
|
def _deserialize(self, params):
|
3122
3133
|
self._ProductPid = params.get("ProductPid")
|
@@ -3141,6 +3152,7 @@ class CreateCertificateByPackageRequest(AbstractModel):
|
|
3141
3152
|
self._ManagerId = params.get("ManagerId")
|
3142
3153
|
self._CompanyId = params.get("CompanyId")
|
3143
3154
|
self._VerifyType = params.get("VerifyType")
|
3155
|
+
self._PriceKey = params.get("PriceKey")
|
3144
3156
|
memeber_set = set(params.keys())
|
3145
3157
|
for name, value in vars(self).items():
|
3146
3158
|
property_name = name[1:]
|
@@ -3207,16 +3219,22 @@ class CreateCertificateRequest(AbstractModel):
|
|
3207
3219
|
|
3208
3220
|
def __init__(self):
|
3209
3221
|
r"""
|
3210
|
-
: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 =
|
3222
|
+
: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 = Wotrus 国密域名型证书,34 = Wotrus 国密域名型多域名证书,35 = Wotrus 国密域名型通配符证书,37 = Wotrus 国密企业型证书,38 = Wotrus 国密企业型多域名证书,39 = Wotrus 国密企业型通配符证书,40 = Wotrus 国密增强型证书,41 = Wotrus 国密增强型多域名证书,42 = TrustAsia 域名型通配符多域名证书,43 = DNSPod-企业型(OV)SSL证书,44 = DNSPod-企业型(OV)通配符SSL证书,45 = DNSPod-企业型(OV)多域名SSL证书, 46 = DNSPod-增强型(EV)SSL证书,47 = DNSPod-增强型(EV)多域名SSL证书,48 = DNSPod-域名型(DV)SSL证书,49 = DNSPod-域名型(DV)通配符SSL证书,50 = DNSPod-域名型(DV)多域名SSL证书,51 = DNSPod(国密)-企业型(OV)SSL证书,52 = DNSPod(国密)-企业型(OV)通配符SSL证书,53 = DNSPod(国密)-企业型(OV)多域名SSL证书,54 = DNSPod(国密)-域名型(DV)SSL证书,55 = DNSPod(国密)-域名型(DV)通配符SSL证书, 56 = DNSPod(国密)-域名型(DV)多域名SSL证书,57 = SecureSite 企业型专业版多域名(OV Pro),58 = SecureSite 企业型多域名(OV),59 = SecureSite 增强型专业版多域名(EV Pro),60 = SecureSite 增强型多域名(EV),61 = Geotrust 增强型多域名(EV)
|
3211
3223
|
:type ProductId: int
|
3212
3224
|
:param _DomainNum: 证书包含的域名数量
|
3213
3225
|
:type DomainNum: int
|
3214
|
-
:param _TimeSpan:
|
3226
|
+
:param _TimeSpan: 证书年限
|
3215
3227
|
:type TimeSpan: int
|
3228
|
+
:param _AutoVoucher: 是否自动使用代金券:1是,0否;默认为1
|
3229
|
+
:type AutoVoucher: int
|
3230
|
+
:param _Tags: 标签, 生成证书打标签
|
3231
|
+
:type Tags: list of Tags
|
3216
3232
|
"""
|
3217
3233
|
self._ProductId = None
|
3218
3234
|
self._DomainNum = None
|
3219
3235
|
self._TimeSpan = None
|
3236
|
+
self._AutoVoucher = None
|
3237
|
+
self._Tags = None
|
3220
3238
|
|
3221
3239
|
@property
|
3222
3240
|
def ProductId(self):
|
@@ -3242,11 +3260,34 @@ class CreateCertificateRequest(AbstractModel):
|
|
3242
3260
|
def TimeSpan(self, TimeSpan):
|
3243
3261
|
self._TimeSpan = TimeSpan
|
3244
3262
|
|
3263
|
+
@property
|
3264
|
+
def AutoVoucher(self):
|
3265
|
+
return self._AutoVoucher
|
3266
|
+
|
3267
|
+
@AutoVoucher.setter
|
3268
|
+
def AutoVoucher(self, AutoVoucher):
|
3269
|
+
self._AutoVoucher = AutoVoucher
|
3270
|
+
|
3271
|
+
@property
|
3272
|
+
def Tags(self):
|
3273
|
+
return self._Tags
|
3274
|
+
|
3275
|
+
@Tags.setter
|
3276
|
+
def Tags(self, Tags):
|
3277
|
+
self._Tags = Tags
|
3278
|
+
|
3245
3279
|
|
3246
3280
|
def _deserialize(self, params):
|
3247
3281
|
self._ProductId = params.get("ProductId")
|
3248
3282
|
self._DomainNum = params.get("DomainNum")
|
3249
3283
|
self._TimeSpan = params.get("TimeSpan")
|
3284
|
+
self._AutoVoucher = params.get("AutoVoucher")
|
3285
|
+
if params.get("Tags") is not None:
|
3286
|
+
self._Tags = []
|
3287
|
+
for item in params.get("Tags"):
|
3288
|
+
obj = Tags()
|
3289
|
+
obj._deserialize(item)
|
3290
|
+
self._Tags.append(obj)
|
3250
3291
|
memeber_set = set(params.keys())
|
3251
3292
|
for name, value in vars(self).items():
|
3252
3293
|
property_name = name[1:]
|
@@ -21690,6 +21690,87 @@ class DescribeAssetImageRegistryRegistryListRequest(AbstractModel):
|
|
21690
21690
|
|
21691
21691
|
"""
|
21692
21692
|
|
21693
|
+
def __init__(self):
|
21694
|
+
r"""
|
21695
|
+
:param _Limit: 需要返回的数量,默认为10,最大值为100
|
21696
|
+
:type Limit: int
|
21697
|
+
:param _Offset: 偏移量,默认为0
|
21698
|
+
:type Offset: int
|
21699
|
+
:param _Filters: 过滤字段
|
21700
|
+
IsAuthorized是否授权,取值全部all,未授权0,已授权1
|
21701
|
+
:type Filters: list of AssetFilters
|
21702
|
+
:param _By: 排序字段
|
21703
|
+
:type By: str
|
21704
|
+
:param _Order: 排序方式,asc,desc
|
21705
|
+
:type Order: str
|
21706
|
+
"""
|
21707
|
+
self._Limit = None
|
21708
|
+
self._Offset = None
|
21709
|
+
self._Filters = None
|
21710
|
+
self._By = None
|
21711
|
+
self._Order = None
|
21712
|
+
|
21713
|
+
@property
|
21714
|
+
def Limit(self):
|
21715
|
+
return self._Limit
|
21716
|
+
|
21717
|
+
@Limit.setter
|
21718
|
+
def Limit(self, Limit):
|
21719
|
+
self._Limit = Limit
|
21720
|
+
|
21721
|
+
@property
|
21722
|
+
def Offset(self):
|
21723
|
+
return self._Offset
|
21724
|
+
|
21725
|
+
@Offset.setter
|
21726
|
+
def Offset(self, Offset):
|
21727
|
+
self._Offset = Offset
|
21728
|
+
|
21729
|
+
@property
|
21730
|
+
def Filters(self):
|
21731
|
+
return self._Filters
|
21732
|
+
|
21733
|
+
@Filters.setter
|
21734
|
+
def Filters(self, Filters):
|
21735
|
+
self._Filters = Filters
|
21736
|
+
|
21737
|
+
@property
|
21738
|
+
def By(self):
|
21739
|
+
return self._By
|
21740
|
+
|
21741
|
+
@By.setter
|
21742
|
+
def By(self, By):
|
21743
|
+
self._By = By
|
21744
|
+
|
21745
|
+
@property
|
21746
|
+
def Order(self):
|
21747
|
+
return self._Order
|
21748
|
+
|
21749
|
+
@Order.setter
|
21750
|
+
def Order(self, Order):
|
21751
|
+
self._Order = Order
|
21752
|
+
|
21753
|
+
|
21754
|
+
def _deserialize(self, params):
|
21755
|
+
self._Limit = params.get("Limit")
|
21756
|
+
self._Offset = params.get("Offset")
|
21757
|
+
if params.get("Filters") is not None:
|
21758
|
+
self._Filters = []
|
21759
|
+
for item in params.get("Filters"):
|
21760
|
+
obj = AssetFilters()
|
21761
|
+
obj._deserialize(item)
|
21762
|
+
self._Filters.append(obj)
|
21763
|
+
self._By = params.get("By")
|
21764
|
+
self._Order = params.get("Order")
|
21765
|
+
memeber_set = set(params.keys())
|
21766
|
+
for name, value in vars(self).items():
|
21767
|
+
property_name = name[1:]
|
21768
|
+
if property_name in memeber_set:
|
21769
|
+
memeber_set.remove(property_name)
|
21770
|
+
if len(memeber_set) > 0:
|
21771
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
21772
|
+
|
21773
|
+
|
21693
21774
|
|
21694
21775
|
class DescribeAssetImageRegistryRegistryListResponse(AbstractModel):
|
21695
21776
|
"""DescribeAssetImageRegistryRegistryList返回参数结构体
|
@@ -21698,11 +21779,35 @@ class DescribeAssetImageRegistryRegistryListResponse(AbstractModel):
|
|
21698
21779
|
|
21699
21780
|
def __init__(self):
|
21700
21781
|
r"""
|
21782
|
+
:param _List: 镜像仓库列表
|
21783
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21784
|
+
:type List: list of ImageRepoRegistryInfo
|
21785
|
+
:param _TotalCount: 总数量
|
21786
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21787
|
+
:type TotalCount: int
|
21701
21788
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21702
21789
|
:type RequestId: str
|
21703
21790
|
"""
|
21791
|
+
self._List = None
|
21792
|
+
self._TotalCount = None
|
21704
21793
|
self._RequestId = None
|
21705
21794
|
|
21795
|
+
@property
|
21796
|
+
def List(self):
|
21797
|
+
return self._List
|
21798
|
+
|
21799
|
+
@List.setter
|
21800
|
+
def List(self, List):
|
21801
|
+
self._List = List
|
21802
|
+
|
21803
|
+
@property
|
21804
|
+
def TotalCount(self):
|
21805
|
+
return self._TotalCount
|
21806
|
+
|
21807
|
+
@TotalCount.setter
|
21808
|
+
def TotalCount(self, TotalCount):
|
21809
|
+
self._TotalCount = TotalCount
|
21810
|
+
|
21706
21811
|
@property
|
21707
21812
|
def RequestId(self):
|
21708
21813
|
return self._RequestId
|
@@ -21713,6 +21818,13 @@ class DescribeAssetImageRegistryRegistryListResponse(AbstractModel):
|
|
21713
21818
|
|
21714
21819
|
|
21715
21820
|
def _deserialize(self, params):
|
21821
|
+
if params.get("List") is not None:
|
21822
|
+
self._List = []
|
21823
|
+
for item in params.get("List"):
|
21824
|
+
obj = ImageRepoRegistryInfo()
|
21825
|
+
obj._deserialize(item)
|
21826
|
+
self._List.append(obj)
|
21827
|
+
self._TotalCount = params.get("TotalCount")
|
21716
21828
|
self._RequestId = params.get("RequestId")
|
21717
21829
|
|
21718
21830
|
|
@@ -47553,6 +47665,237 @@ class ImageRepoInfo(AbstractModel):
|
|
47553
47665
|
|
47554
47666
|
|
47555
47667
|
|
47668
|
+
class ImageRepoRegistryInfo(AbstractModel):
|
47669
|
+
"""容器安全镜像仓库列表
|
47670
|
+
|
47671
|
+
"""
|
47672
|
+
|
47673
|
+
def __init__(self):
|
47674
|
+
r"""
|
47675
|
+
:param _RegistryId: 仓库id
|
47676
|
+
:type RegistryId: int
|
47677
|
+
:param _Name: 仓库名
|
47678
|
+
:type Name: str
|
47679
|
+
:param _RegistryType: 仓库类型,列表:harbor、tcr
|
47680
|
+
:type RegistryType: str
|
47681
|
+
:param _Url: 仓库url
|
47682
|
+
:type Url: str
|
47683
|
+
:param _NetType: 网络类型,列表:public
|
47684
|
+
:type NetType: str
|
47685
|
+
:param _RegistryRegion: 区域,列表:default
|
47686
|
+
:type RegistryRegion: str
|
47687
|
+
:param _RegistryVersion: 仓库版本
|
47688
|
+
:type RegistryVersion: str
|
47689
|
+
:param _ConnectMsg: 仓库连接错误信息,待废弃,请使用ConnDetectException
|
47690
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
47691
|
+
:type ConnectMsg: str
|
47692
|
+
:param _ConnDetectType: 联通性检测方式
|
47693
|
+
:type ConnDetectType: str
|
47694
|
+
:param _ConnDetectHostCount: 联通性检测主机数
|
47695
|
+
:type ConnDetectHostCount: int
|
47696
|
+
:param _ConnDetectDetail: 联通性检测详情
|
47697
|
+
:type ConnDetectDetail: list of RegistryConnDetectResult
|
47698
|
+
:param _InstanceID: tcr情况下的instance_id
|
47699
|
+
:type InstanceID: str
|
47700
|
+
:param _LatestSyncTime: 最近同步成功时间
|
47701
|
+
:type LatestSyncTime: str
|
47702
|
+
:param _SyncStatus: 同步状态
|
47703
|
+
:type SyncStatus: str
|
47704
|
+
:param _SyncFailReason: 同步失败原因
|
47705
|
+
:type SyncFailReason: str
|
47706
|
+
:param _SyncSolution: 同步失败解决方案
|
47707
|
+
:type SyncSolution: str
|
47708
|
+
:param _SyncMessage: 同步失败信息
|
47709
|
+
:type SyncMessage: str
|
47710
|
+
"""
|
47711
|
+
self._RegistryId = None
|
47712
|
+
self._Name = None
|
47713
|
+
self._RegistryType = None
|
47714
|
+
self._Url = None
|
47715
|
+
self._NetType = None
|
47716
|
+
self._RegistryRegion = None
|
47717
|
+
self._RegistryVersion = None
|
47718
|
+
self._ConnectMsg = None
|
47719
|
+
self._ConnDetectType = None
|
47720
|
+
self._ConnDetectHostCount = None
|
47721
|
+
self._ConnDetectDetail = None
|
47722
|
+
self._InstanceID = None
|
47723
|
+
self._LatestSyncTime = None
|
47724
|
+
self._SyncStatus = None
|
47725
|
+
self._SyncFailReason = None
|
47726
|
+
self._SyncSolution = None
|
47727
|
+
self._SyncMessage = None
|
47728
|
+
|
47729
|
+
@property
|
47730
|
+
def RegistryId(self):
|
47731
|
+
return self._RegistryId
|
47732
|
+
|
47733
|
+
@RegistryId.setter
|
47734
|
+
def RegistryId(self, RegistryId):
|
47735
|
+
self._RegistryId = RegistryId
|
47736
|
+
|
47737
|
+
@property
|
47738
|
+
def Name(self):
|
47739
|
+
return self._Name
|
47740
|
+
|
47741
|
+
@Name.setter
|
47742
|
+
def Name(self, Name):
|
47743
|
+
self._Name = Name
|
47744
|
+
|
47745
|
+
@property
|
47746
|
+
def RegistryType(self):
|
47747
|
+
return self._RegistryType
|
47748
|
+
|
47749
|
+
@RegistryType.setter
|
47750
|
+
def RegistryType(self, RegistryType):
|
47751
|
+
self._RegistryType = RegistryType
|
47752
|
+
|
47753
|
+
@property
|
47754
|
+
def Url(self):
|
47755
|
+
return self._Url
|
47756
|
+
|
47757
|
+
@Url.setter
|
47758
|
+
def Url(self, Url):
|
47759
|
+
self._Url = Url
|
47760
|
+
|
47761
|
+
@property
|
47762
|
+
def NetType(self):
|
47763
|
+
return self._NetType
|
47764
|
+
|
47765
|
+
@NetType.setter
|
47766
|
+
def NetType(self, NetType):
|
47767
|
+
self._NetType = NetType
|
47768
|
+
|
47769
|
+
@property
|
47770
|
+
def RegistryRegion(self):
|
47771
|
+
return self._RegistryRegion
|
47772
|
+
|
47773
|
+
@RegistryRegion.setter
|
47774
|
+
def RegistryRegion(self, RegistryRegion):
|
47775
|
+
self._RegistryRegion = RegistryRegion
|
47776
|
+
|
47777
|
+
@property
|
47778
|
+
def RegistryVersion(self):
|
47779
|
+
return self._RegistryVersion
|
47780
|
+
|
47781
|
+
@RegistryVersion.setter
|
47782
|
+
def RegistryVersion(self, RegistryVersion):
|
47783
|
+
self._RegistryVersion = RegistryVersion
|
47784
|
+
|
47785
|
+
@property
|
47786
|
+
def ConnectMsg(self):
|
47787
|
+
return self._ConnectMsg
|
47788
|
+
|
47789
|
+
@ConnectMsg.setter
|
47790
|
+
def ConnectMsg(self, ConnectMsg):
|
47791
|
+
self._ConnectMsg = ConnectMsg
|
47792
|
+
|
47793
|
+
@property
|
47794
|
+
def ConnDetectType(self):
|
47795
|
+
return self._ConnDetectType
|
47796
|
+
|
47797
|
+
@ConnDetectType.setter
|
47798
|
+
def ConnDetectType(self, ConnDetectType):
|
47799
|
+
self._ConnDetectType = ConnDetectType
|
47800
|
+
|
47801
|
+
@property
|
47802
|
+
def ConnDetectHostCount(self):
|
47803
|
+
return self._ConnDetectHostCount
|
47804
|
+
|
47805
|
+
@ConnDetectHostCount.setter
|
47806
|
+
def ConnDetectHostCount(self, ConnDetectHostCount):
|
47807
|
+
self._ConnDetectHostCount = ConnDetectHostCount
|
47808
|
+
|
47809
|
+
@property
|
47810
|
+
def ConnDetectDetail(self):
|
47811
|
+
return self._ConnDetectDetail
|
47812
|
+
|
47813
|
+
@ConnDetectDetail.setter
|
47814
|
+
def ConnDetectDetail(self, ConnDetectDetail):
|
47815
|
+
self._ConnDetectDetail = ConnDetectDetail
|
47816
|
+
|
47817
|
+
@property
|
47818
|
+
def InstanceID(self):
|
47819
|
+
return self._InstanceID
|
47820
|
+
|
47821
|
+
@InstanceID.setter
|
47822
|
+
def InstanceID(self, InstanceID):
|
47823
|
+
self._InstanceID = InstanceID
|
47824
|
+
|
47825
|
+
@property
|
47826
|
+
def LatestSyncTime(self):
|
47827
|
+
return self._LatestSyncTime
|
47828
|
+
|
47829
|
+
@LatestSyncTime.setter
|
47830
|
+
def LatestSyncTime(self, LatestSyncTime):
|
47831
|
+
self._LatestSyncTime = LatestSyncTime
|
47832
|
+
|
47833
|
+
@property
|
47834
|
+
def SyncStatus(self):
|
47835
|
+
return self._SyncStatus
|
47836
|
+
|
47837
|
+
@SyncStatus.setter
|
47838
|
+
def SyncStatus(self, SyncStatus):
|
47839
|
+
self._SyncStatus = SyncStatus
|
47840
|
+
|
47841
|
+
@property
|
47842
|
+
def SyncFailReason(self):
|
47843
|
+
return self._SyncFailReason
|
47844
|
+
|
47845
|
+
@SyncFailReason.setter
|
47846
|
+
def SyncFailReason(self, SyncFailReason):
|
47847
|
+
self._SyncFailReason = SyncFailReason
|
47848
|
+
|
47849
|
+
@property
|
47850
|
+
def SyncSolution(self):
|
47851
|
+
return self._SyncSolution
|
47852
|
+
|
47853
|
+
@SyncSolution.setter
|
47854
|
+
def SyncSolution(self, SyncSolution):
|
47855
|
+
self._SyncSolution = SyncSolution
|
47856
|
+
|
47857
|
+
@property
|
47858
|
+
def SyncMessage(self):
|
47859
|
+
return self._SyncMessage
|
47860
|
+
|
47861
|
+
@SyncMessage.setter
|
47862
|
+
def SyncMessage(self, SyncMessage):
|
47863
|
+
self._SyncMessage = SyncMessage
|
47864
|
+
|
47865
|
+
|
47866
|
+
def _deserialize(self, params):
|
47867
|
+
self._RegistryId = params.get("RegistryId")
|
47868
|
+
self._Name = params.get("Name")
|
47869
|
+
self._RegistryType = params.get("RegistryType")
|
47870
|
+
self._Url = params.get("Url")
|
47871
|
+
self._NetType = params.get("NetType")
|
47872
|
+
self._RegistryRegion = params.get("RegistryRegion")
|
47873
|
+
self._RegistryVersion = params.get("RegistryVersion")
|
47874
|
+
self._ConnectMsg = params.get("ConnectMsg")
|
47875
|
+
self._ConnDetectType = params.get("ConnDetectType")
|
47876
|
+
self._ConnDetectHostCount = params.get("ConnDetectHostCount")
|
47877
|
+
if params.get("ConnDetectDetail") is not None:
|
47878
|
+
self._ConnDetectDetail = []
|
47879
|
+
for item in params.get("ConnDetectDetail"):
|
47880
|
+
obj = RegistryConnDetectResult()
|
47881
|
+
obj._deserialize(item)
|
47882
|
+
self._ConnDetectDetail.append(obj)
|
47883
|
+
self._InstanceID = params.get("InstanceID")
|
47884
|
+
self._LatestSyncTime = params.get("LatestSyncTime")
|
47885
|
+
self._SyncStatus = params.get("SyncStatus")
|
47886
|
+
self._SyncFailReason = params.get("SyncFailReason")
|
47887
|
+
self._SyncSolution = params.get("SyncSolution")
|
47888
|
+
self._SyncMessage = params.get("SyncMessage")
|
47889
|
+
memeber_set = set(params.keys())
|
47890
|
+
for name, value in vars(self).items():
|
47891
|
+
property_name = name[1:]
|
47892
|
+
if property_name in memeber_set:
|
47893
|
+
memeber_set.remove(property_name)
|
47894
|
+
if len(memeber_set) > 0:
|
47895
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
47896
|
+
|
47897
|
+
|
47898
|
+
|
47556
47899
|
class ImageRisk(AbstractModel):
|
47557
47900
|
"""容器安全镜像高危行为信息
|
47558
47901
|
|