tencentcloud-sdk-python 3.0.1408__py2.py3-none-any.whl → 3.0.1410__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/bh/v20230418/bh_client.py +138 -0
- tencentcloud/bh/v20230418/errorcodes.py +3 -0
- tencentcloud/bh/v20230418/models.py +1006 -67
- tencentcloud/ccc/v20200210/models.py +2 -2
- tencentcloud/cdb/v20170320/cdb_client.py +25 -19
- tencentcloud/cdb/v20170320/errorcodes.py +0 -3
- tencentcloud/cdb/v20170320/models.py +274 -202
- tencentcloud/common/credential.py +2 -3
- tencentcloud/csip/v20221121/models.py +45 -4
- tencentcloud/cvm/v20170312/models.py +15 -0
- tencentcloud/cwp/v20180228/models.py +165 -0
- tencentcloud/cynosdb/v20190107/models.py +45 -0
- tencentcloud/dsgc/v20190723/dsgc_client.py +1 -3
- tencentcloud/dsgc/v20190723/models.py +342 -15
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +500 -0
- tencentcloud/es/v20180416/errorcodes.py +42 -0
- tencentcloud/ess/v20201111/errorcodes.py +24 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -0
- tencentcloud/ess/v20201111/models.py +33 -4
- tencentcloud/essbasic/v20210526/errorcodes.py +24 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -0
- tencentcloud/gs/v20191118/models.py +15 -0
- tencentcloud/kms/v20190118/errorcodes.py +36 -0
- tencentcloud/kms/v20190118/kms_client.py +345 -0
- tencentcloud/kms/v20190118/models.py +3437 -1534
- tencentcloud/lighthouse/v20200324/errorcodes.py +21 -0
- tencentcloud/live/v20180801/models.py +15 -0
- tencentcloud/lke/v20231130/lke_client.py +92 -0
- tencentcloud/lke/v20231130/models.py +2702 -572
- tencentcloud/mqtt/v20240516/models.py +120 -0
- tencentcloud/organization/v20210331/models.py +15 -0
- tencentcloud/partners/v20180321/models.py +4 -4
- tencentcloud/postgres/v20170312/models.py +4 -0
- tencentcloud/ses/v20201002/models.py +0 -8
- tencentcloud/tcss/v20201101/models.py +15 -0
- tencentcloud/thpc/v20230321/models.py +47 -2
- tencentcloud/tione/v20211111/models.py +15 -0
- tencentcloud/trocket/v20230308/models.py +476 -238
- tencentcloud/trocket/v20230308/trocket_client.py +58 -17
- tencentcloud/vpc/v20170312/models.py +15 -0
- tencentcloud/waf/v20180125/models.py +110 -18
- tencentcloud/wedata/v20210820/models.py +764 -4
- tencentcloud/wedata/v20210820/wedata_client.py +48 -2
- {tencentcloud_sdk_python-3.0.1408.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1408.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/RECORD +50 -50
- {tencentcloud_sdk_python-3.0.1408.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1408.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1408.dist-info → tencentcloud_sdk_python-3.0.1410.dist-info}/top_level.txt +0 -0
@@ -4736,6 +4736,14 @@ API:通过API手动注册
|
|
4736
4736
|
:type MaxSubscription: int
|
4737
4737
|
:param _AuthorizationPolicy: 授权策略开关
|
4738
4738
|
:type AuthorizationPolicy: bool
|
4739
|
+
:param _SharedSubscriptionGroupLimit: 共享订阅组数最大限制
|
4740
|
+
:type SharedSubscriptionGroupLimit: int
|
4741
|
+
:param _MaxTopicFilterPerSharedSubscriptionGroup: 单个共享订阅组TopicFilter数限制
|
4742
|
+
:type MaxTopicFilterPerSharedSubscriptionGroup: int
|
4743
|
+
:param _AutoSubscriptionPolicyLimit: 自动订阅规则条数限制
|
4744
|
+
:type AutoSubscriptionPolicyLimit: int
|
4745
|
+
:param _MaxTopicFilterPerAutoSubscriptionPolicy: 单条自动订阅规则TopicFilter数限制
|
4746
|
+
:type MaxTopicFilterPerAutoSubscriptionPolicy: int
|
4739
4747
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4740
4748
|
:type RequestId: str
|
4741
4749
|
"""
|
@@ -4763,6 +4771,10 @@ API:通过API手动注册
|
|
4763
4771
|
self._RegistrationCode = None
|
4764
4772
|
self._MaxSubscription = None
|
4765
4773
|
self._AuthorizationPolicy = None
|
4774
|
+
self._SharedSubscriptionGroupLimit = None
|
4775
|
+
self._MaxTopicFilterPerSharedSubscriptionGroup = None
|
4776
|
+
self._AutoSubscriptionPolicyLimit = None
|
4777
|
+
self._MaxTopicFilterPerAutoSubscriptionPolicy = None
|
4766
4778
|
self._RequestId = None
|
4767
4779
|
|
4768
4780
|
@property
|
@@ -5034,6 +5046,50 @@ API:通过API手动注册
|
|
5034
5046
|
def AuthorizationPolicy(self, AuthorizationPolicy):
|
5035
5047
|
self._AuthorizationPolicy = AuthorizationPolicy
|
5036
5048
|
|
5049
|
+
@property
|
5050
|
+
def SharedSubscriptionGroupLimit(self):
|
5051
|
+
"""共享订阅组数最大限制
|
5052
|
+
:rtype: int
|
5053
|
+
"""
|
5054
|
+
return self._SharedSubscriptionGroupLimit
|
5055
|
+
|
5056
|
+
@SharedSubscriptionGroupLimit.setter
|
5057
|
+
def SharedSubscriptionGroupLimit(self, SharedSubscriptionGroupLimit):
|
5058
|
+
self._SharedSubscriptionGroupLimit = SharedSubscriptionGroupLimit
|
5059
|
+
|
5060
|
+
@property
|
5061
|
+
def MaxTopicFilterPerSharedSubscriptionGroup(self):
|
5062
|
+
"""单个共享订阅组TopicFilter数限制
|
5063
|
+
:rtype: int
|
5064
|
+
"""
|
5065
|
+
return self._MaxTopicFilterPerSharedSubscriptionGroup
|
5066
|
+
|
5067
|
+
@MaxTopicFilterPerSharedSubscriptionGroup.setter
|
5068
|
+
def MaxTopicFilterPerSharedSubscriptionGroup(self, MaxTopicFilterPerSharedSubscriptionGroup):
|
5069
|
+
self._MaxTopicFilterPerSharedSubscriptionGroup = MaxTopicFilterPerSharedSubscriptionGroup
|
5070
|
+
|
5071
|
+
@property
|
5072
|
+
def AutoSubscriptionPolicyLimit(self):
|
5073
|
+
"""自动订阅规则条数限制
|
5074
|
+
:rtype: int
|
5075
|
+
"""
|
5076
|
+
return self._AutoSubscriptionPolicyLimit
|
5077
|
+
|
5078
|
+
@AutoSubscriptionPolicyLimit.setter
|
5079
|
+
def AutoSubscriptionPolicyLimit(self, AutoSubscriptionPolicyLimit):
|
5080
|
+
self._AutoSubscriptionPolicyLimit = AutoSubscriptionPolicyLimit
|
5081
|
+
|
5082
|
+
@property
|
5083
|
+
def MaxTopicFilterPerAutoSubscriptionPolicy(self):
|
5084
|
+
"""单条自动订阅规则TopicFilter数限制
|
5085
|
+
:rtype: int
|
5086
|
+
"""
|
5087
|
+
return self._MaxTopicFilterPerAutoSubscriptionPolicy
|
5088
|
+
|
5089
|
+
@MaxTopicFilterPerAutoSubscriptionPolicy.setter
|
5090
|
+
def MaxTopicFilterPerAutoSubscriptionPolicy(self, MaxTopicFilterPerAutoSubscriptionPolicy):
|
5091
|
+
self._MaxTopicFilterPerAutoSubscriptionPolicy = MaxTopicFilterPerAutoSubscriptionPolicy
|
5092
|
+
|
5037
5093
|
@property
|
5038
5094
|
def RequestId(self):
|
5039
5095
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -5071,6 +5127,10 @@ API:通过API手动注册
|
|
5071
5127
|
self._RegistrationCode = params.get("RegistrationCode")
|
5072
5128
|
self._MaxSubscription = params.get("MaxSubscription")
|
5073
5129
|
self._AuthorizationPolicy = params.get("AuthorizationPolicy")
|
5130
|
+
self._SharedSubscriptionGroupLimit = params.get("SharedSubscriptionGroupLimit")
|
5131
|
+
self._MaxTopicFilterPerSharedSubscriptionGroup = params.get("MaxTopicFilterPerSharedSubscriptionGroup")
|
5132
|
+
self._AutoSubscriptionPolicyLimit = params.get("AutoSubscriptionPolicyLimit")
|
5133
|
+
self._MaxTopicFilterPerAutoSubscriptionPolicy = params.get("MaxTopicFilterPerAutoSubscriptionPolicy")
|
5074
5134
|
self._RequestId = params.get("RequestId")
|
5075
5135
|
|
5076
5136
|
|
@@ -7042,6 +7102,14 @@ DELETING,删除中
|
|
7042
7102
|
:type MaxCaNum: int
|
7043
7103
|
:param _MaxSubscription: 最大订阅数
|
7044
7104
|
:type MaxSubscription: int
|
7105
|
+
:param _SharedSubscriptionGroupLimit: 共享订阅组数最大限制
|
7106
|
+
:type SharedSubscriptionGroupLimit: int
|
7107
|
+
:param _MaxTopicFilterPerSharedSubscriptionGroup: 单个共享订阅组TopicFilter数限制
|
7108
|
+
:type MaxTopicFilterPerSharedSubscriptionGroup: int
|
7109
|
+
:param _AutoSubscriptionPolicyLimit: 自动订阅规则条数限制
|
7110
|
+
:type AutoSubscriptionPolicyLimit: int
|
7111
|
+
:param _MaxTopicFilterPerAutoSubscriptionPolicy: 单条自动订阅规则TopicFilter数限制
|
7112
|
+
:type MaxTopicFilterPerAutoSubscriptionPolicy: int
|
7045
7113
|
"""
|
7046
7114
|
self._InstanceId = None
|
7047
7115
|
self._InstanceName = None
|
@@ -7063,6 +7131,10 @@ DELETING,删除中
|
|
7063
7131
|
self._AuthorizationPolicyLimit = None
|
7064
7132
|
self._MaxCaNum = None
|
7065
7133
|
self._MaxSubscription = None
|
7134
|
+
self._SharedSubscriptionGroupLimit = None
|
7135
|
+
self._MaxTopicFilterPerSharedSubscriptionGroup = None
|
7136
|
+
self._AutoSubscriptionPolicyLimit = None
|
7137
|
+
self._MaxTopicFilterPerAutoSubscriptionPolicy = None
|
7066
7138
|
|
7067
7139
|
@property
|
7068
7140
|
def InstanceId(self):
|
@@ -7298,6 +7370,50 @@ DELETING,删除中
|
|
7298
7370
|
def MaxSubscription(self, MaxSubscription):
|
7299
7371
|
self._MaxSubscription = MaxSubscription
|
7300
7372
|
|
7373
|
+
@property
|
7374
|
+
def SharedSubscriptionGroupLimit(self):
|
7375
|
+
"""共享订阅组数最大限制
|
7376
|
+
:rtype: int
|
7377
|
+
"""
|
7378
|
+
return self._SharedSubscriptionGroupLimit
|
7379
|
+
|
7380
|
+
@SharedSubscriptionGroupLimit.setter
|
7381
|
+
def SharedSubscriptionGroupLimit(self, SharedSubscriptionGroupLimit):
|
7382
|
+
self._SharedSubscriptionGroupLimit = SharedSubscriptionGroupLimit
|
7383
|
+
|
7384
|
+
@property
|
7385
|
+
def MaxTopicFilterPerSharedSubscriptionGroup(self):
|
7386
|
+
"""单个共享订阅组TopicFilter数限制
|
7387
|
+
:rtype: int
|
7388
|
+
"""
|
7389
|
+
return self._MaxTopicFilterPerSharedSubscriptionGroup
|
7390
|
+
|
7391
|
+
@MaxTopicFilterPerSharedSubscriptionGroup.setter
|
7392
|
+
def MaxTopicFilterPerSharedSubscriptionGroup(self, MaxTopicFilterPerSharedSubscriptionGroup):
|
7393
|
+
self._MaxTopicFilterPerSharedSubscriptionGroup = MaxTopicFilterPerSharedSubscriptionGroup
|
7394
|
+
|
7395
|
+
@property
|
7396
|
+
def AutoSubscriptionPolicyLimit(self):
|
7397
|
+
"""自动订阅规则条数限制
|
7398
|
+
:rtype: int
|
7399
|
+
"""
|
7400
|
+
return self._AutoSubscriptionPolicyLimit
|
7401
|
+
|
7402
|
+
@AutoSubscriptionPolicyLimit.setter
|
7403
|
+
def AutoSubscriptionPolicyLimit(self, AutoSubscriptionPolicyLimit):
|
7404
|
+
self._AutoSubscriptionPolicyLimit = AutoSubscriptionPolicyLimit
|
7405
|
+
|
7406
|
+
@property
|
7407
|
+
def MaxTopicFilterPerAutoSubscriptionPolicy(self):
|
7408
|
+
"""单条自动订阅规则TopicFilter数限制
|
7409
|
+
:rtype: int
|
7410
|
+
"""
|
7411
|
+
return self._MaxTopicFilterPerAutoSubscriptionPolicy
|
7412
|
+
|
7413
|
+
@MaxTopicFilterPerAutoSubscriptionPolicy.setter
|
7414
|
+
def MaxTopicFilterPerAutoSubscriptionPolicy(self, MaxTopicFilterPerAutoSubscriptionPolicy):
|
7415
|
+
self._MaxTopicFilterPerAutoSubscriptionPolicy = MaxTopicFilterPerAutoSubscriptionPolicy
|
7416
|
+
|
7301
7417
|
|
7302
7418
|
def _deserialize(self, params):
|
7303
7419
|
self._InstanceId = params.get("InstanceId")
|
@@ -7320,6 +7436,10 @@ DELETING,删除中
|
|
7320
7436
|
self._AuthorizationPolicyLimit = params.get("AuthorizationPolicyLimit")
|
7321
7437
|
self._MaxCaNum = params.get("MaxCaNum")
|
7322
7438
|
self._MaxSubscription = params.get("MaxSubscription")
|
7439
|
+
self._SharedSubscriptionGroupLimit = params.get("SharedSubscriptionGroupLimit")
|
7440
|
+
self._MaxTopicFilterPerSharedSubscriptionGroup = params.get("MaxTopicFilterPerSharedSubscriptionGroup")
|
7441
|
+
self._AutoSubscriptionPolicyLimit = params.get("AutoSubscriptionPolicyLimit")
|
7442
|
+
self._MaxTopicFilterPerAutoSubscriptionPolicy = params.get("MaxTopicFilterPerAutoSubscriptionPolicy")
|
7323
7443
|
memeber_set = set(params.keys())
|
7324
7444
|
for name, value in vars(self).items():
|
7325
7445
|
property_name = name[1:]
|
@@ -21343,6 +21343,8 @@ class UserInfo(AbstractModel):
|
|
21343
21343
|
:type UpdateTime: str
|
21344
21344
|
:param _IsSelected: 是否选中
|
21345
21345
|
:type IsSelected: bool
|
21346
|
+
:param _Password: 用户密码
|
21347
|
+
:type Password: str
|
21346
21348
|
"""
|
21347
21349
|
self._UserName = None
|
21348
21350
|
self._FirstName = None
|
@@ -21356,6 +21358,7 @@ class UserInfo(AbstractModel):
|
|
21356
21358
|
self._CreateTime = None
|
21357
21359
|
self._UpdateTime = None
|
21358
21360
|
self._IsSelected = None
|
21361
|
+
self._Password = None
|
21359
21362
|
|
21360
21363
|
@property
|
21361
21364
|
def UserName(self):
|
@@ -21489,6 +21492,17 @@ class UserInfo(AbstractModel):
|
|
21489
21492
|
def IsSelected(self, IsSelected):
|
21490
21493
|
self._IsSelected = IsSelected
|
21491
21494
|
|
21495
|
+
@property
|
21496
|
+
def Password(self):
|
21497
|
+
"""用户密码
|
21498
|
+
:rtype: str
|
21499
|
+
"""
|
21500
|
+
return self._Password
|
21501
|
+
|
21502
|
+
@Password.setter
|
21503
|
+
def Password(self, Password):
|
21504
|
+
self._Password = Password
|
21505
|
+
|
21492
21506
|
|
21493
21507
|
def _deserialize(self, params):
|
21494
21508
|
self._UserName = params.get("UserName")
|
@@ -21503,6 +21517,7 @@ class UserInfo(AbstractModel):
|
|
21503
21517
|
self._CreateTime = params.get("CreateTime")
|
21504
21518
|
self._UpdateTime = params.get("UpdateTime")
|
21505
21519
|
self._IsSelected = params.get("IsSelected")
|
21520
|
+
self._Password = params.get("Password")
|
21506
21521
|
memeber_set = set(params.keys())
|
21507
21522
|
for name, value in vars(self).items():
|
21508
21523
|
property_name = name[1:]
|
@@ -2862,9 +2862,9 @@ class DescribeAgentDealsByCacheRequest(AbstractModel):
|
|
2862
2862
|
:type Offset: int
|
2863
2863
|
:param _Limit: 限制数目 最大200
|
2864
2864
|
:type Limit: int
|
2865
|
-
:param _CreatTimeRangeStart:
|
2865
|
+
:param _CreatTimeRangeStart: 下单时间范围起始点【*请必传并控制时间范围最大90天,避免出现超时】
|
2866
2866
|
:type CreatTimeRangeStart: str
|
2867
|
-
:param _CreatTimeRangeEnd:
|
2867
|
+
:param _CreatTimeRangeEnd: 下单时间范围终止点【*请必传并控制时间范围最大90天,避免出现超时】
|
2868
2868
|
:type CreatTimeRangeEnd: str
|
2869
2869
|
:param _Order: 0:下单时间降序;其他:下单时间升序
|
2870
2870
|
:type Order: int
|
@@ -2914,7 +2914,7 @@ class DescribeAgentDealsByCacheRequest(AbstractModel):
|
|
2914
2914
|
|
2915
2915
|
@property
|
2916
2916
|
def CreatTimeRangeStart(self):
|
2917
|
-
"""
|
2917
|
+
"""下单时间范围起始点【*请必传并控制时间范围最大90天,避免出现超时】
|
2918
2918
|
:rtype: str
|
2919
2919
|
"""
|
2920
2920
|
return self._CreatTimeRangeStart
|
@@ -2925,7 +2925,7 @@ class DescribeAgentDealsByCacheRequest(AbstractModel):
|
|
2925
2925
|
|
2926
2926
|
@property
|
2927
2927
|
def CreatTimeRangeEnd(self):
|
2928
|
-
"""
|
2928
|
+
"""下单时间范围终止点【*请必传并控制时间范围最大90天,避免出现超时】
|
2929
2929
|
:rtype: str
|
2930
2930
|
"""
|
2931
2931
|
return self._CreatTimeRangeEnd
|
@@ -7519,6 +7519,7 @@ db-instance-id:按照实例ID过滤,类型为string。
|
|
7519
7519
|
db-instance-name:按照实例名过滤,类型为string。
|
7520
7520
|
db-instance-ip:按照实例私有网络IP地址过滤,类型为string。
|
7521
7521
|
base-backup-id:按照备份集ID过滤,类型为string。
|
7522
|
+
db-instance-status:按实例状态过滤,类型为string。取值参考DBInstance结构的DBInstanceStatus字段。
|
7522
7523
|
:type Filters: list of Filter
|
7523
7524
|
:param _Limit: 每页显示数量,取值范围为1-100,默认为返回10条。
|
7524
7525
|
:type Limit: int
|
@@ -7566,6 +7567,7 @@ db-instance-id:按照实例ID过滤,类型为string。
|
|
7566
7567
|
db-instance-name:按照实例名过滤,类型为string。
|
7567
7568
|
db-instance-ip:按照实例私有网络IP地址过滤,类型为string。
|
7568
7569
|
base-backup-id:按照备份集ID过滤,类型为string。
|
7570
|
+
db-instance-status:按实例状态过滤,类型为string。取值参考DBInstance结构的DBInstanceStatus字段。
|
7569
7571
|
:rtype: list of Filter
|
7570
7572
|
"""
|
7571
7573
|
return self._Filters
|
@@ -10130,6 +10132,7 @@ class DescribeLogBackupsRequest(AbstractModel):
|
|
10130
10132
|
db-instance-id:按照实例ID过滤,类型为string。
|
10131
10133
|
db-instance-name:按照实例名过滤,类型为string。
|
10132
10134
|
db-instance-ip:按照实例私有网络IP地址过滤,类型为string。
|
10135
|
+
db-instance-status:按实例状态过滤,类型为string。取值参考DBInstance结构的DBInstanceStatus字段。
|
10133
10136
|
:type Filters: list of Filter
|
10134
10137
|
:param _Limit: 每页显示数量,取值范围为1-100,默认为返回10条。
|
10135
10138
|
:type Limit: int
|
@@ -10176,6 +10179,7 @@ db-instance-ip:按照实例私有网络IP地址过滤,类型为string。
|
|
10176
10179
|
db-instance-id:按照实例ID过滤,类型为string。
|
10177
10180
|
db-instance-name:按照实例名过滤,类型为string。
|
10178
10181
|
db-instance-ip:按照实例私有网络IP地址过滤,类型为string。
|
10182
|
+
db-instance-status:按实例状态过滤,类型为string。取值参考DBInstance结构的DBInstanceStatus字段。
|
10179
10183
|
:rtype: list of Filter
|
10180
10184
|
"""
|
10181
10185
|
return self._Filters
|
@@ -4923,7 +4923,6 @@ class SendTaskData(AbstractModel):
|
|
4923
4923
|
:param _Subject: 邮件主题
|
4924
4924
|
:type Subject: str
|
4925
4925
|
:param _Template: 模板和模板数据
|
4926
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4927
4926
|
:type Template: :class:`tencentcloud.ses.v20201002.models.Template`
|
4928
4927
|
:param _CycleParam: 周期任务参数
|
4929
4928
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -4932,7 +4931,6 @@ class SendTaskData(AbstractModel):
|
|
4932
4931
|
注意:此字段可能返回 null,表示取不到有效值。
|
4933
4932
|
:type TimedParam: :class:`tencentcloud.ses.v20201002.models.TimedEmailParam`
|
4934
4933
|
:param _ErrMsg: 任务异常信息
|
4935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4936
4934
|
:type ErrMsg: str
|
4937
4935
|
:param _ReceiversName: 收件人列表名称
|
4938
4936
|
:type ReceiversName: str
|
@@ -5078,7 +5076,6 @@ class SendTaskData(AbstractModel):
|
|
5078
5076
|
@property
|
5079
5077
|
def Template(self):
|
5080
5078
|
"""模板和模板数据
|
5081
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5082
5079
|
:rtype: :class:`tencentcloud.ses.v20201002.models.Template`
|
5083
5080
|
"""
|
5084
5081
|
return self._Template
|
@@ -5114,7 +5111,6 @@ class SendTaskData(AbstractModel):
|
|
5114
5111
|
@property
|
5115
5112
|
def ErrMsg(self):
|
5116
5113
|
"""任务异常信息
|
5117
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5118
5114
|
:rtype: str
|
5119
5115
|
"""
|
5120
5116
|
return self._ErrMsg
|
@@ -5942,7 +5938,6 @@ class Volume(AbstractModel):
|
|
5942
5938
|
def __init__(self):
|
5943
5939
|
r"""
|
5944
5940
|
:param _SendDate: 日期
|
5945
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5946
5941
|
:type SendDate: str
|
5947
5942
|
:param _RequestCount: 邮件请求数量
|
5948
5943
|
:type RequestCount: int
|
@@ -5957,7 +5952,6 @@ class Volume(AbstractModel):
|
|
5957
5952
|
:param _BounceCount: 退信数量
|
5958
5953
|
:type BounceCount: int
|
5959
5954
|
:param _UnsubscribeCount: 取消订阅的用户数量
|
5960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5961
5955
|
:type UnsubscribeCount: int
|
5962
5956
|
"""
|
5963
5957
|
self._SendDate = None
|
@@ -5972,7 +5966,6 @@ class Volume(AbstractModel):
|
|
5972
5966
|
@property
|
5973
5967
|
def SendDate(self):
|
5974
5968
|
"""日期
|
5975
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5976
5969
|
:rtype: str
|
5977
5970
|
"""
|
5978
5971
|
return self._SendDate
|
@@ -6050,7 +6043,6 @@ class Volume(AbstractModel):
|
|
6050
6043
|
@property
|
6051
6044
|
def UnsubscribeCount(self):
|
6052
6045
|
"""取消订阅的用户数量
|
6053
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6054
6046
|
:rtype: int
|
6055
6047
|
"""
|
6056
6048
|
return self._UnsubscribeCount
|
@@ -39419,6 +39419,8 @@ class DescribeNewestVulResponse(AbstractModel):
|
|
39419
39419
|
:type Status: str
|
39420
39420
|
:param _CVEID: 漏洞CVEID
|
39421
39421
|
:type CVEID: str
|
39422
|
+
:param _SupportDefense: 漏洞是否支持防御 0:不支持 1:支持
|
39423
|
+
:type SupportDefense: int
|
39422
39424
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
39423
39425
|
:type RequestId: str
|
39424
39426
|
"""
|
@@ -39427,6 +39429,7 @@ class DescribeNewestVulResponse(AbstractModel):
|
|
39427
39429
|
self._SubmitTime = None
|
39428
39430
|
self._Status = None
|
39429
39431
|
self._CVEID = None
|
39432
|
+
self._SupportDefense = None
|
39430
39433
|
self._RequestId = None
|
39431
39434
|
|
39432
39435
|
@property
|
@@ -39484,6 +39487,17 @@ class DescribeNewestVulResponse(AbstractModel):
|
|
39484
39487
|
def CVEID(self, CVEID):
|
39485
39488
|
self._CVEID = CVEID
|
39486
39489
|
|
39490
|
+
@property
|
39491
|
+
def SupportDefense(self):
|
39492
|
+
"""漏洞是否支持防御 0:不支持 1:支持
|
39493
|
+
:rtype: int
|
39494
|
+
"""
|
39495
|
+
return self._SupportDefense
|
39496
|
+
|
39497
|
+
@SupportDefense.setter
|
39498
|
+
def SupportDefense(self, SupportDefense):
|
39499
|
+
self._SupportDefense = SupportDefense
|
39500
|
+
|
39487
39501
|
@property
|
39488
39502
|
def RequestId(self):
|
39489
39503
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -39502,6 +39516,7 @@ class DescribeNewestVulResponse(AbstractModel):
|
|
39502
39516
|
self._SubmitTime = params.get("SubmitTime")
|
39503
39517
|
self._Status = params.get("Status")
|
39504
39518
|
self._CVEID = params.get("CVEID")
|
39519
|
+
self._SupportDefense = params.get("SupportDefense")
|
39505
39520
|
self._RequestId = params.get("RequestId")
|
39506
39521
|
|
39507
39522
|
|
@@ -2048,7 +2048,7 @@ class CreateWorkspacesRequest(AbstractModel):
|
|
2048
2048
|
:type VirtualPrivateCloud: :class:`tencentcloud.thpc.v20230321.models.SpaceVirtualPrivateCloud`
|
2049
2049
|
:param _InternetAccessible: 公网带宽相关信息设置
|
2050
2050
|
:type InternetAccessible: :class:`tencentcloud.thpc.v20230321.models.SpaceInternetAccessible`
|
2051
|
-
:param _SpaceCount:
|
2051
|
+
:param _SpaceCount: 购买工作空间实例的数量
|
2052
2052
|
:type SpaceCount: int
|
2053
2053
|
:param _SpaceName: 工作空间显示名称
|
2054
2054
|
:type SpaceName: str
|
@@ -2208,7 +2208,7 @@ class CreateWorkspacesRequest(AbstractModel):
|
|
2208
2208
|
|
2209
2209
|
@property
|
2210
2210
|
def SpaceCount(self):
|
2211
|
-
"""
|
2211
|
+
"""购买工作空间实例的数量
|
2212
2212
|
:rtype: int
|
2213
2213
|
"""
|
2214
2214
|
return self._SpaceCount
|
@@ -5504,6 +5504,8 @@ class NodeOverview(AbstractModel):
|
|
5504
5504
|
|
5505
5505
|
def __init__(self):
|
5506
5506
|
r"""
|
5507
|
+
:param _ClusterId: 集群ID
|
5508
|
+
:type ClusterId: str
|
5507
5509
|
:param _InstanceId: 节点实例ID。
|
5508
5510
|
注意:此字段可能返回 null,表示取不到有效值。
|
5509
5511
|
:type InstanceId: str
|
@@ -5530,7 +5532,12 @@ class NodeOverview(AbstractModel):
|
|
5530
5532
|
:type NodeId: str
|
5531
5533
|
:param _NodeAllocateState: 节点的工作状态
|
5532
5534
|
:type NodeAllocateState: str
|
5535
|
+
:param _NodeName: 节点的名称
|
5536
|
+
:type NodeName: str
|
5537
|
+
:param _CreateTime: 节点的创建时间
|
5538
|
+
:type CreateTime: str
|
5533
5539
|
"""
|
5540
|
+
self._ClusterId = None
|
5534
5541
|
self._InstanceId = None
|
5535
5542
|
self._Zone = None
|
5536
5543
|
self._NodeState = None
|
@@ -5540,6 +5547,19 @@ class NodeOverview(AbstractModel):
|
|
5540
5547
|
self._NodeType = None
|
5541
5548
|
self._NodeId = None
|
5542
5549
|
self._NodeAllocateState = None
|
5550
|
+
self._NodeName = None
|
5551
|
+
self._CreateTime = None
|
5552
|
+
|
5553
|
+
@property
|
5554
|
+
def ClusterId(self):
|
5555
|
+
"""集群ID
|
5556
|
+
:rtype: str
|
5557
|
+
"""
|
5558
|
+
return self._ClusterId
|
5559
|
+
|
5560
|
+
@ClusterId.setter
|
5561
|
+
def ClusterId(self, ClusterId):
|
5562
|
+
self._ClusterId = ClusterId
|
5543
5563
|
|
5544
5564
|
@property
|
5545
5565
|
def InstanceId(self):
|
@@ -5648,8 +5668,31 @@ class NodeOverview(AbstractModel):
|
|
5648
5668
|
def NodeAllocateState(self, NodeAllocateState):
|
5649
5669
|
self._NodeAllocateState = NodeAllocateState
|
5650
5670
|
|
5671
|
+
@property
|
5672
|
+
def NodeName(self):
|
5673
|
+
"""节点的名称
|
5674
|
+
:rtype: str
|
5675
|
+
"""
|
5676
|
+
return self._NodeName
|
5677
|
+
|
5678
|
+
@NodeName.setter
|
5679
|
+
def NodeName(self, NodeName):
|
5680
|
+
self._NodeName = NodeName
|
5681
|
+
|
5682
|
+
@property
|
5683
|
+
def CreateTime(self):
|
5684
|
+
"""节点的创建时间
|
5685
|
+
:rtype: str
|
5686
|
+
"""
|
5687
|
+
return self._CreateTime
|
5688
|
+
|
5689
|
+
@CreateTime.setter
|
5690
|
+
def CreateTime(self, CreateTime):
|
5691
|
+
self._CreateTime = CreateTime
|
5692
|
+
|
5651
5693
|
|
5652
5694
|
def _deserialize(self, params):
|
5695
|
+
self._ClusterId = params.get("ClusterId")
|
5653
5696
|
self._InstanceId = params.get("InstanceId")
|
5654
5697
|
self._Zone = params.get("Zone")
|
5655
5698
|
self._NodeState = params.get("NodeState")
|
@@ -5659,6 +5702,8 @@ class NodeOverview(AbstractModel):
|
|
5659
5702
|
self._NodeType = params.get("NodeType")
|
5660
5703
|
self._NodeId = params.get("NodeId")
|
5661
5704
|
self._NodeAllocateState = params.get("NodeAllocateState")
|
5705
|
+
self._NodeName = params.get("NodeName")
|
5706
|
+
self._CreateTime = params.get("CreateTime")
|
5662
5707
|
memeber_set = set(params.keys())
|
5663
5708
|
for name, value in vars(self).items():
|
5664
5709
|
property_name = name[1:]
|
@@ -16030,6 +16030,8 @@ class Pod(AbstractModel):
|
|
16030
16030
|
:type StartScheduleTime: str
|
16031
16031
|
:param _Message: 实例状态的补充信息
|
16032
16032
|
:type Message: str
|
16033
|
+
:param _NodeIP: 当前实例所在的节点 IP
|
16034
|
+
:type NodeIP: str
|
16033
16035
|
"""
|
16034
16036
|
self._Name = None
|
16035
16037
|
self._Uid = None
|
@@ -16043,6 +16045,7 @@ class Pod(AbstractModel):
|
|
16043
16045
|
self._Status = None
|
16044
16046
|
self._StartScheduleTime = None
|
16045
16047
|
self._Message = None
|
16048
|
+
self._NodeIP = None
|
16046
16049
|
|
16047
16050
|
@property
|
16048
16051
|
def Name(self):
|
@@ -16189,6 +16192,17 @@ class Pod(AbstractModel):
|
|
16189
16192
|
def Message(self, Message):
|
16190
16193
|
self._Message = Message
|
16191
16194
|
|
16195
|
+
@property
|
16196
|
+
def NodeIP(self):
|
16197
|
+
"""当前实例所在的节点 IP
|
16198
|
+
:rtype: str
|
16199
|
+
"""
|
16200
|
+
return self._NodeIP
|
16201
|
+
|
16202
|
+
@NodeIP.setter
|
16203
|
+
def NodeIP(self, NodeIP):
|
16204
|
+
self._NodeIP = NodeIP
|
16205
|
+
|
16192
16206
|
|
16193
16207
|
def _deserialize(self, params):
|
16194
16208
|
self._Name = params.get("Name")
|
@@ -16212,6 +16226,7 @@ class Pod(AbstractModel):
|
|
16212
16226
|
self._Status = params.get("Status")
|
16213
16227
|
self._StartScheduleTime = params.get("StartScheduleTime")
|
16214
16228
|
self._Message = params.get("Message")
|
16229
|
+
self._NodeIP = params.get("NodeIP")
|
16215
16230
|
memeber_set = set(params.keys())
|
16216
16231
|
for name, value in vars(self).items():
|
16217
16232
|
property_name = name[1:]
|