tencentcloud-sdk-python 3.0.1347__py2.py3-none-any.whl → 3.0.1348__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.
Files changed (41) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/bh/v20230418/models.py +61 -23
  3. tencentcloud/cam/v20190116/models.py +2 -2
  4. tencentcloud/cdwdoris/v20211228/models.py +300 -0
  5. tencentcloud/cdwpg/v20201230/models.py +96 -84
  6. tencentcloud/chc/v20230418/models.py +0 -30
  7. tencentcloud/clb/v20180317/models.py +46 -16
  8. tencentcloud/dbbrain/v20210527/models.py +0 -8
  9. tencentcloud/dcdb/v20180411/errorcodes.py +3 -0
  10. tencentcloud/dcdb/v20180411/models.py +0 -64
  11. tencentcloud/emr/v20190103/models.py +15 -54
  12. tencentcloud/ess/v20201111/models.py +4 -4
  13. tencentcloud/essbasic/v20210526/models.py +4 -4
  14. tencentcloud/gs/v20191118/models.py +4 -58
  15. tencentcloud/hai/v20230812/models.py +0 -44
  16. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
  17. tencentcloud/iotvideo/v20211125/iotvideo_client.py +1 -1
  18. tencentcloud/iotvideoindustry/v20201201/models.py +0 -30
  19. tencentcloud/lcic/v20220817/lcic_client.py +1 -1
  20. tencentcloud/lcic/v20220817/models.py +56 -68
  21. tencentcloud/lkeap/v20240522/lkeap_client.py +5 -0
  22. tencentcloud/mariadb/v20170312/models.py +2 -70
  23. tencentcloud/mqtt/v20240516/models.py +296 -188
  24. tencentcloud/organization/v20210331/models.py +30 -0
  25. tencentcloud/tbaas/v20180416/models.py +0 -46
  26. tencentcloud/tcb/v20180608/errorcodes.py +3 -0
  27. tencentcloud/tcr/v20190924/models.py +0 -134
  28. tencentcloud/tdmq/v20200217/models.py +0 -14
  29. tencentcloud/thpc/v20230321/models.py +34 -0
  30. tencentcloud/tke/v20180525/models.py +0 -66
  31. tencentcloud/trocket/v20230308/models.py +0 -24
  32. tencentcloud/tsf/v20180326/models.py +196 -182
  33. tencentcloud/vcube/v20220410/models.py +51 -158
  34. tencentcloud/vcube/v20220410/vcube_client.py +2 -2
  35. tencentcloud/vod/v20180717/models.py +8 -46
  36. tencentcloud/wedata/v20210820/models.py +17 -0
  37. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/METADATA +1 -1
  38. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/RECORD +41 -41
  39. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/LICENSE +0 -0
  40. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/WHEEL +0 -0
  41. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/top_level.txt +0 -0
@@ -220,7 +220,6 @@ class AutoDelStrategyInfoResp(AbstractModel):
220
220
  :param _TotalCount: 总数目
221
221
  :type TotalCount: int
222
222
  :param _StrategyInfo: 自动删除策略列表
223
- 注意:此字段可能返回 null,表示取不到有效值。
224
223
  :type StrategyInfo: list of AutoDelStrategyInfo
225
224
  """
226
225
  self._TotalCount = None
@@ -240,7 +239,6 @@ class AutoDelStrategyInfoResp(AbstractModel):
240
239
  @property
241
240
  def StrategyInfo(self):
242
241
  """自动删除策略列表
243
- 注意:此字段可能返回 null,表示取不到有效值。
244
242
  :rtype: list of AutoDelStrategyInfo
245
243
  """
246
244
  return self._StrategyInfo
@@ -419,7 +417,6 @@ class CVEWhitelistItem(AbstractModel):
419
417
  def __init__(self):
420
418
  r"""
421
419
  :param _CVEID: 漏洞白名单 ID
422
- 注意:此字段可能返回 null,表示取不到有效值。
423
420
  :type CVEID: str
424
421
  """
425
422
  self._CVEID = None
@@ -427,7 +424,6 @@ class CVEWhitelistItem(AbstractModel):
427
424
  @property
428
425
  def CVEID(self):
429
426
  """漏洞白名单 ID
430
- 注意:此字段可能返回 null,表示取不到有效值。
431
427
  :rtype: str
432
428
  """
433
429
  return self._CVEID
@@ -495,7 +491,6 @@ class CheckInstanceNameResponse(AbstractModel):
495
491
  :param _IsValidated: 检查结果,true为合法,false为非法
496
492
  :type IsValidated: bool
497
493
  :param _DetailCode: 1: Illegal(名称非法), 2:Reserved(名字保留), 3:Existed(名字已存在)
498
- 注意:此字段可能返回 null,表示取不到有效值。
499
494
  :type DetailCode: int
500
495
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
501
496
  :type RequestId: str
@@ -518,7 +513,6 @@ class CheckInstanceNameResponse(AbstractModel):
518
513
  @property
519
514
  def DetailCode(self):
520
515
  """1: Illegal(名称非法), 2:Reserved(名字保留), 3:Existed(名字已存在)
521
- 注意:此字段可能返回 null,表示取不到有效值。
522
516
  :rtype: int
523
517
  """
524
518
  return self._DetailCode
@@ -1461,14 +1455,12 @@ class CreateInstanceTokenResponse(AbstractModel):
1461
1455
  def __init__(self):
1462
1456
  r"""
1463
1457
  :param _Username: 用户名
1464
- 注意:此字段可能返回 null,表示取不到有效值。
1465
1458
  :type Username: str
1466
1459
  :param _Token: 访问凭证
1467
1460
  :type Token: str
1468
1461
  :param _ExpTime: 访问凭证过期时间戳,是一个时间戳数字,无单位
1469
1462
  :type ExpTime: int
