tencentcloud-sdk-python 3.0.1367__py2.py3-none-any.whl → 3.0.1369__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 (36) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/autoscaling_client.py +2 -1
  3. tencentcloud/autoscaling/v20180419/models.py +198 -102
  4. tencentcloud/cbs/v20170312/cbs_client.py +1 -1
  5. tencentcloud/cbs/v20170312/models.py +41 -44
  6. tencentcloud/ccc/v20200210/models.py +15 -0
  7. tencentcloud/cdn/v20180606/cdn_client.py +45 -15
  8. tencentcloud/cfs/v20190719/models.py +15 -0
  9. tencentcloud/cvm/v20170312/cvm_client.py +1 -1
  10. tencentcloud/cvm/v20170312/errorcodes.py +1 -1
  11. tencentcloud/cvm/v20170312/models.py +83 -40
  12. tencentcloud/domain/v20180808/domain_client.py +4 -2
  13. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  14. tencentcloud/domain/v20180808/models.py +254 -124
  15. tencentcloud/ioa/v20220601/models.py +19 -4
  16. tencentcloud/iotexplorer/v20190423/models.py +94 -4
  17. tencentcloud/iotvideoindustry/v20201201/models.py +15 -0
  18. tencentcloud/lcic/v20220817/errorcodes.py +1 -1
  19. tencentcloud/lke/v20231130/models.py +10 -2
  20. tencentcloud/mps/v20190612/models.py +2 -2
  21. tencentcloud/ocr/v20181119/models.py +23 -2
  22. tencentcloud/redis/v20180412/models.py +159 -6
  23. tencentcloud/tat/v20201028/errorcodes.py +6 -0
  24. tencentcloud/tat/v20201028/models.py +78 -32
  25. tencentcloud/tcss/v20201101/models.py +45 -0
  26. tencentcloud/teo/v20220901/models.py +35 -10
  27. tencentcloud/trtc/v20190722/models.py +2 -2
  28. tencentcloud/vod/v20180717/models.py +6 -6
  29. tencentcloud/vpc/v20170312/models.py +30 -74
  30. tencentcloud/wedata/v20210820/models.py +322 -0
  31. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  32. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/METADATA +1 -1
  33. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/RECORD +36 -36
  34. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/LICENSE +0 -0
  35. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/WHEEL +0 -0
  36. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/top_level.txt +0 -0
@@ -12117,17 +12117,29 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
12117
12117
 
12118
12118
  def __init__(self):
12119
12119
  r"""
12120
- :param _Price: 价格,单位:分
12120
+ :param _Price: 价格
12121
12121
  :type Price: float
12122
+ :param _HighPrecisionPrice: 高精度价格
12123
+ :type HighPrecisionPrice: float
12124
+ :param _Currency: 币种
12125
+ :type Currency: str
12126
+ :param _AmountUnit: 价格金额单位
12127
+
12128
+ - pent: 分
12129
+ - microPent: 微分
12130
+ :type AmountUnit: str
12122
12131
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12123
12132
  :type RequestId: str
12124
12133
  """
12125
12134
  self._Price = None
12135
+ self._HighPrecisionPrice = None
12136
+ self._Currency = None
12137
+ self._AmountUnit = None
12126
12138
  self._RequestId = None
12127
12139
 
12128
12140
  @property
12129
12141
  def Price(self):
12130
- """价格,单位:分
12142
+ """价格
12131
12143
  :rtype: float
12132
12144
  """
12133
12145
  return self._Price
@@ -12136,6 +12148,42 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
12136
12148
  def Price(self, Price):
12137
12149
  self._Price = Price
12138
12150
 
12151
+ @property
12152
+ def HighPrecisionPrice(self):
12153
+ """高精度价格
12154
+ :rtype: float
12155
+ """
12156
+ return self._HighPrecisionPrice
12157
+
12158
+ @HighPrecisionPrice.setter
12159
+ def HighPrecisionPrice(self, HighPrecisionPrice):
12160
+ self._HighPrecisionPrice = HighPrecisionPrice
12161
+
12162
+ @property
12163
+ def Currency(self):
12164
+ """币种
12165
+ :rtype: str
12166
+ """
12167
+ return self._Currency
12168
+
12169
+ @Currency.setter
12170
+ def Currency(self, Currency):
12171
+ self._Currency = Currency
12172
+
12173
+ @property
12174
+ def AmountUnit(self):
12175
+ """价格金额单位
12176
+
12177
+ - pent: 分
12178
+ - microPent: 微分
12179
+ :rtype: str
12180
+ """
12181
+ return self._AmountUnit
12182
+
12183
+ @AmountUnit.setter
12184
+ def AmountUnit(self, AmountUnit):
12185
+ self._AmountUnit = AmountUnit
12186
+
12139
12187
  @property
12140
12188
  def RequestId(self):
12141
12189
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -12150,6 +12198,9 @@ class InquiryPriceCreateInstanceResponse(AbstractModel):
12150
12198
 
12151
12199
  def _deserialize(self, params):
12152
12200
  self._Price = params.get("Price")
12201
+ self._HighPrecisionPrice = params.get("HighPrecisionPrice")
12202
+ self._Currency = params.get("Currency")
12203
+ self._AmountUnit = params.get("AmountUnit")
12153
12204
  self._RequestId = params.get("RequestId")
12154
12205
 
12155
12206
 
@@ -12211,17 +12262,29 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
12211
12262
 
12212
12263
  def __init__(self):
12213
12264
  r"""
