tencentcloud-sdk-python 3.0.1328__py2.py3-none-any.whl → 3.0.1330__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/ams/v20201229/models.py +157 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/batch/v20170312/models.py +2 -26
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cfw/v20190904/cfw_client.py +9 -3
- tencentcloud/clb/v20180317/models.py +45 -0
- tencentcloud/cvm/v20170312/models.py +22 -38
- tencentcloud/cynosdb/v20190107/models.py +23 -4
- tencentcloud/dlc/v20210125/models.py +0 -10
- tencentcloud/emr/v20190103/models.py +4 -4
- tencentcloud/ess/v20201111/ess_client.py +27 -0
- tencentcloud/ess/v20201111/models.py +147 -316
- tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
- tencentcloud/essbasic/v20210526/models.py +146 -238
- tencentcloud/faceid/v20180301/models.py +20 -12
- tencentcloud/lcic/v20220817/models.py +12 -2
- tencentcloud/lighthouse/v20200324/models.py +12 -12
- tencentcloud/live/v20180801/models.py +10 -112
- tencentcloud/lke/v20231130/lke_client.py +23 -0
- tencentcloud/lke/v20231130/models.py +128 -4
- tencentcloud/ocr/v20181119/models.py +23 -0
- tencentcloud/ocr/v20181119/ocr_client.py +10 -0
- tencentcloud/organization/v20210331/models.py +30 -0
- tencentcloud/rce/v20201103/models.py +18 -54
- tencentcloud/taf/v20200210/models.py +0 -2
- tencentcloud/tcbr/v20220217/models.py +30 -0
- tencentcloud/teo/v20220901/models.py +18 -4
- tencentcloud/tke/v20180525/models.py +2 -320
- tencentcloud/tke/v20220501/models.py +0 -8
- tencentcloud/tse/v20201207/models.py +153 -0
- tencentcloud/vm/v20201229/models.py +615 -68
- tencentcloud/vm/v20210922/models.py +737 -102
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/weilingwith/v20230427/models.py +0 -20
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/RECORD +40 -55
- tencentcloud/lp/__init__.py +0 -0
- tencentcloud/lp/v20200224/__init__.py +0 -0
- tencentcloud/lp/v20200224/errorcodes.py +0 -78
- tencentcloud/lp/v20200224/lp_client.py +0 -49
- tencentcloud/lp/v20200224/models.py +0 -748
- tencentcloud/rkp/__init__.py +0 -0
- tencentcloud/rkp/v20191209/__init__.py +0 -0
- tencentcloud/rkp/v20191209/errorcodes.py +0 -102
- tencentcloud/rkp/v20191209/models.py +0 -1007
- tencentcloud/rkp/v20191209/rkp_client.py +0 -101
- tencentcloud/rp/__init__.py +0 -0
- tencentcloud/rp/v20200224/__init__.py +0 -0
- tencentcloud/rp/v20200224/errorcodes.py +0 -78
- tencentcloud/rp/v20200224/models.py +0 -655
- tencentcloud/rp/v20200224/rp_client.py +0 -49
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/top_level.txt +0 -0
@@ -200,13 +200,10 @@ class ActionTimer(AbstractModel):
|
|
200
200
|
def __init__(self):
|
201
201
|
r"""
|
202
202
|
:param _TimerAction: 定时器动作,目前仅支持销毁一个值:TerminateInstances。
|
203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
204
203
|
:type TimerAction: str
|
205
204
|
:param _ActionTime: 执行时间,按照ISO8601标准表示,并且使用UTC时间。格式为 YYYY-MM-DDThh:mm:ssZ。例如 2018-05-29T11:26:40Z,执行时间必须大于当前时间5分钟。
|
206
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
207
205
|
:type ActionTime: str
|
208
206
|
:param _Externals: 扩展数据
|
209
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
210
207
|
:type Externals: :class:`tencentcloud.cvm.v20170312.models.Externals`
|
211
208
|
:param _ActionTimerId: 定时器ID。
|
212
209
|
:type ActionTimerId: str
|
@@ -230,7 +227,6 @@ DONE:已经触发
|
|
230
227
|
@property
|
231
228
|
def TimerAction(self):
|
232
229
|
"""定时器动作,目前仅支持销毁一个值:TerminateInstances。
|
233
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
234
230
|
:rtype: str
|
235
231
|
"""
|
236
232
|
return self._TimerAction
|
@@ -242,7 +238,6 @@ DONE:已经触发
|
|
242
238
|
@property
|
243
239
|
def ActionTime(self):
|
244
240
|
"""执行时间,按照ISO8601标准表示,并且使用UTC时间。格式为 YYYY-MM-DDThh:mm:ssZ。例如 2018-05-29T11:26:40Z,执行时间必须大于当前时间5分钟。
|
245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
246
241
|
:rtype: str
|
247
242
|
"""
|
248
243
|
return self._ActionTime
|
@@ -254,7 +249,6 @@ DONE:已经触发
|
|
254
249
|
@property
|
255
250
|
def Externals(self):
|
256
251
|
"""扩展数据
|
257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
258
252
|
:rtype: :class:`tencentcloud.cvm.v20170312.models.Externals`
|
259
253
|
"""
|
260
254
|
return self._Externals
|
@@ -2777,6 +2771,8 @@ false(默认):发送正常请求,通过检查后直接创建实例。
|
|
2777
2771
|
:type InstanceChargePrepaid: :class:`tencentcloud.cvm.v20170312.models.InstanceChargePrepaid`
|
2778
2772
|
:param _DisableApiTermination: 实例销毁保护标志,表示是否允许通过api接口删除实例。取值范围:<br><li>TRUE:表示开启实例保护,不允许通过api接口删除实例</li><li>FALSE:表示关闭实例保护,允许通过api接口删除实例<br></li>默认取值:FALSE。
|
2779
2773
|
:type DisableApiTermination: bool
|
2774
|
+
:param _LaunchTemplateTagSpecification: 标签描述列表。通过指定该参数可以绑定标签到实例启动模板。
|
2775
|
+
:type LaunchTemplateTagSpecification: list of TagSpecification
|
2780
2776
|
"""
|
2781
2777
|
self._LaunchTemplateName = None
|
2782
2778
|
self._Placement = None
|
@@ -2805,6 +2801,7 @@ false(默认):发送正常请求,通过检查后直接创建实例。
|
|
2805
2801
|
self._InstanceChargeType = None
|
2806
2802
|
self._InstanceChargePrepaid = None
|
2807
2803
|
self._DisableApiTermination = None
|
2804
|
+
self._LaunchTemplateTagSpecification = None
|
2808
2805
|
|
2809
2806
|
@property
|
2810
2807
|
def LaunchTemplateName(self):
|
@@ -3108,6 +3105,17 @@ false(默认):发送正常请求,通过检查后直接创建实例。
|
|
3108
3105
|
def DisableApiTermination(self, DisableApiTermination):
|
3109
3106
|
self._DisableApiTermination = DisableApiTermination
|
3110
3107
|
|
3108
|
+
@property
|
3109
|
+
def LaunchTemplateTagSpecification(self):
|
3110
|
+
"""标签描述列表。通过指定该参数可以绑定标签到实例启动模板。
|
3111
|
+
:rtype: list of TagSpecification
|
3112
|
+
"""
|
3113
|
+
return self._LaunchTemplateTagSpecification
|
3114
|
+
|
3115
|
+
@LaunchTemplateTagSpecification.setter
|
3116
|
+
def LaunchTemplateTagSpecification(self, LaunchTemplateTagSpecification):
|
3117
|
+
self._LaunchTemplateTagSpecification = LaunchTemplateTagSpecification
|
3118
|
+
|
3111
3119
|
|
3112
3120
|
def _deserialize(self, params):
|
3113
3121
|
self._LaunchTemplateName = params.get("LaunchTemplateName")
|
@@ -3165,6 +3173,12 @@ false(默认):发送正常请求,通过检查后直接创建实例。
|
|
3165
3173
|
self._InstanceChargePrepaid = InstanceChargePrepaid()
|
3166
3174
|
self._InstanceChargePrepaid._deserialize(params.get("InstanceChargePrepaid"))
|
3167
3175
|
self._DisableApiTermination = params.get("DisableApiTermination")
|
3176
|
+
if params.get("LaunchTemplateTagSpecification") is not None:
|
3177
|
+
self._LaunchTemplateTagSpecification = []
|
3178
|
+
for item in params.get("LaunchTemplateTagSpecification"):
|
3179
|
+
obj = TagSpecification()
|
3180
|
+
obj._deserialize(item)
|
3181
|
+
self._LaunchTemplateTagSpecification.append(obj)
|
3168
3182
|
memeber_set = set(params.keys())
|
3169
3183
|
for name, value in vars(self).items():
|
3170
3184
|
property_name = name[1:]
|
@@ -3761,10 +3775,8 @@ class DataDisk(AbstractModel):
|
|
3761
3775
|
默认取值:true<br />
|
3762
3776
|
该参数目前仅用于 `RunInstances` 接口。
|
3763
3777
|
</li>
|
3764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3765
3778
|
:type DeleteWithInstance: bool
|
3766
3779
|
:param _SnapshotId: 数据盘快照ID。选择的数据盘快照大小需小于数据盘大小。
|
3767
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3768
3780
|
:type SnapshotId: str
|
3769
3781
|
:param _Encrypt: 数据盘是加密。取值范围:
|
3770
3782
|
<li>true:加密</li>
|
@@ -3773,23 +3785,18 @@ class DataDisk(AbstractModel):
|
|
3773
3785
|
默认取值:false<br />
|
3774
3786
|
该参数目前仅用于 `RunInstances` 接口。
|
3775
3787
|
</li>
|
3776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3777
3788
|
:type Encrypt: bool
|
3778
3789
|
:param _KmsKeyId: 自定义CMK对应的ID,取值为UUID或者类似kms-abcd1234。用于加密云盘。
|
3779
3790
|
|
3780
3791
|
该参数目前仅用于 `RunInstances` 接口。
|
3781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3782
3792
|
:type KmsKeyId: str
|
3783
3793
|
:param _ThroughputPerformance: 云硬盘性能,单位:MB/s
|
3784
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3785
3794
|
:type ThroughputPerformance: int
|
3786
3795
|
:param _CdcId: 所属的独享集群ID。
|
3787
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3788
3796
|
:type CdcId: str
|
3789
3797
|
:param _BurstPerformance: 突发性能
|
3790
3798
|
|
3791
3799
|
<b>注:内测中。</b>
|
3792
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3793
3800
|
:type BurstPerformance: bool
|
3794
3801
|
:param _DiskName: 磁盘名称,长度不超过128 个字符。
|
3795
3802
|
|
@@ -3851,7 +3858,6 @@ class DataDisk(AbstractModel):
|
|
3851
3858
|
默认取值:true<br />
|
3852
3859
|
该参数目前仅用于 `RunInstances` 接口。
|
3853
3860
|
</li>
|
3854
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3855
3861
|
:rtype: bool
|
3856
3862
|
"""
|
3857
3863
|
return self._DeleteWithInstance
|
@@ -3863,7 +3869,6 @@ class DataDisk(AbstractModel):
|
|
3863
3869
|
@property
|
3864
3870
|
def SnapshotId(self):
|
3865
3871
|
"""数据盘快照ID。选择的数据盘快照大小需小于数据盘大小。
|
3866
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3867
3872
|
:rtype: str
|
3868
3873
|
"""
|
3869
3874
|
return self._SnapshotId
|
@@ -3881,7 +3886,6 @@ class DataDisk(AbstractModel):
|
|
3881
3886
|
默认取值:false<br />
|
3882
3887
|
该参数目前仅用于 `RunInstances` 接口。
|
3883
3888
|
</li>
|
3884
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3885
3889
|
:rtype: bool
|
3886
3890
|
"""
|
3887
3891
|
return self._Encrypt
|
@@ -3895,7 +3899,6 @@ class DataDisk(AbstractModel):
|
|
3895
3899
|
"""自定义CMK对应的ID,取值为UUID或者类似kms-abcd1234。用于加密云盘。
|
3896
3900
|
|
3897
3901
|
该参数目前仅用于 `RunInstances` 接口。
|
3898
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3899
3902
|
:rtype: str
|
3900
3903
|
"""
|
3901
3904
|
return self._KmsKeyId
|
@@ -3907,7 +3910,6 @@ class DataDisk(AbstractModel):
|
|
3907
3910
|
@property
|
3908
3911
|
def ThroughputPerformance(self):
|
3909
3912
|
"""云硬盘性能,单位:MB/s
|
3910
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3911
3913
|
:rtype: int
|
3912
3914
|
"""
|
3913
3915
|
return self._ThroughputPerformance
|
@@ -3919,7 +3921,6 @@ class DataDisk(AbstractModel):
|
|
3919
3921
|
@property
|
3920
3922
|
def CdcId(self):
|
3921
3923
|
"""所属的独享集群ID。
|
3922
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3923
3924
|
:rtype: str
|
3924
3925
|
"""
|
3925
3926
|
return self._CdcId
|
@@ -3933,7 +3934,6 @@ class DataDisk(AbstractModel):
|
|
3933
3934
|
"""突发性能
|
3934
3935
|
|
3935
3936
|
<b>注:内测中。</b>
|
3936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3937
3937
|
:rtype: bool
|
3938
3938
|
"""
|
3939
3939
|
return self._BurstPerformance
|
@@ -12943,10 +12943,8 @@ class InstanceMarketOptionsRequest(AbstractModel):
|
|
12943
12943
|
def __init__(self):
|
12944
12944
|
r"""
|
12945
12945
|
:param _SpotOptions: 竞价相关选项
|
12946
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12947
12946
|
:type SpotOptions: :class:`tencentcloud.cvm.v20170312.models.SpotMarketOptions`
|
12948
12947
|
:param _MarketType: 市场选项类型,当前只支持取值:spot
|
12949
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12950
12948
|
:type MarketType: str
|
12951
12949
|
"""
|
12952
12950
|
self._SpotOptions = None
|
@@ -12955,7 +12953,6 @@ class InstanceMarketOptionsRequest(AbstractModel):
|
|
12955
12953
|
@property
|
12956
12954
|
def SpotOptions(self):
|
12957
12955
|
"""竞价相关选项
|
12958
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12959
12956
|
:rtype: :class:`tencentcloud.cvm.v20170312.models.SpotMarketOptions`
|
12960
12957
|
"""
|
12961
12958
|
return self._SpotOptions
|
@@ -12967,7 +12964,6 @@ class InstanceMarketOptionsRequest(AbstractModel):
|
|
12967
12964
|
@property
|
12968
12965
|
def MarketType(self):
|
12969
12966
|
"""市场选项类型,当前只支持取值:spot
|
12970
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12971
12967
|
:rtype: str
|
12972
12968
|
"""
|
12973
12969
|
return self._MarketType
|
@@ -15299,7 +15295,6 @@ class LoginSettings(AbstractModel):
|
|
15299
15295
|
注意:此字段可能返回 null,表示取不到有效值。
|
15300
15296
|
:type KeyIds: list of str
|
15301
15297
|
:param _KeepImageLogin: 保持镜像的原始设置。该参数与Password或KeyIds.N不能同时指定。只有使用自定义镜像、共享镜像或外部导入镜像创建实例时才能指定该参数为true。取值范围:<li>true:表示保持镜像的登录设置</li><li>false:表示不保持镜像的登录设置</li>默认取值:false。
|
15302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15303
15298
|
:type KeepImageLogin: str
|
15304
15299
|
"""
|
15305
15300
|
self._Password = None
|
@@ -15332,7 +15327,6 @@ class LoginSettings(AbstractModel):
|
|
15332
15327
|
@property
|
15333
15328
|
def KeepImageLogin(self):
|
15334
15329
|
"""保持镜像的原始设置。该参数与Password或KeyIds.N不能同时指定。只有使用自定义镜像、共享镜像或外部导入镜像创建实例时才能指定该参数为true。取值范围:<li>true:表示保持镜像的登录设置</li><li>false:表示不保持镜像的登录设置</li>默认取值:false。
|
15335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15336
15330
|
:rtype: str
|
15337
15331
|
"""
|
15338
15332
|
return self._KeepImageLogin
|
@@ -19839,16 +19833,14 @@ class RunMonitorServiceEnabled(AbstractModel):
|
|
19839
19833
|
|
19840
19834
|
def __init__(self):
|
19841
19835
|
r"""
|
19842
|
-
:param _Enabled: 是否开启[云监控](/document/product/248)服务。取值范围:<br><li>true
|
19843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19836
|
+
:param _Enabled: 是否开启[云监控](/document/product/248)服务。取值范围:<br><li>true:表示开启云监控服务</li><li>false:表示不开启云监控服务</li><br>默认取值:true。
|
19844
19837
|
:type Enabled: bool
|
19845
19838
|
"""
|
19846
19839
|
self._Enabled = None
|
19847
19840
|
|
19848
19841
|
@property
|
19849
19842
|
def Enabled(self):
|
19850
|
-
"""是否开启[云监控](/document/product/248)服务。取值范围:<br><li>true
|
19851
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19843
|
+
"""是否开启[云监控](/document/product/248)服务。取值范围:<br><li>true:表示开启云监控服务</li><li>false:表示不开启云监控服务</li><br>默认取值:true。
|
19852
19844
|
:rtype: bool
|
19853
19845
|
"""
|
19854
19846
|
return self._Enabled
|
@@ -20035,10 +20027,8 @@ class SpotMarketOptions(AbstractModel):
|
|
20035
20027
|
def __init__(self):
|
20036
20028
|
r"""
|
20037
20029
|
:param _MaxPrice: 竞价出价
|
20038
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20039
20030
|
:type MaxPrice: str
|
20040
20031
|
:param _SpotInstanceType: 竞价请求类型,当前仅支持类型:one-time
|
20041
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20042
20032
|
:type SpotInstanceType: str
|
20043
20033
|
"""
|
20044
20034
|
self._MaxPrice = None
|
@@ -20047,7 +20037,6 @@ class SpotMarketOptions(AbstractModel):
|
|
20047
20037
|
@property
|
20048
20038
|
def MaxPrice(self):
|
20049
20039
|
"""竞价出价
|
20050
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20051
20040
|
:rtype: str
|
20052
20041
|
"""
|
20053
20042
|
return self._MaxPrice
|
@@ -20059,7 +20048,6 @@ class SpotMarketOptions(AbstractModel):
|
|
20059
20048
|
@property
|
20060
20049
|
def SpotInstanceType(self):
|
20061
20050
|
"""竞价请求类型,当前仅支持类型:one-time
|
20062
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20063
20051
|
:rtype: str
|
20064
20052
|
"""
|
20065
20053
|
return self._SpotInstanceType
|
@@ -20822,10 +20810,8 @@ class TagSpecification(AbstractModel):
|
|
20822
20810
|
def __init__(self):
|
20823
20811
|
r"""
|
20824
20812
|
:param _ResourceType: 标签绑定的资源类型,云服务器为“instance”,专用宿主机为“host”,镜像为“image”,密钥为“keypair”
|
20825
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20826
20813
|
:type ResourceType: str
|
20827
20814
|
:param _Tags: 标签对列表
|
20828
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20829
20815
|
:type Tags: list of Tag
|
20830
20816
|
"""
|
20831
20817
|
self._ResourceType = None
|
@@ -20834,7 +20820,6 @@ class TagSpecification(AbstractModel):
|
|
20834
20820
|
@property
|
20835
20821
|
def ResourceType(self):
|
20836
20822
|
"""标签绑定的资源类型,云服务器为“instance”,专用宿主机为“host”,镜像为“image”,密钥为“keypair”
|
20837
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20838
20823
|
:rtype: str
|
20839
20824
|
"""
|
20840
20825
|
return self._ResourceType
|
@@ -20846,7 +20831,6 @@ class TagSpecification(AbstractModel):
|
|
20846
20831
|
@property
|
20847
20832
|
def Tags(self):
|
20848
20833
|
"""标签对列表
|
20849
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20850
20834
|
:rtype: list of Tag
|
20851
20835
|
"""
|
20852
20836
|
return self._Tags
|
@@ -13908,6 +13908,9 @@ class DescribeBackupConfigResponse(AbstractModel):
|
|
13908
13908
|
:param _LogicCrossRegionsConfigUpdateTime: 跨地域逻辑备份配置修改时间
|
13909
13909
|
注意:此字段可能返回 null,表示取不到有效值。
|
13910
13910
|
:type LogicCrossRegionsConfigUpdateTime: str
|
13911
|
+
:param _LogicBackupConfig: 自动逻辑备份配置
|
13912
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13913
|
+
:type LogicBackupConfig: :class:`tencentcloud.cynosdb.v20190107.models.LogicBackupConfigInfo`
|
13911
13914
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13912
13915
|
:type RequestId: str
|
13913
13916
|
"""
|
@@ -13917,6 +13920,7 @@ class DescribeBackupConfigResponse(AbstractModel):
|
|
13917
13920
|
self._BackupFreq = None
|
13918
13921
|
self._BackupType = None
|
13919
13922
|
self._LogicCrossRegionsConfigUpdateTime = None
|
13923
|
+
self._LogicBackupConfig = None
|
13920
13924
|
self._RequestId = None
|
13921
13925
|
|
13922
13926
|
@property
|
@@ -13988,6 +13992,18 @@ class DescribeBackupConfigResponse(AbstractModel):
|
|
13988
13992
|
def LogicCrossRegionsConfigUpdateTime(self, LogicCrossRegionsConfigUpdateTime):
|
13989
13993
|
self._LogicCrossRegionsConfigUpdateTime = LogicCrossRegionsConfigUpdateTime
|
13990
13994
|
|
13995
|
+
@property
|
13996
|
+
def LogicBackupConfig(self):
|
13997
|
+
"""自动逻辑备份配置
|
13998
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13999
|
+
:rtype: :class:`tencentcloud.cynosdb.v20190107.models.LogicBackupConfigInfo`
|
14000
|
+
"""
|
14001
|
+
return self._LogicBackupConfig
|
14002
|
+
|
14003
|
+
@LogicBackupConfig.setter
|
14004
|
+
def LogicBackupConfig(self, LogicBackupConfig):
|
14005
|
+
self._LogicBackupConfig = LogicBackupConfig
|
14006
|
+
|
13991
14007
|
@property
|
13992
14008
|
def RequestId(self):
|
13993
14009
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -14007,6 +14023,9 @@ class DescribeBackupConfigResponse(AbstractModel):
|
|
14007
14023
|
self._BackupFreq = params.get("BackupFreq")
|
14008
14024
|
self._BackupType = params.get("BackupType")
|
14009
14025
|
self._LogicCrossRegionsConfigUpdateTime = params.get("LogicCrossRegionsConfigUpdateTime")
|
14026
|
+
if params.get("LogicBackupConfig") is not None:
|
14027
|
+
self._LogicBackupConfig = LogicBackupConfigInfo()
|
14028
|
+
self._LogicBackupConfig._deserialize(params.get("LogicBackupConfig"))
|
14010
14029
|
self._RequestId = params.get("RequestId")
|
14011
14030
|
|
14012
14031
|
|
@@ -16544,9 +16563,9 @@ class DescribeDBSecurityGroupsRequest(AbstractModel):
|
|
16544
16563
|
|
16545
16564
|
def __init__(self):
|
16546
16565
|
r"""
|
16547
|
-
:param _InstanceId: 实例ID
|
16566
|
+
:param _InstanceId: 实例ID(InstanceId与InstanceGroupId必须任选一个传入)
|
16548
16567
|
:type InstanceId: str
|
16549
|
-
:param _InstanceGroupId: 实例组ID
|
16568
|
+
:param _InstanceGroupId: 实例组ID(InstanceId与InstanceGroupId必须任选一个传入)
|
16550
16569
|
:type InstanceGroupId: str
|
16551
16570
|
"""
|
16552
16571
|
self._InstanceId = None
|
@@ -16556,7 +16575,7 @@ class DescribeDBSecurityGroupsRequest(AbstractModel):
|
|
16556
16575
|
def InstanceId(self):
|
16557
16576
|
warnings.warn("parameter `InstanceId` is deprecated", DeprecationWarning)
|
16558
16577
|
|
16559
|
-
"""实例ID
|
16578
|
+
"""实例ID(InstanceId与InstanceGroupId必须任选一个传入)
|
16560
16579
|
:rtype: str
|
16561
16580
|
"""
|
16562
16581
|
return self._InstanceId
|
@@ -16569,7 +16588,7 @@ class DescribeDBSecurityGroupsRequest(AbstractModel):
|
|
16569
16588
|
|
16570
16589
|
@property
|
16571
16590
|
def InstanceGroupId(self):
|
16572
|
-
"""实例组ID
|
16591
|
+
"""实例组ID(InstanceId与InstanceGroupId必须任选一个传入)
|
16573
16592
|
:rtype: str
|
16574
16593
|
"""
|
16575
16594
|
return self._InstanceGroupId
|
@@ -7738,13 +7738,10 @@ class CrontabResumeSuspendStrategy(AbstractModel):
|
|
7738
7738
|
def __init__(self):
|
7739
7739
|
r"""
|
7740
7740
|
:param _ResumeTime: 定时拉起时间:如:周一&周三8点
|
7741
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7742
7741
|
:type ResumeTime: str
|
7743
7742
|
:param _SuspendTime: 定时挂起时间:如:周一&周三20点
|
7744
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7745
7743
|
:type SuspendTime: str
|
7746
7744
|
:param _SuspendStrategy: 挂起配置:0(默认):等待任务结束后挂起、1:强制挂起
|
7747
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7748
7745
|
:type SuspendStrategy: int
|
7749
7746
|
"""
|
7750
7747
|
self._ResumeTime = None
|
@@ -7754,7 +7751,6 @@ class CrontabResumeSuspendStrategy(AbstractModel):
|
|
7754
7751
|
@property
|
7755
7752
|
def ResumeTime(self):
|
7756
7753
|
"""定时拉起时间:如:周一&周三8点
|
7757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7758
7754
|
:rtype: str
|
7759
7755
|
"""
|
7760
7756
|
return self._ResumeTime
|
@@ -7766,7 +7762,6 @@ class CrontabResumeSuspendStrategy(AbstractModel):
|
|
7766
7762
|
@property
|
7767
7763
|
def SuspendTime(self):
|
7768
7764
|
"""定时挂起时间:如:周一&周三20点
|
7769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7770
7765
|
:rtype: str
|
7771
7766
|
"""
|
7772
7767
|
return self._SuspendTime
|
@@ -7778,7 +7773,6 @@ class CrontabResumeSuspendStrategy(AbstractModel):
|
|
7778
7773
|
@property
|
7779
7774
|
def SuspendStrategy(self):
|
7780
7775
|
"""挂起配置:0(默认):等待任务结束后挂起、1:强制挂起
|
7781
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7782
7776
|
:rtype: int
|
7783
7777
|
"""
|
7784
7778
|
return self._SuspendStrategy
|
@@ -32351,10 +32345,8 @@ class TagInfo(AbstractModel):
|
|
32351
32345
|
def __init__(self):
|
32352
32346
|
r"""
|
32353
32347
|
:param _TagKey: 标签键
|
32354
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
32355
32348
|
:type TagKey: str
|
32356
32349
|
:param _TagValue: 标签值
|
32357
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
32358
32350
|
:type TagValue: str
|
32359
32351
|
"""
|
32360
32352
|
self._TagKey = None
|
@@ -32363,7 +32355,6 @@ class TagInfo(AbstractModel):
|
|
32363
32355
|
@property
|
32364
32356
|
def TagKey(self):
|
32365
32357
|
"""标签键
|
32366
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
32367
32358
|
:rtype: str
|
32368
32359
|
"""
|
32369
32360
|
return self._TagKey
|
@@ -32375,7 +32366,6 @@ class TagInfo(AbstractModel):
|
|
32375
32366
|
@property
|
32376
32367
|
def TagValue(self):
|
32377
32368
|
"""标签值
|
32378
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
32379
32369
|
:rtype: str
|
32380
32370
|
"""
|
32381
32371
|
return self._TagValue
|
@@ -14651,7 +14651,7 @@ class EmrProductConfigOutter(AbstractModel):
|
|
14651
14651
|
:param _SecurityOn: 是否支持安全模式
|
14652
14652
|
注意:此字段可能返回 null,表示取不到有效值。
|
14653
14653
|
:type SecurityOn: bool
|
14654
|
-
:param _SecurityGroup:
|
14654
|
+
:param _SecurityGroup: 集群初始安全组id
|
14655
14655
|
注意:此字段可能返回 null,表示取不到有效值。
|
14656
14656
|
:type SecurityGroup: str
|
14657
14657
|
:param _CbsEncrypt: 是否开启Cbs加密
|
@@ -14660,7 +14660,7 @@ class EmrProductConfigOutter(AbstractModel):
|
|
14660
14660
|
:param _ApplicationRole: 自定义应用角色。
|
14661
14661
|
注意:此字段可能返回 null,表示取不到有效值。
|
14662
14662
|
:type ApplicationRole: str
|
14663
|
-
:param _SecurityGroups: 安全组
|
14663
|
+
:param _SecurityGroups: 安全组id
|
14664
14664
|
注意:此字段可能返回 null,表示取不到有效值。
|
14665
14665
|
:type SecurityGroups: list of str
|
14666
14666
|
:param _PublicKeyId: SSH密钥Id
|
@@ -14857,7 +14857,7 @@ class EmrProductConfigOutter(AbstractModel):
|
|
14857
14857
|
|
14858
14858
|
@property
|
14859
14859
|
def SecurityGroup(self):
|
14860
|
-
"""
|
14860
|
+
"""集群初始安全组id
|
14861
14861
|
注意:此字段可能返回 null,表示取不到有效值。
|
14862
14862
|
:rtype: str
|
14863
14863
|
"""
|
@@ -14893,7 +14893,7 @@ class EmrProductConfigOutter(AbstractModel):
|
|
14893
14893
|
|
14894
14894
|
@property
|
14895
14895
|
def SecurityGroups(self):
|
14896
|
-
"""安全组
|
14896
|
+
"""安全组id
|
14897
14897
|
注意:此字段可能返回 null,表示取不到有效值。
|
14898
14898
|
:rtype: list of str
|
14899
14899
|
"""
|
@@ -539,6 +539,33 @@ class EssClient(AbstractClient):
|
|
539
539
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
540
540
|
|
541
541
|
|
542
|
+
def CreateEmployeeChangeUrl(self, request):
|
543
|
+
"""生成员工信息变更链接,当前仅支持变更手机号
|
544
|
+
|
545
|
+
注:
|
546
|
+
1. 目前仅支持修改员工手机号,待修改员工必须已经实名且在职
|
547
|
+
2. 仅支持返回小程序链接
|
548
|
+
|
549
|
+
:param request: Request instance for CreateEmployeeChangeUrl.
|
550
|
+
:type request: :class:`tencentcloud.ess.v20201111.models.CreateEmployeeChangeUrlRequest`
|
551
|
+
:rtype: :class:`tencentcloud.ess.v20201111.models.CreateEmployeeChangeUrlResponse`
|
552
|
+
|
553
|
+
"""
|
554
|
+
try:
|
555
|
+
params = request._serialize()
|
556
|
+
headers = request.headers
|
557
|
+
body = self.call("CreateEmployeeChangeUrl", params, headers=headers)
|
558
|
+
response = json.loads(body)
|
559
|
+
model = models.CreateEmployeeChangeUrlResponse()
|
560
|
+
model._deserialize(response["Response"])
|
561
|
+
return model
|
562
|
+
except Exception as e:
|
563
|
+
if isinstance(e, TencentCloudSDKException):
|
564
|
+
raise
|
565
|
+
else:
|
566
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
567
|
+
|
568
|
+
|
542
569
|
def CreateEmployeeQualificationSealQrCode(self, request):
|
543
570
|
"""该接口用于获取个人授权执业章给企业的微信二维码,需要个人用户通过微信扫码。
|
544
571
|
|