1470
1463
  :param _TokenId: 长期凭证的TokenId,短期凭证没有TokenId
1471
- 注意:此字段可能返回 null,表示取不到有效值。
1472
1464
  :type TokenId: str
1473
1465
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1474
1466
  :type RequestId: str
@@ -1482,7 +1474,6 @@ class CreateInstanceTokenResponse(AbstractModel):
1482
1474
  @property
1483
1475
  def Username(self):
1484
1476
  """用户名
1485
- 注意:此字段可能返回 null,表示取不到有效值。
1486
1477
  :rtype: str
1487
1478
  """
1488
1479
  return self._Username
@@ -1516,7 +1507,6 @@ class CreateInstanceTokenResponse(AbstractModel):
1516
1507
  @property
1517
1508
  def TokenId(self):
1518
1509
  """长期凭证的TokenId,短期凭证没有TokenId
1519
- 注意:此字段可能返回 null,表示取不到有效值。
1520
1510
  :rtype: str
1521
1511
  """
1522
1512
  return self._TokenId
@@ -5439,7 +5429,6 @@ class DescribeApplicationTriggerLogPersonalResp(AbstractModel):
5439
5429
  :param _TotalCount: 返回总数
5440
5430
  :type TotalCount: int
5441
5431
  :param _LogInfo: 触发日志列表
5442
- 注意:此字段可能返回 null,表示取不到有效值。
5443
5432
  :type LogInfo: list of TriggerLogResp
5444
5433
  """
5445
5434
  self._TotalCount = None
@@ -5459,7 +5448,6 @@ class DescribeApplicationTriggerLogPersonalResp(AbstractModel):
5459
5448
  @property
5460
5449
  def LogInfo(self):
5461
5450
  """触发日志列表
5462
- 注意:此字段可能返回 null,表示取不到有效值。
5463
5451
  :rtype: list of TriggerLogResp
5464
5452
  """
5465
5453
  return self._LogInfo
@@ -10811,7 +10799,6 @@ class FavorResp(AbstractModel):
10811
10799
  :param _TotalCount: 收藏仓库的总数
10812
10800
  :type TotalCount: int
10813
10801
  :param _RepoInfo: 仓库信息数组
10814
- 注意:此字段可能返回 null,表示取不到有效值。
10815
10802
  :type RepoInfo: list of Favors
10816
10803
  """
10817
10804
  self._TotalCount = None
@@ -10831,7 +10818,6 @@ class FavorResp(AbstractModel):
10831
10818
  @property
10832
10819
  def RepoInfo(self):
10833
10820
  """仓库信息数组
10834
- 注意:此字段可能返回 null,表示取不到有效值。
10835
10821
  :rtype: list of Favors
10836
10822
  """
10837
10823
  return self._RepoInfo
@@ -10871,22 +10857,16 @@ class Favors(AbstractModel):
10871
10857
  :param _RepoType: 仓库类型
10872
10858
  :type RepoType: str
10873
10859
  :param _PullCount: Pull总共的次数
10874
- 注意:此字段可能返回 null,表示取不到有效值。
10875
10860
  :type PullCount: int
10876
10861
  :param _FavorCount: 仓库收藏次数
10877
- 注意:此字段可能返回 null,表示取不到有效值。
10878
10862
  :type FavorCount: int
10879
10863
  :param _Public: 仓库是否公开
10880
- 注意:此字段可能返回 null,表示取不到有效值。
10881
10864
  :type Public: int
10882
10865
  :param _IsQcloudOfficial: 是否为官方所有
10883
- 注意:此字段可能返回 null,表示取不到有效值。
10884
10866
  :type IsQcloudOfficial: bool
10885
10867
  :param _TagCount: 仓库Tag的数量
10886
- 注意:此字段可能返回 null,表示取不到有效值。
10887
10868
  :type TagCount: int
10888
10869
  :param _Logo: Logo
10889
- 注意:此字段可能返回 null,表示取不到有效值。
10890
10870
  :type Logo: str
10891
10871
  :param _Region: 地域
10892
10872
  :type Region: str
@@ -10929,7 +10909,6 @@ class Favors(AbstractModel):
10929
10909
  @property
10930
10910
  def PullCount(self):
10931
10911
  """Pull总共的次数
10932
- 注意:此字段可能返回 null,表示取不到有效值。
10933
10912
  :rtype: int
10934
10913
  """
10935
10914
  return self._PullCount
@@ -10941,7 +10920,6 @@ class Favors(AbstractModel):
10941
10920
  @property
10942
10921
  def FavorCount(self):
10943
10922
  """仓库收藏次数
10944
- 注意:此字段可能返回 null,表示取不到有效值。
10945
10923
  :rtype: int
10946
10924
  """
10947
10925
  return self._FavorCount
@@ -10953,7 +10931,6 @@ class Favors(AbstractModel):
10953
10931
  @property
10954
10932
  def Public(self):
10955
10933
  """仓库是否公开
10956
- 注意:此字段可能返回 null,表示取不到有效值。
10957
10934
  :rtype: int
10958
10935
  """
10959
10936
  return self._Public
@@ -10965,7 +10942,6 @@ class Favors(AbstractModel):
10965
10942
  @property
10966
10943
  def IsQcloudOfficial(self):
10967
10944
  """是否为官方所有
10968
- 注意:此字段可能返回 null,表示取不到有效值。
10969
10945
  :rtype: bool
10970
10946
  """
10971
10947
  return self._IsQcloudOfficial
@@ -10977,7 +10953,6 @@ class Favors(AbstractModel):
10977
10953
  @property
10978
10954
  def TagCount(self):
10979
10955
  """仓库Tag的数量
10980
- 注意:此字段可能返回 null,表示取不到有效值。
10981
10956
  :rtype: int
10982
10957
  """
10983
10958
  return self._TagCount