12214
- :param _Price: 价格,单位:分。
12265
+ :param _Price: 价格
12215
12266
  :type Price: float
12267
+ :param _HighPrecisionPrice: 高精度价格
12268
+ :type HighPrecisionPrice: float
12269
+ :param _Currency: 币种
12270
+ :type Currency: str
12271
+ :param _AmountUnit: 价格金额单位
12272
+
12273
+ - pent: 分
12274
+ - microPent: 微分
12275
+ :type AmountUnit: str
12216
12276
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12217
12277
  :type RequestId: str
12218
12278
  """
12219
12279
  self._Price = None
12280
+ self._HighPrecisionPrice = None
12281
+ self._Currency = None
12282
+ self._AmountUnit = None
12220
12283
  self._RequestId = None
12221
12284
 
12222
12285
  @property
12223
12286
  def Price(self):
12224
- """价格,单位:分。
12287
+ """价格
12225
12288
  :rtype: float
12226
12289
  """
12227
12290
  return self._Price
@@ -12230,6 +12293,42 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
12230
12293
  def Price(self, Price):
12231
12294
  self._Price = Price
12232
12295
 
12296
+ @property
12297
+ def HighPrecisionPrice(self):
12298
+ """高精度价格
12299
+ :rtype: float
12300
+ """
12301
+ return self._HighPrecisionPrice
12302
+
12303
+ @HighPrecisionPrice.setter
12304
+ def HighPrecisionPrice(self, HighPrecisionPrice):
12305
+ self._HighPrecisionPrice = HighPrecisionPrice
12306
+
12307
+ @property
12308
+ def Currency(self):
12309
+ """币种
12310
+ :rtype: str
12311
+ """
12312
+ return self._Currency
12313
+
12314
+ @Currency.setter
12315
+ def Currency(self, Currency):
12316
+ self._Currency = Currency
12317
+
12318
+ @property
12319
+ def AmountUnit(self):
12320
+ """价格金额单位
12321
+
12322
+ - pent: 分
12323
+ - microPent: 微分
12324
+ :rtype: str
12325
+ """
12326
+ return self._AmountUnit
12327
+
12328
+ @AmountUnit.setter
12329
+ def AmountUnit(self, AmountUnit):
12330
+ self._AmountUnit = AmountUnit
12331
+
12233
12332
  @property
12234
12333
  def RequestId(self):
12235
12334
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -12244,6 +12343,9 @@ class InquiryPriceRenewInstanceResponse(AbstractModel):
12244
12343
 
12245
12344
  def _deserialize(self, params):
12246
12345
  self._Price = params.get("Price")
12346
+ self._HighPrecisionPrice = params.get("HighPrecisionPrice")
12347
+ self._Currency = params.get("Currency")
12348
+ self._AmountUnit = params.get("AmountUnit")
12247
12349
  self._RequestId = params.get("RequestId")
12248
12350
 
12249
12351
 
@@ -12335,17 +12437,29 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
12335
12437
 
12336
12438
  def __init__(self):
12337
12439
  r"""
12338
- :param _Price: 价格,单位:分
12440
+ :param _Price: 价格
12339
12441
  :type Price: float
12442
+ :param _HighPrecisionPrice: 高精度价格
12443
+ :type HighPrecisionPrice: float
12444
+ :param _Currency: 币种
12445
+ :type Currency: str
12446
+ :param _AmountUnit: 价格金额单位
12447
+
12448
+ - pent: 分
12449
+ - microPent: 微分
12450
+ :type AmountUnit: str
12340
12451
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12341
12452
  :type RequestId: str
12342
12453
  """
