tencentcloud-sdk-python-dlc 3.1.71__tar.gz → 3.1.73__tar.gz

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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/setup.py +1 -1
  3. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/errorcodes.py +6 -0
  5. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/models.py +37 -22
  6. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud_sdk_python_dlc.egg-info/PKG-INFO +2 -2
  7. tencentcloud_sdk_python_dlc-3.1.73/tencentcloud_sdk_python_dlc.egg-info/requires.txt +1 -0
  8. tencentcloud_sdk_python_dlc-3.1.71/tencentcloud_sdk_python_dlc.egg-info/requires.txt +0 -1
  9. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/README.rst +0 -0
  10. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/setup.cfg +0 -0
  11. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/__init__.py +0 -0
  12. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/__init__.py +0 -0
  13. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/dlc_client.py +0 -0
  14. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud/dlc/v20210125/dlc_client_async.py +0 -0
  15. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud_sdk_python_dlc.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud_sdk_python_dlc.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_dlc-3.1.71 → tencentcloud_sdk_python_dlc-3.1.73}/tencentcloud_sdk_python_dlc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.71
3
+ Version: 3.1.73
4
4
  Summary: Tencent Cloud Dlc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.71
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.73
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-dlc',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.71,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.73,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Dlc SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.71'
17
+ __version__ = '3.1.73'
@@ -689,6 +689,9 @@ RESOURCENOTFOUND_TASKALREADYFAILED = 'ResourceNotFound.TaskAlreadyFailed'
689
689
  # 任务已经完成
690
690
  RESOURCENOTFOUND_TASKALREADYFINISHED = 'ResourceNotFound.TaskAlreadyFinished'
691
691
 
692
+ # 用户不存在
693
+ RESOURCENOTFOUND_USERNOTEXIST = 'ResourceNotFound.UserNotExist'
694
+
692
695
  # 找不到Warehouse存储路径,请到控制台->数据探索页面->存储配置中设置
693
696
  RESOURCENOTFOUND_WAREHOUSEDIRNOTFOUND = 'ResourceNotFound.WarehouseDirNotFound'
694
697
 
@@ -728,6 +731,9 @@ UNAUTHORIZEDOPERATION_ADDUSERSTOWORKGROUP = 'UnauthorizedOperation.AddUsersToWor
728
731
  # 子用户不是管理员,无权绑定工作组到用户。
729
732
  UNAUTHORIZEDOPERATION_BINDWORKGROUPSTOUSER = 'UnauthorizedOperation.BindWorkgroupsToUser'
730
733
 
734
+ # 用户无权限创建管理员
735
+ UNAUTHORIZEDOPERATION_CREATEADMINISTRATOR = 'UnauthorizedOperation.CreateAdministrator'
736
+
731
737
  # 子用户无权创建联邦查询数据源。
732
738
  UNAUTHORIZEDOPERATION_CREATECATALOG = 'UnauthorizedOperation.CreateCatalog'
733
739
 
@@ -3406,30 +3406,32 @@ class Column(AbstractModel):
3406
3406
 
3407
3407
  def __init__(self):