@@ -10989,7 +10964,6 @@ class Favors(AbstractModel):
10989
10964
  @property
10990
10965
  def Logo(self):
10991
10966
  """Logo
10992
- 注意:此字段可能返回 null,表示取不到有效值。
10993
10967
  :rtype: str
10994
10968
  """
10995
10969
  return self._Logo
@@ -13900,10 +13874,8 @@ class Permission(AbstractModel):
13900
13874
  def __init__(self):
13901
13875
  r"""
13902
13876
  :param _Resource: 资源路径,目前仅支持Namespace
13903
- 注意:此字段可能返回 null,表示取不到有效值。
13904
13877
  :type Resource: str
13905
13878
  :param _Actions: 动作,目前仅支持:tcr:PushRepository、tcr:PullRepository、tcr:CreateRepository、tcr:CreateHelmChart、tcr:DescribeHelmCharts
13906
- 注意:此字段可能返回 null,表示取不到有效值。
13907
13879
  :type Actions: list of str
13908
13880
  """
13909
13881
  self._Resource = None
@@ -13912,7 +13884,6 @@ class Permission(AbstractModel):
13912
13884
  @property
13913
13885
  def Resource(self):
13914
13886
  """资源路径,目前仅支持Namespace
13915
- 注意:此字段可能返回 null,表示取不到有效值。
13916
13887
  :rtype: str
13917
13888
  """
13918
13889
  return self._Resource
@@ -13924,7 +13895,6 @@ class Permission(AbstractModel):
13924
13895
  @property
13925
13896
  def Actions(self):
13926
13897
  """动作,目前仅支持:tcr:PushRepository、tcr:PullRepository、tcr:CreateRepository、tcr:CreateHelmChart、tcr:DescribeHelmCharts
13927
- 注意:此字段可能返回 null,表示取不到有效值。
13928
13898
  :rtype: list of str
13929
13899
  """
13930
13900
  return self._Actions
@@ -14129,16 +14099,12 @@ DeleteFailed, 实例删除失败
14129
14099
  :param _InternalEndpoint: 实例内部访问地址
14130
14100
  :type InternalEndpoint: str
14131
14101
  :param _TagSpecification: 实例云标签
14132
- 注意:此字段可能返回 null,表示取不到有效值。
14133
14102
  :type TagSpecification: :class:`tencentcloud.tcr.v20190924.models.TagSpecification`
14134
14103
  :param _ExpiredAt: 实例过期时间(预付费)
14135
- 注意:此字段可能返回 null,表示取不到有效值。
14136
14104
  :type ExpiredAt: str
14137
14105
  :param _PayMod: 实例付费类型,0表示后付费,1表示预付费
14138
- 注意:此字段可能返回 null,表示取不到有效值。
14139
14106
  :type PayMod: int
14140
14107
  :param _RenewFlag: 预付费续费标识,0表示手动续费,1表示自动续费,2不续费并且不通知
14141
- 注意:此字段可能返回 null,表示取不到有效值。
14142
14108
  :type RenewFlag: int
14143
14109
  :param _DeletionProtection: 是否开启实例删除保护,false表示不开启
14144
14110
  :type DeletionProtection: bool
@@ -14295,7 +14261,6 @@ DeleteFailed, 实例删除失败
14295
14261
  @property
14296
14262
  def TagSpecification(self):
14297
14263
  """实例云标签
14298
- 注意:此字段可能返回 null,表示取不到有效值。
14299
14264
  :rtype: :class:`tencentcloud.tcr.v20190924.models.TagSpecification`
14300
14265
  """
14301
14266
  return self._TagSpecification
@@ -14307,7 +14272,6 @@ DeleteFailed, 实例删除失败
14307
14272
  @property
14308
14273
  def ExpiredAt(self):
14309
14274
  """实例过期时间(预付费)
14310
- 注意:此字段可能返回 null,表示取不到有效值。
14311
14275
  :rtype: str
14312
14276
  """
14313
14277
  return self._ExpiredAt
@@ -14319,7 +14283,6 @@ DeleteFailed, 实例删除失败
14319
14283
  @property
14320
14284
  def PayMod(self):
14321
14285
  """实例付费类型,0表示后付费,1表示预付费
14322
- 注意:此字段可能返回 null,表示取不到有效值。
14323
14286
  :rtype: int
14324
14287
  """
14325
14288
  return self._PayMod
@@ -14331,7 +14294,6 @@ DeleteFailed, 实例删除失败
14331
14294
  @property
14332
14295
  def RenewFlag(self):
14333
14296
  """预付费续费标识,0表示手动续费,1表示自动续费,2不续费并且不通知
14334
- 注意:此字段可能返回 null,表示取不到有效值。
14335
14297
  :rtype: int
14336
14298
  """
14337
14299
  return self._RenewFlag
@@ -14510,7 +14472,6 @@ class RegistryStatus(AbstractModel):
14510
14472
  :param _Status: 实例的状态
14511
14473
  :type Status: str
14512
14474
  :param _Conditions: 附加状态
14513
- 注意:此字段可能返回 null,表示取不到有效值。
14514
14475
  :type Conditions: list of RegistryCondition
14515
14476
  """
14516
14477
  self._RegistryId = None
@@ -14542,7 +14503,6 @@ class RegistryStatus(AbstractModel):
14542
14503
  @property
14543
14504
  def Conditions(self):
14544
14505
  """附加状态
14545
- 注意:此字段可能返回 null,表示取不到有效值。
14546
14506
  :rtype: list of RegistryCondition
14547
14507
  """
14548
14508
  return self._Conditions
@@ -15365,7 +15325,6 @@ class RepositoryInfoResp(AbstractModel):
15365
15325
  :param _CreationTime: 创建时间
15366
15326
  :type CreationTime: str
15367
15327
  :param _Description: 镜像仓库描述
15368
- 注意:此字段可能返回 null,表示取不到有效值。
15369
15328
  :type Description: str
15370
15329
  :param _Public: 是否为公有镜像
15371
15330
  :type Public: int
@@ -15436,7 +15395,6 @@ class RepositoryInfoResp(AbstractModel):
15436
15395
  @property
15437
15396
  def Description(self):
15438
15397
  """镜像仓库描述