12343
12454
  self._Price = None
12455
+ self._HighPrecisionPrice = None
12456
+ self._Currency = None
12457
+ self._AmountUnit = None
12344
12458
  self._RequestId = None
12345
12459
 
12346
12460
  @property
12347
12461
  def Price(self):
12348
- """价格,单位:分
12462
+ """价格
12349
12463
  :rtype: float
12350
12464
  """
12351
12465
  return self._Price
@@ -12354,6 +12468,42 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
12354
12468
  def Price(self, Price):
12355
12469
  self._Price = Price
12356
12470
 
12471
+ @property
12472
+ def HighPrecisionPrice(self):
12473
+ """高精度价格
12474
+ :rtype: float
12475
+ """
12476
+ return self._HighPrecisionPrice
12477
+
12478
+ @HighPrecisionPrice.setter
12479
+ def HighPrecisionPrice(self, HighPrecisionPrice):
12480
+ self._HighPrecisionPrice = HighPrecisionPrice
12481
+
12482
+ @property
12483
+ def Currency(self):
12484
+ """币种
12485
+ :rtype: str
12486
+ """
12487
+ return self._Currency
12488
+
12489
+ @Currency.setter
12490
+ def Currency(self, Currency):
12491
+ self._Currency = Currency
12492
+
12493
+ @property
12494
+ def AmountUnit(self):
12495
+ """价格金额单位
12496
+
12497
+ - pent: 分
12498
+ - microPent: 微分
12499
+ :rtype: str
12500
+ """
12501
+ return self._AmountUnit
12502
+
12503
+ @AmountUnit.setter
12504
+ def AmountUnit(self, AmountUnit):
12505
+ self._AmountUnit = AmountUnit
12506
+
12357
12507
  @property
12358
12508
  def RequestId(self):
12359
12509
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -12368,6 +12518,9 @@ class InquiryPriceUpgradeInstanceResponse(AbstractModel):
12368
12518
 
12369
12519
  def _deserialize(self, params):
12370
12520
  self._Price = params.get("Price")
12521
+ self._HighPrecisionPrice = params.get("HighPrecisionPrice")
12522
+ self._Currency = params.get("Currency")
12523
+ self._AmountUnit = params.get("AmountUnit")
12371
12524
  self._RequestId = params.get("RequestId")
12372
12525
 
12373
12526
 
@@ -53,6 +53,12 @@ INVALIDPARAMETERVALUE_COMMANDCONTENTINVALID = 'InvalidParameterValue.CommandCont
53
53
  # Command 名称重复。
54
54
  INVALIDPARAMETERVALUE_COMMANDNAMEDUPLICATED = 'InvalidParameterValue.CommandNameDuplicated'
55
55
 
56
+ # ID 格式错误。
57
+ INVALIDPARAMETERVALUE_ID = 'InvalidParameterValue.ID'
58
+
59
+ # ID 数组中,ID 格式错误或格式不一致。
60
+ INVALIDPARAMETERVALUE_INCONSISTENTID = 'InvalidParameterValue.InconsistentID'
61
+
56
62
  # 实例类型不一致。
57
63
  INVALIDPARAMETERVALUE_INCONSISTENTINSTANCE = 'InvalidParameterValue.InconsistentInstance'
58
64
 
@@ -976,9 +976,13 @@ class CreateInvokerRequest(AbstractModel):
976
976
 
977
977
  def __init__(self):
978
978
  r"""
979
- :param _Name: 执行器名称。
979
+ :param _Name: 执行器名称。长度不超过 120 字符。
980
980
  :type Name: str
981
- :param _Type: 执行器类型,当前仅支持周期类型执行器,取值:`SCHEDULE` 。
981
+ :param _Type: 执行器类型。
982
+
983
+ 可选取值(当前仅支持一种):
984
+
985
+ - `SCHEDULE`:周期类型执行器。
982
986
  :type Type: str
983
987
  :param _CommandId: 远程命令ID。
984
988
 
@@ -990,13 +994,15 @@ class CreateInvokerRequest(AbstractModel):
990
994
 
