tencentcloud-sdk-python-intl-en 3.0.1195__py2.py3-none-any.whl → 3.0.1196__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-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/models.py +73 -72
- tencentcloud/kms/v20190118/models.py +187 -90
- tencentcloud/vod/v20180717/models.py +2 -2
- {tencentcloud_sdk_python_intl_en-3.0.1195.dist-info → tencentcloud_sdk_python_intl_en-3.0.1196.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1195.dist-info → tencentcloud_sdk_python_intl_en-3.0.1196.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1195.dist-info → tencentcloud_sdk_python_intl_en-3.0.1196.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1195.dist-info → tencentcloud_sdk_python_intl_en-3.0.1196.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -2542,8 +2542,9 @@ Note that this project ID is not the same as the project ID of the scaling group
|
|
|
2542
2542
|
:param _UserData: Base64-encoded custom data of up to 16 KB.
|
|
2543
2543
|
:type UserData: str
|
|
2544
2544
|
:param _InstanceChargeType: Instance billing mode. CVM instances take `POSTPAID_BY_HOUR` by default. Valid values:
|
|
2545
|
-
<
|
|
2546
|
-
<
|
|
2545
|
+
<li>POSTPAID_BY_HOUR: pay-as-you-go hourly</li>
|
|
2546
|
+
<li>SPOTPAID: spot instance</li>
|
|
2547
|
+
<li> CDCPAID: dedicated cluster</li>
|
|
2547
2548
|
:type InstanceChargeType: str
|
|
2548
2549
|
:param _InstanceMarketOptions: Market options of the instance, such as parameters related to spot instances. This parameter is required for spot instances.
|
|
2549
2550
|
:type InstanceMarketOptions: :class:`tencentcloud.autoscaling.v20180419.models.InstanceMarketOptionsRequest`
|
|
@@ -2743,8 +2744,9 @@ Note that this project ID is not the same as the project ID of the scaling group
|
|
|
2743
2744
|
@property
|
|
2744
2745
|
def InstanceChargeType(self):
|
|
2745
2746
|
"""Instance billing mode. CVM instances take `POSTPAID_BY_HOUR` by default. Valid values:
|
|
2746
|
-
<
|
|
2747
|
-
<
|
|
2747
|
+
<li>POSTPAID_BY_HOUR: pay-as-you-go hourly</li>
|
|
2748
|
+
<li>SPOTPAID: spot instance</li>
|
|
2749
|
+
<li> CDCPAID: dedicated cluster</li>
|
|
2748
2750
|
:rtype: str
|
|
2749
2751
|
"""
|
|
2750
2752
|
return self._InstanceChargeType
|
|
@@ -3909,19 +3911,17 @@ class DataDisk(AbstractModel):
|
|
|
3909
3911
|
|
|
3910
3912
|
def __init__(self):
|
|
3911
3913
|
r"""
|
|
3912
|
-
:param _DiskType: Data disk type. For restrictions on data disk type, see [
|
|
3913
|
-
<li>LOCAL_BASIC: Local
|
|
3914
|
+
:param _DiskType: Data disk type. For restrictions on the data disk type, see [cloud block storage types](https://intl.cloud.tencent.com/document/product/362/2353?from_cn_redirect=1). Valid values:
|
|
3915
|
+
<li>LOCAL_BASIC: Local Disk.</li>
|
|
3914
3916
|
<li>LOCAL_SSD: Local SSD.</li>
|
|
3915
|
-
<li>CLOUD_BASIC:
|
|
3916
|
-
<li>CLOUD_PREMIUM: Premium
|
|
3917
|
+
<li>CLOUD_BASIC: Basic Cloud Disk.</li>
|
|
3918
|
+
<li>CLOUD_PREMIUM: Premium Disk.</li>
|
|
3917
3919
|
<li>CLOUD_SSD: Cloud SSD.</li>
|
|
3918
3920
|
<li>CLOUD_HSSD: Enhanced SSD.</li>
|
|
3919
|
-
<li>CLOUD_TSSD:
|
|
3921
|
+
<li>CLOUD_TSSD: Tremendous SSD.</li>
|
|
3920
3922
|
The default value is consistent with the system disk type (SystemDisk.DiskType).
|
|
3921
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3922
3923
|
:type DiskType: str
|
|
3923
|
-
:param _DiskSize: Data disk size
|
|
3924
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3924
|
+
:param _DiskSize: Data disk size, in GB. The minimum adjustment step size is 10 GB. The value range varies according to the data disk type. For specific restrictions, see [CVM instance configuration](https://intl.cloud.tencent.com/document/product/213/2177?from_cn_redirect=1). Default value: 0, which means that no data disk is purchased. For more restrictions, see the product documentation.
|
|
3925
3925
|
:type DiskSize: int
|
|
3926
3926
|
:param _SnapshotId: Data disk snapshot ID, such as `snap-l8psqwnt`.
|
|
3927
3927
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
@@ -3956,16 +3956,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3956
3956
|
|
|
3957
3957
|
@property
|
|
3958
3958
|
def DiskType(self):
|
|
3959
|
-
"""Data disk type. For restrictions on data disk type, see [
|
|
3960
|
-
<li>LOCAL_BASIC: Local
|
|
3959
|
+
"""Data disk type. For restrictions on the data disk type, see [cloud block storage types](https://intl.cloud.tencent.com/document/product/362/2353?from_cn_redirect=1). Valid values:
|
|
3960
|
+
<li>LOCAL_BASIC: Local Disk.</li>
|
|
3961
3961
|
<li>LOCAL_SSD: Local SSD.</li>
|
|
3962
|
-
<li>CLOUD_BASIC:
|
|
3963
|
-
<li>CLOUD_PREMIUM: Premium
|
|
3962
|
+
<li>CLOUD_BASIC: Basic Cloud Disk.</li>
|
|
3963
|
+
<li>CLOUD_PREMIUM: Premium Disk.</li>
|
|
3964
3964
|
<li>CLOUD_SSD: Cloud SSD.</li>
|
|
3965
3965
|
<li>CLOUD_HSSD: Enhanced SSD.</li>
|
|
3966
|
-
<li>CLOUD_TSSD:
|
|
3966
|
+
<li>CLOUD_TSSD: Tremendous SSD.</li>
|
|
3967
3967
|
The default value is consistent with the system disk type (SystemDisk.DiskType).
|
|
3968
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3969
3968
|
:rtype: str
|
|
3970
3969
|
"""
|
|
3971
3970
|
return self._DiskType
|
|
@@ -3976,8 +3975,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3976
3975
|
|
|
3977
3976
|
@property
|
|
3978
3977
|
def DiskSize(self):
|
|
3979
|
-
"""Data disk size
|
|
3980
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3978
|
+
"""Data disk size, in GB. The minimum adjustment step size is 10 GB. The value range varies according to the data disk type. For specific restrictions, see [CVM instance configuration](https://intl.cloud.tencent.com/document/product/213/2177?from_cn_redirect=1). Default value: 0, which means that no data disk is purchased. For more restrictions, see the product documentation.
|
|
3981
3979
|
:rtype: int
|
|
3982
3980
|
"""
|
|
3983
3981
|
return self._DiskSize
|
|
@@ -4830,14 +4828,17 @@ class DescribeAutoScalingGroupLastActivitiesRequest(AbstractModel):
|
|
|
4830
4828
|
|
|
4831
4829
|
def __init__(self):
|
|
4832
4830
|
r"""
|
|
4833
|
-
:param _AutoScalingGroupIds: ID list of
|
|
4831
|
+
:param _AutoScalingGroupIds: ID list of auto scaling groups.
|
|
4834
4832
|
:type AutoScalingGroupIds: list of str
|
|
4833
|
+
:param _ExcludeCancelledActivity: Excludes cancelled type activities when querying. Default value is false, which means cancelled type activities are not excluded.
|
|
4834
|
+
:type ExcludeCancelledActivity: bool
|
|
4835
4835
|
"""
|
|
4836
4836
|
self._AutoScalingGroupIds = None
|
|
4837
|
+
self._ExcludeCancelledActivity = None
|
|
4837
4838
|
|
|
4838
4839
|
@property
|
|
4839
4840
|
def AutoScalingGroupIds(self):
|
|
4840
|
-
"""ID list of
|
|
4841
|
+
"""ID list of auto scaling groups.
|
|
4841
4842
|
:rtype: list of str
|
|
4842
4843
|
"""
|
|
4843
4844
|
return self._AutoScalingGroupIds
|
|
@@ -4846,9 +4847,21 @@ class DescribeAutoScalingGroupLastActivitiesRequest(AbstractModel):
|
|
|
4846
4847
|
def AutoScalingGroupIds(self, AutoScalingGroupIds):
|
|
4847
4848
|
self._AutoScalingGroupIds = AutoScalingGroupIds
|
|
4848
4849
|
|
|
4850
|
+
@property
|
|
4851
|
+
def ExcludeCancelledActivity(self):
|
|
4852
|
+
"""Excludes cancelled type activities when querying. Default value is false, which means cancelled type activities are not excluded.
|
|
4853
|
+
:rtype: bool
|
|
4854
|
+
"""
|
|
4855
|
+
return self._ExcludeCancelledActivity
|
|
4856
|
+
|
|
4857
|
+
@ExcludeCancelledActivity.setter
|
|
4858
|
+
def ExcludeCancelledActivity(self, ExcludeCancelledActivity):
|
|
4859
|
+
self._ExcludeCancelledActivity = ExcludeCancelledActivity
|
|
4860
|
+
|
|
4849
4861
|
|
|
4850
4862
|
def _deserialize(self, params):
|
|
4851
4863
|
self._AutoScalingGroupIds = params.get("AutoScalingGroupIds")
|
|
4864
|
+
self._ExcludeCancelledActivity = params.get("ExcludeCancelledActivity")
|
|
4852
4865
|
memeber_set = set(params.keys())
|
|
4853
4866
|
for name, value in vars(self).items():
|
|
4854
4867
|
property_name = name[1:]
|
|
@@ -7682,8 +7695,7 @@ class InstanceMarketOptionsRequest(AbstractModel):
|
|
|
7682
7695
|
r"""
|
|
7683
7696
|
:param _SpotOptions: Bidding-related options
|
|
7684
7697
|
:type SpotOptions: :class:`tencentcloud.autoscaling.v20180419.models.SpotMarketOptions`
|
|
7685
|
-
:param _MarketType: Market option type.
|
|
7686
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7698
|
+
:param _MarketType: Market option type. The value can only be spot currently.
|
|
7687
7699
|
:type MarketType: str
|
|
7688
7700
|
"""
|
|
7689
7701
|
self._SpotOptions = None
|
|
@@ -7702,8 +7714,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7702
7714
|
|
|
7703
7715
|
@property
|
|
7704
7716
|
def MarketType(self):
|
|
7705
|
-
"""Market option type.
|
|
7706
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7717
|
+
"""Market option type. The value can only be spot currently.
|
|
7707
7718
|
:rtype: str
|
|
7708
7719
|
"""
|
|
7709
7720
|
return self._MarketType
|
|
@@ -8011,22 +8022,16 @@ class InvocationResult(AbstractModel):
|
|
|
8011
8022
|
def __init__(self):
|
|
8012
8023
|
r"""
|
|
8013
8024
|
:param _InstanceId: Instance ID.
|
|
8014
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8015
8025
|
:type InstanceId: str
|
|
8016
8026
|
:param _InvocationId: Execution activity ID.
|
|
8017
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8018
8027
|
:type InvocationId: str
|
|
8019
|
-
:param _InvocationTaskId:
|
|
8020
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8028
|
+
:param _InvocationTaskId: Task ID.
|
|
8021
8029
|
:type InvocationTaskId: str
|
|
8022
8030
|
:param _CommandId: Command ID.
|
|
8023
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8024
8031
|
:type CommandId: str
|
|
8025
|
-
:param _TaskStatus:
|
|
8026
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8032
|
+
:param _TaskStatus: Specifies the execution task status.
|
|
8027
8033
|
:type TaskStatus: str
|
|
8028
|
-
:param _ErrorMessage:
|
|
8029
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8034
|
+
:param _ErrorMessage: Specifies the exception information during execution.
|
|
8030
8035
|
:type ErrorMessage: str
|
|
8031
8036
|
"""
|
|
8032
8037
|
self._InstanceId = None
|
|
@@ -8039,7 +8044,6 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8039
8044
|
@property
|
|
8040
8045
|
def InstanceId(self):
|
|
8041
8046
|
"""Instance ID.
|
|
8042
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8043
8047
|
:rtype: str
|
|
8044
8048
|
"""
|
|
8045
8049
|
return self._InstanceId
|
|
@@ -8051,7 +8055,6 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8051
8055
|
@property
|
|
8052
8056
|
def InvocationId(self):
|
|
8053
8057
|
"""Execution activity ID.
|
|
8054
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8055
8058
|
:rtype: str
|
|
8056
8059
|
"""
|
|
8057
8060
|
return self._InvocationId
|
|
@@ -8062,8 +8065,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8062
8065
|
|
|
8063
8066
|
@property
|
|
8064
8067
|
def InvocationTaskId(self):
|
|
8065
|
-
"""
|
|
8066
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8068
|
+
"""Task ID.
|
|
8067
8069
|
:rtype: str
|
|
8068
8070
|
"""
|
|
8069
8071
|
return self._InvocationTaskId
|
|
@@ -8075,7 +8077,6 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8075
8077
|
@property
|
|
8076
8078
|
def CommandId(self):
|
|
8077
8079
|
"""Command ID.
|
|
8078
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8079
8080
|
:rtype: str
|
|
8080
8081
|
"""
|
|
8081
8082
|
return self._CommandId
|
|
@@ -8086,8 +8087,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8086
8087
|
|
|
8087
8088
|
@property
|
|
8088
8089
|
def TaskStatus(self):
|
|
8089
|
-
"""
|
|
8090
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8090
|
+
"""Specifies the execution task status.
|
|
8091
8091
|
:rtype: str
|
|
8092
8092
|
"""
|
|
8093
8093
|
return self._TaskStatus
|
|
@@ -8098,8 +8098,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8098
8098
|
|
|
8099
8099
|
@property
|
|
8100
8100
|
def ErrorMessage(self):
|
|
8101
|
-
"""
|
|
8102
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
8101
|
+
"""Specifies the exception information during execution.
|
|
8103
8102
|
:rtype: str
|
|
8104
8103
|
"""
|
|
8105
8104
|
return self._ErrorMessage
|
|
@@ -12503,22 +12502,20 @@ class RunMonitorServiceEnabled(AbstractModel):
|
|
|
12503
12502
|
|
|
12504
12503
|
def __init__(self):
|
|
12505
12504
|
r"""
|
|
12506
|
-
:param _Enabled: Whether [
|
|
12507
|
-
<li>TRUE:
|
|
12508
|
-
<li>FALSE:
|
|
12505
|
+
:param _Enabled: Whether to enable [Tencent Cloud Observability Platform (formerly Cloud Monitor)](https://intl.cloud.tencent.com/document/product/248?from_cn_redirect=1) (TCOP). Valid values:
|
|
12506
|
+
<li>TRUE: enable TCOP.</li>
|
|
12507
|
+
<li>FALSE: disable TCOP.</li>
|
|
12509
12508
|
Default value: TRUE.
|
|
12510
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
12511
12509
|
:type Enabled: bool
|
|
12512
12510
|
"""
|
|
12513
12511
|
self._Enabled = None
|
|
12514
12512
|
|
|
12515
12513
|
@property
|
|
12516
12514
|
def Enabled(self):
|
|
12517
|
-
"""Whether [
|
|
12518
|
-
<li>TRUE:
|
|
12519
|
-
<li>FALSE:
|
|
12515
|
+
"""Whether to enable [Tencent Cloud Observability Platform (formerly Cloud Monitor)](https://intl.cloud.tencent.com/document/product/248?from_cn_redirect=1) (TCOP). Valid values:
|
|
12516
|
+
<li>TRUE: enable TCOP.</li>
|
|
12517
|
+
<li>FALSE: disable TCOP.</li>
|
|
12520
12518
|
Default value: TRUE.
|
|
12521
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
12522
12519
|
:rtype: bool
|
|
12523
12520
|
"""
|
|
12524
12521
|
return self._Enabled
|
|
@@ -12547,22 +12544,20 @@ class RunSecurityServiceEnabled(AbstractModel):
|
|
|
12547
12544
|
|
|
12548
12545
|
def __init__(self):
|
|
12549
12546
|
r"""
|
|
12550
|
-
:param _Enabled: Whether to enable
|
|
12551
|
-
<li>TRUE: enable.</li>
|
|
12552
|
-
<li>FALSE: disable.</li>
|
|
12547
|
+
:param _Enabled: Whether to enable [Cloud Workload Protection Platform (CWPP)](https://intl.cloud.tencent.com/document/product/296?from_cn_redirect=1). Valid values:
|
|
12548
|
+
<li>TRUE: enable CWPP.</li>
|
|
12549
|
+
<li>FALSE: disable CWPP.</li>
|
|
12553
12550
|
Default value: TRUE.
|
|
12554
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
12555
12551
|
:type Enabled: bool
|
|
12556
12552
|
"""
|
|
12557
12553
|
self._Enabled = None
|
|
12558
12554
|
|
|
12559
12555
|
@property
|
|
12560
12556
|
def Enabled(self):
|
|
12561
|
-
"""Whether to enable
|
|
12562
|
-
<li>TRUE: enable.</li>
|
|
12563
|
-
<li>FALSE: disable.</li>
|
|
12557
|
+
"""Whether to enable [Cloud Workload Protection Platform (CWPP)](https://intl.cloud.tencent.com/document/product/296?from_cn_redirect=1). Valid values:
|
|
12558
|
+
<li>TRUE: enable CWPP.</li>
|
|
12559
|
+
<li>FALSE: disable CWPP.</li>
|
|
12564
12560
|
Default value: TRUE.
|
|
12565
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
12566
12561
|
:rtype: bool
|
|
12567
12562
|
"""
|
|
12568
12563
|
return self._Enabled
|
|
@@ -13427,8 +13422,7 @@ class SpotMarketOptions(AbstractModel):
|
|
|
13427
13422
|
r"""
|
|
13428
13423
|
:param _MaxPrice: Bidding price such as "1.05"
|
|
13429
13424
|
:type MaxPrice: str
|
|
13430
|
-
:param _SpotInstanceType:
|
|
13431
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13425
|
+
:param _SpotInstanceType: Spot instance type. The value can only be one-time currently. Default value: one-time.
|
|
13432
13426
|
:type SpotInstanceType: str
|
|
13433
13427
|
"""
|
|
13434
13428
|
self._MaxPrice = None
|
|
@@ -13447,8 +13441,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
13447
13441
|
|
|
13448
13442
|
@property
|
|
13449
13443
|
def SpotInstanceType(self):
|
|
13450
|
-
"""
|
|
13451
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13444
|
+
"""Spot instance type. The value can only be one-time currently. Default value: one-time.
|
|
13452
13445
|
:rtype: str
|
|
13453
13446
|
"""
|
|
13454
13447
|
return self._SpotInstanceType
|
|
@@ -13984,11 +13977,15 @@ class SystemDisk(AbstractModel):
|
|
|
13984
13977
|
|
|
13985
13978
|
def __init__(self):
|
|
13986
13979
|
r"""
|
|
13987
|
-
:param _DiskType: System disk type. For
|
|
13988
|
-
|
|
13980
|
+
:param _DiskType: System disk type. For restrictions on the system disk type, see [cloud block storage types](https://intl.cloud.tencent.com/document/product/362/2353?from_cn_redirect=1). Valid values:
|
|
13981
|
+
<li>LOCAL_BASIC: Local Disk.</li>
|
|
13982
|
+
<li>LOCAL_SSD: Local SSD.</li>
|
|
13983
|
+
<li>CLOUD_BASIC: Basic Cloud Disk.</li>
|
|
13984
|
+
<li>CLOUD_PREMIUM: Premium Disk.</li>
|
|
13985
|
+
<li>CLOUD_SSD: Cloud SSD.</li>
|
|
13986
|
+
<li>Default value: CLOUD_PREMIUM.</li>
|
|
13989
13987
|
:type DiskType: str
|
|
13990
|
-
:param _DiskSize: System disk size in GB. Default value: 50
|
|
13991
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
13988
|
+
:param _DiskSize: System disk size, in GB. Default value: 50.
|
|
13992
13989
|
:type DiskSize: int
|
|
13993
13990
|
"""
|
|
13994
13991
|
self._DiskType = None
|
|
@@ -13996,8 +13993,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
13996
13993
|
|
|
13997
13994
|
@property
|
|
13998
13995
|
def DiskType(self):
|
|
13999
|
-
"""System disk type. For
|
|
14000
|
-
|
|
13996
|
+
"""System disk type. For restrictions on the system disk type, see [cloud block storage types](https://intl.cloud.tencent.com/document/product/362/2353?from_cn_redirect=1). Valid values:
|
|
13997
|
+
<li>LOCAL_BASIC: Local Disk.</li>
|
|
13998
|
+
<li>LOCAL_SSD: Local SSD.</li>
|
|
13999
|
+
<li>CLOUD_BASIC: Basic Cloud Disk.</li>
|
|
14000
|
+
<li>CLOUD_PREMIUM: Premium Disk.</li>
|
|
14001
|
+
<li>CLOUD_SSD: Cloud SSD.</li>
|
|
14002
|
+
<li>Default value: CLOUD_PREMIUM.</li>
|
|
14001
14003
|
:rtype: str
|
|
14002
14004
|
"""
|
|
14003
14005
|
return self._DiskType
|
|
@@ -14008,8 +14010,7 @@ Note: this field may return `null`, indicating that no valid value can be obtain
|
|
|
14008
14010
|
|
|
14009
14011
|
@property
|
|
14010
14012
|
def DiskSize(self):
|
|
14011
|
-
"""System disk size in GB. Default value: 50
|
|
14012
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
14013
|
+
"""System disk size, in GB. Default value: 50.
|
|
14013
14014
|
:rtype: int
|
|
14014
14015
|
"""
|
|
14015
14016
|
return self._DiskSize
|
|
@@ -266,7 +266,7 @@ class AsymmetricSm2DecryptRequest(AbstractModel):
|
|
|
266
266
|
r"""
|
|
267
267
|
:param _KeyId: Unique CMK ID
|
|
268
268
|
:type KeyId: str
|
|
269
|
-
:param _Ciphertext:
|
|
269
|
+
:param _Ciphertext: Specifies that the ciphertext encrypted with PublicKey is Base64 encoded. the original ciphertext format needs to be C1C3C2_ASN1. the length of the original ciphertext cannot exceed 256 bytes.
|
|
270
270
|
:type Ciphertext: str
|
|
271
271
|
"""
|
|
272
272
|
self._KeyId = None
|
|
@@ -285,7 +285,7 @@ class AsymmetricSm2DecryptRequest(AbstractModel):
|
|
|
285
285
|
|
|
286
286
|
@property
|
|
287
287
|
def Ciphertext(self):
|
|
288
|
-
"""
|
|
288
|
+
"""Specifies that the ciphertext encrypted with PublicKey is Base64 encoded. the original ciphertext format needs to be C1C3C2_ASN1. the length of the original ciphertext cannot exceed 256 bytes.
|
|
289
289
|
:rtype: str
|
|
290
290
|
"""
|
|
291
291
|
return self._Ciphertext
|
|
@@ -377,7 +377,7 @@ class BindCloudResourceRequest(AbstractModel):
|
|
|
377
377
|
:type KeyId: str
|
|
378
378
|
:param _ProductId: Unique ID of a Tencent Cloud service
|
|
379
379
|
:type ProductId: str
|
|
380
|
-
:param _ResourceId: Resource/instance ID, which is stored as a string and defined by the caller based on the Tencent Cloud service
|
|
380
|
+
:param _ResourceId: Resource/instance ID, which is stored as a string and defined by the caller based on the Tencent Cloud service's features.
|
|
381
381
|
:type ResourceId: str
|
|
382
382
|
"""
|
|
383
383
|
self._KeyId = None
|
|
@@ -408,7 +408,7 @@ class BindCloudResourceRequest(AbstractModel):
|
|
|
408
408
|
|
|
409
409
|
@property
|
|
410
410
|
def ResourceId(self):
|
|
411
|
-
"""Resource/instance ID, which is stored as a string and defined by the caller based on the Tencent Cloud service
|
|
411
|
+
"""Resource/instance ID, which is stored as a string and defined by the caller based on the Tencent Cloud service's features.
|
|
412
412
|
:rtype: str
|
|
413
413
|
"""
|
|
414
414
|
return self._ResourceId
|
|
@@ -732,18 +732,17 @@ class CreateKeyResponse(AbstractModel):
|
|
|
732
732
|
:type Alias: str
|
|
733
733
|
:param _CreateTime: Key creation time in UNIX timestamp format
|
|
734
734
|
:type CreateTime: int
|
|
735
|
-
:param _Description:
|
|
735
|
+
:param _Description: Specifies the description of the CMK.
|
|
736
736
|
:type Description: str
|
|
737
737
|
:param _KeyState: CMK status
|
|
738
738
|
:type KeyState: str
|
|
739
739
|
:param _KeyUsage: CMK usage
|
|
740
740
|
:type KeyUsage: str
|
|
741
|
-
:param _TagCode: Tag operation
|
|
741
|
+
:param _TagCode: Return code of Tag operation. `0`: success; `1`: cls internal error; `2`: business processing error.
|
|
742
742
|
:type TagCode: int
|
|
743
|
-
:param _TagMsg: Tag operation
|
|
743
|
+
:param _TagMsg: Response information of Tag operation.
|
|
744
744
|
:type TagMsg: str
|
|
745
|
-
:param _HsmClusterId:
|
|
746
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
745
|
+
:param _HsmClusterId: HSM cluster ID (valid only for exclusive or managed version KMS service instances).
|
|
747
746
|
:type HsmClusterId: str
|
|
748
747
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
749
748
|
:type RequestId: str
|
|
@@ -794,7 +793,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
794
793
|
|
|
795
794
|
@property
|
|
796
795
|
def Description(self):
|
|
797
|
-
"""
|
|
796
|
+
"""Specifies the description of the CMK.
|
|
798
797
|
:rtype: str
|
|
799
798
|
"""
|
|
800
799
|
return self._Description
|
|
@@ -827,7 +826,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
827
826
|
|
|
828
827
|
@property
|
|
829
828
|
def TagCode(self):
|
|
830
|
-
"""Tag operation
|
|
829
|
+
"""Return code of Tag operation. `0`: success; `1`: cls internal error; `2`: business processing error.
|
|
831
830
|
:rtype: int
|
|
832
831
|
"""
|
|
833
832
|
return self._TagCode
|
|
@@ -838,7 +837,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
838
837
|
|
|
839
838
|
@property
|
|
840
839
|
def TagMsg(self):
|
|
841
|
-
"""Tag operation
|
|
840
|
+
"""Response information of Tag operation.
|
|
842
841
|
:rtype: str
|
|
843
842
|
"""
|
|
844
843
|
return self._TagMsg
|
|
@@ -849,8 +848,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
849
848
|
|
|
850
849
|
@property
|
|
851
850
|
def HsmClusterId(self):
|
|
852
|
-
"""
|
|
853
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
851
|
+
"""HSM cluster ID (valid only for exclusive or managed version KMS service instances).
|
|
854
852
|
:rtype: str
|
|
855
853
|
"""
|
|
856
854
|
return self._HsmClusterId
|
|
@@ -983,9 +981,9 @@ class CreateWhiteBoxKeyResponse(AbstractModel):
|
|
|
983
981
|
:type DecryptKey: str
|
|
984
982
|
:param _KeyId: Globally unique white-box key ID
|
|
985
983
|
:type KeyId: str
|
|
986
|
-
:param _TagCode: Tag operation
|
|
984
|
+
:param _TagCode: Return code of Tag operation. `0`: success; `1`: internal error; `2`: business processing error.
|
|
987
985
|
:type TagCode: int
|
|
988
|
-
:param _TagMsg: Tag operation
|
|
986
|
+
:param _TagMsg: Response information of Tag operation.
|
|
989
987
|
:type TagMsg: str
|
|
990
988
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
991
989
|
:type RequestId: str
|
|
@@ -1032,7 +1030,7 @@ class CreateWhiteBoxKeyResponse(AbstractModel):
|
|
|
1032
1030
|
|
|
1033
1031
|
@property
|
|
1034
1032
|
def TagCode(self):
|
|
1035
|
-
"""Tag operation
|
|
1033
|
+
"""Return code of Tag operation. `0`: success; `1`: internal error; `2`: business processing error.
|
|
1036
1034
|
:rtype: int
|
|
1037
1035
|
"""
|
|
1038
1036
|
return self._TagCode
|
|
@@ -1043,7 +1041,7 @@ class CreateWhiteBoxKeyResponse(AbstractModel):
|
|
|
1043
1041
|
|
|
1044
1042
|
@property
|
|
1045
1043
|
def TagMsg(self):
|
|
1046
|
-
"""Tag operation
|
|
1044
|
+
"""Response information of Tag operation.
|
|
1047
1045
|
:rtype: str
|
|
1048
1046
|
"""
|
|
1049
1047
|
return self._TagMsg
|
|
@@ -1385,8 +1383,7 @@ class DescribeKeyResponse(AbstractModel):
|
|
|
1385
1383
|
|
|
1386
1384
|
def __init__(self):
|
|
1387
1385
|
r"""
|
|
1388
|
-
:param _KeyMetadata:
|
|
1389
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1386
|
+
:param _KeyMetadata: Specifies the attribute information of the key.
|
|
1390
1387
|
:type KeyMetadata: :class:`tencentcloud.kms.v20190118.models.KeyMetadata`
|
|
1391
1388
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1392
1389
|
:type RequestId: str
|
|
@@ -1396,8 +1393,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1396
1393
|
|
|
1397
1394
|
@property
|
|
1398
1395
|
def KeyMetadata(self):
|
|
1399
|
-
"""
|
|
1400
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1396
|
+
"""Specifies the attribute information of the key.
|
|
1401
1397
|
:rtype: :class:`tencentcloud.kms.v20190118.models.KeyMetadata`
|
|
1402
1398
|
"""
|
|
1403
1399
|
return self._KeyMetadata
|
|
@@ -1468,8 +1464,7 @@ class DescribeKeysResponse(AbstractModel):
|
|
|
1468
1464
|
|
|
1469
1465
|
def __init__(self):
|
|
1470
1466
|
r"""
|
|
1471
|
-
:param _KeyMetadatas:
|
|
1472
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1467
|
+
:param _KeyMetadatas: The attribute information list returned.
|
|
1473
1468
|
:type KeyMetadatas: list of KeyMetadata
|
|
1474
1469
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1475
1470
|
:type RequestId: str
|
|
@@ -1479,8 +1474,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1479
1474
|
|
|
1480
1475
|
@property
|
|
1481
1476
|
def KeyMetadatas(self):
|
|
1482
|
-
"""
|
|
1483
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1477
|
+
"""The attribute information list returned.
|
|
1484
1478
|
:rtype: list of KeyMetadata
|
|
1485
1479
|
"""
|
|
1486
1480
|
return self._KeyMetadatas
|
|
@@ -1769,8 +1763,7 @@ class DescribeWhiteBoxKeyDetailsResponse(AbstractModel):
|
|
|
1769
1763
|
r"""
|
|
1770
1764
|
:param _KeyInfos: White-box key information list
|
|
1771
1765
|
:type KeyInfos: list of WhiteboxKeyInfo
|
|
1772
|
-
:param _TotalCount: Total white-box keys.
|
|
1773
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1766
|
+
:param _TotalCount: Total number of white-box keys.
|
|
1774
1767
|
:type TotalCount: int
|
|
1775
1768
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1776
1769
|
:type RequestId: str
|
|
@@ -1792,8 +1785,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1792
1785
|
|
|
1793
1786
|
@property
|
|
1794
1787
|
def TotalCount(self):
|
|
1795
|
-
"""Total white-box keys.
|
|
1796
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1788
|
+
"""Total number of white-box keys.
|
|
1797
1789
|
:rtype: int
|
|
1798
1790
|
"""
|
|
1799
1791
|
return self._TotalCount
|
|
@@ -1964,8 +1956,7 @@ class DeviceFingerprint(AbstractModel):
|
|
|
1964
1956
|
r"""
|
|
1965
1957
|
:param _Identity: Fingerprint information collected by device fingerprint collector. Its format must be in the following regular expression: ^[0-9a-f]{8}[\-][0-9a-f]{14}[\-][0-9a-f]{14}[\-][0-9a-f]{14}[\-][0-9a-f]{16}$
|
|
1966
1958
|
:type Identity: str
|
|
1967
|
-
:param _Description: Description, such as IP and device name
|
|
1968
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1959
|
+
:param _Description: Description information, such as IP and device name, with a maximum of 1024 bytes.
|
|
1969
1960
|
:type Description: str
|
|
1970
1961
|
"""
|
|
1971
1962
|
self._Identity = None
|
|
@@ -1984,8 +1975,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
1984
1975
|
|
|
1985
1976
|
@property
|
|
1986
1977
|
def Description(self):
|
|
1987
|
-
"""Description, such as IP and device name
|
|
1988
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
1978
|
+
"""Description information, such as IP and device name, with a maximum of 1024 bytes.
|
|
1989
1979
|
:rtype: str
|
|
1990
1980
|
"""
|
|
1991
1981
|
return self._Description
|
|
@@ -2911,6 +2901,57 @@ class EncryptResponse(AbstractModel):
|
|
|
2911
2901
|
self._RequestId = params.get("RequestId")
|
|
2912
2902
|
|
|
2913
2903
|
|
|
2904
|
+
class ExclusiveHSM(AbstractModel):
|
|
2905
|
+
"""Exclusive edition cluster.
|
|
2906
|
+
|
|
2907
|
+
"""
|
|
2908
|
+
|
|
2909
|
+
def __init__(self):
|
|
2910
|
+
r"""
|
|
2911
|
+
:param _HsmClusterId: Dedicated cluster Id.
|
|
2912
|
+
:type HsmClusterId: str
|
|
2913
|
+
:param _HsmClusterName: Dedicated cluster name.
|
|
2914
|
+
:type HsmClusterName: str
|
|
2915
|
+
"""
|
|
2916
|
+
self._HsmClusterId = None
|
|
2917
|
+
self._HsmClusterName = None
|
|
2918
|
+
|
|
2919
|
+
@property
|
|
2920
|
+
def HsmClusterId(self):
|
|
2921
|
+
"""Dedicated cluster Id.
|
|
2922
|
+
:rtype: str
|
|
2923
|
+
"""
|
|
2924
|
+
return self._HsmClusterId
|
|
2925
|
+
|
|
2926
|
+
@HsmClusterId.setter
|
|
2927
|
+
def HsmClusterId(self, HsmClusterId):
|
|
2928
|
+
self._HsmClusterId = HsmClusterId
|
|
2929
|
+
|
|
2930
|
+
@property
|
|
2931
|
+
def HsmClusterName(self):
|
|
2932
|
+
"""Dedicated cluster name.
|
|
2933
|
+
:rtype: str
|
|
2934
|
+
"""
|
|
2935
|
+
return self._HsmClusterName
|
|
2936
|
+
|
|
2937
|
+
@HsmClusterName.setter
|
|
2938
|
+
def HsmClusterName(self, HsmClusterName):
|
|
2939
|
+
self._HsmClusterName = HsmClusterName
|
|
2940
|
+
|
|
2941
|
+
|
|
2942
|
+
def _deserialize(self, params):
|
|
2943
|
+
self._HsmClusterId = params.get("HsmClusterId")
|
|
2944
|
+
self._HsmClusterName = params.get("HsmClusterName")
|
|
2945
|
+
memeber_set = set(params.keys())
|
|
2946
|
+
for name, value in vars(self).items():
|
|
2947
|
+
property_name = name[1:]
|
|
2948
|
+
if property_name in memeber_set:
|
|
2949
|
+
memeber_set.remove(property_name)
|
|
2950
|
+
if len(memeber_set) > 0:
|
|
2951
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2952
|
+
|
|
2953
|
+
|
|
2954
|
+
|
|
2914
2955
|
class GenerateDataKeyRequest(AbstractModel):
|
|
2915
2956
|
"""GenerateDataKey request structure.
|
|
2916
2957
|
|
|
@@ -3531,8 +3572,7 @@ class GetRegionsResponse(AbstractModel):
|
|
|
3531
3572
|
|
|
3532
3573
|
def __init__(self):
|
|
3533
3574
|
r"""
|
|
3534
|
-
:param _Regions:
|
|
3535
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
3575
|
+
:param _Regions: Available region list.
|
|
3536
3576
|
:type Regions: list of str
|
|
3537
3577
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3538
3578
|
:type RequestId: str
|
|
@@ -3542,8 +3582,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
3542
3582
|
|
|
3543
3583
|
@property
|
|
3544
3584
|
def Regions(self):
|
|
3545
|
-
"""
|
|
3546
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
3585
|
+
"""Available region list.
|
|
3547
3586
|
:rtype: list of str
|
|
3548
3587
|
"""
|
|
3549
3588
|
return self._Regions
|
|
@@ -3584,28 +3623,28 @@ class GetServiceStatusResponse(AbstractModel):
|
|
|
3584
3623
|
r"""
|
|
3585
3624
|
:param _ServiceEnabled: Whether the KMS service has been activated. true: activated
|
|
3586
3625
|
:type ServiceEnabled: bool
|
|
3587
|
-
:param _InvalidType: Service unavailability type
|
|
3626
|
+
:param _InvalidType: Service unavailability type: 0-not purchased, 1-normal, 2-service suspended due to overdue payments, 3-resource release.
|
|
3588
3627
|
:type InvalidType: int
|
|
3589
3628
|
:param _UserLevel: 0: Basic Edition, 1: Ultimate Edition
|
|
3590
3629
|
:type UserLevel: int
|
|
3591
|
-
:param _ProExpireTime:
|
|
3592
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3630
|
+
:param _ProExpireTime: Specifies the expiry time (Epoch Unix Timestamp) of the flagship edition.
|
|
3593
3631
|
:type ProExpireTime: int
|
|
3594
|
-
:param _ProRenewFlag:
|
|
3595
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
3632
|
+
:param _ProRenewFlag: Specifies whether the flagship edition is automatically renewed: 0 - no automatic renewal, 1 - automatic renewal.
|
|
3596
3633
|
:type ProRenewFlag: int
|
|
3597
|
-
:param _ProResourceId: Unique
|
|
3598
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
3634
|
+
:param _ProResourceId: Unique identifier for the purchase record of the flagship edition. if the flagship edition is enabled, the return value is null.
|
|
3599
3635
|
:type ProResourceId: str
|
|
3600
|
-
:param _ExclusiveVSMEnabled: Whether to
|
|
3601
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
3636
|
+
:param _ExclusiveVSMEnabled: Whether to enable the KMS-managed version.
|
|
3602
3637
|
:type ExclusiveVSMEnabled: bool
|
|
3603
|
-
:param _ExclusiveHSMEnabled: Whether to
|
|
3604
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
3638
|
+
:param _ExclusiveHSMEnabled: Whether to enable the exclusive edition of KMS.
|
|
3605
3639
|
:type ExclusiveHSMEnabled: bool
|
|
3606
|
-
:param _SubscriptionInfo: KMS subscription information.
|
|
3607
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3640
|
+
:param _SubscriptionInfo: Specifies the KMS subscription information.
|
|
3608
3641
|
:type SubscriptionInfo: str
|
|
3642
|
+
:param _CmkUserCount: Returns the amount of KMS user secret keys used.
|
|
3643
|
+
:type CmkUserCount: int
|
|
3644
|
+
:param _CmkLimit: Returns the specification quantity of KMS user secret keys.
|
|
3645
|
+
:type CmkLimit: int
|
|
3646
|
+
:param _ExclusiveHSMList: Return dedicated cluster group.
|
|
3647
|
+
:type ExclusiveHSMList: list of ExclusiveHSM
|
|
3609
3648
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3610
3649
|
:type RequestId: str
|
|
3611
3650
|
"""
|
|
@@ -3618,6 +3657,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3618
3657
|
self._ExclusiveVSMEnabled = None
|
|
3619
3658
|
self._ExclusiveHSMEnabled = None
|
|
3620
3659
|
self._SubscriptionInfo = None
|
|
3660
|
+
self._CmkUserCount = None
|
|
3661
|
+
self._CmkLimit = None
|
|
3662
|
+
self._ExclusiveHSMList = None
|
|
3621
3663
|
self._RequestId = None
|
|
3622
3664
|
|
|
3623
3665
|
@property
|
|
@@ -3633,7 +3675,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3633
3675
|
|
|
3634
3676
|
@property
|
|
3635
3677
|
def InvalidType(self):
|
|
3636
|
-
"""Service unavailability type
|
|
3678
|
+
"""Service unavailability type: 0-not purchased, 1-normal, 2-service suspended due to overdue payments, 3-resource release.
|
|
3637
3679
|
:rtype: int
|
|
3638
3680
|
"""
|
|
3639
3681
|
return self._InvalidType
|
|
@@ -3655,8 +3697,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3655
3697
|
|
|
3656
3698
|
@property
|
|
3657
3699
|
def ProExpireTime(self):
|
|
3658
|
-
"""
|
|
3659
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3700
|
+
"""Specifies the expiry time (Epoch Unix Timestamp) of the flagship edition.
|
|
3660
3701
|
:rtype: int
|
|
3661
3702
|
"""
|
|
3662
3703
|
return self._ProExpireTime
|
|
@@ -3667,8 +3708,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3667
3708
|
|
|
3668
3709
|
@property
|
|
3669
3710
|
def ProRenewFlag(self):
|
|
3670
|
-
"""
|
|
3671
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
3711
|
+
"""Specifies whether the flagship edition is automatically renewed: 0 - no automatic renewal, 1 - automatic renewal.
|
|
3672
3712
|
:rtype: int
|
|
3673
3713
|
"""
|
|
3674
3714
|
return self._ProRenewFlag
|
|
@@ -3679,8 +3719,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
3679
3719
|
|
|
3680
3720
|
@property
|
|
3681
3721
|
def ProResourceId(self):
|
|
3682
|
-
"""Unique
|
|
3683
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
3722
|
+
"""Unique identifier for the purchase record of the flagship edition. if the flagship edition is enabled, the return value is null.
|
|
3684
3723
|
:rtype: str
|
|
3685
3724
|
"""
|
|
3686
3725
|
return self._ProResourceId
|
|
@@ -3691,8 +3730,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
3691
3730
|
|
|
3692
3731
|
@property
|
|
3693
3732
|
def ExclusiveVSMEnabled(self):
|
|
3694
|
-
"""Whether to
|
|
3695
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
3733
|
+
"""Whether to enable the KMS-managed version.
|
|
3696
3734
|
:rtype: bool
|
|
3697
3735
|
"""
|
|
3698
3736
|
return self._ExclusiveVSMEnabled
|
|
@@ -3703,8 +3741,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
3703
3741
|
|
|
3704
3742
|
@property
|
|
3705
3743
|
def ExclusiveHSMEnabled(self):
|
|
3706
|
-
"""Whether to
|
|
3707
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
3744
|
+
"""Whether to enable the exclusive edition of KMS.
|
|
3708
3745
|
:rtype: bool
|
|
3709
3746
|
"""
|
|
3710
3747
|
return self._ExclusiveHSMEnabled
|
|
@@ -3715,8 +3752,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
3715
3752
|
|
|
3716
3753
|
@property
|
|
3717
3754
|
def SubscriptionInfo(self):
|
|
3718
|
-
"""KMS subscription information.
|
|
3719
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3755
|
+
"""Specifies the KMS subscription information.
|
|
3720
3756
|
:rtype: str
|
|
3721
3757
|
"""
|
|
3722
3758
|
return self._SubscriptionInfo
|
|
@@ -3725,6 +3761,39 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3725
3761
|
def SubscriptionInfo(self, SubscriptionInfo):
|
|
3726
3762
|
self._SubscriptionInfo = SubscriptionInfo
|
|
3727
3763
|
|
|
3764
|
+
@property
|
|
3765
|
+
def CmkUserCount(self):
|
|
3766
|
+
"""Returns the amount of KMS user secret keys used.
|
|
3767
|
+
:rtype: int
|
|
3768
|
+
"""
|
|
3769
|
+
return self._CmkUserCount
|
|
3770
|
+
|
|
3771
|
+
@CmkUserCount.setter
|
|
3772
|
+
def CmkUserCount(self, CmkUserCount):
|
|
3773
|
+
self._CmkUserCount = CmkUserCount
|
|
3774
|
+
|
|
3775
|
+
@property
|
|
3776
|
+
def CmkLimit(self):
|
|
3777
|
+
"""Returns the specification quantity of KMS user secret keys.
|
|
3778
|
+
:rtype: int
|
|
3779
|
+
"""
|
|
3780
|
+
return self._CmkLimit
|
|
3781
|
+
|
|
3782
|
+
@CmkLimit.setter
|
|
3783
|
+
def CmkLimit(self, CmkLimit):
|
|
3784
|
+
self._CmkLimit = CmkLimit
|
|
3785
|
+
|
|
3786
|
+
@property
|
|
3787
|
+
def ExclusiveHSMList(self):
|
|
3788
|
+
"""Return dedicated cluster group.
|
|
3789
|
+
:rtype: list of ExclusiveHSM
|
|
3790
|
+
"""
|
|
3791
|
+
return self._ExclusiveHSMList
|
|
3792
|
+
|
|
3793
|
+
@ExclusiveHSMList.setter
|
|
3794
|
+
def ExclusiveHSMList(self, ExclusiveHSMList):
|
|
3795
|
+
self._ExclusiveHSMList = ExclusiveHSMList
|
|
3796
|
+
|
|
3728
3797
|
@property
|
|
3729
3798
|
def RequestId(self):
|
|
3730
3799
|
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -3747,6 +3816,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
3747
3816
|
self._ExclusiveVSMEnabled = params.get("ExclusiveVSMEnabled")
|
|
3748
3817
|
self._ExclusiveHSMEnabled = params.get("ExclusiveHSMEnabled")
|
|
3749
3818
|
self._SubscriptionInfo = params.get("SubscriptionInfo")
|
|
3819
|
+
self._CmkUserCount = params.get("CmkUserCount")
|
|
3820
|
+
self._CmkLimit = params.get("CmkLimit")
|
|
3821
|
+
if params.get("ExclusiveHSMList") is not None:
|
|
3822
|
+
self._ExclusiveHSMList = []
|
|
3823
|
+
for item in params.get("ExclusiveHSMList"):
|
|
3824
|
+
obj = ExclusiveHSM()
|
|
3825
|
+
obj._deserialize(item)
|
|
3826
|
+
self._ExclusiveHSMList.append(obj)
|
|
3750
3827
|
self._RequestId = params.get("RequestId")
|
|
3751
3828
|
|
|
3752
3829
|
|
|
@@ -3924,19 +4001,20 @@ class KeyMetadata(AbstractModel):
|
|
|
3924
4001
|
:type Owner: str
|
|
3925
4002
|
:param _NextRotateTime: Time of next rotation if key rotation is enabled
|
|
3926
4003
|
:type NextRotateTime: int
|
|
3927
|
-
:param _DeletionDate:
|
|
4004
|
+
:param _DeletionDate: The time when scheduled deletion occurs.
|
|
3928
4005
|
:type DeletionDate: int
|
|
3929
|
-
:param _Origin: CMK key material type.
|
|
3930
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4006
|
+
:param _Origin: CMK key material type. the type created by KMS is TENCENT_KMS. the user-imported type is EXTERNAL.
|
|
3931
4007
|
:type Origin: str
|
|
3932
|
-
:param _ValidTo:
|
|
3933
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4008
|
+
:param _ValidTo: Valid when Origin is EXTERNAL. indicates the validity date of the key material. 0 means no expiration.
|
|
3934
4009
|
:type ValidTo: int
|
|
3935
4010
|
:param _ResourceId: Resource ID in the format of `creatorUin/$creatorUin/$keyId`.
|
|
3936
4011
|
:type ResourceId: str
|
|
3937
|
-
:param _HsmClusterId:
|
|
3938
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
4012
|
+
:param _HsmClusterId: HSM cluster ID (valid only for exclusive or managed version KMS service instances).
|
|
3939
4013
|
:type HsmClusterId: str
|
|
4014
|
+
:param _RotateDays: Key rotation period (days).
|
|
4015
|
+
:type RotateDays: int
|
|
4016
|
+
:param _LastRotateTime: Last disorderly rotation time (Unix timestamp).
|
|
4017
|
+
:type LastRotateTime: int
|
|
3940
4018
|
"""
|
|
3941
4019
|
self._KeyId = None
|
|
3942
4020
|
self._Alias = None
|
|
@@ -3954,6 +4032,8 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
3954
4032
|
self._ValidTo = None
|
|
3955
4033
|
self._ResourceId = None
|
|
3956
4034
|
self._HsmClusterId = None
|
|
4035
|
+
self._RotateDays = None
|
|
4036
|
+
self._LastRotateTime = None
|
|
3957
4037
|
|
|
3958
4038
|
@property
|
|
3959
4039
|
def KeyId(self):
|
|
@@ -4078,7 +4158,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
4078
4158
|
|
|
4079
4159
|
@property
|
|
4080
4160
|
def DeletionDate(self):
|
|
4081
|
-
"""
|
|
4161
|
+
"""The time when scheduled deletion occurs.
|
|
4082
4162
|
:rtype: int
|
|
4083
4163
|
"""
|
|
4084
4164
|
return self._DeletionDate
|
|
@@ -4089,8 +4169,7 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
4089
4169
|
|
|
4090
4170
|
@property
|
|
4091
4171
|
def Origin(self):
|
|
4092
|
-
"""CMK key material type.
|
|
4093
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4172
|
+
"""CMK key material type. the type created by KMS is TENCENT_KMS. the user-imported type is EXTERNAL.
|
|
4094
4173
|
:rtype: str
|
|
4095
4174
|
"""
|
|
4096
4175
|
return self._Origin
|
|
@@ -4101,8 +4180,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4101
4180
|
|
|
4102
4181
|
@property
|
|
4103
4182
|
def ValidTo(self):
|
|
4104
|
-
"""
|
|
4105
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4183
|
+
"""Valid when Origin is EXTERNAL. indicates the validity date of the key material. 0 means no expiration.
|
|
4106
4184
|
:rtype: int
|
|
4107
4185
|
"""
|
|
4108
4186
|
return self._ValidTo
|
|
@@ -4124,8 +4202,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4124
4202
|
|
|
4125
4203
|
@property
|
|
4126
4204
|
def HsmClusterId(self):
|
|
4127
|
-
"""
|
|
4128
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
4205
|
+
"""HSM cluster ID (valid only for exclusive or managed version KMS service instances).
|
|
4129
4206
|
:rtype: str
|
|
4130
4207
|
"""
|
|
4131
4208
|
return self._HsmClusterId
|
|
@@ -4134,6 +4211,28 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
4134
4211
|
def HsmClusterId(self, HsmClusterId):
|
|
4135
4212
|
self._HsmClusterId = HsmClusterId
|
|
4136
4213
|
|
|
4214
|
+
@property
|
|
4215
|
+
def RotateDays(self):
|
|
4216
|
+
"""Key rotation period (days).
|
|
4217
|
+
:rtype: int
|
|
4218
|
+
"""
|
|
4219
|
+
return self._RotateDays
|
|
4220
|
+
|
|
4221
|
+
@RotateDays.setter
|
|
4222
|
+
def RotateDays(self, RotateDays):
|
|
4223
|
+
self._RotateDays = RotateDays
|
|
4224
|
+
|
|
4225
|
+
@property
|
|
4226
|
+
def LastRotateTime(self):
|
|
4227
|
+
"""Last disorderly rotation time (Unix timestamp).
|
|
4228
|
+
:rtype: int
|
|
4229
|
+
"""
|
|
4230
|
+
return self._LastRotateTime
|
|
4231
|
+
|
|
4232
|
+
@LastRotateTime.setter
|
|
4233
|
+
def LastRotateTime(self, LastRotateTime):
|
|
4234
|
+
self._LastRotateTime = LastRotateTime
|
|
4235
|
+
|
|
4137
4236
|
|
|
4138
4237
|
def _deserialize(self, params):
|
|
4139
4238
|
self._KeyId = params.get("KeyId")
|
|
@@ -4152,6 +4251,8 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
4152
4251
|
self._ValidTo = params.get("ValidTo")
|
|
4153
4252
|
self._ResourceId = params.get("ResourceId")
|
|
4154
4253
|
self._HsmClusterId = params.get("HsmClusterId")
|
|
4254
|
+
self._RotateDays = params.get("RotateDays")
|
|
4255
|
+
self._LastRotateTime = params.get("LastRotateTime")
|
|
4155
4256
|
memeber_set = set(params.keys())
|
|
4156
4257
|
for name, value in vars(self).items():
|
|
4157
4258
|
property_name = name[1:]
|
|
@@ -4441,8 +4542,7 @@ class ListKeyDetailResponse(AbstractModel):
|
|
|
4441
4542
|
r"""
|
|
4442
4543
|
:param _TotalCount: Total number of CMKs
|
|
4443
4544
|
:type TotalCount: int
|
|
4444
|
-
:param _KeyMetadatas:
|
|
4445
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4545
|
+
:param _KeyMetadatas: Specifies the returned attribute information list.
|
|
4446
4546
|
:type KeyMetadatas: list of KeyMetadata
|
|
4447
4547
|
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4448
4548
|
:type RequestId: str
|
|
@@ -4464,8 +4564,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
4464
4564
|
|
|
4465
4565
|
@property
|
|
4466
4566
|
def KeyMetadatas(self):
|
|
4467
|
-
"""
|
|
4468
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4567
|
+
"""Specifies the returned attribute information list.
|
|
4469
4568
|
:rtype: list of KeyMetadata
|
|
4470
4569
|
"""
|
|
4471
4570
|
return self._KeyMetadatas
|
|
@@ -4585,7 +4684,7 @@ class ListKeysResponse(AbstractModel):
|
|
|
4585
4684
|
|
|
4586
4685
|
def __init__(self):
|
|
4587
4686
|
r"""
|
|
4588
|
-
:param _Keys: CMK list array
|
|
4687
|
+
:param _Keys: CMK list array.
|
|
4589
4688
|
:type Keys: list of Key
|
|
4590
4689
|
:param _TotalCount: Total number of CMKs
|
|
4591
4690
|
:type TotalCount: int
|
|
@@ -4598,7 +4697,7 @@ class ListKeysResponse(AbstractModel):
|
|
|
4598
4697
|
|
|
4599
4698
|
@property
|
|
4600
4699
|
def Keys(self):
|
|
4601
|
-
"""CMK list array
|
|
4700
|
+
"""CMK list array.
|
|
4602
4701
|
:rtype: list of Key
|
|
4603
4702
|
"""
|
|
4604
4703
|
return self._Keys
|
|
@@ -5678,7 +5777,7 @@ class UnbindCloudResourceRequest(AbstractModel):
|
|
|
5678
5777
|
:type KeyId: str
|
|
5679
5778
|
:param _ProductId: Unique ID of a Tencent Cloud service
|
|
5680
5779
|
:type ProductId: str
|
|
5681
|
-
:param _ResourceId: Resource/instance ID, which is stored as a string and defined by the caller based on the Tencent Cloud service
|
|
5780
|
+
:param _ResourceId: Resource/instance ID, which is stored as a string and defined by the caller based on the Tencent Cloud service's features.
|
|
5682
5781
|
:type ResourceId: str
|
|
5683
5782
|
"""
|
|
5684
5783
|
self._KeyId = None
|
|
@@ -5709,7 +5808,7 @@ class UnbindCloudResourceRequest(AbstractModel):
|
|
|
5709
5808
|
|
|
5710
5809
|
@property
|
|
5711
5810
|
def ResourceId(self):
|
|
5712
|
-
"""Resource/instance ID, which is stored as a string and defined by the caller based on the Tencent Cloud service
|
|
5811
|
+
"""Resource/instance ID, which is stored as a string and defined by the caller based on the Tencent Cloud service's features.
|
|
5713
5812
|
:rtype: str
|
|
5714
5813
|
"""
|
|
5715
5814
|
return self._ResourceId
|
|
@@ -6087,8 +6186,7 @@ class WhiteboxKeyInfo(AbstractModel):
|
|
|
6087
6186
|
:type DecryptKey: str
|
|
6088
6187
|
:param _ResourceId: Resource ID in the format of `creatorUin/$creatorUin/$keyId`
|
|
6089
6188
|
:type ResourceId: str
|
|
6090
|
-
:param _DeviceFingerprintBind:
|
|
6091
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
6189
|
+
:param _DeviceFingerprintBind: Specifies whether there is a device fingerprint bound to the current key.
|
|
6092
6190
|
:type DeviceFingerprintBind: bool
|
|
6093
6191
|
"""
|
|
6094
6192
|
self._KeyId = None
|
|
@@ -6227,8 +6325,7 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
6227
6325
|
|
|
6228
6326
|
@property
|
|
6229
6327
|
def DeviceFingerprintBind(self):
|
|
6230
|
-
"""
|
|
6231
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
6328
|
+
"""Specifies whether there is a device fingerprint bound to the current key.
|
|
6232
6329
|
:rtype: bool
|
|
6233
6330
|
"""
|
|
6234
6331
|
return self._DeviceFingerprintBind
|
|
@@ -26548,7 +26548,7 @@ Default value: Chinese Mainland
|
|
|
26548
26548
|
<li>Yunnan</li>
|
|
26549
26549
|
<li>Chongqing</li>
|
|
26550
26550
|
<li>Sichuan</li>
|
|
26551
|
-
<li>
|
|
26551
|
+
<li>Xizang</li>
|
|
26552
26552
|
<li>Guangdong</li>
|
|
26553
26553
|
<li>Guangxi</li>
|
|
26554
26554
|
<li>Hainan</li>
|
|
@@ -26693,7 +26693,7 @@ Default value: Chinese Mainland
|
|
|
26693
26693
|
<li>Yunnan</li>
|
|
26694
26694
|
<li>Chongqing</li>
|
|
26695
26695
|
<li>Sichuan</li>
|
|
26696
|
-
<li>
|
|
26696
|
+
<li>Xizang</li>
|
|
26697
26697
|
<li>Guangdong</li>
|
|
26698
26698
|
<li>Guangxi</li>
|
|
26699
26699
|
<li>Hainan</li>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=O0MnBgQWnanzdK6LfUUbUfU3LKeR5znesxcEZ2-Ziik,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
|
|
@@ -38,7 +38,7 @@ tencentcloud/autoscaling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
38
38
|
tencentcloud/autoscaling/v20180419/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
39
|
tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=CN7OOMdCUFcaZipC0M8_8E3icUz1KSnu65NG2ytMMNg,73335
|
|
40
40
|
tencentcloud/autoscaling/v20180419/errorcodes.py,sha256=EnO0NtPCX0cHZg4gwcuFy0h0lpGYXj7IxKOPyumtZss,23895
|
|
41
|
-
tencentcloud/autoscaling/v20180419/models.py,sha256=
|
|
41
|
+
tencentcloud/autoscaling/v20180419/models.py,sha256=HhZ3syswq88Mc7UNHqSH1A_Q1WkBe_hJ5IZtu3tEPZ4,622568
|
|
42
42
|
tencentcloud/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
43
|
tencentcloud/batch/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
44
|
tencentcloud/batch/v20170312/batch_client.py,sha256=EIR-ysegqhnY9he8RD0xs7pUkZt_XzmR_VNBRG41TCY,29653
|
|
@@ -354,7 +354,7 @@ tencentcloud/kms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
354
354
|
tencentcloud/kms/v20190118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
355
|
tencentcloud/kms/v20190118/errorcodes.py,sha256=oPx2K-S9eHuhJm5eJGHZw_LMF9kfq8KeIIqZyoZ-DqM,5717
|
|
356
356
|
tencentcloud/kms/v20190118/kms_client.py,sha256=Ys-MLu3_FEZR7hZ0UqQbLcgKxQNHPrx0vrrATnmGPbc,52331
|
|
357
|
-
tencentcloud/kms/v20190118/models.py,sha256=
|
|
357
|
+
tencentcloud/kms/v20190118/models.py,sha256=45vnAhyRS4uPHlFgPxwaab7UhSEZF5HZtdVqVfzyS1U,214076
|
|
358
358
|
tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
tencentcloud/lcic/v20220817/errorcodes.py,sha256=PYKhl5BSZ9afW4HiUf539p933Wnw9eMpgR0tQG1hXoI,4709
|
|
@@ -632,7 +632,7 @@ tencentcloud/vm/v20210922/vm_client.py,sha256=53nQQvsMw6P7gPdNxFUCicBi9Ed0wnY7dz
|
|
|
632
632
|
tencentcloud/vod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
633
633
|
tencentcloud/vod/v20180717/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
634
634
|
tencentcloud/vod/v20180717/errorcodes.py,sha256=T1qEKCUfUBM4sHDxCxnfjIpHIm5GMGuiAXh_rhmGZRs,27980
|
|
635
|
-
tencentcloud/vod/v20180717/models.py,sha256=
|
|
635
|
+
tencentcloud/vod/v20180717/models.py,sha256=z9UqnMeJnhYwkKO5uzB1DkjRvkex11zhENKyVorZ3jo,2931769
|
|
636
636
|
tencentcloud/vod/v20180717/vod_client.py,sha256=DMxebnzLEsU2E6nf1j4WZxEQu_D8kHOgqT9W8g9dTG8,201269
|
|
637
637
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
638
638
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -654,7 +654,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
654
654
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
655
655
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
656
656
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
657
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
658
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
659
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
660
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
657
|
+
tencentcloud_sdk_python_intl_en-3.0.1196.dist-info/METADATA,sha256=VUV88_puUqoWk4v11SMrIlG2FeS0x8y5DgcoTnWUINU,1628
|
|
658
|
+
tencentcloud_sdk_python_intl_en-3.0.1196.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
659
|
+
tencentcloud_sdk_python_intl_en-3.0.1196.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
660
|
+
tencentcloud_sdk_python_intl_en-3.0.1196.dist-info/RECORD,,
|
|
File without changes
|