15439
- 注意:此字段可能返回 null,表示取不到有效值。
15440
15398
  :rtype: str
15441
15399
  """
15442
15400
  return self._Description
@@ -15975,7 +15933,6 @@ class SameImagesResp(AbstractModel):
15975
15933
  def __init__(self):
15976
15934
  r"""
15977
15935
  :param _SameImages: tag列表
15978
- 注意:此字段可能返回 null,表示取不到有效值。
15979
15936
  :type SameImages: list of str
15980
15937
  """
15981
15938
  self._SameImages = None
@@ -15983,7 +15940,6 @@ class SameImagesResp(AbstractModel):
15983
15940
  @property
15984
15941
  def SameImages(self):
15985
15942
  """tag列表
15986
- 注意:此字段可能返回 null,表示取不到有效值。
15987
15943
  :rtype: list of str
15988
15944
  """
15989
15945
  return self._SameImages
@@ -16216,25 +16172,19 @@ class ServiceAccount(AbstractModel):
16216
16172
  def __init__(self):
16217
16173
  r"""
16218
16174
  :param _Name: 服务级账号名
16219
- 注意:此字段可能返回 null,表示取不到有效值。
16220
16175
  :type Name: str
16221
16176
  :param _Description: 描述
16222
- 注意:此字段可能返回 null,表示取不到有效值。
16223
16177
  :type Description: str
16224
16178
  :param _Disable: 是否禁用
16225
- 注意:此字段可能返回 null,表示取不到有效值。
16226
16179
  :type Disable: bool
16227
16180
  :param _ExpiresAt: 过期时间
16228
- 注意:此字段可能返回 null,表示取不到有效值。
16229
16181
  :type ExpiresAt: int
16230
16182
  :param _CreateTime: 创建时间
16231
16183
  注意:此字段可能返回 null,表示取不到有效值。
16232
16184
  :type CreateTime: str
16233
16185
  :param _UpdateTime: 更新时间
16234
- 注意:此字段可能返回 null,表示取不到有效值。
16235
16186
  :type UpdateTime: str
16236
16187
  :param _Permissions: 策略
16237
- 注意:此字段可能返回 null,表示取不到有效值。
16238
16188
  :type Permissions: list of Permission
16239
16189
  """
16240
16190
  self._Name = None
@@ -16248,7 +16198,6 @@ class ServiceAccount(AbstractModel):
16248
16198
  @property
16249
16199
  def Name(self):
16250
16200
  """服务级账号名
16251
- 注意:此字段可能返回 null,表示取不到有效值。
16252
16201
  :rtype: str
16253
16202
  """
16254
16203
  return self._Name
@@ -16260,7 +16209,6 @@ class ServiceAccount(AbstractModel):
16260
16209
  @property
16261
16210
  def Description(self):
16262
16211
  """描述
16263
- 注意:此字段可能返回 null,表示取不到有效值。
16264
16212
  :rtype: str
16265
16213
  """
16266
16214
  return self._Description
@@ -16272,7 +16220,6 @@ class ServiceAccount(AbstractModel):
16272
16220
  @property
16273
16221
  def Disable(self):
16274
16222
  """是否禁用
16275
- 注意:此字段可能返回 null,表示取不到有效值。
16276
16223
  :rtype: bool
16277
16224
  """
16278
16225
  return self._Disable
@@ -16284,7 +16231,6 @@ class ServiceAccount(AbstractModel):
16284
16231
  @property
16285
16232
  def ExpiresAt(self):
16286
16233
  """过期时间
16287
- 注意:此字段可能返回 null,表示取不到有效值。
16288
16234
  :rtype: int
16289
16235
  """
16290
16236
  return self._ExpiresAt
@@ -16308,7 +16254,6 @@ class ServiceAccount(AbstractModel):
16308
16254
  @property
16309
16255
  def UpdateTime(self):
16310
16256
  """更新时间
16311
- 注意:此字段可能返回 null,表示取不到有效值。
16312
16257
  :rtype: str
16313
16258
  """
16314
16259
  return self._UpdateTime
@@ -16320,7 +16265,6 @@ class ServiceAccount(AbstractModel):
16320
16265
  @property
16321
16266
  def Permissions(self):
16322
16267
  """策略
16323
- 注意:此字段可能返回 null,表示取不到有效值。
16324
16268
  :rtype: list of Permission
16325
16269
  """
16326
16270
  return self._Permissions
@@ -16361,10 +16305,8 @@ class Tag(AbstractModel):
16361
16305
  def __init__(self):
16362
16306
  r"""
16363
16307
  :param _Key: 云标签的key
16364
- 注意:此字段可能返回 null,表示取不到有效值。
16365
16308
  :type Key: str
16366
16309
  :param _Value: 云标签的值
16367
- 注意:此字段可能返回 null,表示取不到有效值。
16368
16310
  :type Value: str
16369
16311
  """
16370
16312
  self._Key = None
@@ -16373,7 +16315,6 @@ class Tag(AbstractModel):
16373
16315
  @property
16374
16316
  def Key(self):
16375
16317
  """云标签的key
16376
- 注意:此字段可能返回 null,表示取不到有效值。
16377
16318
  :rtype: str
16378
16319
  """
16379
16320
  return self._Key
@@ -16385,7 +16326,6 @@ class Tag(AbstractModel):
16385
16326
  @property
16386
16327
  def Value(self):
16387
16328
  """云标签的值
16388
- 注意:此字段可能返回 null,表示取不到有效值。
16389
16329
  :rtype: str
