tencentcloud-sdk-python 3.0.1230__py2.py3-none-any.whl → 3.0.1232__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/apm/v20210622/errorcodes.py +3 -0
- tencentcloud/apm/v20210622/models.py +25 -0
- tencentcloud/cam/v20190116/cam_client.py +46 -0
- tencentcloud/cam/v20190116/errorcodes.py +6 -0
- tencentcloud/cam/v20190116/models.py +301 -0
- tencentcloud/cdb/v20170320/models.py +16 -2
- tencentcloud/cfw/v20190904/cfw_client.py +23 -0
- tencentcloud/cfw/v20190904/models.py +664 -0
- tencentcloud/ckafka/v20190819/ckafka_client.py +23 -0
- tencentcloud/ckafka/v20190819/models.py +123 -0
- tencentcloud/dasb/v20191018/dasb_client.py +23 -0
- tencentcloud/dasb/v20191018/errorcodes.py +3 -0
- tencentcloud/dasb/v20191018/models.py +252 -0
- tencentcloud/dlc/v20210125/dlc_client.py +1 -1
- tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- tencentcloud/dlc/v20210125/models.py +325 -5
- tencentcloud/dsgc/v20190723/models.py +14 -1
- tencentcloud/emr/v20190103/models.py +5 -5
- tencentcloud/ess/v20201111/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +55 -8
- tencentcloud/essbasic/v20210526/models.py +37 -1
- tencentcloud/irp/v20220805/models.py +13 -1
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +119 -1
- tencentcloud/mps/v20190612/models.py +170 -3
- tencentcloud/ocr/v20181119/models.py +12 -0
- tencentcloud/omics/v20221128/models.py +15 -3
- tencentcloud/region/v20220627/models.py +0 -1
- tencentcloud/tat/v20201028/models.py +13 -0
- tencentcloud/tmt/v20180321/models.py +22 -22
- tencentcloud/vclm/v20240523/errorcodes.py +3 -0
- tencentcloud/vdb/v20230616/models.py +63 -0
- tencentcloud/vod/v20180717/models.py +41 -0
- tencentcloud/vpc/v20170312/models.py +3 -3
- tencentcloud/wedata/v20210820/wedata_client.py +1 -1
- {tencentcloud_sdk_python-3.0.1230.dist-info → tencentcloud_sdk_python-3.0.1232.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1230.dist-info → tencentcloud_sdk_python-3.0.1232.dist-info}/RECORD +42 -42
- {tencentcloud_sdk_python-3.0.1230.dist-info → tencentcloud_sdk_python-3.0.1232.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1230.dist-info → tencentcloud_sdk_python-3.0.1232.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1230.dist-info → tencentcloud_sdk_python-3.0.1232.dist-info}/top_level.txt +0 -0
@@ -2341,8 +2341,7 @@ class Column(AbstractModel):
|
|
2341
2341
|
r"""
|
2342
2342
|
:param _Name: 列名称,不区分大小写,最大支持25个字符。
|
2343
2343
|
:type Name: str
|
2344
|
-
:param _Type:
|
2345
|
-
string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array<data_type>|map<primitive_type, data_type>|struct<col_name : data_type [COMMENT col_comment], ...>|uniontype<data_type, data_type, ...>。
|
2344
|
+
:param _Type: string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array|map|struct|uniontype
|
2346
2345
|
:type Type: str
|
2347
2346
|
:param _Comment: 对该类的注释。
|
2348
2347
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -2368,6 +2367,9 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
|
|
2368
2367
|
:param _IsPartition: 是否为分区字段
|
2369
2368
|
注意:此字段可能返回 null,表示取不到有效值。
|
2370
2369
|
:type IsPartition: bool
|
2370
|
+
:param _DataMaskStrategyInfo: 数据脱敏策略信息
|
2371
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2372
|
+
:type DataMaskStrategyInfo: :class:`tencentcloud.dlc.v20210125.models.DataMaskStrategyInfo`
|
2371
2373
|
"""
|
2372
2374
|
self._Name = None
|
2373
2375
|
self._Type = None
|
@@ -2379,6 +2381,7 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
|
|
2379
2381
|
self._CreateTime = None
|
2380
2382
|
self._ModifiedTime = None
|
2381
2383
|
self._IsPartition = None
|
2384
|
+
self._DataMaskStrategyInfo = None
|
2382
2385
|
|
2383
2386
|
@property
|
2384
2387
|
def Name(self):
|
@@ -2460,6 +2463,14 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
|
|
2460
2463
|
def IsPartition(self, IsPartition):
|
2461
2464
|
self._IsPartition = IsPartition
|
2462
2465
|
|
2466
|
+
@property
|
2467
|
+
def DataMaskStrategyInfo(self):
|
2468
|
+
return self._DataMaskStrategyInfo
|
2469
|
+
|
2470
|
+
@DataMaskStrategyInfo.setter
|
2471
|
+
def DataMaskStrategyInfo(self, DataMaskStrategyInfo):
|
2472
|
+
self._DataMaskStrategyInfo = DataMaskStrategyInfo
|
2473
|
+
|
2463
2474
|
|
2464
2475
|
def _deserialize(self, params):
|
2465
2476
|
self._Name = params.get("Name")
|
@@ -2472,6 +2483,9 @@ string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|b
|
|
2472
2483
|
self._CreateTime = params.get("CreateTime")
|
2473
2484
|
self._ModifiedTime = params.get("ModifiedTime")
|
2474
2485
|
self._IsPartition = params.get("IsPartition")
|
2486
|
+
if params.get("DataMaskStrategyInfo") is not None:
|
2487
|
+
self._DataMaskStrategyInfo = DataMaskStrategyInfo()
|
2488
|
+
self._DataMaskStrategyInfo._deserialize(params.get("DataMaskStrategyInfo"))
|
2475
2489
|
memeber_set = set(params.keys())
|
2476
2490
|
for name, value in vars(self).items():
|
2477
2491
|
property_name = name[1:]
|
@@ -4586,7 +4600,7 @@ class CreateResultDownloadRequest(AbstractModel):
|
|
4586
4600
|
:type TaskId: str
|
4587
4601
|
:param _Format: 下载格式
|
4588
4602
|
:type Format: str
|
4589
|
-
:param _Force:
|
4603
|
+
:param _Force: 是否重新生成下载文件,仅当之前任务状态为 timeout | error 时有效
|
4590
4604
|
:type Force: bool
|
4591
4605
|
"""
|
4592
4606
|
self._TaskId = None
|
@@ -8613,6 +8627,110 @@ class DataGovernPolicy(AbstractModel):
|
|
8613
8627
|
|
8614
8628
|
|
8615
8629
|
|
8630
|
+
class DataMaskStrategyInfo(AbstractModel):
|
8631
|
+
"""数据脱敏策略信息
|
8632
|
+
|
8633
|
+
"""
|
8634
|
+
|
8635
|
+
def __init__(self):
|
8636
|
+
r"""
|
8637
|
+
:param _StrategyName: 策略名称
|
8638
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8639
|
+
:type StrategyName: str
|
8640
|
+
:param _StrategyType: MASK_SHOW_FIRST_4; MASK_SHOW_LAST_4;MASK_HASH; MASK_DATE_SHOW_YEAR; MASK_NULL; MASK_DEFAULT 等
|
8641
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8642
|
+
:type StrategyType: str
|
8643
|
+
:param _StrategyDesc: 策略描述
|
8644
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8645
|
+
:type StrategyDesc: str
|
8646
|
+
:param _Groups: 用户组策略列表
|
8647
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8648
|
+
:type Groups: list of GroupInfo
|
8649
|
+
:param _Users: 用户子账号uin列表,按;拼接
|
8650
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8651
|
+
:type Users: str
|
8652
|
+
:param _StrategyId: 策略Id
|
8653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8654
|
+
:type StrategyId: str
|
8655
|
+
"""
|
8656
|
+
self._StrategyName = None
|
8657
|
+
self._StrategyType = None
|
8658
|
+
self._StrategyDesc = None
|
8659
|
+
self._Groups = None
|
8660
|
+
self._Users = None
|
8661
|
+
self._StrategyId = None
|
8662
|
+
|
8663
|
+
@property
|
8664
|
+
def StrategyName(self):
|
8665
|
+
return self._StrategyName
|
8666
|
+
|
8667
|
+
@StrategyName.setter
|
8668
|
+
def StrategyName(self, StrategyName):
|
8669
|
+
self._StrategyName = StrategyName
|
8670
|
+
|
8671
|
+
@property
|
8672
|
+
def StrategyType(self):
|
8673
|
+
return self._StrategyType
|
8674
|
+
|
8675
|
+
@StrategyType.setter
|
8676
|
+
def StrategyType(self, StrategyType):
|
8677
|
+
self._StrategyType = StrategyType
|
8678
|
+
|
8679
|
+
@property
|
8680
|
+
def StrategyDesc(self):
|
8681
|
+
return self._StrategyDesc
|
8682
|
+
|
8683
|
+
@StrategyDesc.setter
|
8684
|
+
def StrategyDesc(self, StrategyDesc):
|
8685
|
+
self._StrategyDesc = StrategyDesc
|
8686
|
+
|
8687
|
+
@property
|
8688
|
+
def Groups(self):
|
8689
|
+
return self._Groups
|
8690
|
+
|
8691
|
+
@Groups.setter
|
8692
|
+
def Groups(self, Groups):
|
8693
|
+
self._Groups = Groups
|
8694
|
+
|
8695
|
+
@property
|
8696
|
+
def Users(self):
|
8697
|
+
return self._Users
|
8698
|
+
|
8699
|
+
@Users.setter
|
8700
|
+
def Users(self, Users):
|
8701
|
+
self._Users = Users
|
8702
|
+
|
8703
|
+
@property
|
8704
|
+
def StrategyId(self):
|
8705
|
+
return self._StrategyId
|
8706
|
+
|
8707
|
+
@StrategyId.setter
|
8708
|
+
def StrategyId(self, StrategyId):
|
8709
|
+
self._StrategyId = StrategyId
|
8710
|
+
|
8711
|
+
|
8712
|
+
def _deserialize(self, params):
|
8713
|
+
self._StrategyName = params.get("StrategyName")
|
8714
|
+
self._StrategyType = params.get("StrategyType")
|
8715
|
+
self._StrategyDesc = params.get("StrategyDesc")
|
8716
|
+
if params.get("Groups") is not None:
|
8717
|
+
self._Groups = []
|
8718
|
+
for item in params.get("Groups"):
|
8719
|
+
obj = GroupInfo()
|
8720
|
+
obj._deserialize(item)
|
8721
|
+
self._Groups.append(obj)
|
8722
|
+
self._Users = params.get("Users")
|
8723
|
+
self._StrategyId = params.get("StrategyId")
|
8724
|
+
memeber_set = set(params.keys())
|
8725
|
+
for name, value in vars(self).items():
|
8726
|
+
property_name = name[1:]
|
8727
|
+
if property_name in memeber_set:
|
8728
|
+
memeber_set.remove(property_name)
|
8729
|
+
if len(memeber_set) > 0:
|
8730
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8731
|
+
|
8732
|
+
|
8733
|
+
|
8616
8734
|
class DataSourceInfo(AbstractModel):
|
8617
8735
|
"""数据源详细信息
|
8618
8736
|
|
@@ -8995,6 +9113,9 @@ class DatasourceConnectionConfig(AbstractModel):
|
|
8995
9113
|
:param _TDSQLPostgreSql: TDSQL-PostgreSQL数据源连接的属性
|
8996
9114
|
注意:此字段可能返回 null,表示取不到有效值。
|
8997
9115
|
:type TDSQLPostgreSql: :class:`tencentcloud.dlc.v20210125.models.DataSourceInfo`
|
9116
|
+
:param _TCHouseD: Doris数据源连接的属性
|
9117
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9118
|
+
:type TCHouseD: :class:`tencentcloud.dlc.v20210125.models.TCHouseD`
|
8998
9119
|
"""
|
8999
9120
|
self._Mysql = None
|
9000
9121
|
self._Hive = None
|
@@ -9005,6 +9126,7 @@ class DatasourceConnectionConfig(AbstractModel):
|
|
9005
9126
|
self._ClickHouse = None
|
9006
9127
|
self._Elasticsearch = None
|
9007
9128
|
self._TDSQLPostgreSql = None
|
9129
|
+
self._TCHouseD = None
|
9008
9130
|
|
9009
9131
|
@property
|
9010
9132
|
def Mysql(self):
|
@@ -9078,6 +9200,14 @@ class DatasourceConnectionConfig(AbstractModel):
|
|
9078
9200
|
def TDSQLPostgreSql(self, TDSQLPostgreSql):
|
9079
9201
|
self._TDSQLPostgreSql = TDSQLPostgreSql
|
9080
9202
|
|
9203
|
+
@property
|
9204
|
+
def TCHouseD(self):
|
9205
|
+
return self._TCHouseD
|
9206
|
+
|
9207
|
+
@TCHouseD.setter
|
9208
|
+
def TCHouseD(self, TCHouseD):
|
9209
|
+
self._TCHouseD = TCHouseD
|
9210
|
+
|
9081
9211
|
|
9082
9212
|
def _deserialize(self, params):
|
9083
9213
|
if params.get("Mysql") is not None:
|
@@ -9107,6 +9237,9 @@ class DatasourceConnectionConfig(AbstractModel):
|
|
9107
9237
|
if params.get("TDSQLPostgreSql") is not None:
|
9108
9238
|
self._TDSQLPostgreSql = DataSourceInfo()
|
9109
9239
|
self._TDSQLPostgreSql._deserialize(params.get("TDSQLPostgreSql"))
|
9240
|
+
if params.get("TCHouseD") is not None:
|
9241
|
+
self._TCHouseD = TCHouseD()
|
9242
|
+
self._TCHouseD._deserialize(params.get("TCHouseD"))
|
9110
9243
|
memeber_set = set(params.keys())
|
9111
9244
|
for name, value in vars(self).items():
|
9112
9245
|
property_name = name[1:]
|
@@ -13493,10 +13626,10 @@ class DescribeResultDownloadResponse(AbstractModel):
|
|
13493
13626
|
:param _Reason: 任务异常原因
|
13494
13627
|
注意:此字段可能返回 null,表示取不到有效值。
|
13495
13628
|
:type Reason: str
|
13496
|
-
:param _SecretId: 临时
|
13629
|
+
:param _SecretId: 临时SecretId
|
13497
13630
|
注意:此字段可能返回 null,表示取不到有效值。
|
13498
13631
|
:type SecretId: str
|
13499
|
-
:param _SecretKey: 临时
|
13632
|
+
:param _SecretKey: 临时SecretKey
|
13500
13633
|
注意:此字段可能返回 null,表示取不到有效值。
|
13501
13634
|
:type SecretKey: str
|
13502
13635
|
:param _Token: 临时Token
|
@@ -18237,6 +18370,53 @@ class GrantDLCCatalogAccessResponse(AbstractModel):
|
|
18237
18370
|
self._RequestId = params.get("RequestId")
|
18238
18371
|
|
18239
18372
|
|
18373
|
+
class GroupInfo(AbstractModel):
|
18374
|
+
"""数据脱敏用户组信息
|
18375
|
+
|
18376
|
+
"""
|
18377
|
+
|
18378
|
+
def __init__(self):
|
18379
|
+
r"""
|
18380
|
+
:param _WorkGroupId: 用户组ID
|
18381
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18382
|
+
:type WorkGroupId: int
|
18383
|
+
:param _StrategyType: 策略类型
|
18384
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18385
|
+
:type StrategyType: str
|
18386
|
+
"""
|
18387
|
+
self._WorkGroupId = None
|
18388
|
+
self._StrategyType = None
|
18389
|
+
|
18390
|
+
@property
|
18391
|
+
def WorkGroupId(self):
|
18392
|
+
return self._WorkGroupId
|
18393
|
+
|
18394
|
+
@WorkGroupId.setter
|
18395
|
+
def WorkGroupId(self, WorkGroupId):
|
18396
|
+
self._WorkGroupId = WorkGroupId
|
18397
|
+
|
18398
|
+
@property
|
18399
|
+
def StrategyType(self):
|
18400
|
+
return self._StrategyType
|
18401
|
+
|
18402
|
+
@StrategyType.setter
|
18403
|
+
def StrategyType(self, StrategyType):
|
18404
|
+
self._StrategyType = StrategyType
|
18405
|
+
|
18406
|
+
|
18407
|
+
def _deserialize(self, params):
|
18408
|
+
self._WorkGroupId = params.get("WorkGroupId")
|
18409
|
+
self._StrategyType = params.get("StrategyType")
|
18410
|
+
memeber_set = set(params.keys())
|
18411
|
+
for name, value in vars(self).items():
|
18412
|
+
property_name = name[1:]
|
18413
|
+
if property_name in memeber_set:
|
18414
|
+
memeber_set.remove(property_name)
|
18415
|
+
if len(memeber_set) > 0:
|
18416
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
18417
|
+
|
18418
|
+
|
18419
|
+
|
18240
18420
|
class HiveInfo(AbstractModel):
|
18241
18421
|
"""hive类型数据源的信息
|
18242
18422
|
|
@@ -22928,6 +23108,9 @@ class ResourceInfo(AbstractModel):
|
|
22928
23108
|
:param _Status: 状态
|
22929
23109
|
注意:此字段可能返回 null,表示取不到有效值。
|
22930
23110
|
:type Status: int
|
23111
|
+
:param _ResourceGroupName: 标准引擎资源组信息
|
23112
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23113
|
+
:type ResourceGroupName: str
|
22931
23114
|
"""
|
22932
23115
|
self._AttributionType = None
|
22933
23116
|
self._ResourceType = None
|
@@ -22935,6 +23118,7 @@ class ResourceInfo(AbstractModel):
|
|
22935
23118
|
self._Instance = None
|
22936
23119
|
self._Favor = None
|
22937
23120
|
self._Status = None
|
23121
|
+
self._ResourceGroupName = None
|
22938
23122
|
|
22939
23123
|
@property
|
22940
23124
|
def AttributionType(self):
|
@@ -22984,6 +23168,14 @@ class ResourceInfo(AbstractModel):
|
|
22984
23168
|
def Status(self, Status):
|
22985
23169
|
self._Status = Status
|
22986
23170
|
|
23171
|
+
@property
|
23172
|
+
def ResourceGroupName(self):
|
23173
|
+
return self._ResourceGroupName
|
23174
|
+
|
23175
|
+
@ResourceGroupName.setter
|
23176
|
+
def ResourceGroupName(self, ResourceGroupName):
|
23177
|
+
self._ResourceGroupName = ResourceGroupName
|
23178
|
+
|
22987
23179
|
|
22988
23180
|
def _deserialize(self, params):
|
22989
23181
|
self._AttributionType = params.get("AttributionType")
|
@@ -22997,6 +23189,7 @@ class ResourceInfo(AbstractModel):
|
|
22997
23189
|
obj._deserialize(item)
|
22998
23190
|
self._Favor.append(obj)
|
22999
23191
|
self._Status = params.get("Status")
|
23192
|
+
self._ResourceGroupName = params.get("ResourceGroupName")
|
23000
23193
|
memeber_set = set(params.keys())
|
23001
23194
|
for name, value in vars(self).items():
|
23002
23195
|
property_name = name[1:]
|
@@ -25114,6 +25307,133 @@ class SwitchDataEngineResponse(AbstractModel):
|
|
25114
25307
|
self._RequestId = params.get("RequestId")
|
25115
25308
|
|
25116
25309
|
|
25310
|
+
class TCHouseD(AbstractModel):
|
25311
|
+
"""Doirs数据源详细信息
|
25312
|
+
|
25313
|
+
"""
|
25314
|
+
|
25315
|
+
def __init__(self):
|
25316
|
+
r"""
|
25317
|
+
:param _InstanceId: 数据源实例的唯一ID
|
25318
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25319
|
+
:type InstanceId: str
|
25320
|
+
:param _InstanceName: 数据源名称
|
25321
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25322
|
+
:type InstanceName: str
|
25323
|
+
:param _JdbcUrl: 数据源的JDBC
|
25324
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25325
|
+
:type JdbcUrl: str
|
25326
|
+
:param _User: 用于访问数据源的用户
|
25327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25328
|
+
:type User: str
|
25329
|
+
:param _Password: 数据源访问密码,需要base64编码
|
25330
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25331
|
+
:type Password: str
|
25332
|
+
:param _Location: 数据源的VPC和子网信息
|
25333
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25334
|
+
:type Location: :class:`tencentcloud.dlc.v20210125.models.DatasourceConnectionLocation`
|
25335
|
+
:param _DbName: 默认数据库名
|
25336
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25337
|
+
:type DbName: str
|
25338
|
+
:param _AccessInfo: 访问信息
|
25339
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25340
|
+
:type AccessInfo: str
|
25341
|
+
"""
|
25342
|
+
self._InstanceId = None
|
25343
|
+
self._InstanceName = None
|
25344
|
+
self._JdbcUrl = None
|
25345
|
+
self._User = None
|
25346
|
+
self._Password = None
|
25347
|
+
self._Location = None
|
25348
|
+
self._DbName = None
|
25349
|
+
self._AccessInfo = None
|
25350
|
+
|
25351
|
+
@property
|
25352
|
+
def InstanceId(self):
|
25353
|
+
return self._InstanceId
|
25354
|
+
|
25355
|
+
@InstanceId.setter
|
25356
|
+
def InstanceId(self, InstanceId):
|
25357
|
+
self._InstanceId = InstanceId
|
25358
|
+
|
25359
|
+
@property
|
25360
|
+
def InstanceName(self):
|
25361
|
+
return self._InstanceName
|
25362
|
+
|
25363
|
+
@InstanceName.setter
|
25364
|
+
def InstanceName(self, InstanceName):
|
25365
|
+
self._InstanceName = InstanceName
|
25366
|
+
|
25367
|
+
@property
|
25368
|
+
def JdbcUrl(self):
|
25369
|
+
return self._JdbcUrl
|
25370
|
+
|
25371
|
+
@JdbcUrl.setter
|
25372
|
+
def JdbcUrl(self, JdbcUrl):
|
25373
|
+
self._JdbcUrl = JdbcUrl
|
25374
|
+
|
25375
|
+
@property
|
25376
|
+
def User(self):
|
25377
|
+
return self._User
|
25378
|
+
|
25379
|
+
@User.setter
|
25380
|
+
def User(self, User):
|
25381
|
+
self._User = User
|
25382
|
+
|
25383
|
+
@property
|
25384
|
+
def Password(self):
|
25385
|
+
return self._Password
|
25386
|
+
|
25387
|
+
@Password.setter
|
25388
|
+
def Password(self, Password):
|
25389
|
+
self._Password = Password
|
25390
|
+
|
25391
|
+
@property
|
25392
|
+
def Location(self):
|
25393
|
+
return self._Location
|
25394
|
+
|
25395
|
+
@Location.setter
|
25396
|
+
def Location(self, Location):
|
25397
|
+
self._Location = Location
|
25398
|
+
|
25399
|
+
@property
|
25400
|
+
def DbName(self):
|
25401
|
+
return self._DbName
|
25402
|
+
|
25403
|
+
@DbName.setter
|
25404
|
+
def DbName(self, DbName):
|
25405
|
+
self._DbName = DbName
|
25406
|
+
|
25407
|
+
@property
|
25408
|
+
def AccessInfo(self):
|
25409
|
+
return self._AccessInfo
|
25410
|
+
|
25411
|
+
@AccessInfo.setter
|
25412
|
+
def AccessInfo(self, AccessInfo):
|
25413
|
+
self._AccessInfo = AccessInfo
|
25414
|
+
|
25415
|
+
|
25416
|
+
def _deserialize(self, params):
|
25417
|
+
self._InstanceId = params.get("InstanceId")
|
25418
|
+
self._InstanceName = params.get("InstanceName")
|
25419
|
+
self._JdbcUrl = params.get("JdbcUrl")
|
25420
|
+
self._User = params.get("User")
|
25421
|
+
self._Password = params.get("Password")
|
25422
|
+
if params.get("Location") is not None:
|
25423
|
+
self._Location = DatasourceConnectionLocation()
|
25424
|
+
self._Location._deserialize(params.get("Location"))
|
25425
|
+
self._DbName = params.get("DbName")
|
25426
|
+
self._AccessInfo = params.get("AccessInfo")
|
25427
|
+
memeber_set = set(params.keys())
|
25428
|
+
for name, value in vars(self).items():
|
25429
|
+
property_name = name[1:]
|
25430
|
+
if property_name in memeber_set:
|
25431
|
+
memeber_set.remove(property_name)
|
25432
|
+
if len(memeber_set) > 0:
|
25433
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
25434
|
+
|
25435
|
+
|
25436
|
+
|
25117
25437
|
class TColumn(AbstractModel):
|
25118
25438
|
"""表字段描述信息
|
25119
25439
|
|
@@ -6155,9 +6155,13 @@ class DbInfo(AbstractModel):
|
|
6155
6155
|
:param _ValidStatus: 绑定的状态
|
6156
6156
|
注意:此字段可能返回 null,表示取不到有效值。
|
6157
6157
|
:type ValidStatus: str
|
6158
|
+
:param _BindType: 绑定的类型
|
6159
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6160
|
+
:type BindType: str
|
6158
6161
|
"""
|
6159
6162
|
self._DbName = None
|
6160
6163
|
self._ValidStatus = None
|
6164
|
+
self._BindType = None
|
6161
6165
|
|
6162
6166
|
@property
|
6163
6167
|
def DbName(self):
|
@@ -6175,10 +6179,19 @@ class DbInfo(AbstractModel):
|
|
6175
6179
|
def ValidStatus(self, ValidStatus):
|
6176
6180
|
self._ValidStatus = ValidStatus
|
6177
6181
|
|
6182
|
+
@property
|
6183
|
+
def BindType(self):
|
6184
|
+
return self._BindType
|
6185
|
+
|
6186
|
+
@BindType.setter
|
6187
|
+
def BindType(self, BindType):
|
6188
|
+
self._BindType = BindType
|
6189
|
+
|
6178
6190
|
|
6179
6191
|
def _deserialize(self, params):
|
6180
6192
|
self._DbName = params.get("DbName")
|
6181
6193
|
self._ValidStatus = params.get("ValidStatus")
|
6194
|
+
self._BindType = params.get("BindType")
|
6182
6195
|
memeber_set = set(params.keys())
|
6183
6196
|
for name, value in vars(self).items():
|
6184
6197
|
property_name = name[1:]
|
@@ -10875,7 +10888,7 @@ class DescribeDSPAAssessmentTemplatesRequest(AbstractModel):
|
|
10875
10888
|
:type Offset: int
|
10876
10889
|
:param _Limit: 结果集个数限制。默认为20,最大值为100
|
10877
10890
|
:type Limit: int
|
10878
|
-
:param _Filters: 过滤项。支持模糊搜索:(TemplateId,TemplateName)支持过滤:Source:模板来源,system / userUseType:模板类型,auto,semi-auto,law等Status:模板启用状态,draft / launched
|
10891
|
+
:param _Filters: 过滤项。支持模糊搜索:(TemplateId,TemplateName)支持过滤:Source:模板来源,system / userUseType:模板类型,auto,semi-auto,law等Status:模板启用状态,draft / launched,ComplianceId:关联的分类分级模版id
|
10879
10892
|
:type Filters: list of DspaAssessmentFilter
|
10880
10893
|
"""
|
10881
10894
|
self._DspaId = None
|
@@ -2630,7 +2630,7 @@ class CreateClusterRequest(AbstractModel):
|
|
2630
2630
|
:type SecurityGroupIds: list of str
|
2631
2631
|
:param _ScriptBootstrapActionConfig: [引导操作](https://cloud.tencent.com/document/product/589/35656)脚本设置。
|
2632
2632
|
:type ScriptBootstrapActionConfig: list of ScriptBootstrapActionConfig
|
2633
|
-
:param _ClientToken: 唯一随机标识,时效性为5分钟,需要调用者指定 防止客户端重复创建资源,例如 a9a90aa6
|
2633
|
+
:param _ClientToken: 唯一随机标识,时效性为5分钟,需要调用者指定 防止客户端重复创建资源,例如 a9a90aa6-****-****-****-fae360632808
|
2634
2634
|
:type ClientToken: str
|
2635
2635
|
:param _NeedMasterWan: 是否开启集群Master节点公网。取值范围:
|
2636
2636
|
<li>NEED_MASTER_WAN:表示开启集群Master节点公网。</li>
|
@@ -3021,7 +3021,7 @@ class CreateInstanceRequest(AbstractModel):
|
|
3021
3021
|
<li>0:表示不自动续费。</li>
|
3022
3022
|
<li>1:表示自动续费。</li>
|
3023
3023
|
:type AutoRenew: int
|
3024
|
-
:param _ClientToken: 唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6
|
3024
|
+
:param _ClientToken: 唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-****-****-****-fae36063280
|
3025
3025
|
:type ClientToken: str
|
3026
3026
|
:param _NeedMasterWan: 是否开启集群Master节点公网。取值范围:
|
3027
3027
|
<li>NEED_MASTER_WAN:表示开启集群Master节点公网。</li>
|
@@ -7155,7 +7155,7 @@ class DescribeServiceNodeInfosRequest(AbstractModel):
|
|
7155
7155
|
"-3"代表存在隐患
|
7156
7156
|
"-4"代表未探测
|
7157
7157
|
:type HealthStateId: str
|
7158
|
-
:param _ServiceName:
|
7158
|
+
:param _ServiceName: 服务组件名称,都是大写例如YARN
|
7159
7159
|
:type ServiceName: str
|
7160
7160
|
:param _NodeTypeName: 节点名称
|
7161
7161
|
master
|
@@ -18930,7 +18930,7 @@ class ScaleOutClusterRequest(AbstractModel):
|
|
18930
18930
|
:type InstanceId: str
|
18931
18931
|
:param _ScaleOutNodeConfig: 扩容节点类型以及数量
|
18932
18932
|
:type ScaleOutNodeConfig: :class:`tencentcloud.emr.v20190103.models.ScaleOutNodeConfig`
|
18933
|
-
:param _ClientToken: 唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6
|
18933
|
+
:param _ClientToken: 唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-****-****-****-fae36063280
|
18934
18934
|
:type ClientToken: str
|
18935
18935
|
:param _InstanceChargePrepaid: 即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
|
18936
18936
|
:type InstanceChargePrepaid: :class:`tencentcloud.emr.v20190103.models.InstanceChargePrepaid`
|
@@ -19301,7 +19301,7 @@ class ScaleOutInstanceRequest(AbstractModel):
|
|
19301
19301
|
<li>0:表示按量计费。</li>
|
19302
19302
|
<li>1:表示包年包月。</li>
|
19303
19303
|
:type PayMode: int
|
19304
|
-
:param _ClientToken: 唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6
|
19304
|
+
:param _ClientToken: 唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,例如 a9a90aa6-****-****-****-fae36063280
|
19305
19305
|
:type ClientToken: str
|
19306
19306
|
:param _PreExecutedFileSettings: 引导操作脚本设置。
|
19307
19307
|
:type PreExecutedFileSettings: list of PreExecuteFileSettings
|
@@ -260,6 +260,9 @@ INVALIDPARAMETER_INVALIDVERIFYCHANNEL = 'InvalidParameter.InvalidVerifyChannel'
|
|
260
260
|
# 不合法的跳转链接,请联系电子签客服添加链接白名单。
|
261
261
|
INVALIDPARAMETER_JUMPURL = 'InvalidParameter.JumpUrl'
|
262
262
|
|
263
|
+
# 关键字格式错误或者不存在。
|
264
|
+
INVALIDPARAMETER_KEYWORD = 'InvalidParameter.Keyword'
|
265
|
+
|
263
266
|
# Limit参数超出最大限制
|
264
267
|
INVALIDPARAMETER_LIMIT = 'InvalidParameter.Limit'
|
265
268
|
|
@@ -2094,7 +2094,7 @@ class EssClient(AbstractClient):
|
|
2094
2094
|
|
2095
2095
|
|
2096
2096
|
def DescribeFlowComponents(self, request):
|
2097
|
-
"""
|
2097
|
+
"""可以根据合同流程ID查询该合同流程相关联的填写控件信息和填写内容,包括填写控件的归属方、填写控件是否已经填写以及填写的内容等信息。
|
2098
2098
|
|
2099
2099
|
:param request: Request instance for DescribeFlowComponents.
|
2100
2100
|
:type request: :class:`tencentcloud.ess.v20201111.models.DescribeFlowComponentsRequest`
|