3408
3408
  r"""
3409
- :param _Name: 列名称,不区分大小写,最大支持25个字符。
3409
+ :param _Name: <p>列名称,不区分大小写,最大支持25个字符。</p>
3410
3410
  :type Name: str
3411
- :param _Type: string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array|map|struct|uniontype
3411
+ :param _Type: <p>string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array|map|struct|uniontype</p>
3412
3412
  :type Type: str
3413
- :param _Comment: 对该类的注释。
3413
+ :param _Comment: <p>对该类的注释。</p>
3414
3414
  注意:此字段可能返回 null,表示取不到有效值。
3415
3415
  :type Comment: str
3416
- :param _Precision: 表示整个 numeric 的长度
3416
+ :param _Precision: <p>表示整个 numeric 的长度</p>
3417
3417
  :type Precision: int
3418
- :param _Scale: 表示小数部分的长度
3418
+ :param _Scale: <p>表示小数部分的长度</p>
3419
3419
  :type Scale: int
3420
- :param _Nullable: 是否为null
3420
+ :param _Nullable: <p>是否为null</p>
3421
3421
  :type Nullable: str
3422
- :param _Position: 字段位置,小的在前
3422
+ :param _Position: <p>字段位置,小的在前</p>
3423
3423
  :type Position: int
3424
- :param _CreateTime: 字段创建时间
3424
+ :param _CreateTime: <p>字段创建时间</p><p>参数格式:YYYY-MM-DD hh:mm:ss</p>
3425
3425
  :type CreateTime: str
3426
- :param _ModifiedTime: 字段修改时间
3426
+ :param _ModifiedTime: <p>字段修改时间</p><p>参数格式:YYYY-MM-DD hh:mm:ss</p>
3427
3427
  :type ModifiedTime: str
3428
- :param _IsPartition: 是否为分区字段
3428
+ :param _IsPartition: <p>是否为分区字段</p>
3429
3429
  :type IsPartition: bool
3430
- :param _DataMaskStrategyInfo: 数据脱敏策略信息
3430
+ :param _DataMaskStrategyInfo: <p>数据脱敏策略信息</p>
3431
3431
  注意:此字段可能返回 null,表示取不到有效值。
3432
3432
  :type DataMaskStrategyInfo: :class:`tencentcloud.dlc.v20210125.models.DataMaskStrategyInfo`
3433
+ :param _TypeText: <p>数据字段说明</p>
3434
+ :type TypeText: str
3433
3435
  """
3434
3436
  self._Name = None
3435
3437
  self._Type = None
@@ -3442,10 +3444,11 @@ class Column(AbstractModel):
3442
3444
  self._ModifiedTime = None
3443
3445
  self._IsPartition = None
3444
3446
  self._DataMaskStrategyInfo = None
3447
+ self._TypeText = None
3445
3448
 
3446
3449
  @property
3447
3450
  def Name(self):
3448
- r"""列名称,不区分大小写,最大支持25个字符。
3451
+ r"""<p>列名称,不区分大小写,最大支持25个字符。</p>
3449
3452
  :rtype: str
3450
3453
  """
3451
3454
  return self._Name
@@ -3456,7 +3459,7 @@ class Column(AbstractModel):
3456
3459
 
3457
3460
  @property
3458
3461
  def Type(self):
3459
- r"""string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array|map|struct|uniontype
3462
+ r"""<p>string|tinyint|smallint|int|bigint|boolean|float|double|decimal|timestamp|date|binary|array|map|struct|uniontype</p>
3460
3463
  :rtype: str
3461
3464
  """
3462
3465
  return self._Type
@@ -3467,7 +3470,7 @@ class Column(AbstractModel):
3467
3470
 
3468
3471
  @property
3469
3472
  def Comment(self):
3470
- r"""对该类的注释。
3473
+ r"""<p>对该类的注释。</p>
3471
3474
  注意:此字段可能返回 null,表示取不到有效值。
3472
3475
  :rtype: str
3473
3476
  """
@@ -3479,7 +3482,7 @@ class Column(AbstractModel):
3479
3482
 
3480
3483
  @property
3481
3484
  def Precision(self):
3482
- r"""表示整个 numeric 的长度
3485
+ r"""<p>表示整个 numeric 的长度</p>
3483
3486
  :rtype: int
3484
3487
  """
3485
3488
  return self._Precision
@@ -3490,7 +3493,7 @@ class Column(AbstractModel):
3490
3493
 
3491
3494
  @property
3492
3495
  def Scale(self):
3493
- r"""表示小数部分的长度
3496
+ r"""<p>表示小数部分的长度</p>
3494
3497
  :rtype: int