16390
16330
  """
16391
16331
  return self._Value
@@ -16426,7 +16366,6 @@ class TagInfo(AbstractModel):
16426
16366
  :param _CreationTime: 制品的创建时间
16427
16367
  :type CreationTime: str
16428
16368
  :param _DurationDays: 制品创建至今时间长度
16429
- 注意:此字段可能返回 null,表示取不到有效值。
16430
16369
  :type DurationDays: str
16431
16370
  :param _Author: 标注的制品作者
16432
16371
  :type Author: str
@@ -16521,7 +16460,6 @@ class TagInfo(AbstractModel):
16521
16460
  @property
16522
16461
  def DurationDays(self):
16523
16462
  """制品创建至今时间长度
16524
- 注意:此字段可能返回 null,表示取不到有效值。
16525
16463
  :rtype: str
16526
16464
  """
16527
16465
  return self._DurationDays
@@ -16750,10 +16688,8 @@ class TagSpecification(AbstractModel):
16750
16688
  def __init__(self):
16751
16689
  r"""
16752
16690
  :param _ResourceType: 默认值为instance
16753
- 注意:此字段可能返回 null,表示取不到有效值。
16754
16691
  :type ResourceType: str
16755
16692
  :param _Tags: 云标签数组
16756
- 注意:此字段可能返回 null,表示取不到有效值。
16757
16693
  :type Tags: list of Tag
16758
16694
  """
16759
16695
  self._ResourceType = None
@@ -16762,7 +16698,6 @@ class TagSpecification(AbstractModel):
16762
16698
  @property
16763
16699
  def ResourceType(self):
16764
16700
  """默认值为instance
16765
- 注意:此字段可能返回 null,表示取不到有效值。
16766
16701
  :rtype: str
16767
16702
  """
16768
16703
  return self._ResourceType
@@ -16774,7 +16709,6 @@ class TagSpecification(AbstractModel):
16774
16709
  @property
16775
16710
  def Tags(self):
16776
16711
  """云标签数组
16777
- 注意:此字段可能返回 null,表示取不到有效值。
16778
16712
  :rtype: list of Tag
16779
16713
  """
16780
16714
  return self._Tags
@@ -16816,12 +16750,10 @@ class TaskDetail(AbstractModel):
16816
16750
  :param _TaskStatus: 任务状态
16817
16751
  :type TaskStatus: str
16818
16752
  :param _TaskMessage: 任务的状态信息
16819
- 注意:此字段可能返回 null,表示取不到有效值。
16820
16753
  :type TaskMessage: str
16821
16754
  :param _CreatedTime: 任务开始时间
16822
16755
  :type CreatedTime: str
16823
16756
  :param _FinishedTime: 任务结束时间
16824
- 注意:此字段可能返回 null,表示取不到有效值。
16825
16757
  :type FinishedTime: str
16826
16758
  """
16827
16759
  self._TaskName = None
@@ -16867,7 +16799,6 @@ class TaskDetail(AbstractModel):
16867
16799
  @property
16868
16800
  def TaskMessage(self):
16869
16801
  """任务的状态信息
16870
- 注意:此字段可能返回 null,表示取不到有效值。
16871
16802
  :rtype: str
16872
16803
  """
16873
16804
  return self._TaskMessage
@@ -16890,7 +16821,6 @@ class TaskDetail(AbstractModel):
16890
16821
  @property
16891
16822
  def FinishedTime(self):
16892
16823
  """任务结束时间
16893
- 注意:此字段可能返回 null,表示取不到有效值。
16894
16824
  :rtype: str
16895
16825
  """
16896
16826
  return self._FinishedTime
@@ -16933,10 +16863,8 @@ class TcrImageInfo(AbstractModel):
16933
16863
  :param _UpdateTime: 更新时间
16934
16864
  :type UpdateTime: str
16935
16865
  :param _Kind: 制品类型
16936
- 注意:此字段可能返回 null,表示取不到有效值。
16937
16866
  :type Kind: str
16938
16867
  :param _KmsSignature: KMS 签名信息
16939
- 注意:此字段可能返回 null,表示取不到有效值。
16940
16868
  :type KmsSignature: str
16941
16869
  """
16942
16870
  self._Digest = None
@@ -16993,7 +16921,6 @@ class TcrImageInfo(AbstractModel):
16993
16921
  @property
16994
16922
  def Kind(self):
16995
16923
  """制品类型
16996
- 注意:此字段可能返回 null,表示取不到有效值。
16997
16924
  :rtype: str
16998
16925
  """
16999
16926
  return self._Kind
@@ -17005,7 +16932,6 @@ class TcrImageInfo(AbstractModel):
17005
16932
  @property
17006
16933
  def KmsSignature(self):
17007
16934
  """KMS 签名信息
17008
- 注意:此字段可能返回 null,表示取不到有效值。
17009
16935
  :rtype: str
17010
16936
  """
17011
16937
  return self._KmsSignature
@@ -17159,10 +17085,8 @@ class TcrNamespaceInfo(AbstractModel):
17159
17085
  :param _NamespaceId: 命名空间的Id
17160
17086
  :type NamespaceId: int
17161
17087
  :param _TagSpecification: 实例云标签
17162
- 注意:此字段可能返回 null,表示取不到有效值。
17163
17088
  :type TagSpecification: :class:`tencentcloud.tcr.v20190924.models.TagSpecification`
17164
17089
  :param _Metadata: 命名空间元数据
17165
- 注意:此字段可能返回 null,表示取不到有效值。
17166
17090
  :type Metadata: list of KeyValueString
17167
17091
  :param _CVEWhitelistItems: 漏洞白名单列表
17168
17092
  :type CVEWhitelistItems: list of CVEWhitelistItem
@@ -17231,7 +17155,6 @@ class TcrNamespaceInfo(AbstractModel):
17231
17155
  @property
17232
17156
  def TagSpecification(self):
17233
17157
  """实例云标签
