tencentcloud-sdk-python 3.0.1163__py2.py3-none-any.whl → 3.0.1165__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/common/credential.py +1 -1
- tencentcloud/dlc/v20210125/dlc_client.py +230 -0
- tencentcloud/dlc/v20210125/models.py +1298 -22
- tencentcloud/domain/v20180808/models.py +959 -23
- tencentcloud/dts/v20180330/models.py +13 -13
- tencentcloud/eb/v20210416/models.py +10 -1
- tencentcloud/emr/v20190103/models.py +26 -0
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/mongodb/v20190725/models.py +4 -4
- tencentcloud/ocr/v20181119/ocr_client.py +3 -2
- tencentcloud/postgres/v20170312/models.py +251 -88
- tencentcloud/postgres/v20170312/postgres_client.py +25 -2
- tencentcloud/redis/v20180412/models.py +226 -0
- tencentcloud/redis/v20180412/redis_client.py +23 -0
- tencentcloud/teo/v20220901/errorcodes.py +6 -0
- tencentcloud/teo/v20220901/models.py +586 -3
- tencentcloud/teo/v20220901/teo_client.py +92 -0
- tencentcloud/tione/v20211111/errorcodes.py +15 -0
- tencentcloud/tione/v20211111/models.py +119 -13
- tencentcloud/tse/v20201207/models.py +70 -0
- tencentcloud/tse/v20201207/tse_client.py +23 -0
- tencentcloud/vtc/v20240223/errorcodes.py +3 -0
- tencentcloud/vtc/v20240223/models.py +24 -0
- tencentcloud/wedata/v20210820/models.py +26 -0
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1165.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1165.dist-info}/RECORD +31 -31
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1165.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1165.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1163.dist-info → tencentcloud_sdk_python-3.0.1165.dist-info}/top_level.txt +0 -0
@@ -1275,6 +1275,98 @@ class BindWorkGroupsToUserResponse(AbstractModel):
|
|
1275
1275
|
self._RequestId = params.get("RequestId")
|
1276
1276
|
|
1277
1277
|
|
1278
|
+
class CHDFSProductVpcInfo(AbstractModel):
|
1279
|
+
"""chdfs产品vpc信息
|
1280
|
+
|
1281
|
+
"""
|
1282
|
+
|
1283
|
+
def __init__(self):
|
1284
|
+
r"""
|
1285
|
+
:param _VpcId: vpc id
|
1286
|
+
|
1287
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1288
|
+
:type VpcId: str
|
1289
|
+
:param _VpcName: vpc名称
|
1290
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1291
|
+
:type VpcName: str
|
1292
|
+
:param _VpcCidrBlock: vpc子网信息列表
|
1293
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1294
|
+
:type VpcCidrBlock: list of VpcCidrBlock
|
1295
|
+
:param _RuleId: 规则Id
|
1296
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1297
|
+
:type RuleId: int
|
1298
|
+
:param _AccessGroupId: 权限组Id
|
1299
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1300
|
+
:type AccessGroupId: str
|
1301
|
+
"""
|
1302
|
+
self._VpcId = None
|
1303
|
+
self._VpcName = None
|
1304
|
+
self._VpcCidrBlock = None
|
1305
|
+
self._RuleId = None
|
1306
|
+
self._AccessGroupId = None
|
1307
|
+
|
1308
|
+
@property
|
1309
|
+
def VpcId(self):
|
1310
|
+
return self._VpcId
|
1311
|
+
|
1312
|
+
@VpcId.setter
|
1313
|
+
def VpcId(self, VpcId):
|
1314
|
+
self._VpcId = VpcId
|
1315
|
+
|
1316
|
+
@property
|
1317
|
+
def VpcName(self):
|
1318
|
+
return self._VpcName
|
1319
|
+
|
1320
|
+
@VpcName.setter
|
1321
|
+
def VpcName(self, VpcName):
|
1322
|
+
self._VpcName = VpcName
|
1323
|
+
|
1324
|
+
@property
|
1325
|
+
def VpcCidrBlock(self):
|
1326
|
+
return self._VpcCidrBlock
|
1327
|
+
|
1328
|
+
@VpcCidrBlock.setter
|
1329
|
+
def VpcCidrBlock(self, VpcCidrBlock):
|
1330
|
+
self._VpcCidrBlock = VpcCidrBlock
|
1331
|
+
|
1332
|
+
@property
|
1333
|
+
def RuleId(self):
|
1334
|
+
return self._RuleId
|
1335
|
+
|
1336
|
+
@RuleId.setter
|
1337
|
+
def RuleId(self, RuleId):
|
1338
|
+
self._RuleId = RuleId
|
1339
|
+
|
1340
|
+
@property
|
1341
|
+
def AccessGroupId(self):
|
1342
|
+
return self._AccessGroupId
|
1343
|
+
|
1344
|
+
@AccessGroupId.setter
|
1345
|
+
def AccessGroupId(self, AccessGroupId):
|
1346
|
+
self._AccessGroupId = AccessGroupId
|
1347
|
+
|
1348
|
+
|
1349
|
+
def _deserialize(self, params):
|
1350
|
+
self._VpcId = params.get("VpcId")
|
1351
|
+
self._VpcName = params.get("VpcName")
|
1352
|
+
if params.get("VpcCidrBlock") is not None:
|
1353
|
+
self._VpcCidrBlock = []
|
1354
|
+
for item in params.get("VpcCidrBlock"):
|
1355
|
+
obj = VpcCidrBlock()
|
1356
|
+
obj._deserialize(item)
|
1357
|
+
self._VpcCidrBlock.append(obj)
|
1358
|
+
self._RuleId = params.get("RuleId")
|
1359
|
+
self._AccessGroupId = params.get("AccessGroupId")
|
1360
|
+
memeber_set = set(params.keys())
|
1361
|
+
for name, value in vars(self).items():
|
1362
|
+
property_name = name[1:]
|
1363
|
+
if property_name in memeber_set:
|
1364
|
+
memeber_set.remove(property_name)
|
1365
|
+
if len(memeber_set) > 0:
|
1366
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1367
|
+
|
1368
|
+
|
1369
|
+
|
1278
1370
|
class CSV(AbstractModel):
|
1279
1371
|
"""CSV类型数据格式
|
1280
1372
|
|
@@ -2438,6 +2530,135 @@ class CosPermission(AbstractModel):
|
|
2438
2530
|
|
2439
2531
|
|
2440
2532
|
|
2533
|
+
class CreateCHDFSBindingProductRequest(AbstractModel):
|
2534
|
+
"""CreateCHDFSBindingProduct请求参数结构体
|
2535
|
+
|
2536
|
+
"""
|
2537
|
+
|
2538
|
+
def __init__(self):
|
2539
|
+
r"""
|
2540
|
+
:param _MountPoint: 需要绑定的元数据加速桶名
|
2541
|
+
:type MountPoint: str
|
2542
|
+
:param _BucketType: 桶的类型,分为cos和lakefs
|
2543
|
+
:type BucketType: str
|
2544
|
+
:param _ProductName: 产品名称
|
2545
|
+
:type ProductName: str
|
2546
|
+
:param _EngineName: 引擎名称,ProductName选择DLC产品时,必传此参数。其他产品可不传
|
2547
|
+
:type EngineName: str
|
2548
|
+
:param _VpcInfo: vpc信息,产品名称为other时必传此参数
|
2549
|
+
:type VpcInfo: list of VpcInfo
|
2550
|
+
"""
|
2551
|
+
self._MountPoint = None
|
2552
|
+
self._BucketType = None
|
2553
|
+
self._ProductName = None
|
2554
|
+
self._EngineName = None
|
2555
|
+
self._VpcInfo = None
|
2556
|
+
|
2557
|
+
@property
|
2558
|
+
def MountPoint(self):
|
2559
|
+
return self._MountPoint
|
2560
|
+
|
2561
|
+
@MountPoint.setter
|
2562
|
+
def MountPoint(self, MountPoint):
|
2563
|
+
self._MountPoint = MountPoint
|
2564
|
+
|
2565
|
+
@property
|
2566
|
+
def BucketType(self):
|
2567
|
+
return self._BucketType
|
2568
|
+
|
2569
|
+
@BucketType.setter
|
2570
|
+
def BucketType(self, BucketType):
|
2571
|
+
self._BucketType = BucketType
|
2572
|
+
|
2573
|
+
@property
|
2574
|
+
def ProductName(self):
|
2575
|
+
return self._ProductName
|
2576
|
+
|
2577
|
+
@ProductName.setter
|
2578
|
+
def ProductName(self, ProductName):
|
2579
|
+
self._ProductName = ProductName
|
2580
|
+
|
2581
|
+
@property
|
2582
|
+
def EngineName(self):
|
2583
|
+
return self._EngineName
|
2584
|
+
|
2585
|
+
@EngineName.setter
|
2586
|
+
def EngineName(self, EngineName):
|
2587
|
+
self._EngineName = EngineName
|
2588
|
+
|
2589
|
+
@property
|
2590
|
+
def VpcInfo(self):
|
2591
|
+
return self._VpcInfo
|
2592
|
+
|
2593
|
+
@VpcInfo.setter
|
2594
|
+
def VpcInfo(self, VpcInfo):
|
2595
|
+
self._VpcInfo = VpcInfo
|
2596
|
+
|
2597
|
+
|
2598
|
+
def _deserialize(self, params):
|
2599
|
+
self._MountPoint = params.get("MountPoint")
|
2600
|
+
self._BucketType = params.get("BucketType")
|
2601
|
+
self._ProductName = params.get("ProductName")
|
2602
|
+
self._EngineName = params.get("EngineName")
|
2603
|
+
if params.get("VpcInfo") is not None:
|
2604
|
+
self._VpcInfo = []
|
2605
|
+
for item in params.get("VpcInfo"):
|
2606
|
+
obj = VpcInfo()
|
2607
|
+
obj._deserialize(item)
|
2608
|
+
self._VpcInfo.append(obj)
|
2609
|
+
memeber_set = set(params.keys())
|
2610
|
+
for name, value in vars(self).items():
|
2611
|
+
property_name = name[1:]
|
2612
|
+
if property_name in memeber_set:
|
2613
|
+
memeber_set.remove(property_name)
|
2614
|
+
if len(memeber_set) > 0:
|
2615
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2616
|
+
|
2617
|
+
|
2618
|
+
|
2619
|
+
class CreateCHDFSBindingProductResponse(AbstractModel):
|
2620
|
+
"""CreateCHDFSBindingProduct返回参数结构体
|
2621
|
+
|
2622
|
+
"""
|
2623
|
+
|
2624
|
+
def __init__(self):
|
2625
|
+
r"""
|
2626
|
+
:param _MountPointAssociates: 绑定信息
|
2627
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2628
|
+
:type MountPointAssociates: list of MountPointAssociates
|
2629
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2630
|
+
:type RequestId: str
|
2631
|
+
"""
|
2632
|
+
self._MountPointAssociates = None
|
2633
|
+
self._RequestId = None
|
2634
|
+
|
2635
|
+
@property
|
2636
|
+
def MountPointAssociates(self):
|
2637
|
+
return self._MountPointAssociates
|
2638
|
+
|
2639
|
+
@MountPointAssociates.setter
|
2640
|
+
def MountPointAssociates(self, MountPointAssociates):
|
2641
|
+
self._MountPointAssociates = MountPointAssociates
|
2642
|
+
|
2643
|
+
@property
|
2644
|
+
def RequestId(self):
|
2645
|
+
return self._RequestId
|
2646
|
+
|
2647
|
+
@RequestId.setter
|
2648
|
+
def RequestId(self, RequestId):
|
2649
|
+
self._RequestId = RequestId
|
2650
|
+
|
2651
|
+
|
2652
|
+
def _deserialize(self, params):
|
2653
|
+
if params.get("MountPointAssociates") is not None:
|
2654
|
+
self._MountPointAssociates = []
|
2655
|
+
for item in params.get("MountPointAssociates"):
|
2656
|
+
obj = MountPointAssociates()
|
2657
|
+
obj._deserialize(item)
|
2658
|
+
self._MountPointAssociates.append(obj)
|
2659
|
+
self._RequestId = params.get("RequestId")
|
2660
|
+
|
2661
|
+
|
2441
2662
|
class CreateDMSDatabaseRequest(AbstractModel):
|
2442
2663
|
"""CreateDMSDatabase请求参数结构体
|
2443
2664
|
|
@@ -5894,6 +6115,79 @@ class CrontabResumeSuspendStrategy(AbstractModel):
|
|
5894
6115
|
|
5895
6116
|
|
5896
6117
|
|
6118
|
+
class DLCCatalogAccess(AbstractModel):
|
6119
|
+
"""DLC 数据目录访问权限
|
6120
|
+
|
6121
|
+
"""
|
6122
|
+
|
6123
|
+
def __init__(self):
|
6124
|
+
r"""
|
6125
|
+
:param _VpcId: VPCID
|
6126
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6127
|
+
:type VpcId: str
|
6128
|
+
:param _Product: 产品类型
|
6129
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6130
|
+
:type Product: str
|
6131
|
+
:param _Description: 描述信息
|
6132
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6133
|
+
:type Description: str
|
6134
|
+
:param _CreateTime: 创建时间
|
6135
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6136
|
+
:type CreateTime: str
|
6137
|
+
"""
|
6138
|
+
self._VpcId = None
|
6139
|
+
self._Product = None
|
6140
|
+
self._Description = None
|
6141
|
+
self._CreateTime = None
|
6142
|
+
|
6143
|
+
@property
|
6144
|
+
def VpcId(self):
|
6145
|
+
return self._VpcId
|
6146
|
+
|
6147
|
+
@VpcId.setter
|
6148
|
+
def VpcId(self, VpcId):
|
6149
|
+
self._VpcId = VpcId
|
6150
|
+
|
6151
|
+
@property
|
6152
|
+
def Product(self):
|
6153
|
+
return self._Product
|
6154
|
+
|
6155
|
+
@Product.setter
|
6156
|
+
def Product(self, Product):
|
6157
|
+
self._Product = Product
|
6158
|
+
|
6159
|
+
@property
|
6160
|
+
def Description(self):
|
6161
|
+
return self._Description
|
6162
|
+
|
6163
|
+
@Description.setter
|
6164
|
+
def Description(self, Description):
|
6165
|
+
self._Description = Description
|
6166
|
+
|
6167
|
+
@property
|
6168
|
+
def CreateTime(self):
|
6169
|
+
return self._CreateTime
|
6170
|
+
|
6171
|
+
@CreateTime.setter
|
6172
|
+
def CreateTime(self, CreateTime):
|
6173
|
+
self._CreateTime = CreateTime
|
6174
|
+
|
6175
|
+
|
6176
|
+
def _deserialize(self, params):
|
6177
|
+
self._VpcId = params.get("VpcId")
|
6178
|
+
self._Product = params.get("Product")
|
6179
|
+
self._Description = params.get("Description")
|
6180
|
+
self._CreateTime = params.get("CreateTime")
|
6181
|
+
memeber_set = set(params.keys())
|
6182
|
+
for name, value in vars(self).items():
|
6183
|
+
property_name = name[1:]
|
6184
|
+
if property_name in memeber_set:
|
6185
|
+
memeber_set.remove(property_name)
|
6186
|
+
if len(memeber_set) > 0:
|
6187
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6188
|
+
|
6189
|
+
|
6190
|
+
|
5897
6191
|
class DMSColumn(AbstractModel):
|
5898
6192
|
"""迁移列对象
|
5899
6193
|
|
@@ -8816,6 +9110,117 @@ class DatasourceConnectionLocation(AbstractModel):
|
|
8816
9110
|
|
8817
9111
|
|
8818
9112
|
|
9113
|
+
class DeleteCHDFSBindingProductRequest(AbstractModel):
|
9114
|
+
"""DeleteCHDFSBindingProduct请求参数结构体
|
9115
|
+
|
9116
|
+
"""
|
9117
|
+
|
9118
|
+
def __init__(self):
|
9119
|
+
r"""
|
9120
|
+
:param _MountPoint: 需要解绑的元数据加速桶名
|
9121
|
+
:type MountPoint: str
|
9122
|
+
:param _BucketType: 桶的类型,分为cos和lakefs
|
9123
|
+
:type BucketType: str
|
9124
|
+
:param _ProductName: 产品名称
|
9125
|
+
:type ProductName: str
|
9126
|
+
:param _EngineName: 引擎名称,ProductName选择DLC产品时,必传此参数。其他产品可不传
|
9127
|
+
:type EngineName: str
|
9128
|
+
:param _VpcInfo: vpc信息,ProductName选择other时,必传此参数
|
9129
|
+
:type VpcInfo: list of VpcInfo
|
9130
|
+
"""
|
9131
|
+
self._MountPoint = None
|
9132
|
+
self._BucketType = None
|
9133
|
+
self._ProductName = None
|
9134
|
+
self._EngineName = None
|
9135
|
+
self._VpcInfo = None
|
9136
|
+
|
9137
|
+
@property
|
9138
|
+
def MountPoint(self):
|
9139
|
+
return self._MountPoint
|
9140
|
+
|
9141
|
+
@MountPoint.setter
|
9142
|
+
def MountPoint(self, MountPoint):
|
9143
|
+
self._MountPoint = MountPoint
|
9144
|
+
|
9145
|
+
@property
|
9146
|
+
def BucketType(self):
|
9147
|
+
return self._BucketType
|
9148
|
+
|
9149
|
+
@BucketType.setter
|
9150
|
+
def BucketType(self, BucketType):
|
9151
|
+
self._BucketType = BucketType
|
9152
|
+
|
9153
|
+
@property
|
9154
|
+
def ProductName(self):
|
9155
|
+
return self._ProductName
|
9156
|
+
|
9157
|
+
@ProductName.setter
|
9158
|
+
def ProductName(self, ProductName):
|
9159
|
+
self._ProductName = ProductName
|
9160
|
+
|
9161
|
+
@property
|
9162
|
+
def EngineName(self):
|
9163
|
+
return self._EngineName
|
9164
|
+
|
9165
|
+
@EngineName.setter
|
9166
|
+
def EngineName(self, EngineName):
|
9167
|
+
self._EngineName = EngineName
|
9168
|
+
|
9169
|
+
@property
|
9170
|
+
def VpcInfo(self):
|
9171
|
+
return self._VpcInfo
|
9172
|
+
|
9173
|
+
@VpcInfo.setter
|
9174
|
+
def VpcInfo(self, VpcInfo):
|
9175
|
+
self._VpcInfo = VpcInfo
|
9176
|
+
|
9177
|
+
|
9178
|
+
def _deserialize(self, params):
|
9179
|
+
self._MountPoint = params.get("MountPoint")
|
9180
|
+
self._BucketType = params.get("BucketType")
|
9181
|
+
self._ProductName = params.get("ProductName")
|
9182
|
+
self._EngineName = params.get("EngineName")
|
9183
|
+
if params.get("VpcInfo") is not None:
|
9184
|
+
self._VpcInfo = []
|
9185
|
+
for item in params.get("VpcInfo"):
|
9186
|
+
obj = VpcInfo()
|
9187
|
+
obj._deserialize(item)
|
9188
|
+
self._VpcInfo.append(obj)
|
9189
|
+
memeber_set = set(params.keys())
|
9190
|
+
for name, value in vars(self).items():
|
9191
|
+
property_name = name[1:]
|
9192
|
+
if property_name in memeber_set:
|
9193
|
+
memeber_set.remove(property_name)
|
9194
|
+
if len(memeber_set) > 0:
|
9195
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
9196
|
+
|
9197
|
+
|
9198
|
+
|
9199
|
+
class DeleteCHDFSBindingProductResponse(AbstractModel):
|
9200
|
+
"""DeleteCHDFSBindingProduct返回参数结构体
|
9201
|
+
|
9202
|
+
"""
|
9203
|
+
|
9204
|
+
def __init__(self):
|
9205
|
+
r"""
|
9206
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9207
|
+
:type RequestId: str
|
9208
|
+
"""
|
9209
|
+
self._RequestId = None
|
9210
|
+
|
9211
|
+
@property
|
9212
|
+
def RequestId(self):
|
9213
|
+
return self._RequestId
|
9214
|
+
|
9215
|
+
@RequestId.setter
|
9216
|
+
def RequestId(self, RequestId):
|
9217
|
+
self._RequestId = RequestId
|
9218
|
+
|
9219
|
+
|
9220
|
+
def _deserialize(self, params):
|
9221
|
+
self._RequestId = params.get("RequestId")
|
9222
|
+
|
9223
|
+
|
8819
9224
|
class DeleteDataEngineRequest(AbstractModel):
|
8820
9225
|
"""DeleteDataEngine请求参数结构体
|
8821
9226
|
|
@@ -9060,25 +9465,56 @@ class DeleteSparkAppResponse(AbstractModel):
|
|
9060
9465
|
self._RequestId = params.get("RequestId")
|
9061
9466
|
|
9062
9467
|
|
9063
|
-
class
|
9064
|
-
"""
|
9468
|
+
class DeleteThirdPartyAccessUserRequest(AbstractModel):
|
9469
|
+
"""DeleteThirdPartyAccessUser请求参数结构体
|
9470
|
+
|
9471
|
+
"""
|
9472
|
+
|
9473
|
+
|
9474
|
+
class DeleteThirdPartyAccessUserResponse(AbstractModel):
|
9475
|
+
"""DeleteThirdPartyAccessUser返回参数结构体
|
9065
9476
|
|
9066
9477
|
"""
|
9067
9478
|
|
9068
9479
|
def __init__(self):
|
9069
9480
|
r"""
|
9070
|
-
:param
|
9071
|
-
:type
|
9481
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9482
|
+
:type RequestId: str
|
9072
9483
|
"""
|
9073
|
-
self.
|
9484
|
+
self._RequestId = None
|
9074
9485
|
|
9075
9486
|
@property
|
9076
|
-
def
|
9077
|
-
return self.
|
9487
|
+
def RequestId(self):
|
9488
|
+
return self._RequestId
|
9078
9489
|
|
9079
|
-
@
|
9080
|
-
def
|
9081
|
-
self.
|
9490
|
+
@RequestId.setter
|
9491
|
+
def RequestId(self, RequestId):
|
9492
|
+
self._RequestId = RequestId
|
9493
|
+
|
9494
|
+
|
9495
|
+
def _deserialize(self, params):
|
9496
|
+
self._RequestId = params.get("RequestId")
|
9497
|
+
|
9498
|
+
|
9499
|
+
class DeleteUserRequest(AbstractModel):
|
9500
|
+
"""DeleteUser请求参数结构体
|
9501
|
+
|
9502
|
+
"""
|
9503
|
+
|
9504
|
+
def __init__(self):
|
9505
|
+
r"""
|
9506
|
+
:param _UserIds: 需要删除的用户的Id
|
9507
|
+
:type UserIds: list of str
|
9508
|
+
"""
|
9509
|
+
self._UserIds = None
|
9510
|
+
|
9511
|
+
@property
|
9512
|
+
def UserIds(self):
|
9513
|
+
return self._UserIds
|
9514
|
+
|
9515
|
+
@UserIds.setter
|
9516
|
+
def UserIds(self, UserIds):
|
9517
|
+
self._UserIds = UserIds
|
9082
9518
|
|
9083
9519
|
|
9084
9520
|
def _deserialize(self, params):
|
@@ -9316,6 +9752,119 @@ class DescribeAdvancedStoreLocationResponse(AbstractModel):
|
|
9316
9752
|
self._RequestId = params.get("RequestId")
|
9317
9753
|
|
9318
9754
|
|
9755
|
+
class DescribeDLCCatalogAccessRequest(AbstractModel):
|
9756
|
+
"""DescribeDLCCatalogAccess请求参数结构体
|
9757
|
+
|
9758
|
+
"""
|
9759
|
+
|
9760
|
+
def __init__(self):
|
9761
|
+
r"""
|
9762
|
+
:param _Limit: 显示条数
|
9763
|
+
:type Limit: int
|
9764
|
+
:param _Offset: 记录数量
|
9765
|
+
:type Offset: int
|
9766
|
+
:param _Filter: 过滤条件
|
9767
|
+
:type Filter: :class:`tencentcloud.dlc.v20210125.models.Filter`
|
9768
|
+
"""
|
9769
|
+
self._Limit = None
|
9770
|
+
self._Offset = None
|
9771
|
+
self._Filter = None
|
9772
|
+
|
9773
|
+
@property
|
9774
|
+
def Limit(self):
|
9775
|
+
return self._Limit
|
9776
|
+
|
9777
|
+
@Limit.setter
|
9778
|
+
def Limit(self, Limit):
|
9779
|
+
self._Limit = Limit
|
9780
|
+
|
9781
|
+
@property
|
9782
|
+
def Offset(self):
|
9783
|
+
return self._Offset
|
9784
|
+
|
9785
|
+
@Offset.setter
|
9786
|
+
def Offset(self, Offset):
|
9787
|
+
self._Offset = Offset
|
9788
|
+
|
9789
|
+
@property
|
9790
|
+
def Filter(self):
|
9791
|
+
return self._Filter
|
9792
|
+
|
9793
|
+
@Filter.setter
|
9794
|
+
def Filter(self, Filter):
|
9795
|
+
self._Filter = Filter
|
9796
|
+
|
9797
|
+
|
9798
|
+
def _deserialize(self, params):
|
9799
|
+
self._Limit = params.get("Limit")
|
9800
|
+
self._Offset = params.get("Offset")
|
9801
|
+
if params.get("Filter") is not None:
|
9802
|
+
self._Filter = Filter()
|
9803
|
+
self._Filter._deserialize(params.get("Filter"))
|
9804
|
+
memeber_set = set(params.keys())
|
9805
|
+
for name, value in vars(self).items():
|
9806
|
+
property_name = name[1:]
|
9807
|
+
if property_name in memeber_set:
|
9808
|
+
memeber_set.remove(property_name)
|
9809
|
+
if len(memeber_set) > 0:
|
9810
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
9811
|
+
|
9812
|
+
|
9813
|
+
|
9814
|
+
class DescribeDLCCatalogAccessResponse(AbstractModel):
|
9815
|
+
"""DescribeDLCCatalogAccess返回参数结构体
|
9816
|
+
|
9817
|
+
"""
|
9818
|
+
|
9819
|
+
def __init__(self):
|
9820
|
+
r"""
|
9821
|
+
:param _TotalCount: 总数
|
9822
|
+
:type TotalCount: int
|
9823
|
+
:param _Rows: DLCCatalog授权列表
|
9824
|
+
:type Rows: list of DLCCatalogAccess
|
9825
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9826
|
+
:type RequestId: str
|
9827
|
+
"""
|
9828
|
+
self._TotalCount = None
|
9829
|
+
self._Rows = None
|
9830
|
+
self._RequestId = None
|
9831
|
+
|
9832
|
+
@property
|
9833
|
+
def TotalCount(self):
|
9834
|
+
return self._TotalCount
|
9835
|
+
|
9836
|
+
@TotalCount.setter
|
9837
|
+
def TotalCount(self, TotalCount):
|
9838
|
+
self._TotalCount = TotalCount
|
9839
|
+
|
9840
|
+
@property
|
9841
|
+
def Rows(self):
|
9842
|
+
return self._Rows
|
9843
|
+
|
9844
|
+
@Rows.setter
|
9845
|
+
def Rows(self, Rows):
|
9846
|
+
self._Rows = Rows
|
9847
|
+
|
9848
|
+
@property
|
9849
|
+
def RequestId(self):
|
9850
|
+
return self._RequestId
|
9851
|
+
|
9852
|
+
@RequestId.setter
|
9853
|
+
def RequestId(self, RequestId):
|
9854
|
+
self._RequestId = RequestId
|
9855
|
+
|
9856
|
+
|
9857
|
+
def _deserialize(self, params):
|
9858
|
+
self._TotalCount = params.get("TotalCount")
|
9859
|
+
if params.get("Rows") is not None:
|
9860
|
+
self._Rows = []
|
9861
|
+
for item in params.get("Rows"):
|
9862
|
+
obj = DLCCatalogAccess()
|
9863
|
+
obj._deserialize(item)
|
9864
|
+
self._Rows.append(obj)
|
9865
|
+
self._RequestId = params.get("RequestId")
|
9866
|
+
|
9867
|
+
|
9319
9868
|
class DescribeDMSDatabaseRequest(AbstractModel):
|
9320
9869
|
"""DescribeDMSDatabase请求参数结构体
|
9321
9870
|
|
@@ -12289,6 +12838,93 @@ class DescribeNotebookSessionsResponse(AbstractModel):
|
|
12289
12838
|
self._RequestId = params.get("RequestId")
|
12290
12839
|
|
12291
12840
|
|
12841
|
+
class DescribeOtherCHDFSBindingListRequest(AbstractModel):
|
12842
|
+
"""DescribeOtherCHDFSBindingList请求参数结构体
|
12843
|
+
|
12844
|
+
"""
|
12845
|
+
|
12846
|
+
def __init__(self):
|
12847
|
+
r"""
|
12848
|
+
:param _BucketId: 桶名
|
12849
|
+
:type BucketId: str
|
12850
|
+
"""
|
12851
|
+
self._BucketId = None
|
12852
|
+
|
12853
|
+
@property
|
12854
|
+
def BucketId(self):
|
12855
|
+
return self._BucketId
|
12856
|
+
|
12857
|
+
@BucketId.setter
|
12858
|
+
def BucketId(self, BucketId):
|
12859
|
+
self._BucketId = BucketId
|
12860
|
+
|
12861
|
+
|
12862
|
+
def _deserialize(self, params):
|
12863
|
+
self._BucketId = params.get("BucketId")
|
12864
|
+
memeber_set = set(params.keys())
|
12865
|
+
for name, value in vars(self).items():
|
12866
|
+
property_name = name[1:]
|
12867
|
+
if property_name in memeber_set:
|
12868
|
+
memeber_set.remove(property_name)
|
12869
|
+
if len(memeber_set) > 0:
|
12870
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
12871
|
+
|
12872
|
+
|
12873
|
+
|
12874
|
+
class DescribeOtherCHDFSBindingListResponse(AbstractModel):
|
12875
|
+
"""DescribeOtherCHDFSBindingList返回参数结构体
|
12876
|
+
|
12877
|
+
"""
|
12878
|
+
|
12879
|
+
def __init__(self):
|
12880
|
+
r"""
|
12881
|
+
:param _OtherCHDFSBindingList: 非DLC 产品绑定列表
|
12882
|
+
:type OtherCHDFSBindingList: list of OtherCHDFSBinding
|
12883
|
+
:param _Total: 总记录数
|
12884
|
+
:type Total: int
|
12885
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12886
|
+
:type RequestId: str
|
12887
|
+
"""
|
12888
|
+
self._OtherCHDFSBindingList = None
|
12889
|
+
self._Total = None
|
12890
|
+
self._RequestId = None
|
12891
|
+
|
12892
|
+
@property
|
12893
|
+
def OtherCHDFSBindingList(self):
|
12894
|
+
return self._OtherCHDFSBindingList
|
12895
|
+
|
12896
|
+
@OtherCHDFSBindingList.setter
|
12897
|
+
def OtherCHDFSBindingList(self, OtherCHDFSBindingList):
|
12898
|
+
self._OtherCHDFSBindingList = OtherCHDFSBindingList
|
12899
|
+
|
12900
|
+
@property
|
12901
|
+
def Total(self):
|
12902
|
+
return self._Total
|
12903
|
+
|
12904
|
+
@Total.setter
|
12905
|
+
def Total(self, Total):
|
12906
|
+
self._Total = Total
|
12907
|
+
|
12908
|
+
@property
|
12909
|
+
def RequestId(self):
|
12910
|
+
return self._RequestId
|
12911
|
+
|
12912
|
+
@RequestId.setter
|
12913
|
+
def RequestId(self, RequestId):
|
12914
|
+
self._RequestId = RequestId
|
12915
|
+
|
12916
|
+
|
12917
|
+
def _deserialize(self, params):
|
12918
|
+
if params.get("OtherCHDFSBindingList") is not None:
|
12919
|
+
self._OtherCHDFSBindingList = []
|
12920
|
+
for item in params.get("OtherCHDFSBindingList"):
|
12921
|
+
obj = OtherCHDFSBinding()
|
12922
|
+
obj._deserialize(item)
|
12923
|
+
self._OtherCHDFSBindingList.append(obj)
|
12924
|
+
self._Total = params.get("Total")
|
12925
|
+
self._RequestId = params.get("RequestId")
|
12926
|
+
|
12927
|
+
|
12292
12928
|
class DescribeResultDownloadRequest(AbstractModel):
|
12293
12929
|
"""DescribeResultDownload请求参数结构体
|
12294
12930
|
|
@@ -13264,6 +13900,49 @@ class DescribeStoreLocationResponse(AbstractModel):
|
|
13264
13900
|
self._RequestId = params.get("RequestId")
|
13265
13901
|
|
13266
13902
|
|
13903
|
+
class DescribeSubUserAccessPolicyRequest(AbstractModel):
|
13904
|
+
"""DescribeSubUserAccessPolicy请求参数结构体
|
13905
|
+
|
13906
|
+
"""
|
13907
|
+
|
13908
|
+
|
13909
|
+
class DescribeSubUserAccessPolicyResponse(AbstractModel):
|
13910
|
+
"""DescribeSubUserAccessPolicy返回参数结构体
|
13911
|
+
|
13912
|
+
"""
|
13913
|
+
|
13914
|
+
def __init__(self):
|
13915
|
+
r"""
|
13916
|
+
:param _PolicyDocument: 子用户访问策略
|
13917
|
+
:type PolicyDocument: str
|
13918
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13919
|
+
:type RequestId: str
|
13920
|
+
"""
|
13921
|
+
self._PolicyDocument = None
|
13922
|
+
self._RequestId = None
|
13923
|
+
|
13924
|
+
@property
|
13925
|
+
def PolicyDocument(self):
|
13926
|
+
return self._PolicyDocument
|
13927
|
+
|
13928
|
+
@PolicyDocument.setter
|
13929
|
+
def PolicyDocument(self, PolicyDocument):
|
13930
|
+
self._PolicyDocument = PolicyDocument
|
13931
|
+
|
13932
|
+
@property
|
13933
|
+
def RequestId(self):
|
13934
|
+
return self._RequestId
|
13935
|
+
|
13936
|
+
@RequestId.setter
|
13937
|
+
def RequestId(self, RequestId):
|
13938
|
+
self._RequestId = RequestId
|
13939
|
+
|
13940
|
+
|
13941
|
+
def _deserialize(self, params):
|
13942
|
+
self._PolicyDocument = params.get("PolicyDocument")
|
13943
|
+
self._RequestId = params.get("RequestId")
|
13944
|
+
|
13945
|
+
|
13267
13946
|
class DescribeTableRequest(AbstractModel):
|
13268
13947
|
"""DescribeTable请求参数结构体
|
13269
13948
|
|
@@ -14457,6 +15136,51 @@ class DescribeTasksResponse(AbstractModel):
|
|
14457
15136
|
self._RequestId = params.get("RequestId")
|
14458
15137
|
|
14459
15138
|
|
15139
|
+
class DescribeThirdPartyAccessUserRequest(AbstractModel):
|
15140
|
+
"""DescribeThirdPartyAccessUser请求参数结构体
|
15141
|
+
|
15142
|
+
"""
|
15143
|
+
|
15144
|
+
|
15145
|
+
class DescribeThirdPartyAccessUserResponse(AbstractModel):
|
15146
|
+
"""DescribeThirdPartyAccessUser返回参数结构体
|
15147
|
+
|
15148
|
+
"""
|
15149
|
+
|
15150
|
+
def __init__(self):
|
15151
|
+
r"""
|
15152
|
+
:param _UserInfo: 用户信息
|
15153
|
+
:type UserInfo: :class:`tencentcloud.dlc.v20210125.models.OpendThirdAccessUserInfo`
|
15154
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15155
|
+
:type RequestId: str
|
15156
|
+
"""
|
15157
|
+
self._UserInfo = None
|
15158
|
+
self._RequestId = None
|
15159
|
+
|
15160
|
+
@property
|
15161
|
+
def UserInfo(self):
|
15162
|
+
return self._UserInfo
|
15163
|
+
|
15164
|
+
@UserInfo.setter
|
15165
|
+
def UserInfo(self, UserInfo):
|
15166
|
+
self._UserInfo = UserInfo
|
15167
|
+
|
15168
|
+
@property
|
15169
|
+
def RequestId(self):
|
15170
|
+
return self._RequestId
|
15171
|
+
|
15172
|
+
@RequestId.setter
|
15173
|
+
def RequestId(self, RequestId):
|
15174
|
+
self._RequestId = RequestId
|
15175
|
+
|
15176
|
+
|
15177
|
+
def _deserialize(self, params):
|
15178
|
+
if params.get("UserInfo") is not None:
|
15179
|
+
self._UserInfo = OpendThirdAccessUserInfo()
|
15180
|
+
self._UserInfo._deserialize(params.get("UserInfo"))
|
15181
|
+
self._RequestId = params.get("RequestId")
|
15182
|
+
|
15183
|
+
|
14460
15184
|
class DescribeUpdatableDataEnginesRequest(AbstractModel):
|
14461
15185
|
"""DescribeUpdatableDataEngines请求参数结构体
|
14462
15186
|
|
@@ -16674,23 +17398,129 @@ class GetOptimizerPolicyResponse(AbstractModel):
|
|
16674
17398
|
self._RequestId = params.get("RequestId")
|
16675
17399
|
|
16676
17400
|
|
16677
|
-
class
|
16678
|
-
"""
|
17401
|
+
class GrantDLCCatalogAccessRequest(AbstractModel):
|
17402
|
+
"""GrantDLCCatalogAccess请求参数结构体
|
16679
17403
|
|
16680
17404
|
"""
|
16681
17405
|
|
16682
17406
|
def __init__(self):
|
16683
17407
|
r"""
|
16684
|
-
:param
|
16685
|
-
:type
|
16686
|
-
:param
|
16687
|
-
:type
|
16688
|
-
:param
|
16689
|
-
:type
|
16690
|
-
:param
|
16691
|
-
:type
|
16692
|
-
:param
|
16693
|
-
:type
|
17408
|
+
:param _VpcId: 授权VpcId
|
17409
|
+
:type VpcId: str
|
17410
|
+
:param _Product: 产品(EMR|DLC|Doris|Inlong|Wedata)
|
17411
|
+
:type Product: str
|
17412
|
+
:param _Description: 描述
|
17413
|
+
:type Description: str
|
17414
|
+
:param _VpcUin: VPC所属账号UIN
|
17415
|
+
:type VpcUin: str
|
17416
|
+
:param _VpcAppId: VPC所属账号AppId
|
17417
|
+
:type VpcAppId: int
|
17418
|
+
"""
|
17419
|
+
self._VpcId = None
|
17420
|
+
self._Product = None
|
17421
|
+
self._Description = None
|
17422
|
+
self._VpcUin = None
|
17423
|
+
self._VpcAppId = None
|
17424
|
+
|
17425
|
+
@property
|
17426
|
+
def VpcId(self):
|
17427
|
+
return self._VpcId
|
17428
|
+
|
17429
|
+
@VpcId.setter
|
17430
|
+
def VpcId(self, VpcId):
|
17431
|
+
self._VpcId = VpcId
|
17432
|
+
|
17433
|
+
@property
|
17434
|
+
def Product(self):
|
17435
|
+
return self._Product
|
17436
|
+
|
17437
|
+
@Product.setter
|
17438
|
+
def Product(self, Product):
|
17439
|
+
self._Product = Product
|
17440
|
+
|
17441
|
+
@property
|
17442
|
+
def Description(self):
|
17443
|
+
return self._Description
|
17444
|
+
|
17445
|
+
@Description.setter
|
17446
|
+
def Description(self, Description):
|
17447
|
+
self._Description = Description
|
17448
|
+
|
17449
|
+
@property
|
17450
|
+
def VpcUin(self):
|
17451
|
+
return self._VpcUin
|
17452
|
+
|
17453
|
+
@VpcUin.setter
|
17454
|
+
def VpcUin(self, VpcUin):
|
17455
|
+
self._VpcUin = VpcUin
|
17456
|
+
|
17457
|
+
@property
|
17458
|
+
def VpcAppId(self):
|
17459
|
+
return self._VpcAppId
|
17460
|
+
|
17461
|
+
@VpcAppId.setter
|
17462
|
+
def VpcAppId(self, VpcAppId):
|
17463
|
+
self._VpcAppId = VpcAppId
|
17464
|
+
|
17465
|
+
|
17466
|
+
def _deserialize(self, params):
|
17467
|
+
self._VpcId = params.get("VpcId")
|
17468
|
+
self._Product = params.get("Product")
|
17469
|
+
self._Description = params.get("Description")
|
17470
|
+
self._VpcUin = params.get("VpcUin")
|
17471
|
+
self._VpcAppId = params.get("VpcAppId")
|
17472
|
+
memeber_set = set(params.keys())
|
17473
|
+
for name, value in vars(self).items():
|
17474
|
+
property_name = name[1:]
|
17475
|
+
if property_name in memeber_set:
|
17476
|
+
memeber_set.remove(property_name)
|
17477
|
+
if len(memeber_set) > 0:
|
17478
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
17479
|
+
|
17480
|
+
|
17481
|
+
|
17482
|
+
class GrantDLCCatalogAccessResponse(AbstractModel):
|
17483
|
+
"""GrantDLCCatalogAccess返回参数结构体
|
17484
|
+
|
17485
|
+
"""
|
17486
|
+
|
17487
|
+
def __init__(self):
|
17488
|
+
r"""
|
17489
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17490
|
+
:type RequestId: str
|
17491
|
+
"""
|
17492
|
+
self._RequestId = None
|
17493
|
+
|
17494
|
+
@property
|
17495
|
+
def RequestId(self):
|
17496
|
+
return self._RequestId
|
17497
|
+
|
17498
|
+
@RequestId.setter
|
17499
|
+
def RequestId(self, RequestId):
|
17500
|
+
self._RequestId = RequestId
|
17501
|
+
|
17502
|
+
|
17503
|
+
def _deserialize(self, params):
|
17504
|
+
self._RequestId = params.get("RequestId")
|
17505
|
+
|
17506
|
+
|
17507
|
+
class HiveInfo(AbstractModel):
|
17508
|
+
"""hive类型数据源的信息
|
17509
|
+
|
17510
|
+
"""
|
17511
|
+
|
17512
|
+
def __init__(self):
|
17513
|
+
r"""
|
17514
|
+
:param _MetaStoreUrl: hive metastore的地址
|
17515
|
+
:type MetaStoreUrl: str
|
17516
|
+
:param _Type: hive数据源类型,代表数据储存的位置,COS或者HDFS
|
17517
|
+
:type Type: str
|
17518
|
+
:param _Location: 数据源所在的私有网络信息
|
17519
|
+
:type Location: :class:`tencentcloud.dlc.v20210125.models.DatasourceConnectionLocation`
|
17520
|
+
:param _User: 如果类型为HDFS,需要传一个用户名
|
17521
|
+
:type User: str
|
17522
|
+
:param _HighAvailability: 如果类型为HDFS,需要选择是否高可用
|
17523
|
+
:type HighAvailability: bool
|
16694
17524
|
:param _BucketUrl: 如果类型为COS,需要填写COS桶连接
|
16695
17525
|
:type BucketUrl: str
|
16696
17526
|
:param _HdfsProperties: json字符串。如果类型为HDFS,需要填写该字段
|
@@ -18812,6 +19642,92 @@ class ModifyWorkGroupResponse(AbstractModel):
|
|
18812
19642
|
self._RequestId = params.get("RequestId")
|
18813
19643
|
|
18814
19644
|
|
19645
|
+
class MountPointAssociates(AbstractModel):
|
19646
|
+
"""绑定融合桶信息
|
19647
|
+
|
19648
|
+
"""
|
19649
|
+
|
19650
|
+
def __init__(self):
|
19651
|
+
r"""
|
19652
|
+
:param _BucketId: 桶Id
|
19653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19654
|
+
:type BucketId: str
|
19655
|
+
:param _VpcId: vpcId
|
19656
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19657
|
+
:type VpcId: str
|
19658
|
+
:param _VpcCidrBlock: 子网地址
|
19659
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19660
|
+
:type VpcCidrBlock: str
|
19661
|
+
:param _AccessGroupId: 权限组Id
|
19662
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19663
|
+
:type AccessGroupId: str
|
19664
|
+
:param _AccessRuleId: 权限规则Id
|
19665
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
19666
|
+
:type AccessRuleId: int
|
19667
|
+
"""
|
19668
|
+
self._BucketId = None
|
19669
|
+
self._VpcId = None
|
19670
|
+
self._VpcCidrBlock = None
|
19671
|
+
self._AccessGroupId = None
|
19672
|
+
self._AccessRuleId = None
|
19673
|
+
|
19674
|
+
@property
|
19675
|
+
def BucketId(self):
|
19676
|
+
return self._BucketId
|
19677
|
+
|
19678
|
+
@BucketId.setter
|
19679
|
+
def BucketId(self, BucketId):
|
19680
|
+
self._BucketId = BucketId
|
19681
|
+
|
19682
|
+
@property
|
19683
|
+
def VpcId(self):
|
19684
|
+
return self._VpcId
|
19685
|
+
|
19686
|
+
@VpcId.setter
|
19687
|
+
def VpcId(self, VpcId):
|
19688
|
+
self._VpcId = VpcId
|
19689
|
+
|
19690
|
+
@property
|
19691
|
+
def VpcCidrBlock(self):
|
19692
|
+
return self._VpcCidrBlock
|
19693
|
+
|
19694
|
+
@VpcCidrBlock.setter
|
19695
|
+
def VpcCidrBlock(self, VpcCidrBlock):
|
19696
|
+
self._VpcCidrBlock = VpcCidrBlock
|
19697
|
+
|
19698
|
+
@property
|
19699
|
+
def AccessGroupId(self):
|
19700
|
+
return self._AccessGroupId
|
19701
|
+
|
19702
|
+
@AccessGroupId.setter
|
19703
|
+
def AccessGroupId(self, AccessGroupId):
|
19704
|
+
self._AccessGroupId = AccessGroupId
|
19705
|
+
|
19706
|
+
@property
|
19707
|
+
def AccessRuleId(self):
|
19708
|
+
return self._AccessRuleId
|
19709
|
+
|
19710
|
+
@AccessRuleId.setter
|
19711
|
+
def AccessRuleId(self, AccessRuleId):
|
19712
|
+
self._AccessRuleId = AccessRuleId
|
19713
|
+
|
19714
|
+
|
19715
|
+
def _deserialize(self, params):
|
19716
|
+
self._BucketId = params.get("BucketId")
|
19717
|
+
self._VpcId = params.get("VpcId")
|
19718
|
+
self._VpcCidrBlock = params.get("VpcCidrBlock")
|
19719
|
+
self._AccessGroupId = params.get("AccessGroupId")
|
19720
|
+
self._AccessRuleId = params.get("AccessRuleId")
|
19721
|
+
memeber_set = set(params.keys())
|
19722
|
+
for name, value in vars(self).items():
|
19723
|
+
property_name = name[1:]
|
19724
|
+
if property_name in memeber_set:
|
19725
|
+
memeber_set.remove(property_name)
|
19726
|
+
if len(memeber_set) > 0:
|
19727
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
19728
|
+
|
19729
|
+
|
19730
|
+
|
18815
19731
|
class MysqlInfo(AbstractModel):
|
18816
19732
|
"""Mysql类型数据源信息
|
18817
19733
|
|
@@ -19834,6 +20750,79 @@ class NotebookSessions(AbstractModel):
|
|
19834
20750
|
|
19835
20751
|
|
19836
20752
|
|
20753
|
+
class OpendThirdAccessUserInfo(AbstractModel):
|
20754
|
+
"""开通了第三方访问的用户信息
|
20755
|
+
|
20756
|
+
"""
|
20757
|
+
|
20758
|
+
def __init__(self):
|
20759
|
+
r"""
|
20760
|
+
:param _Id: id信息
|
20761
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20762
|
+
:type Id: int
|
20763
|
+
:param _Uin: 用户主UIN
|
20764
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20765
|
+
:type Uin: str
|
20766
|
+
:param _AppId: 用户AppId
|
20767
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20768
|
+
:type AppId: str
|
20769
|
+
:param _CreateTime: 开通时间
|
20770
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20771
|
+
:type CreateTime: str
|
20772
|
+
"""
|
20773
|
+
self._Id = None
|
20774
|
+
self._Uin = None
|
20775
|
+
self._AppId = None
|
20776
|
+
self._CreateTime = None
|
20777
|
+
|
20778
|
+
@property
|
20779
|
+
def Id(self):
|
20780
|
+
return self._Id
|
20781
|
+
|
20782
|
+
@Id.setter
|
20783
|
+
def Id(self, Id):
|
20784
|
+
self._Id = Id
|
20785
|
+
|
20786
|
+
@property
|
20787
|
+
def Uin(self):
|
20788
|
+
return self._Uin
|
20789
|
+
|
20790
|
+
@Uin.setter
|
20791
|
+
def Uin(self, Uin):
|
20792
|
+
self._Uin = Uin
|
20793
|
+
|
20794
|
+
@property
|
20795
|
+
def AppId(self):
|
20796
|
+
return self._AppId
|
20797
|
+
|
20798
|
+
@AppId.setter
|
20799
|
+
def AppId(self, AppId):
|
20800
|
+
self._AppId = AppId
|
20801
|
+
|
20802
|
+
@property
|
20803
|
+
def CreateTime(self):
|
20804
|
+
return self._CreateTime
|
20805
|
+
|
20806
|
+
@CreateTime.setter
|
20807
|
+
def CreateTime(self, CreateTime):
|
20808
|
+
self._CreateTime = CreateTime
|
20809
|
+
|
20810
|
+
|
20811
|
+
def _deserialize(self, params):
|
20812
|
+
self._Id = params.get("Id")
|
20813
|
+
self._Uin = params.get("Uin")
|
20814
|
+
self._AppId = params.get("AppId")
|
20815
|
+
self._CreateTime = params.get("CreateTime")
|
20816
|
+
memeber_set = set(params.keys())
|
20817
|
+
for name, value in vars(self).items():
|
20818
|
+
property_name = name[1:]
|
20819
|
+
if property_name in memeber_set:
|
20820
|
+
memeber_set.remove(property_name)
|
20821
|
+
if len(memeber_set) > 0:
|
20822
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
20823
|
+
|
20824
|
+
|
20825
|
+
|
19837
20826
|
class Other(AbstractModel):
|
19838
20827
|
"""数据格式其它类型。
|
19839
20828
|
|
@@ -19867,6 +20856,84 @@ class Other(AbstractModel):
|
|
19867
20856
|
|
19868
20857
|
|
19869
20858
|
|
20859
|
+
class OtherCHDFSBinding(AbstractModel):
|
20860
|
+
"""非DLC产品CHDFS绑定
|
20861
|
+
|
20862
|
+
"""
|
20863
|
+
|
20864
|
+
def __init__(self):
|
20865
|
+
r"""
|
20866
|
+
:param _ProductName: 产品名称
|
20867
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20868
|
+
:type ProductName: str
|
20869
|
+
:param _SuperUser: 用户名称(该字段已废弃)
|
20870
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20871
|
+
:type SuperUser: list of str
|
20872
|
+
:param _VpcInfo: vpc配置信息
|
20873
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20874
|
+
:type VpcInfo: list of CHDFSProductVpcInfo
|
20875
|
+
:param _IsBind: 是否与该桶绑定(该字段已废弃)
|
20876
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20877
|
+
:type IsBind: bool
|
20878
|
+
"""
|
20879
|
+
self._ProductName = None
|
20880
|
+
self._SuperUser = None
|
20881
|
+
self._VpcInfo = None
|
20882
|
+
self._IsBind = None
|
20883
|
+
|
20884
|
+
@property
|
20885
|
+
def ProductName(self):
|
20886
|
+
return self._ProductName
|
20887
|
+
|
20888
|
+
@ProductName.setter
|
20889
|
+
def ProductName(self, ProductName):
|
20890
|
+
self._ProductName = ProductName
|
20891
|
+
|
20892
|
+
@property
|
20893
|
+
def SuperUser(self):
|
20894
|
+
return self._SuperUser
|
20895
|
+
|
20896
|
+
@SuperUser.setter
|
20897
|
+
def SuperUser(self, SuperUser):
|
20898
|
+
self._SuperUser = SuperUser
|
20899
|
+
|
20900
|
+
@property
|
20901
|
+
def VpcInfo(self):
|
20902
|
+
return self._VpcInfo
|
20903
|
+
|
20904
|
+
@VpcInfo.setter
|
20905
|
+
def VpcInfo(self, VpcInfo):
|
20906
|
+
self._VpcInfo = VpcInfo
|
20907
|
+
|
20908
|
+
@property
|
20909
|
+
def IsBind(self):
|
20910
|
+
return self._IsBind
|
20911
|
+
|
20912
|
+
@IsBind.setter
|
20913
|
+
def IsBind(self, IsBind):
|
20914
|
+
self._IsBind = IsBind
|
20915
|
+
|
20916
|
+
|
20917
|
+
def _deserialize(self, params):
|
20918
|
+
self._ProductName = params.get("ProductName")
|
20919
|
+
self._SuperUser = params.get("SuperUser")
|
20920
|
+
if params.get("VpcInfo") is not None:
|
20921
|
+
self._VpcInfo = []
|
20922
|
+
for item in params.get("VpcInfo"):
|
20923
|
+
obj = CHDFSProductVpcInfo()
|
20924
|
+
obj._deserialize(item)
|
20925
|
+
self._VpcInfo.append(obj)
|
20926
|
+
self._IsBind = params.get("IsBind")
|
20927
|
+
memeber_set = set(params.keys())
|
20928
|
+
for name, value in vars(self).items():
|
20929
|
+
property_name = name[1:]
|
20930
|
+
if property_name in memeber_set:
|
20931
|
+
memeber_set.remove(property_name)
|
20932
|
+
if len(memeber_set) > 0:
|
20933
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
20934
|
+
|
20935
|
+
|
20936
|
+
|
19870
20937
|
class OtherDatasourceConnection(AbstractModel):
|
19871
20938
|
"""其他数据源
|
19872
20939
|
|
@@ -20750,6 +21817,37 @@ class QueryTaskCostDetailResponse(AbstractModel):
|
|
20750
21817
|
self._RequestId = params.get("RequestId")
|
20751
21818
|
|
20752
21819
|
|
21820
|
+
class RegisterThirdPartyAccessUserRequest(AbstractModel):
|
21821
|
+
"""RegisterThirdPartyAccessUser请求参数结构体
|
21822
|
+
|
21823
|
+
"""
|
21824
|
+
|
21825
|
+
|
21826
|
+
class RegisterThirdPartyAccessUserResponse(AbstractModel):
|
21827
|
+
"""RegisterThirdPartyAccessUser返回参数结构体
|
21828
|
+
|
21829
|
+
"""
|
21830
|
+
|
21831
|
+
def __init__(self):
|
21832
|
+
r"""
|
21833
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
21834
|
+
:type RequestId: str
|
21835
|
+
"""
|
21836
|
+
self._RequestId = None
|
21837
|
+
|
21838
|
+
@property
|
21839
|
+
def RequestId(self):
|
21840
|
+
return self._RequestId
|
21841
|
+
|
21842
|
+
@RequestId.setter
|
21843
|
+
def RequestId(self, RequestId):
|
21844
|
+
self._RequestId = RequestId
|
21845
|
+
|
21846
|
+
|
21847
|
+
def _deserialize(self, params):
|
21848
|
+
self._RequestId = params.get("RequestId")
|
21849
|
+
|
21850
|
+
|
20753
21851
|
class RenewDataEngineRequest(AbstractModel):
|
20754
21852
|
"""RenewDataEngine请求参数结构体
|
20755
21853
|
|
@@ -21112,6 +22210,64 @@ class RestartDataEngineResponse(AbstractModel):
|
|
21112
22210
|
self._RequestId = params.get("RequestId")
|
21113
22211
|
|
21114
22212
|
|
22213
|
+
class RevokeDLCCatalogAccessRequest(AbstractModel):
|
22214
|
+
"""RevokeDLCCatalogAccess请求参数结构体
|
22215
|
+
|
22216
|
+
"""
|
22217
|
+
|
22218
|
+
def __init__(self):
|
22219
|
+
r"""
|
22220
|
+
:param _VpcId: VpcID
|
22221
|
+
:type VpcId: str
|
22222
|
+
"""
|
22223
|
+
self._VpcId = None
|
22224
|
+
|
22225
|
+
@property
|
22226
|
+
def VpcId(self):
|
22227
|
+
return self._VpcId
|
22228
|
+
|
22229
|
+
@VpcId.setter
|
22230
|
+
def VpcId(self, VpcId):
|
22231
|
+
self._VpcId = VpcId
|
22232
|
+
|
22233
|
+
|
22234
|
+
def _deserialize(self, params):
|
22235
|
+
self._VpcId = params.get("VpcId")
|
22236
|
+
memeber_set = set(params.keys())
|
22237
|
+
for name, value in vars(self).items():
|
22238
|
+
property_name = name[1:]
|
22239
|
+
if property_name in memeber_set:
|
22240
|
+
memeber_set.remove(property_name)
|
22241
|
+
if len(memeber_set) > 0:
|
22242
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
22243
|
+
|
22244
|
+
|
22245
|
+
|
22246
|
+
class RevokeDLCCatalogAccessResponse(AbstractModel):
|
22247
|
+
"""RevokeDLCCatalogAccess返回参数结构体
|
22248
|
+
|
22249
|
+
"""
|
22250
|
+
|
22251
|
+
def __init__(self):
|
22252
|
+
r"""
|
22253
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
22254
|
+
:type RequestId: str
|
22255
|
+
"""
|
22256
|
+
self._RequestId = None
|
22257
|
+
|
22258
|
+
@property
|
22259
|
+
def RequestId(self):
|
22260
|
+
return self._RequestId
|
22261
|
+
|
22262
|
+
@RequestId.setter
|
22263
|
+
def RequestId(self, RequestId):
|
22264
|
+
self._RequestId = RequestId
|
22265
|
+
|
22266
|
+
|
22267
|
+
def _deserialize(self, params):
|
22268
|
+
self._RequestId = params.get("RequestId")
|
22269
|
+
|
22270
|
+
|
21115
22271
|
class RollbackDataEngineImageRequest(AbstractModel):
|
21116
22272
|
"""RollbackDataEngineImage请求参数结构体
|
21117
22273
|
|
@@ -26299,6 +27455,126 @@ class ViewResponseInfo(AbstractModel):
|
|
26299
27455
|
|
26300
27456
|
|
26301
27457
|
|
27458
|
+
class VpcCidrBlock(AbstractModel):
|
27459
|
+
"""VPC子网信息
|
27460
|
+
|
27461
|
+
"""
|
27462
|
+
|
27463
|
+
def __init__(self):
|
27464
|
+
r"""
|
27465
|
+
:param _CidrId: 子网Id
|
27466
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27467
|
+
:type CidrId: str
|
27468
|
+
:param _CidrAddr: 子网网段
|
27469
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27470
|
+
:type CidrAddr: str
|
27471
|
+
"""
|
27472
|
+
self._CidrId = None
|
27473
|
+
self._CidrAddr = None
|
27474
|
+
|
27475
|
+
@property
|
27476
|
+
def CidrId(self):
|
27477
|
+
return self._CidrId
|
27478
|
+
|
27479
|
+
@CidrId.setter
|
27480
|
+
def CidrId(self, CidrId):
|
27481
|
+
self._CidrId = CidrId
|
27482
|
+
|
27483
|
+
@property
|
27484
|
+
def CidrAddr(self):
|
27485
|
+
return self._CidrAddr
|
27486
|
+
|
27487
|
+
@CidrAddr.setter
|
27488
|
+
def CidrAddr(self, CidrAddr):
|
27489
|
+
self._CidrAddr = CidrAddr
|
27490
|
+
|
27491
|
+
|
27492
|
+
def _deserialize(self, params):
|
27493
|
+
self._CidrId = params.get("CidrId")
|
27494
|
+
self._CidrAddr = params.get("CidrAddr")
|
27495
|
+
memeber_set = set(params.keys())
|
27496
|
+
for name, value in vars(self).items():
|
27497
|
+
property_name = name[1:]
|
27498
|
+
if property_name in memeber_set:
|
27499
|
+
memeber_set.remove(property_name)
|
27500
|
+
if len(memeber_set) > 0:
|
27501
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27502
|
+
|
27503
|
+
|
27504
|
+
|
27505
|
+
class VpcInfo(AbstractModel):
|
27506
|
+
"""vpc信息
|
27507
|
+
|
27508
|
+
"""
|
27509
|
+
|
27510
|
+
def __init__(self):
|
27511
|
+
r"""
|
27512
|
+
:param _VpcId: vpc Id
|
27513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27514
|
+
:type VpcId: str
|
27515
|
+
:param _VpcCidrBlock: vpc子网
|
27516
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27517
|
+
:type VpcCidrBlock: str
|
27518
|
+
:param _RuleId: 规则Id
|
27519
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27520
|
+
:type RuleId: int
|
27521
|
+
:param _AccessGroupId: 权限组Id
|
27522
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27523
|
+
:type AccessGroupId: str
|
27524
|
+
"""
|
27525
|
+
self._VpcId = None
|
27526
|
+
self._VpcCidrBlock = None
|
27527
|
+
self._RuleId = None
|
27528
|
+
self._AccessGroupId = None
|
27529
|
+
|
27530
|
+
@property
|
27531
|
+
def VpcId(self):
|
27532
|
+
return self._VpcId
|
27533
|
+
|
27534
|
+
@VpcId.setter
|
27535
|
+
def VpcId(self, VpcId):
|
27536
|
+
self._VpcId = VpcId
|
27537
|
+
|
27538
|
+
@property
|
27539
|
+
def VpcCidrBlock(self):
|
27540
|
+
return self._VpcCidrBlock
|
27541
|
+
|
27542
|
+
@VpcCidrBlock.setter
|
27543
|
+
def VpcCidrBlock(self, VpcCidrBlock):
|
27544
|
+
self._VpcCidrBlock = VpcCidrBlock
|
27545
|
+
|
27546
|
+
@property
|
27547
|
+
def RuleId(self):
|
27548
|
+
return self._RuleId
|
27549
|
+
|
27550
|
+
@RuleId.setter
|
27551
|
+
def RuleId(self, RuleId):
|
27552
|
+
self._RuleId = RuleId
|
27553
|
+
|
27554
|
+
@property
|
27555
|
+
def AccessGroupId(self):
|
27556
|
+
return self._AccessGroupId
|
27557
|
+
|
27558
|
+
@AccessGroupId.setter
|
27559
|
+
def AccessGroupId(self, AccessGroupId):
|
27560
|
+
self._AccessGroupId = AccessGroupId
|
27561
|
+
|
27562
|
+
|
27563
|
+
def _deserialize(self, params):
|
27564
|
+
self._VpcId = params.get("VpcId")
|
27565
|
+
self._VpcCidrBlock = params.get("VpcCidrBlock")
|
27566
|
+
self._RuleId = params.get("RuleId")
|
27567
|
+
self._AccessGroupId = params.get("AccessGroupId")
|
27568
|
+
memeber_set = set(params.keys())
|
27569
|
+
for name, value in vars(self).items():
|
27570
|
+
property_name = name[1:]
|
27571
|
+
if property_name in memeber_set:
|
27572
|
+
memeber_set.remove(property_name)
|
27573
|
+
if len(memeber_set) > 0:
|
27574
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27575
|
+
|
27576
|
+
|
27577
|
+
|
26302
27578
|
class WorkGroupDetailInfo(AbstractModel):
|
26303
27579
|
"""工作组详细信息
|
26304
27580
|
|