3495
3498
  """
3496
3499
  return self._Scale
@@ -3501,7 +3504,7 @@ class Column(AbstractModel):
3501
3504
 
3502
3505
  @property
3503
3506
  def Nullable(self):
3504
- r"""是否为null
3507
+ r"""<p>是否为null</p>
3505
3508
  :rtype: str
3506
3509
  """
3507
3510
  return self._Nullable
@@ -3512,7 +3515,7 @@ class Column(AbstractModel):
3512
3515
 
3513
3516
  @property
3514
3517
  def Position(self):
3515
- r"""字段位置,小的在前
3518
+ r"""<p>字段位置,小的在前</p>
3516
3519
  :rtype: int
3517
3520
  """
3518
3521
  return self._Position
@@ -3523,7 +3526,7 @@ class Column(AbstractModel):
3523
3526
 
3524
3527
  @property
3525
3528
  def CreateTime(self):
3526
- r"""字段创建时间
3529
+ r"""<p>字段创建时间</p><p>参数格式:YYYY-MM-DD hh:mm:ss</p>
3527
3530
  :rtype: str
3528
3531
  """
3529
3532
  return self._CreateTime
@@ -3534,7 +3537,7 @@ class Column(AbstractModel):
3534
3537
 
3535
3538
  @property
3536
3539
  def ModifiedTime(self):
3537
- r"""字段修改时间
3540
+ r"""<p>字段修改时间</p><p>参数格式:YYYY-MM-DD hh:mm:ss</p>
3538
3541
  :rtype: str
3539
3542
  """
3540
3543
  return self._ModifiedTime
@@ -3545,7 +3548,7 @@ class Column(AbstractModel):
3545
3548
 
3546
3549
  @property
3547
3550
  def IsPartition(self):
3548
- r"""是否为分区字段
3551
+ r"""<p>是否为分区字段</p>
3549
3552
  :rtype: bool
3550
3553
  """
3551
3554
  return self._IsPartition
@@ -3556,7 +3559,7 @@ class Column(AbstractModel):
3556
3559
 
3557
3560
  @property
3558
3561
  def DataMaskStrategyInfo(self):
3559
- r"""数据脱敏策略信息
3562
+ r"""<p>数据脱敏策略信息</p>
3560
3563
  注意:此字段可能返回 null,表示取不到有效值。
3561
3564
  :rtype: :class:`tencentcloud.dlc.v20210125.models.DataMaskStrategyInfo`
3562
3565
  """
@@ -3566,6 +3569,17 @@ class Column(AbstractModel):
3566
3569
  def DataMaskStrategyInfo(self, DataMaskStrategyInfo):
3567
3570
  self._DataMaskStrategyInfo = DataMaskStrategyInfo
3568
3571
 
3572
+ @property
3573
+ def TypeText(self):
3574
+ r"""<p>数据字段说明</p>
3575
+ :rtype: str
3576
+ """
3577
+ return self._TypeText
3578
+
3579
+ @TypeText.setter
3580
+ def TypeText(self, TypeText):
3581
+ self._TypeText = TypeText
3582
+
3569
3583
 
3570
3584
  def _deserialize(self, params):
3571
3585
  self._Name = params.get("Name")
@@ -3581,6 +3595,7 @@ class Column(AbstractModel):
3581
3595
  if params.get("DataMaskStrategyInfo") is not None:
3582
3596
  self._DataMaskStrategyInfo = DataMaskStrategyInfo()
3583
3597
  self._DataMaskStrategyInfo._deserialize(params.get("DataMaskStrategyInfo"))
3598
+ self._TypeText = params.get("TypeText")
3584
3599
  memeber_set = set(params.keys())
3585
3600
  for name, value in vars(self).items():
3586
3601
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dlc
3
- Version: 3.1.71
3
+ Version: 3.1.73
4
4
  Summary: Tencent Cloud Dlc SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.71
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.73
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.73
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.71