17234
- 注意:此字段可能返回 null,表示取不到有效值。
17235
17158
  :rtype: :class:`tencentcloud.tcr.v20190924.models.TagSpecification`
17236
17159
  """
17237
17160
  return self._TagSpecification
@@ -17243,7 +17166,6 @@ class TcrNamespaceInfo(AbstractModel):
17243
17166
  @property
17244
17167
  def Metadata(self):
17245
17168
  """命名空间元数据
17246
- 注意:此字段可能返回 null,表示取不到有效值。
17247
17169
  :rtype: list of KeyValueString
17248
17170
  """
17249
17171
  return self._Metadata
@@ -17466,7 +17388,6 @@ class TriggerInvokeCondition(AbstractModel):
17466
17388
  :param _InvokeMethod: 触发方式
17467
17389
  :type InvokeMethod: str
17468
17390
  :param _InvokeExpr: 触发表达式
17469
- 注意:此字段可能返回 null,表示取不到有效值。
17470
17391
  :type InvokeExpr: str
17471
17392
  """
17472
17393
  self._InvokeMethod = None
@@ -17486,7 +17407,6 @@ class TriggerInvokeCondition(AbstractModel):
17486
17407
  @property
17487
17408
  def InvokeExpr(self):
17488
17409
  """触发表达式
17489
- 注意:此字段可能返回 null,表示取不到有效值。
17490
17410
  :rtype: str
17491
17411
  """
17492
17412
  return self._InvokeExpr
@@ -17517,22 +17437,16 @@ class TriggerInvokePara(AbstractModel):
17517
17437
  def __init__(self):
17518
17438
  r"""
17519
17439
  :param _AppId: AppId
17520
- 注意:此字段可能返回 null,表示取不到有效值。
17521
17440
  :type AppId: str
17522
17441
  :param _ClusterId: TKE集群ID
17523
- 注意:此字段可能返回 null,表示取不到有效值。
17524
17442
  :type ClusterId: str
17525
17443
  :param _Namespace: TKE集群命名空间
17526
- 注意:此字段可能返回 null,表示取不到有效值。
17527
17444
  :type Namespace: str
17528
17445
  :param _ServiceName: TKE集群工作负载名称
17529
- 注意:此字段可能返回 null,表示取不到有效值。
17530
17446
  :type ServiceName: str
17531
17447
  :param _ContainerName: TKE集群工作负载中容器名称
17532
- 注意:此字段可能返回 null,表示取不到有效值。
17533
17448
  :type ContainerName: str
17534
17449
  :param _ClusterRegion: TKE集群地域数字ID
17535
- 注意:此字段可能返回 null,表示取不到有效值。
17536
17450
  :type ClusterRegion: int
17537
17451
  """
17538
17452
  self._AppId = None
@@ -17545,7 +17459,6 @@ class TriggerInvokePara(AbstractModel):
17545
17459
  @property
17546
17460
  def AppId(self):
17547
17461
  """AppId
17548
- 注意:此字段可能返回 null,表示取不到有效值。
17549
17462
  :rtype: str
17550
17463
  """
17551
17464
  return self._AppId
@@ -17557,7 +17470,6 @@ class TriggerInvokePara(AbstractModel):
17557
17470
  @property
17558
17471
  def ClusterId(self):
17559
17472
  """TKE集群ID
17560
- 注意:此字段可能返回 null,表示取不到有效值。
17561
17473
  :rtype: str
17562
17474
  """
17563
17475
  return self._ClusterId
@@ -17569,7 +17481,6 @@ class TriggerInvokePara(AbstractModel):
17569
17481
  @property
17570
17482
  def Namespace(self):
17571
17483
  """TKE集群命名空间
17572
- 注意:此字段可能返回 null,表示取不到有效值。
17573
17484
  :rtype: str
17574
17485
  """
17575
17486
  return self._Namespace
@@ -17581,7 +17492,6 @@ class TriggerInvokePara(AbstractModel):
17581
17492
  @property
17582
17493
  def ServiceName(self):
17583
17494
  """TKE集群工作负载名称
17584
- 注意:此字段可能返回 null,表示取不到有效值。
17585
17495
  :rtype: str
17586
17496
  """
17587
17497
  return self._ServiceName
@@ -17593,7 +17503,6 @@ class TriggerInvokePara(AbstractModel):
17593
17503
  @property
17594
17504
  def ContainerName(self):
17595
17505
  """TKE集群工作负载中容器名称
17596
- 注意:此字段可能返回 null,表示取不到有效值。
17597
17506
  :rtype: str
17598
17507
  """
17599
17508
  return self._ContainerName
@@ -17605,7 +17514,6 @@ class TriggerInvokePara(AbstractModel):
17605
17514
  @property
17606
17515
  def ClusterRegion(self):
17607
17516
  """TKE集群地域数字ID
17608
- 注意:此字段可能返回 null,表示取不到有效值。
17609
17517
  :rtype: int
17610
17518
  """
17611
17519
  return self._ClusterRegion
@@ -17640,10 +17548,8 @@ class TriggerInvokeResult(AbstractModel):
17640
17548
  def __init__(self):
17641
17549
  r"""
17642
17550
  :param _ReturnCode: 请求TKE返回值
17643
- 注意:此字段可能返回 null,表示取不到有效值。
17644
17551
  :type ReturnCode: int
17645
17552
  :param _ReturnMsg: 请求TKE返回信息
17646
- 注意:此字段可能返回 null,表示取不到有效值。
17647
17553
  :type ReturnMsg: str
17648
17554
  """
17649
17555
  self._ReturnCode = None
@@ -17652,7 +17558,6 @@ class TriggerInvokeResult(AbstractModel):
17652
17558
  @property