991
995
  实例需要安装 TAT 客户端, 且客户端为 Online 状态。可通过 [DescribeAutomationAgentStatus(查询客户端状态)](https://cloud.tencent.com/document/api/1340/52682) 接口查询客户端状态。
992
996
  :type InstanceIds: list of str
993
- :param _Username: 命令执行用户。
997
+ :param _Username: 命令执行用户。长度不超过 256 字符。
994
998
  :type Username: str
995
- :param _Parameters: 命令自定义参数。
999
+ :param _Parameters: 命令自定义参数。字段类型为 JSON encode string。
996
1000
 
997
1001
  仅在 CommandId 所指命令的 EnableParameter 为 true 时,才允许设置此参数。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取命令的 EnableParameter 设置。
998
1002
  :type Parameters: str
999
- :param _ScheduleSettings: 周期执行器设置。当创建周期执行器时,必须指定此参数。
1003
+ :param _ScheduleSettings: 周期执行器设置。
1004
+
1005
+ 当执行器类型为 `SCHEDULE` 时,必须指定此参数。
1000
1006
  :type ScheduleSettings: :class:`tencentcloud.tat.v20201028.models.ScheduleSettings`
1001
1007
  """
1002
1008
  self._Name = None
@@ -1009,7 +1015,7 @@ class CreateInvokerRequest(AbstractModel):
1009
1015
 
1010
1016
  @property
1011
1017
  def Name(self):
1012
- """执行器名称。
1018
+ """执行器名称。长度不超过 120 字符。
1013
1019
  :rtype: str
1014
1020
  """
1015
1021
  return self._Name
@@ -1020,7 +1026,11 @@ class CreateInvokerRequest(AbstractModel):
1020
1026
 
1021
1027
  @property
1022
1028
  def Type(self):
1023
- """执行器类型,当前仅支持周期类型执行器,取值:`SCHEDULE` 。
1029
+ """执行器类型。
1030
+
1031
+ 可选取值(当前仅支持一种):
1032
+
1033
+ - `SCHEDULE`:周期类型执行器。
1024
1034
  :rtype: str
1025
1035
  """
1026
1036
  return self._Type
@@ -1059,7 +1069,7 @@ class CreateInvokerRequest(AbstractModel):
1059
1069
 
1060
1070
  @property
1061
1071
  def Username(self):
1062
- """命令执行用户。
1072
+ """命令执行用户。长度不超过 256 字符。
1063
1073
  :rtype: str
1064
1074
  """
1065
1075
  return self._Username
@@ -1070,7 +1080,7 @@ class CreateInvokerRequest(AbstractModel):
1070
1080
 
1071
1081
  @property
1072
1082
  def Parameters(self):
1073
- """命令自定义参数。
1083
+ """命令自定义参数。字段类型为 JSON encode string。
1074
1084
 
1075
1085
  仅在 CommandId 所指命令的 EnableParameter 为 true 时,才允许设置此参数。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取命令的 EnableParameter 设置。
1076
1086
  :rtype: str
@@ -1083,7 +1093,9 @@ class CreateInvokerRequest(AbstractModel):
1083
1093
 
1084
1094
  @property
1085
1095
  def ScheduleSettings(self):
1086
- """周期执行器设置。当创建周期执行器时,必须指定此参数。
1096
+ """周期执行器设置。
1097
+
1098
+ 当执行器类型为 `SCHEDULE` 时,必须指定此参数。
1087
1099
  :rtype: :class:`tencentcloud.tat.v20201028.models.ScheduleSettings`
1088
1100
  """
1089
1101
  return self._ScheduleSettings
@@ -1733,13 +1745,15 @@ class DescribeAutomationAgentStatusRequest(AbstractModel):
1733
1745
 
1734
1746
  可通过对应云产品的查询实例接口获取实例 ID。目前支持实例类型:CVM、Lighthouse、TAT 托管实例。
1735
1747
 
1748
+ 每次请求的上限为 100。
1749
+
1736
1750
  参数不支持同时指定 `InstanceIds ` 和 `Filters ` 。
1737
1751
  :type InstanceIds: list of str
1738
1752
  :param _Filters: - agent-status - String - 是否必填:否 -(过滤条件)按照agent状态过滤,取值:Online 在线,Offline 离线。
1739
1753
  - environment - String - 是否必填:否 -(过滤条件)按照agent运行环境查询,取值:Linux, Windows。
1740
1754
  - instance-id - String - 是否必填:否 -(过滤条件)按照实例ID过滤。 可通过对应云产品的查询实例接口获取实例 ID。目前支持实例类型:CVM、Lighthouse、TAT 托管实例。
1741
1755
 
1742
- 参数不支持同时指定 `InstanceIds ` 和 `Filters ` 。
1756
+ 每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `InstanceIds ` 和 `Filters ` 。
1743
1757
  :type Filters: list of Filter
1744
1758
  :param _Limit: 返回数量,默认为20,最大值为100。关于 `Limit` 的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/15688)中的相关小节。
1745
1759
  :type Limit: int
@@ -1757,6 +1771,8 @@ class DescribeAutomationAgentStatusRequest(AbstractModel):
1757
1771
 
1758
1772
  可通过对应云产品的查询实例接口获取实例 ID。目前支持实例类型:CVM、Lighthouse、TAT 托管实例。
1759
1773
 
1774
+ 每次请求的上限为 100。
1775
+
1760
1776
  参数不支持同时指定 `InstanceIds ` 和 `Filters ` 。
1761
1777
  :rtype: list of str
1762
1778
  """
@@ -1772,7 +1788,7 @@ class DescribeAutomationAgentStatusRequest(AbstractModel):
1772
1788
  - environment - String - 是否必填:否 -(过滤条件)按照agent运行环境查询,取值:Linux, Windows。
1773
1789
  - instance-id - String - 是否必填:否 -(过滤条件)按照实例ID过滤。 可通过对应云产品的查询实例接口获取实例 ID。目前支持实例类型:CVM、Lighthouse、TAT 托管实例。
1774
1790
 
1775
- 参数不支持同时指定 `InstanceIds ` 和 `Filters ` 。
1791
+ 每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `InstanceIds ` 和 `Filters ` 。
1776
1792
  :rtype: list of Filter
1777
1793
  """
1778
1794
  return self._Filters
@@ -2547,7 +2563,9 @@ class DescribeInvokersRequest(AbstractModel):
2547
2563
 
2548
2564
  def __init__(self):
2549
2565
  r"""
2550
- :param _InvokerIds: 执行器ID列表。
2566
+ :param _InvokerIds: 执行器 ID 列表。
2567
+
2568
+ 每次请求的上限为 100。
2551
2569
 
2552
2570
  参数不支持同时指定 `InvokerIds ` 和 `Filters ` 。
2553
2571
 
@@ -2556,9 +2574,9 @@ class DescribeInvokersRequest(AbstractModel):
2556
2574
 
2557
2575
  - invoker-id - String - 是否必填:否 - (过滤条件)按执行器ID过滤。
2558
2576
  - command-id - String - 是否必填:否 - (过滤条件)按命令ID过滤。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取。
2559
- - type - String - 是否必填:否 - (过滤条件)按执行器类型过滤。目前仅支持 SCHEDULE 一种。
2577
+ - invoker-type - String - 是否必填:否 - (过滤条件)按执行器类型过滤。目前仅支持 SCHEDULE 一种。
2560
2578
 
2561
- 参数不支持同时指定 `InvokerIds ` 和 `Filters ` 。
2579
+ 每次请求的 `Filters` 的上限为 10,`Filter.Values` 的上限为 5。参数不支持同时指定 `InvokerIds` 和 `Filters` 。
2562
2580
  :type Filters: list of Filter
2563
2581
  :param _Limit: 返回数量,默认为20,最大值为100。
2564
2582
  :type Limit: int
@@ -2572,7 +2590,9 @@ class DescribeInvokersRequest(AbstractModel):
2572
2590
 
2573
2591
  @property
2574
2592
  def InvokerIds(self):
2575
- """执行器ID列表。
2593
+ """执行器 ID 列表。
2594
+
2595
+ 每次请求的上限为 100。
2576
2596
 
2577
2597
  参数不支持同时指定 `InvokerIds ` 和 `Filters ` 。
2578
2598
 
@@ -2590,9 +2610,9 @@ class DescribeInvokersRequest(AbstractModel):
2590
2610
 
2591
2611
  - invoker-id - String - 是否必填:否 - (过滤条件)按执行器ID过滤。
2592
2612
  - command-id - String - 是否必填:否 - (过滤条件)按命令ID过滤。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取。
2593
- - type - String - 是否必填:否 - (过滤条件)按执行器类型过滤。目前仅支持 SCHEDULE 一种。
2613
+ - invoker-type - String - 是否必填:否 - (过滤条件)按执行器类型过滤。目前仅支持 SCHEDULE 一种。
2594
2614
 
2595
- 参数不支持同时指定 `InvokerIds ` 和 `Filters ` 。
2615
+ 每次请求的 `Filters` 的上限为 10,`Filter.Values` 的上限为 5。参数不支持同时指定 `InvokerIds` 和 `Filters` 。
2596
2616
  :rtype: list of Filter
2597
2617
  """
2598
2618
  return self._Filters
@@ -2878,6 +2898,10 @@ class DescribeRegisterCodesRequest(AbstractModel):
2878
2898
  def __init__(self):
2879
2899
  r"""
2880
2900
  :param _RegisterCodeIds: 注册码ID。
2901
+
2902
+ 每次请求的上限为 100。
2903
+
2904
+ 参数不支持同时指定 `RegisterCodeIds ` 和 `Filters ` 。
2881
2905
  :type RegisterCodeIds: list of str
2882
2906
  :param _Offset: 偏移量,默认为 0。
2883
2907
  :type Offset: int
@@ -2891,6 +2915,10 @@ class DescribeRegisterCodesRequest(AbstractModel):
2891
2915
  @property
2892
2916
  def RegisterCodeIds(self):
2893
2917
  """注册码ID。
2918
+
2919
+ 每次请求的上限为 100。
2920
+
2921
+ 参数不支持同时指定 `RegisterCodeIds ` 和 `Filters ` 。
2894
2922
  :rtype: list of str
2895
2923
  """
2896
2924
  return self._RegisterCodeIds
@@ -3008,10 +3036,12 @@ class DescribeRegisterInstancesRequest(AbstractModel):
3008
3036
  r"""
3009
3037
  :param _InstanceIds: 托管实例 id。
3010
3038
 
3039
+ 每次请求的上限为 100。
3040
+
3011
3041
  参数不支持同时指定 `InstanceIds` 和 `Filters` 。
3012
3042
 
3013
3043
  :type InstanceIds: list of str
3014
- :param _Filters: 过滤器列表。参数不支持同时指定 `InstanceIds` 和 `Filters` 。
3044
+ :param _Filters: 过滤器列表。每次请求的 `Filters` 的上限为 10,`Filter.Values` 的上限为 5。参数不支持同时指定 `InstanceIds` 和 `Filters` 。
3015
3045
 
3016
3046
 
3017
3047
  - instance-name
@@ -3074,6 +3104,8 @@ class DescribeRegisterInstancesRequest(AbstractModel):
3074
3104
  def InstanceIds(self):
3075
3105
  """托管实例 id。
3076
3106
 
3107
+ 每次请求的上限为 100。
3108
+
3077
3109
  参数不支持同时指定 `InstanceIds` 和 `Filters` 。
3078
3110
 
3079
3111
  :rtype: list of str
@@ -3086,7 +3118,7 @@ class DescribeRegisterInstancesRequest(AbstractModel):
3086
3118
 
3087
3119
  @property
3088
3120
  def Filters(self):
3089
- """过滤器列表。参数不支持同时指定 `InstanceIds` 和 `Filters` 。
3121
+ """过滤器列表。每次请求的 `Filters` 的上限为 10,`Filter.Values` 的上限为 5。参数不支持同时指定 `InstanceIds` 和 `Filters` 。
3090
3122
 
3091
3123
 
3092
3124
  - instance-name
@@ -3257,6 +3289,8 @@ class DescribeScenesRequest(AbstractModel):
3257
3289
  r"""
3258
3290
  :param _SceneIds: 场景 ID 数组。
3259
3291
 
3292
+ 每次请求的上限为 100。
3293
+
3260
3294
  参数不支持同时指定 `SceneIds ` 和 `Filters ` 。
3261
3295
 
3262
3296
  :type SceneIds: list of str
@@ -3282,6 +3316,8 @@ class DescribeScenesRequest(AbstractModel):
3282
3316
  def SceneIds(self):
3283
3317
  """场景 ID 数组。
3284
3318
 
3319
+ 每次请求的上限为 100。
3320
+
3285
3321
  参数不支持同时指定 `SceneIds ` 和 `Filters ` 。
3286
3322
 
3287
3323
  :rtype: list of str
@@ -5249,17 +5285,21 @@ class ModifyInvokerRequest(AbstractModel):
5249
5285
 
5250
5286
  可通过 [DescribeInvokers(查询执行器)](https://cloud.tencent.com/document/api/1340/61759) 接口获取。
5251
5287
  :type InvokerId: str
5252
- :param _Name: 待修改的执行器名称。
5288
+ :param _Name: 待修改的执行器名称。长度不超过 120 字符。
5253
5289
  :type Name: str
5254
- :param _Type: 执行器类型,当前仅支持周期类型执行器,取值:`SCHEDULE` 。
5290
+ :param _Type: 待修改的执行器类型。
5291
+
5292
+ 可选取值(当前仅支持一种):
5293
+
5294
+ - `SCHEDULE`:周期类型执行器。
5255
5295
  :type Type: str
5256
5296
  :param _CommandId: 待修改的命令ID。
5257
5297
 
5258
5298
  可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取。
5259
5299
  :type CommandId: str
5260
- :param _Username: 待修改的用户名。
5300
+ :param _Username: 待修改的用户名。长度不超过 256 字符。
5261
5301
  :type Username: str
5262
- :param _Parameters: 待修改的自定义参数。
5302
+ :param _Parameters: 待修改的自定义参数。字段类型为 JSON encode string。
5263
5303
 
5264
5304
  仅在 CommandId 所指命令的 EnableParameter 为 true 时,才允许设置此参数。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取命令的 EnableParameter 设置。
5265
5305
  :type Parameters: str
@@ -5270,6 +5310,8 @@ class ModifyInvokerRequest(AbstractModel):
5270
5310
  实例需要安装 TAT 客户端, 且客户端为 Online 状态。可通过 [DescribeAutomationAgentStatus(查询客户端状态)](https://cloud.tencent.com/document/api/1340/52682) 接口查询客户端状态。
5271
5311
  :type InstanceIds: list of str
5272
5312
  :param _ScheduleSettings: 待修改的周期执行器设置。
5313
+
5314
+ 要将执行器类型修改为 `SCHEDULE` 时,必须指定此参数。
5273
5315
  :type ScheduleSettings: :class:`tencentcloud.tat.v20201028.models.ScheduleSettings`
5274
5316
  """
5275
5317
  self._InvokerId = None
@@ -5296,7 +5338,7 @@ class ModifyInvokerRequest(AbstractModel):
5296
5338
 
5297
5339
  @property
5298
5340
  def Name(self):
5299
- """待修改的执行器名称。
5341
+ """待修改的执行器名称。长度不超过 120 字符。
5300
5342
  :rtype: str
5301
5343
  """
5302
5344
  return self._Name
@@ -5307,7 +5349,11 @@ class ModifyInvokerRequest(AbstractModel):
5307
5349
 
5308
5350
  @property
5309
5351
  def Type(self):
5310
- """执行器类型,当前仅支持周期类型执行器,取值:`SCHEDULE` 。
5352
+ """待修改的执行器类型。
5353
+
5354
+ 可选取值(当前仅支持一种):
5355
+
5356
+ - `SCHEDULE`:周期类型执行器。
5311
5357
  :rtype: str
5312
5358
  """
5313
5359
  return self._Type
@@ -5331,7 +5377,7 @@ class ModifyInvokerRequest(AbstractModel):
5331
5377
 
5332
5378
  @property
5333
5379
  def Username(self):
5334
- """待修改的用户名。
5380
+ """待修改的用户名。长度不超过 256 字符。
5335
5381
  :rtype: str
5336
5382
  """
5337
5383
  return self._Username
@@ -5342,7 +5388,7 @@ class ModifyInvokerRequest(AbstractModel):
5342
5388
 
5343
5389
  @property
5344
5390
  def Parameters(self):
5345
- """待修改的自定义参数。
5391
+ """待修改的自定义参数。字段类型为 JSON encode string。
5346
5392
 
5347
5393
  仅在 CommandId 所指命令的 EnableParameter 为 true 时,才允许设置此参数。可通过 [DescribeCommands(查询命令详情)](https://cloud.tencent.com/document/api/1340/52681) 接口获取命令的 EnableParameter 设置。
5348
5394
  :rtype: str
@@ -5371,6 +5417,8 @@ class ModifyInvokerRequest(AbstractModel):
5371
5417
  @property
5372
5418
  def ScheduleSettings(self):
5373
5419
  """待修改的周期执行器设置。
5420
+
5421
+ 要将执行器类型修改为 `SCHEDULE` 时,必须指定此参数。
5374
5422
  :rtype: :class:`tencentcloud.tat.v20201028.models.ScheduleSettings`
5375
5423
  """
5376
5424
  return self._ScheduleSettings
@@ -6597,10 +6645,9 @@ class ScheduleSettings(AbstractModel):
6597
6645
  def __init__(self):
6598
6646
  r"""
6599
6647
  :param _Policy: 执行策略:
6648
+
6600
6649
  - ONCE:单次执行
6601
6650
  - RECURRENCE:周期执行
6602
-
6603
- 只有在 CreateInvoker 时才必填,ModifyInvoker 时为非必填
6604
6651
  :type Policy: str
6605
6652
  :param _Recurrence: 触发 Crontab 表达式。Policy 为 RECURRENCE 时,需要指定此字段。Crontab 按北京时间解析。
6606
6653
  :type Recurrence: str
@@ -6616,10 +6663,9 @@ class ScheduleSettings(AbstractModel):
6616
6663
  @property
6617
6664
  def Policy(self):
6618
6665
  """执行策略:
6666
+
6619
6667
  - ONCE:单次执行
6620
6668
  - RECURRENCE:周期执行
6621
-
6622
- 只有在 CreateInvoker 时才必填,ModifyInvoker 时为非必填
6623
6669
  :rtype: str
6624
6670
  """
6625
6671
  return self._Policy
@@ -17100,6 +17100,12 @@ class CreateVulScanTaskRequest(AbstractModel):
17100
17100
  :type LocalTaskID: int
17101
17101
  :param _RegistryTaskID: 仓库镜像重新漏洞扫描时的任务ID
17102
17102
  :type RegistryTaskID: int
17103
+ :param _LocalImageContainerRunning: 本地镜像容器运行中
17104
+ :type LocalImageContainerRunning: bool
17105
+ :param _RegistryImageContainerRunning: 仓库镜像容器运行中
17106
+ :type RegistryImageContainerRunning: bool
17107
+ :param _IsLatest: 仓库镜像是否是最新
17108
+ :type IsLatest: bool
17103
17109
  """
17104
17110
  self._LocalImageScanType = None
17105
17111
  self._LocalImageIDs = None
@@ -17107,6 +17113,9 @@ class CreateVulScanTaskRequest(AbstractModel):
17107
17113
  self._RegistryImageIDs = None
17108
17114
  self._LocalTaskID = None
17109
17115
  self._RegistryTaskID = None
17116
+ self._LocalImageContainerRunning = None
17117
+ self._RegistryImageContainerRunning = None
17118
+ self._IsLatest = None
17110
17119
 
17111
17120
  @property
17112
17121
  def LocalImageScanType(self):
@@ -17174,6 +17183,39 @@ class CreateVulScanTaskRequest(AbstractModel):
17174
17183
  def RegistryTaskID(self, RegistryTaskID):
17175
17184
  self._RegistryTaskID = RegistryTaskID
17176
17185
 
17186
+ @property
17187
+ def LocalImageContainerRunning(self):
17188
+ """本地镜像容器运行中
17189
+ :rtype: bool
17190
+ """
17191
+ return self._LocalImageContainerRunning
17192
+
17193
+ @LocalImageContainerRunning.setter
17194
+ def LocalImageContainerRunning(self, LocalImageContainerRunning):
17195
+ self._LocalImageContainerRunning = LocalImageContainerRunning
17196
+
17197
+ @property
17198
+ def RegistryImageContainerRunning(self):
17199
+ """仓库镜像容器运行中
17200
+ :rtype: bool
17201
+ """
17202
+ return self._RegistryImageContainerRunning
17203
+
17204
+ @RegistryImageContainerRunning.setter
17205
+ def RegistryImageContainerRunning(self, RegistryImageContainerRunning):
17206
+ self._RegistryImageContainerRunning = RegistryImageContainerRunning
17207
+
17208
+ @property
17209
+ def IsLatest(self):
17210
+ """仓库镜像是否是最新
17211
+ :rtype: bool
17212
+ """
17213
+ return self._IsLatest
17214
+
17215
+ @IsLatest.setter
17216
+ def IsLatest(self, IsLatest):
17217
+ self._IsLatest = IsLatest
17218
+
17177
17219
 
17178
17220
  def _deserialize(self, params):
17179
17221
  self._LocalImageScanType = params.get("LocalImageScanType")
@@ -17182,6 +17224,9 @@ class CreateVulScanTaskRequest(AbstractModel):
17182
17224
  self._RegistryImageIDs = params.get("RegistryImageIDs")
17183
17225
  self._LocalTaskID = params.get("LocalTaskID")
17184
17226
  self._RegistryTaskID = params.get("RegistryTaskID")
17227
+ self._LocalImageContainerRunning = params.get("LocalImageContainerRunning")
17228
+ self._RegistryImageContainerRunning = params.get("RegistryImageContainerRunning")
17229
+ self._IsLatest = params.get("IsLatest")
17185
17230
  memeber_set = set(params.keys())
17186
17231
  for name, value in vars(self).items():
17187
17232
  property_name = name[1:]