tencentcloud-sdk-python 3.0.1059__py2.py3-none-any.whl → 3.0.1061__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cat/v20180409/models.py +13 -1
- tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +322 -0
- tencentcloud/cdwdoris/v20211228/models.py +3758 -867
- tencentcloud/cls/v20201016/models.py +1 -1
- tencentcloud/emr/v20190103/models.py +502 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +75 -69
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -2
- tencentcloud/essbasic/v20210526/models.py +22 -13
- tencentcloud/iotcloud/v20210408/errorcodes.py +3 -0
- tencentcloud/iss/v20230517/errorcodes.py +3 -0
- tencentcloud/mongodb/v20190725/models.py +17 -8
- tencentcloud/mongodb/v20190725/mongodb_client.py +1 -1
- tencentcloud/organization/v20210331/errorcodes.py +9 -0
- tencentcloud/rkp/v20191209/rkp_client.py +9 -3
- tencentcloud/ses/v20201002/errorcodes.py +3 -0
- tencentcloud/ses/v20201002/models.py +2 -3
- tencentcloud/teo/v20220901/errorcodes.py +15 -0
- tencentcloud/tione/v20211111/errorcodes.py +6 -0
- tencentcloud/tke/v20180525/models.py +97 -1
- tencentcloud/vod/v20180717/models.py +52 -51
- tencentcloud/vod/v20180717/vod_client.py +22 -11
- tencentcloud/vpc/v20170312/models.py +12 -0
- tencentcloud/waf/v20180125/models.py +13 -0
- tencentcloud/yinsuda/v20220527/models.py +431 -0
- tencentcloud/yinsuda/v20220527/yinsuda_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1059.dist-info → tencentcloud_sdk_python-3.0.1061.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1059.dist-info → tencentcloud_sdk_python-3.0.1061.dist-info}/RECORD +32 -32
- {tencentcloud_sdk_python-3.0.1059.dist-info → tencentcloud_sdk_python-3.0.1061.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1059.dist-info → tencentcloud_sdk_python-3.0.1061.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1059.dist-info → tencentcloud_sdk_python-3.0.1061.dist-info}/top_level.txt +0 -0
|
@@ -17440,7 +17440,7 @@ BizType为1时,优先使用MetricNames字段多指标只能填充到MetricName
|
|
|
17440
17440
|
:type MetricNames: list of str
|
|
17441
17441
|
:param _MetricLabels: 指标维度,不接受时间类型。
|
|
17442
17442
|
:type MetricLabels: list of str
|
|
17443
|
-
:param _CustomTime: 指标时间戳,默认值为SQL查询时间范围的左侧时间点,您也可以指定其他字段(类型为uinx
|
|
17443
|
+
:param _CustomTime: 指标时间戳,默认值为SQL查询时间范围的左侧时间点,您也可以指定其他字段(类型为uinx时间、TimeStamp,精度毫秒)为指标时间戳。
|
|
17444
17444
|
:type CustomTime: str
|
|
17445
17445
|
:param _CustomMetricLabels: 除了MetricLabels,您还可以使用该参数,为指标补充静态的维度。
|
|
17446
17446
|
维度名以字母或下划线开头,后面可以跟字母、数字或下划线,长度小于等于1024 字节
|
|
@@ -400,6 +400,12 @@ class AutoScaleRecord(AbstractModel):
|
|
|
400
400
|
:param _CompensateCount: 补偿次数
|
|
401
401
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
402
402
|
:type CompensateCount: int
|
|
403
|
+
:param _RetryCount: 重试次数
|
|
404
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
405
|
+
:type RetryCount: int
|
|
406
|
+
:param _RetryInfo: 重试信息
|
|
407
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
408
|
+
:type RetryInfo: str
|
|
403
409
|
"""
|
|
404
410
|
self._StrategyName = None
|
|
405
411
|
self._ScaleAction = None
|
|
@@ -412,6 +418,8 @@ class AutoScaleRecord(AbstractModel):
|
|
|
412
418
|
self._SpecInfo = None
|
|
413
419
|
self._CompensateFlag = None
|
|
414
420
|
self._CompensateCount = None
|
|
421
|
+
self._RetryCount = None
|
|
422
|
+
self._RetryInfo = None
|
|
415
423
|
|
|
416
424
|
@property
|
|
417
425
|
def StrategyName(self):
|
|
@@ -501,6 +509,22 @@ class AutoScaleRecord(AbstractModel):
|
|
|
501
509
|
def CompensateCount(self, CompensateCount):
|
|
502
510
|
self._CompensateCount = CompensateCount
|
|
503
511
|
|
|
512
|
+
@property
|
|
513
|
+
def RetryCount(self):
|
|
514
|
+
return self._RetryCount
|
|
515
|
+
|
|
516
|
+
@RetryCount.setter
|
|
517
|
+
def RetryCount(self, RetryCount):
|
|
518
|
+
self._RetryCount = RetryCount
|
|
519
|
+
|
|
520
|
+
@property
|
|
521
|
+
def RetryInfo(self):
|
|
522
|
+
return self._RetryInfo
|
|
523
|
+
|
|
524
|
+
@RetryInfo.setter
|
|
525
|
+
def RetryInfo(self, RetryInfo):
|
|
526
|
+
self._RetryInfo = RetryInfo
|
|
527
|
+
|
|
504
528
|
|
|
505
529
|
def _deserialize(self, params):
|
|
506
530
|
self._StrategyName = params.get("StrategyName")
|
|
@@ -514,6 +538,8 @@ class AutoScaleRecord(AbstractModel):
|
|
|
514
538
|
self._SpecInfo = params.get("SpecInfo")
|
|
515
539
|
self._CompensateFlag = params.get("CompensateFlag")
|
|
516
540
|
self._CompensateCount = params.get("CompensateCount")
|
|
541
|
+
self._RetryCount = params.get("RetryCount")
|
|
542
|
+
self._RetryInfo = params.get("RetryInfo")
|
|
517
543
|
memeber_set = set(params.keys())
|
|
518
544
|
for name, value in vars(self).items():
|
|
519
545
|
property_name = name[1:]
|
|
@@ -1137,6 +1163,12 @@ class ClusterInstancesInfo(AbstractModel):
|
|
|
1137
1163
|
:param _IsCvmReplace: 是否开通异常节点自动补偿
|
|
1138
1164
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1139
1165
|
:type IsCvmReplace: bool
|
|
1166
|
+
:param _ClusterTitle: 标题
|
|
1167
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1168
|
+
:type ClusterTitle: str
|
|
1169
|
+
:param _ConfigDetail: 集群产品配置信息
|
|
1170
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1171
|
+
:type ConfigDetail: :class:`tencentcloud.emr.v20190103.models.EmrProductConfigDetail`
|
|
1140
1172
|
"""
|
|
1141
1173
|
self._Id = None
|
|
1142
1174
|
self._ClusterId = None
|
|
@@ -1180,6 +1212,8 @@ class ClusterInstancesInfo(AbstractModel):
|
|
|
1180
1212
|
self._TopologyInfoList = None
|
|
1181
1213
|
self._IsMultiZoneCluster = None
|
|
1182
1214
|
self._IsCvmReplace = None
|
|
1215
|
+
self._ClusterTitle = None
|
|
1216
|
+
self._ConfigDetail = None
|
|
1183
1217
|
|
|
1184
1218
|
@property
|
|
1185
1219
|
def Id(self):
|
|
@@ -1199,10 +1233,14 @@ class ClusterInstancesInfo(AbstractModel):
|
|
|
1199
1233
|
|
|
1200
1234
|
@property
|
|
1201
1235
|
def Ftitle(self):
|
|
1236
|
+
warnings.warn("parameter `Ftitle` is deprecated", DeprecationWarning)
|
|
1237
|
+
|
|
1202
1238
|
return self._Ftitle
|
|
1203
1239
|
|
|
1204
1240
|
@Ftitle.setter
|
|
1205
1241
|
def Ftitle(self, Ftitle):
|
|
1242
|
+
warnings.warn("parameter `Ftitle` is deprecated", DeprecationWarning)
|
|
1243
|
+
|
|
1206
1244
|
self._Ftitle = Ftitle
|
|
1207
1245
|
|
|
1208
1246
|
@property
|
|
@@ -1295,10 +1333,14 @@ class ClusterInstancesInfo(AbstractModel):
|
|
|
1295
1333
|
|
|
1296
1334
|
@property
|
|
1297
1335
|
def Config(self):
|
|
1336
|
+
warnings.warn("parameter `Config` is deprecated", DeprecationWarning)
|
|
1337
|
+
|
|
1298
1338
|
return self._Config
|
|
1299
1339
|
|
|
1300
1340
|
@Config.setter
|
|
1301
1341
|
def Config(self, Config):
|
|
1342
|
+
warnings.warn("parameter `Config` is deprecated", DeprecationWarning)
|
|
1343
|
+
|
|
1302
1344
|
self._Config = Config
|
|
1303
1345
|
|
|
1304
1346
|
@property
|
|
@@ -1517,6 +1559,22 @@ class ClusterInstancesInfo(AbstractModel):
|
|
|
1517
1559
|
def IsCvmReplace(self, IsCvmReplace):
|
|
1518
1560
|
self._IsCvmReplace = IsCvmReplace
|
|
1519
1561
|
|
|
1562
|
+
@property
|
|
1563
|
+
def ClusterTitle(self):
|
|
1564
|
+
return self._ClusterTitle
|
|
1565
|
+
|
|
1566
|
+
@ClusterTitle.setter
|
|
1567
|
+
def ClusterTitle(self, ClusterTitle):
|
|
1568
|
+
self._ClusterTitle = ClusterTitle
|
|
1569
|
+
|
|
1570
|
+
@property
|
|
1571
|
+
def ConfigDetail(self):
|
|
1572
|
+
return self._ConfigDetail
|
|
1573
|
+
|
|
1574
|
+
@ConfigDetail.setter
|
|
1575
|
+
def ConfigDetail(self, ConfigDetail):
|
|
1576
|
+
self._ConfigDetail = ConfigDetail
|
|
1577
|
+
|
|
1520
1578
|
|
|
1521
1579
|
def _deserialize(self, params):
|
|
1522
1580
|
self._Id = params.get("Id")
|
|
@@ -1578,6 +1636,10 @@ class ClusterInstancesInfo(AbstractModel):
|
|
|
1578
1636
|
self._TopologyInfoList.append(obj)
|
|
1579
1637
|
self._IsMultiZoneCluster = params.get("IsMultiZoneCluster")
|
|
1580
1638
|
self._IsCvmReplace = params.get("IsCvmReplace")
|
|
1639
|
+
self._ClusterTitle = params.get("ClusterTitle")
|
|
1640
|
+
if params.get("ConfigDetail") is not None:
|
|
1641
|
+
self._ConfigDetail = EmrProductConfigDetail()
|
|
1642
|
+
self._ConfigDetail._deserialize(params.get("ConfigDetail"))
|
|
1581
1643
|
memeber_set = set(params.keys())
|
|
1582
1644
|
for name, value in vars(self).items():
|
|
1583
1645
|
property_name = name[1:]
|
|
@@ -3234,6 +3296,8 @@ class DescribeClusterNodesRequest(AbstractModel):
|
|
|
3234
3296
|
<li>renew:表示获取所有待续费的节点信息,包括cdb信息,自动续费节点不会返回。</li>
|
|
3235
3297
|
注意:现在只支持以上取值,输入其他值会导致错误。
|
|
3236
3298
|
:type NodeFlag: str
|
|
3299
|
+
:param _ExportDb: 导出全部节点信息csv时是否携带cdb信息
|
|
3300
|
+
:type ExportDb: bool
|
|
3237
3301
|
:param _Offset: 页编号,默认值为0,表示第一页。
|
|
3238
3302
|
:type Offset: int
|
|
3239
3303
|
:param _Limit: 每页返回数量,默认值为100,最大值为100。
|
|
@@ -3249,6 +3313,7 @@ class DescribeClusterNodesRequest(AbstractModel):
|
|
|
3249
3313
|
"""
|
|
3250
3314
|
self._InstanceId = None
|
|
3251
3315
|
self._NodeFlag = None
|
|
3316
|
+
self._ExportDb = None
|
|
3252
3317
|
self._Offset = None
|
|
3253
3318
|
self._Limit = None
|
|
3254
3319
|
self._HardwareResourceType = None
|
|
@@ -3272,6 +3337,14 @@ class DescribeClusterNodesRequest(AbstractModel):
|
|
|
3272
3337
|
def NodeFlag(self, NodeFlag):
|
|
3273
3338
|
self._NodeFlag = NodeFlag
|
|
3274
3339
|
|
|
3340
|
+
@property
|
|
3341
|
+
def ExportDb(self):
|
|
3342
|
+
return self._ExportDb
|
|
3343
|
+
|
|
3344
|
+
@ExportDb.setter
|
|
3345
|
+
def ExportDb(self, ExportDb):
|
|
3346
|
+
self._ExportDb = ExportDb
|
|
3347
|
+
|
|
3275
3348
|
@property
|
|
3276
3349
|
def Offset(self):
|
|
3277
3350
|
return self._Offset
|
|
@@ -3324,6 +3397,7 @@ class DescribeClusterNodesRequest(AbstractModel):
|
|
|
3324
3397
|
def _deserialize(self, params):
|
|
3325
3398
|
self._InstanceId = params.get("InstanceId")
|
|
3326
3399
|
self._NodeFlag = params.get("NodeFlag")
|
|
3400
|
+
self._ExportDb = params.get("ExportDb")
|
|
3327
3401
|
self._Offset = params.get("Offset")
|
|
3328
3402
|
self._Limit = params.get("Limit")
|
|
3329
3403
|
self._HardwareResourceType = params.get("HardwareResourceType")
|
|
@@ -5713,6 +5787,282 @@ class EmrPrice(AbstractModel):
|
|
|
5713
5787
|
|
|
5714
5788
|
|
|
5715
5789
|
|
|
5790
|
+
class EmrProductConfigDetail(AbstractModel):
|
|
5791
|
+
"""EMR产品配置
|
|
5792
|
+
|
|
5793
|
+
"""
|
|
5794
|
+
|
|
5795
|
+
def __init__(self):
|
|
5796
|
+
r"""
|
|
5797
|
+
:param _SoftInfo: 软件信息
|
|
5798
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5799
|
+
:type SoftInfo: list of str
|
|
5800
|
+
:param _MasterNodeSize: Master节点个数
|
|
5801
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5802
|
+
:type MasterNodeSize: int
|
|
5803
|
+
:param _CoreNodeSize: Core节点个数
|
|
5804
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5805
|
+
:type CoreNodeSize: int
|
|
5806
|
+
:param _TaskNodeSize: Task节点个数
|
|
5807
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5808
|
+
:type TaskNodeSize: int
|
|
5809
|
+
:param _ComNodeSize: Common节点个数
|
|
5810
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5811
|
+
:type ComNodeSize: int
|
|
5812
|
+
:param _MasterResource: Master节点资源
|
|
5813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5814
|
+
:type MasterResource: :class:`tencentcloud.emr.v20190103.models.ResourceDetail`
|
|
5815
|
+
:param _CoreResource: Core节点资源
|
|
5816
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5817
|
+
:type CoreResource: :class:`tencentcloud.emr.v20190103.models.ResourceDetail`
|
|
5818
|
+
:param _TaskResource: Task节点资源
|
|
5819
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5820
|
+
:type TaskResource: :class:`tencentcloud.emr.v20190103.models.ResourceDetail`
|
|
5821
|
+
:param _ComResource: Common节点资源
|
|
5822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5823
|
+
:type ComResource: :class:`tencentcloud.emr.v20190103.models.ResourceDetail`
|
|
5824
|
+
:param _OnCos: 是否使用COS
|
|
5825
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5826
|
+
:type OnCos: bool
|
|
5827
|
+
:param _ChargeType: 收费类型
|
|
5828
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5829
|
+
:type ChargeType: int
|
|
5830
|
+
:param _RouterNodeSize: Router节点个数
|
|
5831
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5832
|
+
:type RouterNodeSize: int
|
|
5833
|
+
:param _SupportHA: 是否支持HA
|
|
5834
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5835
|
+
:type SupportHA: bool
|
|
5836
|
+
:param _SecurityOn: 是否支持安全模式
|
|
5837
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5838
|
+
:type SecurityOn: bool
|
|
5839
|
+
:param _SecurityGroup: 安全组名称
|
|
5840
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5841
|
+
:type SecurityGroup: str
|
|
5842
|
+
:param _CbsEncrypt: 是否开启Cbs加密
|
|
5843
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5844
|
+
:type CbsEncrypt: int
|
|
5845
|
+
:param _ApplicationRole: 自定义应用角色。
|
|
5846
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5847
|
+
:type ApplicationRole: str
|
|
5848
|
+
:param _SecurityGroups: 安全组
|
|
5849
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5850
|
+
:type SecurityGroups: list of str
|
|
5851
|
+
:param _PublicKeyId: SSH密钥Id
|
|
5852
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5853
|
+
:type PublicKeyId: str
|
|
5854
|
+
"""
|
|
5855
|
+
self._SoftInfo = None
|
|
5856
|
+
self._MasterNodeSize = None
|
|
5857
|
+
self._CoreNodeSize = None
|
|
5858
|
+
self._TaskNodeSize = None
|
|
5859
|
+
self._ComNodeSize = None
|
|
5860
|
+
self._MasterResource = None
|
|
5861
|
+
self._CoreResource = None
|
|
5862
|
+
self._TaskResource = None
|
|
5863
|
+
self._ComResource = None
|
|
5864
|
+
self._OnCos = None
|
|
5865
|
+
self._ChargeType = None
|
|
5866
|
+
self._RouterNodeSize = None
|
|
5867
|
+
self._SupportHA = None
|
|
5868
|
+
self._SecurityOn = None
|
|
5869
|
+
self._SecurityGroup = None
|
|
5870
|
+
self._CbsEncrypt = None
|
|
5871
|
+
self._ApplicationRole = None
|
|
5872
|
+
self._SecurityGroups = None
|
|
5873
|
+
self._PublicKeyId = None
|
|
5874
|
+
|
|
5875
|
+
@property
|
|
5876
|
+
def SoftInfo(self):
|
|
5877
|
+
return self._SoftInfo
|
|
5878
|
+
|
|
5879
|
+
@SoftInfo.setter
|
|
5880
|
+
def SoftInfo(self, SoftInfo):
|
|
5881
|
+
self._SoftInfo = SoftInfo
|
|
5882
|
+
|
|
5883
|
+
@property
|
|
5884
|
+
def MasterNodeSize(self):
|
|
5885
|
+
return self._MasterNodeSize
|
|
5886
|
+
|
|
5887
|
+
@MasterNodeSize.setter
|
|
5888
|
+
def MasterNodeSize(self, MasterNodeSize):
|
|
5889
|
+
self._MasterNodeSize = MasterNodeSize
|
|
5890
|
+
|
|
5891
|
+
@property
|
|
5892
|
+
def CoreNodeSize(self):
|
|
5893
|
+
return self._CoreNodeSize
|
|
5894
|
+
|
|
5895
|
+
@CoreNodeSize.setter
|
|
5896
|
+
def CoreNodeSize(self, CoreNodeSize):
|
|
5897
|
+
self._CoreNodeSize = CoreNodeSize
|
|
5898
|
+
|
|
5899
|
+
@property
|
|
5900
|
+
def TaskNodeSize(self):
|
|
5901
|
+
return self._TaskNodeSize
|
|
5902
|
+
|
|
5903
|
+
@TaskNodeSize.setter
|
|
5904
|
+
def TaskNodeSize(self, TaskNodeSize):
|
|
5905
|
+
self._TaskNodeSize = TaskNodeSize
|
|
5906
|
+
|
|
5907
|
+
@property
|
|
5908
|
+
def ComNodeSize(self):
|
|
5909
|
+
return self._ComNodeSize
|
|
5910
|
+
|
|
5911
|
+
@ComNodeSize.setter
|
|
5912
|
+
def ComNodeSize(self, ComNodeSize):
|
|
5913
|
+
self._ComNodeSize = ComNodeSize
|
|
5914
|
+
|
|
5915
|
+
@property
|
|
5916
|
+
def MasterResource(self):
|
|
5917
|
+
return self._MasterResource
|
|
5918
|
+
|
|
5919
|
+
@MasterResource.setter
|
|
5920
|
+
def MasterResource(self, MasterResource):
|
|
5921
|
+
self._MasterResource = MasterResource
|
|
5922
|
+
|
|
5923
|
+
@property
|
|
5924
|
+
def CoreResource(self):
|
|
5925
|
+
return self._CoreResource
|
|
5926
|
+
|
|
5927
|
+
@CoreResource.setter
|
|
5928
|
+
def CoreResource(self, CoreResource):
|
|
5929
|
+
self._CoreResource = CoreResource
|
|
5930
|
+
|
|
5931
|
+
@property
|
|
5932
|
+
def TaskResource(self):
|
|
5933
|
+
return self._TaskResource
|
|
5934
|
+
|
|
5935
|
+
@TaskResource.setter
|
|
5936
|
+
def TaskResource(self, TaskResource):
|
|
5937
|
+
self._TaskResource = TaskResource
|
|
5938
|
+
|
|
5939
|
+
@property
|
|
5940
|
+
def ComResource(self):
|
|
5941
|
+
return self._ComResource
|
|
5942
|
+
|
|
5943
|
+
@ComResource.setter
|
|
5944
|
+
def ComResource(self, ComResource):
|
|
5945
|
+
self._ComResource = ComResource
|
|
5946
|
+
|
|
5947
|
+
@property
|
|
5948
|
+
def OnCos(self):
|
|
5949
|
+
return self._OnCos
|
|
5950
|
+
|
|
5951
|
+
@OnCos.setter
|
|
5952
|
+
def OnCos(self, OnCos):
|
|
5953
|
+
self._OnCos = OnCos
|
|
5954
|
+
|
|
5955
|
+
@property
|
|
5956
|
+
def ChargeType(self):
|
|
5957
|
+
return self._ChargeType
|
|
5958
|
+
|
|
5959
|
+
@ChargeType.setter
|
|
5960
|
+
def ChargeType(self, ChargeType):
|
|
5961
|
+
self._ChargeType = ChargeType
|
|
5962
|
+
|
|
5963
|
+
@property
|
|
5964
|
+
def RouterNodeSize(self):
|
|
5965
|
+
return self._RouterNodeSize
|
|
5966
|
+
|
|
5967
|
+
@RouterNodeSize.setter
|
|
5968
|
+
def RouterNodeSize(self, RouterNodeSize):
|
|
5969
|
+
self._RouterNodeSize = RouterNodeSize
|
|
5970
|
+
|
|
5971
|
+
@property
|
|
5972
|
+
def SupportHA(self):
|
|
5973
|
+
return self._SupportHA
|
|
5974
|
+
|
|
5975
|
+
@SupportHA.setter
|
|
5976
|
+
def SupportHA(self, SupportHA):
|
|
5977
|
+
self._SupportHA = SupportHA
|
|
5978
|
+
|
|
5979
|
+
@property
|
|
5980
|
+
def SecurityOn(self):
|
|
5981
|
+
return self._SecurityOn
|
|
5982
|
+
|
|
5983
|
+
@SecurityOn.setter
|
|
5984
|
+
def SecurityOn(self, SecurityOn):
|
|
5985
|
+
self._SecurityOn = SecurityOn
|
|
5986
|
+
|
|
5987
|
+
@property
|
|
5988
|
+
def SecurityGroup(self):
|
|
5989
|
+
return self._SecurityGroup
|
|
5990
|
+
|
|
5991
|
+
@SecurityGroup.setter
|
|
5992
|
+
def SecurityGroup(self, SecurityGroup):
|
|
5993
|
+
self._SecurityGroup = SecurityGroup
|
|
5994
|
+
|
|
5995
|
+
@property
|
|
5996
|
+
def CbsEncrypt(self):
|
|
5997
|
+
return self._CbsEncrypt
|
|
5998
|
+
|
|
5999
|
+
@CbsEncrypt.setter
|
|
6000
|
+
def CbsEncrypt(self, CbsEncrypt):
|
|
6001
|
+
self._CbsEncrypt = CbsEncrypt
|
|
6002
|
+
|
|
6003
|
+
@property
|
|
6004
|
+
def ApplicationRole(self):
|
|
6005
|
+
return self._ApplicationRole
|
|
6006
|
+
|
|
6007
|
+
@ApplicationRole.setter
|
|
6008
|
+
def ApplicationRole(self, ApplicationRole):
|
|
6009
|
+
self._ApplicationRole = ApplicationRole
|
|
6010
|
+
|
|
6011
|
+
@property
|
|
6012
|
+
def SecurityGroups(self):
|
|
6013
|
+
return self._SecurityGroups
|
|
6014
|
+
|
|
6015
|
+
@SecurityGroups.setter
|
|
6016
|
+
def SecurityGroups(self, SecurityGroups):
|
|
6017
|
+
self._SecurityGroups = SecurityGroups
|
|
6018
|
+
|
|
6019
|
+
@property
|
|
6020
|
+
def PublicKeyId(self):
|
|
6021
|
+
return self._PublicKeyId
|
|
6022
|
+
|
|
6023
|
+
@PublicKeyId.setter
|
|
6024
|
+
def PublicKeyId(self, PublicKeyId):
|
|
6025
|
+
self._PublicKeyId = PublicKeyId
|
|
6026
|
+
|
|
6027
|
+
|
|
6028
|
+
def _deserialize(self, params):
|
|
6029
|
+
self._SoftInfo = params.get("SoftInfo")
|
|
6030
|
+
self._MasterNodeSize = params.get("MasterNodeSize")
|
|
6031
|
+
self._CoreNodeSize = params.get("CoreNodeSize")
|
|
6032
|
+
self._TaskNodeSize = params.get("TaskNodeSize")
|
|
6033
|
+
self._ComNodeSize = params.get("ComNodeSize")
|
|
6034
|
+
if params.get("MasterResource") is not None:
|
|
6035
|
+
self._MasterResource = ResourceDetail()
|
|
6036
|
+
self._MasterResource._deserialize(params.get("MasterResource"))
|
|
6037
|
+
if params.get("CoreResource") is not None:
|
|
6038
|
+
self._CoreResource = ResourceDetail()
|
|
6039
|
+
self._CoreResource._deserialize(params.get("CoreResource"))
|
|
6040
|
+
if params.get("TaskResource") is not None:
|
|
6041
|
+
self._TaskResource = ResourceDetail()
|
|
6042
|
+
self._TaskResource._deserialize(params.get("TaskResource"))
|
|
6043
|
+
if params.get("ComResource") is not None:
|
|
6044
|
+
self._ComResource = ResourceDetail()
|
|
6045
|
+
self._ComResource._deserialize(params.get("ComResource"))
|
|
6046
|
+
self._OnCos = params.get("OnCos")
|
|
6047
|
+
self._ChargeType = params.get("ChargeType")
|
|
6048
|
+
self._RouterNodeSize = params.get("RouterNodeSize")
|
|
6049
|
+
self._SupportHA = params.get("SupportHA")
|
|
6050
|
+
self._SecurityOn = params.get("SecurityOn")
|
|
6051
|
+
self._SecurityGroup = params.get("SecurityGroup")
|
|
6052
|
+
self._CbsEncrypt = params.get("CbsEncrypt")
|
|
6053
|
+
self._ApplicationRole = params.get("ApplicationRole")
|
|
6054
|
+
self._SecurityGroups = params.get("SecurityGroups")
|
|
6055
|
+
self._PublicKeyId = params.get("PublicKeyId")
|
|
6056
|
+
memeber_set = set(params.keys())
|
|
6057
|
+
for name, value in vars(self).items():
|
|
6058
|
+
property_name = name[1:]
|
|
6059
|
+
if property_name in memeber_set:
|
|
6060
|
+
memeber_set.remove(property_name)
|
|
6061
|
+
if len(memeber_set) > 0:
|
|
6062
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
6063
|
+
|
|
6064
|
+
|
|
6065
|
+
|
|
5716
6066
|
class EmrProductConfigOutter(AbstractModel):
|
|
5717
6067
|
"""EMR产品配置
|
|
5718
6068
|
|
|
@@ -12327,6 +12677,144 @@ class Resource(AbstractModel):
|
|
|
12327
12677
|
|
|
12328
12678
|
|
|
12329
12679
|
|
|
12680
|
+
class ResourceDetail(AbstractModel):
|
|
12681
|
+
"""资源详情
|
|
12682
|
+
|
|
12683
|
+
"""
|
|
12684
|
+
|
|
12685
|
+
def __init__(self):
|
|
12686
|
+
r"""
|
|
12687
|
+
:param _Spec: 规格
|
|
12688
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12689
|
+
:type Spec: str
|
|
12690
|
+
:param _SpecName: 规格名
|
|
12691
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12692
|
+
:type SpecName: str
|
|
12693
|
+
:param _StorageType: 硬盘类型
|
|
12694
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12695
|
+
:type StorageType: int
|
|
12696
|
+
:param _DiskType: 硬盘类型
|
|
12697
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12698
|
+
:type DiskType: str
|
|
12699
|
+
:param _RootSize: 系统盘大小
|
|
12700
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12701
|
+
:type RootSize: int
|
|
12702
|
+
:param _MemSize: 内存大小
|
|
12703
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12704
|
+
:type MemSize: int
|
|
12705
|
+
:param _Cpu: CPU个数
|
|
12706
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12707
|
+
:type Cpu: int
|
|
12708
|
+
:param _DiskSize: 硬盘大小
|
|
12709
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12710
|
+
:type DiskSize: int
|
|
12711
|
+
:param _InstanceType: 规格
|
|
12712
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
12713
|
+
:type InstanceType: str
|
|
12714
|
+
"""
|
|
12715
|
+
self._Spec = None
|
|
12716
|
+
self._SpecName = None
|
|
12717
|
+
self._StorageType = None
|
|
12718
|
+
self._DiskType = None
|
|
12719
|
+
self._RootSize = None
|
|
12720
|
+
self._MemSize = None
|
|
12721
|
+
self._Cpu = None
|
|
12722
|
+
self._DiskSize = None
|
|
12723
|
+
self._InstanceType = None
|
|
12724
|
+
|
|
12725
|
+
@property
|
|
12726
|
+
def Spec(self):
|
|
12727
|
+
return self._Spec
|
|
12728
|
+
|
|
12729
|
+
@Spec.setter
|
|
12730
|
+
def Spec(self, Spec):
|
|
12731
|
+
self._Spec = Spec
|
|
12732
|
+
|
|
12733
|
+
@property
|
|
12734
|
+
def SpecName(self):
|
|
12735
|
+
return self._SpecName
|
|
12736
|
+
|
|
12737
|
+
@SpecName.setter
|
|
12738
|
+
def SpecName(self, SpecName):
|
|
12739
|
+
self._SpecName = SpecName
|
|
12740
|
+
|
|
12741
|
+
@property
|
|
12742
|
+
def StorageType(self):
|
|
12743
|
+
return self._StorageType
|
|
12744
|
+
|
|
12745
|
+
@StorageType.setter
|
|
12746
|
+
def StorageType(self, StorageType):
|
|
12747
|
+
self._StorageType = StorageType
|
|
12748
|
+
|
|
12749
|
+
@property
|
|
12750
|
+
def DiskType(self):
|
|
12751
|
+
return self._DiskType
|
|
12752
|
+
|
|
12753
|
+
@DiskType.setter
|
|
12754
|
+
def DiskType(self, DiskType):
|
|
12755
|
+
self._DiskType = DiskType
|
|
12756
|
+
|
|
12757
|
+
@property
|
|
12758
|
+
def RootSize(self):
|
|
12759
|
+
return self._RootSize
|
|
12760
|
+
|
|
12761
|
+
@RootSize.setter
|
|
12762
|
+
def RootSize(self, RootSize):
|
|
12763
|
+
self._RootSize = RootSize
|
|
12764
|
+
|
|
12765
|
+
@property
|
|
12766
|
+
def MemSize(self):
|
|
12767
|
+
return self._MemSize
|
|
12768
|
+
|
|
12769
|
+
@MemSize.setter
|
|
12770
|
+
def MemSize(self, MemSize):
|
|
12771
|
+
self._MemSize = MemSize
|
|
12772
|
+
|
|
12773
|
+
@property
|
|
12774
|
+
def Cpu(self):
|
|
12775
|
+
return self._Cpu
|
|
12776
|
+
|
|
12777
|
+
@Cpu.setter
|
|
12778
|
+
def Cpu(self, Cpu):
|
|
12779
|
+
self._Cpu = Cpu
|
|
12780
|
+
|
|
12781
|
+
@property
|
|
12782
|
+
def DiskSize(self):
|
|
12783
|
+
return self._DiskSize
|
|
12784
|
+
|
|
12785
|
+
@DiskSize.setter
|
|
12786
|
+
def DiskSize(self, DiskSize):
|
|
12787
|
+
self._DiskSize = DiskSize
|
|
12788
|
+
|
|
12789
|
+
@property
|
|
12790
|
+
def InstanceType(self):
|
|
12791
|
+
return self._InstanceType
|
|
12792
|
+
|
|
12793
|
+
@InstanceType.setter
|
|
12794
|
+
def InstanceType(self, InstanceType):
|
|
12795
|
+
self._InstanceType = InstanceType
|
|
12796
|
+
|
|
12797
|
+
|
|
12798
|
+
def _deserialize(self, params):
|
|
12799
|
+
self._Spec = params.get("Spec")
|
|
12800
|
+
self._SpecName = params.get("SpecName")
|
|
12801
|
+
self._StorageType = params.get("StorageType")
|
|
12802
|
+
self._DiskType = params.get("DiskType")
|
|
12803
|
+
self._RootSize = params.get("RootSize")
|
|
12804
|
+
self._MemSize = params.get("MemSize")
|
|
12805
|
+
self._Cpu = params.get("Cpu")
|
|
12806
|
+
self._DiskSize = params.get("DiskSize")
|
|
12807
|
+
self._InstanceType = params.get("InstanceType")
|
|
12808
|
+
memeber_set = set(params.keys())
|
|
12809
|
+
for name, value in vars(self).items():
|
|
12810
|
+
property_name = name[1:]
|
|
12811
|
+
if property_name in memeber_set:
|
|
12812
|
+
memeber_set.remove(property_name)
|
|
12813
|
+
if len(memeber_set) > 0:
|
|
12814
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
12815
|
+
|
|
12816
|
+
|
|
12817
|
+
|
|
12330
12818
|
class RunJobFlowRequest(AbstractModel):
|
|
12331
12819
|
"""RunJobFlow请求参数结构体
|
|
12332
12820
|
|
|
@@ -13477,11 +13965,14 @@ class ScriptBootstrapActionConfig(AbstractModel):
|
|
|
13477
13965
|
:type Args: list of str
|
|
13478
13966
|
:param _CosFileName: 脚本文件名
|
|
13479
13967
|
:type CosFileName: str
|
|
13968
|
+
:param _Remark: 备注
|
|
13969
|
+
:type Remark: str
|
|
13480
13970
|
"""
|
|
13481
13971
|
self._CosFileURI = None
|
|
13482
13972
|
self._ExecutionMoment = None
|
|
13483
13973
|
self._Args = None
|
|
13484
13974
|
self._CosFileName = None
|
|
13975
|
+
self._Remark = None
|
|
13485
13976
|
|
|
13486
13977
|
@property
|
|
13487
13978
|
def CosFileURI(self):
|
|
@@ -13515,12 +14006,21 @@ class ScriptBootstrapActionConfig(AbstractModel):
|
|
|
13515
14006
|
def CosFileName(self, CosFileName):
|
|
13516
14007
|
self._CosFileName = CosFileName
|
|
13517
14008
|
|
|
14009
|
+
@property
|
|
14010
|
+
def Remark(self):
|
|
14011
|
+
return self._Remark
|
|
14012
|
+
|
|
14013
|
+
@Remark.setter
|
|
14014
|
+
def Remark(self, Remark):
|
|
14015
|
+
self._Remark = Remark
|
|
14016
|
+
|
|
13518
14017
|
|
|
13519
14018
|
def _deserialize(self, params):
|
|
13520
14019
|
self._CosFileURI = params.get("CosFileURI")
|
|
13521
14020
|
self._ExecutionMoment = params.get("ExecutionMoment")
|
|
13522
14021
|
self._Args = params.get("Args")
|
|
13523
14022
|
self._CosFileName = params.get("CosFileName")
|
|
14023
|
+
self._Remark = params.get("Remark")
|
|
13524
14024
|
memeber_set = set(params.keys())
|
|
13525
14025
|
for name, value in vars(self).items():
|
|
13526
14026
|
property_name = name[1:]
|
|
@@ -13539,8 +14039,10 @@ class SearchItem(AbstractModel):
|
|
|
13539
14039
|
def __init__(self):
|
|
13540
14040
|
r"""
|
|
13541
14041
|
:param _SearchType: 支持搜索的类型
|
|
14042
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13542
14043
|
:type SearchType: str
|
|
13543
14044
|
:param _SearchValue: 支持搜索的值
|
|
14045
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13544
14046
|
:type SearchValue: str
|
|
13545
14047
|
"""
|
|
13546
14048
|
self._SearchType = None
|
|
@@ -157,7 +157,7 @@ class EssClient(AbstractClient):
|
|
|
157
157
|
"""该接口用于发起合同后,生成个人用户的批量签署链接, 暂时不支持企业端签署。
|
|
158
158
|
**注意:**
|
|
159
159
|
1. 该接口目前仅支持签署人类型是**个人签署方的批量签署场景**(ApproverType=1)。
|
|
160
|
-
2. 该接口可生成批量签署链接的C
|
|
160
|
+
2. 该接口可生成批量签署链接的C端签署人**必须仅有手写签名(控件类型为SIGN_SIGNATURE)和时间类型的签署控件**,**不支持填写控件** 。
|
|
161
161
|
3. 请确保C端签署人在批量签署合同中**为待签署状态**,如需顺序签署请待前一位参与人签署完成后,再创建该C端用户的签署链接。
|
|
162
162
|
4. 该签署链接**有效期为30分钟**,过期后将失效,如需签署可重新创建批量签署链接 。
|
|
163
163
|
5. 该接口返回的签署链接适用于APP集成的场景,支持APP打开或浏览器直接打开,**不支持微信小程序嵌入**。
|