17653
17559
  def ReturnCode(self):
17654
17560
  """请求TKE返回值
17655
- 注意:此字段可能返回 null,表示取不到有效值。
17656
17561
  :rtype: int
17657
17562
  """
17658
17563
  return self._ReturnCode
@@ -17664,7 +17569,6 @@ class TriggerInvokeResult(AbstractModel):
17664
17569
  @property
17665
17570
  def ReturnMsg(self):
17666
17571
  """请求TKE返回信息
17667
- 注意:此字段可能返回 null,表示取不到有效值。
17668
17572
  :rtype: str
17669
17573
  """
17670
17574
  return self._ReturnMsg
@@ -17695,31 +17599,22 @@ class TriggerLogResp(AbstractModel):
17695
17599
  def __init__(self):
17696
17600
  r"""
17697
17601
  :param _RepoName: 仓库名称
17698
- 注意:此字段可能返回 null,表示取不到有效值。
17699
17602
  :type RepoName: str
17700
17603
  :param _TagName: Tag名称
17701
- 注意:此字段可能返回 null,表示取不到有效值。
17702
17604
  :type TagName: str
17703
17605
  :param _TriggerName: 触发器名称
17704
- 注意:此字段可能返回 null,表示取不到有效值。
17705
17606
  :type TriggerName: str
17706
17607
  :param _InvokeSource: 触发方式
17707
- 注意:此字段可能返回 null,表示取不到有效值。
17708
17608
  :type InvokeSource: str
17709
17609
  :param _InvokeAction: 触发动作
17710
- 注意:此字段可能返回 null,表示取不到有效值。
17711
17610
  :type InvokeAction: str
17712
17611
  :param _InvokeTime: 触发时间
17713
- 注意:此字段可能返回 null,表示取不到有效值。
17714
17612
  :type InvokeTime: str
17715
17613
  :param _InvokeCondition: 触发条件
17716
- 注意:此字段可能返回 null,表示取不到有效值。
17717
17614
  :type InvokeCondition: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokeCondition`
17718
17615
  :param _InvokePara: 触发参数
17719
- 注意:此字段可能返回 null,表示取不到有效值。
17720
17616
  :type InvokePara: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokePara`
17721
17617
  :param _InvokeResult: 触发结果
17722
- 注意:此字段可能返回 null,表示取不到有效值。
17723
17618
  :type InvokeResult: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokeResult`
17724
17619
  """
17725
17620
  self._RepoName = None
@@ -17735,7 +17630,6 @@ class TriggerLogResp(AbstractModel):
17735
17630
  @property
17736
17631
  def RepoName(self):
17737
17632
  """仓库名称
17738
- 注意:此字段可能返回 null,表示取不到有效值。
17739
17633
  :rtype: str
17740
17634
  """
17741
17635
  return self._RepoName
@@ -17747,7 +17641,6 @@ class TriggerLogResp(AbstractModel):
17747
17641
  @property
17748
17642
  def TagName(self):
17749
17643
  """Tag名称
17750
- 注意:此字段可能返回 null,表示取不到有效值。
17751
17644
  :rtype: str
17752
17645
  """
17753
17646
  return self._TagName
@@ -17759,7 +17652,6 @@ class TriggerLogResp(AbstractModel):
17759
17652
  @property
17760
17653
  def TriggerName(self):
17761
17654
  """触发器名称
17762
- 注意:此字段可能返回 null,表示取不到有效值。
17763
17655
  :rtype: str
17764
17656
  """
17765
17657
  return self._TriggerName
@@ -17771,7 +17663,6 @@ class TriggerLogResp(AbstractModel):
17771
17663
  @property
17772
17664
  def InvokeSource(self):
17773
17665
  """触发方式
17774
- 注意:此字段可能返回 null,表示取不到有效值。
17775
17666
  :rtype: str
17776
17667
  """
17777
17668
  return self._InvokeSource
@@ -17783,7 +17674,6 @@ class TriggerLogResp(AbstractModel):
17783
17674
  @property
17784
17675
  def InvokeAction(self):
17785
17676
  """触发动作
17786
- 注意:此字段可能返回 null,表示取不到有效值。
17787
17677
  :rtype: str
17788
17678
  """
17789
17679
  return self._InvokeAction
@@ -17795,7 +17685,6 @@ class TriggerLogResp(AbstractModel):
17795
17685
  @property
17796
17686
  def InvokeTime(self):
17797
17687
  """触发时间
17798
- 注意:此字段可能返回 null,表示取不到有效值。
17799
17688
  :rtype: str
17800
17689
  """
17801
17690
  return self._InvokeTime
@@ -17807,7 +17696,6 @@ class TriggerLogResp(AbstractModel):
17807
17696
  @property
17808
17697
  def InvokeCondition(self):
17809
17698
  """触发条件
17810
- 注意:此字段可能返回 null,表示取不到有效值。
17811
17699
  :rtype: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokeCondition`
17812
17700
  """
17813
17701
  return self._InvokeCondition
@@ -17819,7 +17707,6 @@ class TriggerLogResp(AbstractModel):
17819
17707
  @property
17820
17708
  def InvokePara(self):
17821
17709
  """触发参数
17822
- 注意:此字段可能返回 null,表示取不到有效值。
17823
17710
  :rtype: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokePara`
17824
17711
  """
17825
17712
  return self._InvokePara
@@ -17831,7 +17718,6 @@ class TriggerLogResp(AbstractModel):
17831
17718
  @property
17832
17719
  def InvokeResult(self):
17833
17720
  """触发结果
17834
- 注意:此字段可能返回 null,表示取不到有效值。
17835
17721
  :rtype: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokeResult`
17836
17722
  """
17837
17723
  return self._InvokeResult
@@ -17875,25 +17761,18 @@ class TriggerResp(AbstractModel):
17875
17761
  def __init__(self):
17876
17762
  r"""
17877
17763
  :param _TriggerName: 触发器名称
17878
- 注意:此字段可能返回 null,表示取不到有效值。
17879
17764
  :type TriggerName: str
17880
17765
  :param _InvokeSource: 触发来源
17881
- 注意:此字段可能返回 null,表示取不到有效值。
17882
17766
  :type InvokeSource: str
17883
17767
  :param _InvokeAction: 触发动作
17884
- 注意:此字段可能返回 null,表示取不到有效值。
17885
17768
  :type InvokeAction: str
17886
17769
  :param _CreateTime: 创建时间
17887
- 注意:此字段可能返回 null,表示取不到有效值。
17888
17770
  :type CreateTime: str
17889
17771
  :param _UpdateTime: 更新时间
17890
- 注意:此字段可能返回 null,表示取不到有效值。
17891
17772
  :type UpdateTime: str
17892
17773
  :param _InvokeCondition: 触发条件
17893
- 注意:此字段可能返回 null,表示取不到有效值。
17894
17774
  :type InvokeCondition: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokeCondition`
17895
17775
  :param _InvokePara: 触发器参数
17896
- 注意:此字段可能返回 null,表示取不到有效值。
17897
17776
  :type InvokePara: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokePara`
17898
17777
  """
17899
17778
  self._TriggerName = None
@@ -17907,7 +17786,6 @@ class TriggerResp(AbstractModel):
17907
17786
  @property
17908
17787
  def TriggerName(self):
17909
17788
  """触发器名称
17910
- 注意:此字段可能返回 null,表示取不到有效值。
17911
17789
  :rtype: str
17912
17790
  """
17913
17791
  return self._TriggerName
@@ -17919,7 +17797,6 @@ class TriggerResp(AbstractModel):
17919
17797
  @property
17920
17798
  def InvokeSource(self):
17921
17799
  """触发来源
17922
- 注意:此字段可能返回 null,表示取不到有效值。
17923
17800
  :rtype: str
17924
17801
  """
17925
17802
  return self._InvokeSource
@@ -17931,7 +17808,6 @@ class TriggerResp(AbstractModel):
17931
17808
  @property
17932
17809
  def InvokeAction(self):
17933
17810
  """触发动作
17934
- 注意:此字段可能返回 null,表示取不到有效值。
17935
17811
  :rtype: str
17936
17812
  """
17937
17813
  return self._InvokeAction
@@ -17943,7 +17819,6 @@ class TriggerResp(AbstractModel):
17943
17819
  @property
17944
17820
  def CreateTime(self):
17945
17821
  """创建时间
17946
- 注意:此字段可能返回 null,表示取不到有效值。
17947
17822
  :rtype: str
17948
17823
  """
17949
17824
  return self._CreateTime
@@ -17955,7 +17830,6 @@ class TriggerResp(AbstractModel):
17955
17830
  @property
17956
17831
  def UpdateTime(self):
17957
17832
  """更新时间
17958
- 注意:此字段可能返回 null,表示取不到有效值。
17959
17833
  :rtype: str
17960
17834
  """
17961
17835
  return self._UpdateTime
@@ -17967,7 +17841,6 @@ class TriggerResp(AbstractModel):
17967
17841
  @property
17968
17842
  def InvokeCondition(self):
17969
17843
  """触发条件
17970
- 注意:此字段可能返回 null,表示取不到有效值。
17971
17844
  :rtype: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokeCondition`
17972
17845
  """
17973
17846
  return self._InvokeCondition
@@ -17979,7 +17852,6 @@ class TriggerResp(AbstractModel):
17979
17852
  @property
17980
17853
  def InvokePara(self):
17981
17854
  """触发器参数
17982
- 注意:此字段可能返回 null,表示取不到有效值。
17983
17855
  :rtype: :class:`tencentcloud.tcr.v20190924.models.TriggerInvokePara`
17984
17856
  """
17985
17857
  return self._InvokePara
@@ -18279,13 +18151,10 @@ class VpcPrivateDomainStatus(AbstractModel):
18279
18151
  def __init__(self):
18280
18152
  r"""
18281
18153
  :param _Region: 地域
18282
- 注意:此字段可能返回 null,表示取不到有效值。
18283
18154
  :type Region: str
18284
18155
  :param _VpcId: unique vpc id
18285
- 注意:此字段可能返回 null,表示取不到有效值。
18286
18156
  :type VpcId: str
18287
18157
  :param _Status: ENABLE代表已经开启,DISABLE代表未开启,ERROR代表查询出错
18288
- 注意:此字段可能返回 null,表示取不到有效值。
18289
18158
  :type Status: str
18290
18159
  """
18291
18160
  self._Region = None
@@ -18295,7 +18164,6 @@ class VpcPrivateDomainStatus(AbstractModel):
18295
18164
  @property
18296
18165
  def Region(self):
18297
18166
  """地域
18298
- 注意:此字段可能返回 null,表示取不到有效值。
18299
18167
  :rtype: str
18300
18168
  """
18301
18169
  return self._Region
@@ -18307,7 +18175,6 @@ class VpcPrivateDomainStatus(AbstractModel):
18307
18175
  @property
18308
18176
  def VpcId(self):
18309
18177
  """unique vpc id
18310
- 注意:此字段可能返回 null,表示取不到有效值。
18311
18178
  :rtype: str
18312
18179
  """
18313
18180
  return self._VpcId
@@ -18319,7 +18186,6 @@ class VpcPrivateDomainStatus(AbstractModel):
18319
18186
  @property
18320
18187
  def Status(self):
18321
18188
  """ENABLE代表已经开启,DISABLE代表未开启,ERROR代表查询出错
18322
- 注意:此字段可能返回 null,表示取不到有效值。
18323
18189
  :rtype: str
18324
18190
  """
18325
18191
  return self._Status