tencentcloud-sdk-python-intl-en 3.0.1146__py2.py3-none-any.whl → 3.0.1148__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.

@@ -249,7 +249,7 @@ class CvmClient(AbstractClient):
249
249
 
250
250
  An instance launch template contains the configuration information required to create an instance, including instance type, data/system disk type and size, and security group, etc.
251
251
 
252
- When a template is created, it defaults to Version 1. You can use `CreateLaunchTemplateVersion` to create new versions of this template, with the version number increasing. When you run `RunInstances` to create instances, you can specify the instance launch template version. If its not specified, the default template version is used.
252
+ When a template is created, it defaults to Version 1. You can use `CreateLaunchTemplateVersion` to create new versions of this template, with the version number increasing. When you run `RunInstances` to create instances, you can specify the instance launch template version. If it's not specified, the default template version is used.
253
253
 
254
254
  :param request: Request instance for CreateLaunchTemplate.
255
255
  :type request: :class:`tencentcloud.cvm.v20170312.models.CreateLaunchTemplateRequest`
@@ -1466,10 +1466,16 @@ class CreateDisasterRecoverGroupRequest(AbstractModel):
1466
1466
  :type Type: str
1467
1467
  :param _ClientToken: A string used to ensure the idempotency of the request, which is generated by the user and must be unique to each request. The maximum length is 64 ASCII characters. If this parameter is not specified, the idempotency of the request cannot be guaranteed. <br>For more information, see 'How to ensure idempotency'.
1468
1468
  :type ClientToken: str
1469
+ :param _Affinity:
1470
+ :type Affinity: int
1471
+ :param _TagSpecification: List of tag description. By specifying this parameter, the tag can be bound to the placement group.
1472
+ :type TagSpecification: list of TagSpecification
1469
1473
  """
1470
1474
  self._Name = None
1471
1475
  self._Type = None
1472
1476
  self._ClientToken = None
1477
+ self._Affinity = None
1478
+ self._TagSpecification = None
1473
1479
 
1474
1480
  @property
1475
1481
  def Name(self):
@@ -1504,11 +1510,40 @@ class CreateDisasterRecoverGroupRequest(AbstractModel):
1504
1510
  def ClientToken(self, ClientToken):
1505
1511
  self._ClientToken = ClientToken
1506
1512
 
1513
+ @property
1514
+ def Affinity(self):
1515
+ """
1516
+ :rtype: int
1517
+ """
1518
+ return self._Affinity
1519
+
1520
+ @Affinity.setter
1521
+ def Affinity(self, Affinity):
1522
+ self._Affinity = Affinity
1523
+
1524
+ @property
1525
+ def TagSpecification(self):
1526
+ """List of tag description. By specifying this parameter, the tag can be bound to the placement group.
1527
+ :rtype: list of TagSpecification
1528
+ """
1529
+ return self._TagSpecification
1530
+
1531
+ @TagSpecification.setter
1532
+ def TagSpecification(self, TagSpecification):
1533
+ self._TagSpecification = TagSpecification
1534
+
1507
1535
 
1508
1536
  def _deserialize(self, params):
1509
1537
  self._Name = params.get("Name")
1510
1538
  self._Type = params.get("Type")
1511
1539
  self._ClientToken = params.get("ClientToken")
1540
+ self._Affinity = params.get("Affinity")
1541
+ if params.get("TagSpecification") is not None:
1542
+ self._TagSpecification = []
1543
+ for item in params.get("TagSpecification"):
1544
+ obj = TagSpecification()
1545
+ obj._deserialize(item)
1546
+ self._TagSpecification.append(obj)
1512
1547
  memeber_set = set(params.keys())
1513
1548
  for name, value in vars(self).items():
1514
1549
  property_name = name[1:]
@@ -2054,6 +2089,10 @@ false (default value): send a normal request and create instance(s) if all the r
2054
2089
  :type InstanceChargeType: str
2055
2090
  :param _InstanceChargePrepaid: Details of the monthly subscription, including the purchase period, auto-renewal. It is required if the `InstanceChargeType` is `PREPAID`.
2056
2091
  :type InstanceChargePrepaid: :class:`tencentcloud.cvm.v20170312.models.InstanceChargePrepaid`
2092
+ :param _DisableApiTermination:
2093
+ :type DisableApiTermination: bool
2094
+ :param _LaunchTemplateTagSpecification: Instance launch template tag description list. By specifying the TemplateTag parameter, you can bind tags to the instance launch template.
2095
+ :type LaunchTemplateTagSpecification: list of TagSpecification
2057
2096
  """
2058
2097
  self._LaunchTemplateName = None
2059
2098
  self._Placement = None
@@ -2081,6 +2120,8 @@ false (default value): send a normal request and create instance(s) if all the r
2081
2120
  self._HpcClusterId = None
2082
2121
  self._InstanceChargeType = None
2083
2122
  self._InstanceChargePrepaid = None
2123
+ self._DisableApiTermination = None
2124
+ self._LaunchTemplateTagSpecification = None
2084
2125
 
2085
2126
  @property
2086
2127
  def LaunchTemplateName(self):
@@ -2373,6 +2414,28 @@ false (default value): send a normal request and create instance(s) if all the r
2373
2414
  def InstanceChargePrepaid(self, InstanceChargePrepaid):
2374
2415
  self._InstanceChargePrepaid = InstanceChargePrepaid
2375
2416
 
2417
+ @property
2418
+ def DisableApiTermination(self):
2419
+ """
2420
+ :rtype: bool
2421
+ """
2422
+ return self._DisableApiTermination
2423
+
2424
+ @DisableApiTermination.setter
2425
+ def DisableApiTermination(self, DisableApiTermination):
2426
+ self._DisableApiTermination = DisableApiTermination
2427
+
2428
+ @property
2429
+ def LaunchTemplateTagSpecification(self):
2430
+ """Instance launch template tag description list. By specifying the TemplateTag parameter, you can bind tags to the instance launch template.
2431
+ :rtype: list of TagSpecification
2432
+ """
2433
+ return self._LaunchTemplateTagSpecification
2434
+
2435
+ @LaunchTemplateTagSpecification.setter
2436
+ def LaunchTemplateTagSpecification(self, LaunchTemplateTagSpecification):
2437
+ self._LaunchTemplateTagSpecification = LaunchTemplateTagSpecification
2438
+
2376
2439
 
2377
2440
  def _deserialize(self, params):
2378
2441
  self._LaunchTemplateName = params.get("LaunchTemplateName")
@@ -2429,6 +2492,13 @@ false (default value): send a normal request and create instance(s) if all the r
2429
2492
  if params.get("InstanceChargePrepaid") is not None:
2430
2493
  self._InstanceChargePrepaid = InstanceChargePrepaid()
2431
2494
  self._InstanceChargePrepaid._deserialize(params.get("InstanceChargePrepaid"))
2495
+ self._DisableApiTermination = params.get("DisableApiTermination")
2496
+ if params.get("LaunchTemplateTagSpecification") is not None:
2497
+ self._LaunchTemplateTagSpecification = []
2498
+ for item in params.get("LaunchTemplateTagSpecification"):
2499
+ obj = TagSpecification()
2500
+ obj._deserialize(item)
2501
+ self._LaunchTemplateTagSpecification.append(obj)
2432
2502
  memeber_set = set(params.keys())
2433
2503
  for name, value in vars(self).items():
2434
2504
  property_name = name[1:]
@@ -3990,11 +4060,17 @@ class DescribeDisasterRecoverGroupsRequest(AbstractModel):
3990
4060
  :type Offset: int
3991
4061
  :param _Limit: Number of results returned; default value: 20; maximum: 100. For more information on `Limit`, see the corresponding section in API [Introduction](https://intl.cloud.tencent.com/document/product/377).
3992
4062
  :type Limit: int
4063
+ :param _Filters: <li> `tag-key` - String - Optional - Filter by the tag key.</li>
4064
+ <li>`tag-value` - String - Optional - Filter by the tag value.</li>
4065
+ <li> `tag:tag-key` - String - Optional - Filter by the tag key-value pair. Replace `tag-key` with the actual tag keys.</li>
4066
+ Each request can have up to 10 `Filters` and 5 `Filters.Values`.
4067
+ :type Filters: list of Filter
3993
4068
  """
3994
4069
  self._DisasterRecoverGroupIds = None
3995
4070
  self._Name = None
3996
4071
  self._Offset = None
3997
4072
  self._Limit = None
4073
+ self._Filters = None
3998
4074
 
3999
4075
  @property
4000
4076
  def DisasterRecoverGroupIds(self):
@@ -4040,12 +4116,32 @@ class DescribeDisasterRecoverGroupsRequest(AbstractModel):
4040
4116
  def Limit(self, Limit):
4041
4117
  self._Limit = Limit
4042
4118
 
4119
+ @property
4120
+ def Filters(self):
4121
+ """<li> `tag-key` - String - Optional - Filter by the tag key.</li>
4122
+ <li>`tag-value` - String - Optional - Filter by the tag value.</li>
4123
+ <li> `tag:tag-key` - String - Optional - Filter by the tag key-value pair. Replace `tag-key` with the actual tag keys.</li>
4124
+ Each request can have up to 10 `Filters` and 5 `Filters.Values`.
4125
+ :rtype: list of Filter
4126
+ """
4127
+ return self._Filters
4128
+
4129
+ @Filters.setter
4130
+ def Filters(self, Filters):
4131
+ self._Filters = Filters
4132
+
4043
4133
 
4044
4134
  def _deserialize(self, params):
4045
4135
  self._DisasterRecoverGroupIds = params.get("DisasterRecoverGroupIds")
4046
4136
  self._Name = params.get("Name")
4047
4137
  self._Offset = params.get("Offset")
4048
4138
  self._Limit = params.get("Limit")
4139
+ if params.get("Filters") is not None:
4140
+ self._Filters = []
4141
+ for item in params.get("Filters"):
4142
+ obj = Filter()
4143
+ obj._deserialize(item)
4144
+ self._Filters.append(obj)
4049
4145
  memeber_set = set(params.keys())
4050
4146
  for name, value in vars(self).items():
4051
4147
  property_name = name[1:]
@@ -6528,6 +6624,8 @@ Note: This field may return null, indicating that no valid value was found.
6528
6624
  :param _CreateTime: Creation time of a spread placement group.
6529
6625
  Note: This field may return null, indicating that no valid value is found.
6530
6626
  :type CreateTime: str
6627
+ :param _Tags: List of tags associated with the placement group.
6628
+ :type Tags: list of Tag
6531
6629
  """
6532
6630
  self._DisasterRecoverGroupId = None
6533
6631
  self._Name = None
@@ -6536,6 +6634,7 @@ Note: This field may return null, indicating that no valid value is found.
6536
6634
  self._CurrentNum = None
6537
6635
  self._InstanceIds = None
6538
6636
  self._CreateTime = None
6637
+ self._Tags = None
6539
6638
 
6540
6639
  @property
6541
6640
  def DisasterRecoverGroupId(self):
@@ -6619,6 +6718,17 @@ Note: This field may return null, indicating that no valid value is found.
6619
6718
  def CreateTime(self, CreateTime):
6620
6719
  self._CreateTime = CreateTime
6621
6720
 
6721
+ @property
6722
+ def Tags(self):
6723
+ """List of tags associated with the placement group.
6724
+ :rtype: list of Tag
6725
+ """
6726
+ return self._Tags
6727
+
6728
+ @Tags.setter
6729
+ def Tags(self, Tags):
6730
+ self._Tags = Tags
6731
+
6622
6732
 
6623
6733
  def _deserialize(self, params):
6624
6734
  self._DisasterRecoverGroupId = params.get("DisasterRecoverGroupId")
@@ -6628,6 +6738,12 @@ Note: This field may return null, indicating that no valid value is found.
6628
6738
  self._CurrentNum = params.get("CurrentNum")
6629
6739
  self._InstanceIds = params.get("InstanceIds")
6630
6740
  self._CreateTime = params.get("CreateTime")
6741
+ if params.get("Tags") is not None:
6742
+ self._Tags = []
6743
+ for item in params.get("Tags"):
6744
+ obj = Tag()
6745
+ obj._deserialize(item)
6746
+ self._Tags.append(obj)
6631
6747
  memeber_set = set(params.keys())
6632
6748
  for name, value in vars(self).items():
6633
6749
  property_name = name[1:]
@@ -4160,23 +4160,23 @@ class PolicyProductList(AbstractModel):
4160
4160
 
4161
4161
  def __init__(self):
4162
4162
  r"""
4163
- :param _PolicyCode: Dealer policy code.
4163
+ :param _PolicyCode: Policy code.
4164
4164
  :type PolicyCode: str
4165
- :param _ProductCode: Product level 1 code. If the return value is *, any item at this level is included in the policy product range.
4165
+ :param _ProductCode: The code of the ProductName field in the bill data. If the return value is *, any item at this level is included in the policy product range.
4166
4166
  :type ProductCode: str
4167
- :param _ProductName: Product level 1 name. If the return value is *, any item at this level is included in the policy product range.
4167
+ :param _ProductName: The ProductName field value in the billing data. If the return value is *, any item at this level is included in the policy product range.
4168
4168
  :type ProductName: str
4169
- :param _SubProductCode: Product level 2 code. If the return value is *, any item at this level is included in the policy product range.
4169
+ :param _SubProductCode: The code of the SubProduct field in the bill data. If the return value is *, any item at this level is included in the policy product range.
4170
4170
  :type SubProductCode: str
4171
- :param _SubProductName: Product level 2 name. If the return value is *, any item at this level is included in the policy product range.
4171
+ :param _SubProductName: The SubProduct field value in the billing data. If the return value is *, any item at this level is included in the policy product range.
4172
4172
  :type SubProductName: str
4173
- :param _ComponentTypeCode: Product level 3 code. If the return value is *, any item at this level is included in the policy product range.
4173
+ :param _ComponentTypeCode: The code of the ComponentType field in the bill data. If the return value is *, any item at this level is included in the policy product range.
4174
4174
  :type ComponentTypeCode: str
4175
- :param _ComponentTypeName: Product level 3 name. If the return value is *, any item at this level is included in the policy product range.
4175
+ :param _ComponentTypeName: The ComponentType field value in the billing data. If the return value is *, any item at this level is included in the policy product range.
4176
4176
  :type ComponentTypeName: str
4177
- :param _ComponentCode: Product level 4 code. If the return value is *, any item at this level is included in the policy product range.
4177
+ :param _ComponentCode: The code of the Component field in the bill data. If the return value is *, any item at this level is included in the policy product range.
4178
4178
  :type ComponentCode: str
4179
- :param _ComponentName: Product fourth-level name. If the return value is *, any item under this level is included in the policy product scope.
4179
+ :param _ComponentName: The Component field value in the billing data. If the return value is *, any item at this level is included in the policy product range.
4180
4180
  :type ComponentName: str
4181
4181
  :param _StartDate: Policy effective time.
4182
4182
  :type StartDate: str
@@ -4197,7 +4197,7 @@ class PolicyProductList(AbstractModel):
4197
4197
 
4198
4198
  @property
4199
4199
  def PolicyCode(self):
4200
- """Dealer policy code.
4200
+ """ Policy code.
4201
4201
  :rtype: str
4202
4202
  """
4203
4203
  return self._PolicyCode
@@ -4208,7 +4208,7 @@ class PolicyProductList(AbstractModel):
4208
4208
 
4209
4209
  @property
4210
4210
  def ProductCode(self):
4211
- """Product level 1 code. If the return value is *, any item at this level is included in the policy product range.
4211
+ """The code of the ProductName field in the bill data. If the return value is *, any item at this level is included in the policy product range.
4212
4212
  :rtype: str
4213
4213
  """
4214
4214
  return self._ProductCode
@@ -4219,7 +4219,7 @@ class PolicyProductList(AbstractModel):
4219
4219
 
4220
4220
  @property
4221
4221
  def ProductName(self):
4222
- """Product level 1 name. If the return value is *, any item at this level is included in the policy product range.
4222
+ """The ProductName field value in the billing data. If the return value is *, any item at this level is included in the policy product range.
4223
4223
  :rtype: str
4224
4224
  """
4225
4225
  return self._ProductName
@@ -4230,7 +4230,7 @@ class PolicyProductList(AbstractModel):
4230
4230
 
4231
4231
  @property
4232
4232
  def SubProductCode(self):
4233
- """Product level 2 code. If the return value is *, any item at this level is included in the policy product range.
4233
+ """The code of the SubProduct field in the bill data. If the return value is *, any item at this level is included in the policy product range.
4234
4234
  :rtype: str
4235
4235
  """
4236
4236
  return self._SubProductCode
@@ -4241,7 +4241,7 @@ class PolicyProductList(AbstractModel):
4241
4241
 
4242
4242
  @property
4243
4243
  def SubProductName(self):
4244
- """Product level 2 name. If the return value is *, any item at this level is included in the policy product range.
4244
+ """The SubProduct field value in the billing data. If the return value is *, any item at this level is included in the policy product range.
4245
4245
  :rtype: str
4246
4246
  """
4247
4247
  return self._SubProductName
@@ -4252,7 +4252,7 @@ class PolicyProductList(AbstractModel):
4252
4252
 
4253
4253
  @property
4254
4254
  def ComponentTypeCode(self):
4255
- """Product level 3 code. If the return value is *, any item at this level is included in the policy product range.
4255
+ """The code of the ComponentType field in the bill data. If the return value is *, any item at this level is included in the policy product range.
4256
4256
  :rtype: str
4257
4257
  """
4258
4258
  return self._ComponentTypeCode
@@ -4263,7 +4263,7 @@ class PolicyProductList(AbstractModel):
4263
4263
 
4264
4264
  @property
4265
4265
  def ComponentTypeName(self):
4266
- """Product level 3 name. If the return value is *, any item at this level is included in the policy product range.
4266
+ """The ComponentType field value in the billing data. If the return value is *, any item at this level is included in the policy product range.
4267
4267
  :rtype: str
4268
4268
  """
4269
4269
  return self._ComponentTypeName
@@ -4274,7 +4274,7 @@ class PolicyProductList(AbstractModel):
4274
4274
 
4275
4275
  @property
4276
4276
  def ComponentCode(self):
4277
- """Product level 4 code. If the return value is *, any item at this level is included in the policy product range.
4277
+ """The code of the Component field in the bill data. If the return value is *, any item at this level is included in the policy product range.
4278
4278
  :rtype: str
4279
4279
  """
4280
4280
  return self._ComponentCode
@@ -4285,7 +4285,7 @@ class PolicyProductList(AbstractModel):
4285
4285
 
4286
4286
  @property
4287
4287
  def ComponentName(self):
4288
- """Product fourth-level name. If the return value is *, any item under this level is included in the policy product scope.
4288
+ """The Component field value in the billing data. If the return value is *, any item at this level is included in the policy product range.
4289
4289
  :rtype: str
4290
4290
  """
4291
4291
  return self._ComponentName
@@ -5797,15 +5797,15 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
5797
5797
 
5798
5798
  def __init__(self):
5799
5799
  r"""
5800
- :param _PolicyCode: Dealer policy code.
5800
+ :param _PolicyCode: Policy code.
5801
5801
  :type PolicyCode: str
5802
- :param _ProductCode: Product level 1 code.
5802
+ :param _ProductCode: The code of the ProductName field in the bill data.
5803
5803
  :type ProductCode: str
5804
- :param _ProductName: Product level 1 name.
5804
+ :param _ProductName: The ProductName field value in the billing data.
5805
5805
  :type ProductName: str
5806
- :param _SubProductCode: Product level 2 code.
5806
+ :param _SubProductCode: The code of the SubProductName field in the bill data.
5807
5807
  :type SubProductCode: str
5808
- :param _SubProductName: Product level 2 name.
5808
+ :param _SubProductName: The SubProductName field value in the billing data.
5809
5809
  :type SubProductName: str
5810
5810
  :param _Page: Page parameter: current page number. The minimum value is 1.
5811
5811
  :type Page: int
@@ -5822,7 +5822,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
5822
5822
 
5823
5823
  @property
5824
5824
  def PolicyCode(self):
5825
- """Dealer policy code.
5825
+ """Policy code.
5826
5826
  :rtype: str
5827
5827
  """
5828
5828
  return self._PolicyCode
@@ -5833,7 +5833,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
5833
5833
 
5834
5834
  @property
5835
5835
  def ProductCode(self):
5836
- """Product level 1 code.
5836
+ """The code of the ProductName field in the bill data.
5837
5837
  :rtype: str
5838
5838
  """
5839
5839
  return self._ProductCode
@@ -5844,7 +5844,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
5844
5844
 
5845
5845
  @property
5846
5846
  def ProductName(self):
5847
- """Product level 1 name.
5847
+ """The ProductName field value in the billing data.
5848
5848
  :rtype: str
5849
5849
  """
5850
5850
  return self._ProductName
@@ -5855,7 +5855,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
5855
5855
 
5856
5856
  @property
5857
5857
  def SubProductCode(self):
5858
- """Product level 2 code.
5858
+ """The code of the SubProductName field in the bill data.
5859
5859
  :rtype: str
5860
5860
  """
5861
5861
  return self._SubProductCode
@@ -5866,7 +5866,7 @@ class QueryPolicyProductListByCodeRequest(AbstractModel):
5866
5866
 
5867
5867
  @property
5868
5868
  def SubProductName(self):
5869
- """Product level 2 name.
5869
+ """The SubProductName field value in the billing data.
5870
5870
  :rtype: str
5871
5871
  """
5872
5872
  return self._SubProductName
@@ -5923,7 +5923,7 @@ class QueryPolicyProductListByCodeResponse(AbstractModel):
5923
5923
 
5924
5924
  def __init__(self):
5925
5925
  r"""
5926
- :param _ProductList: Dealer policy product list.
5926
+ :param _ProductList: policy product list.
5927
5927
  :type ProductList: list of PolicyProductList
5928
5928
  :param _Total: Total number of data entries
5929
5929
  :type Total: int
@@ -5936,7 +5936,7 @@ class QueryPolicyProductListByCodeResponse(AbstractModel):
5936
5936
 
5937
5937
  @property
5938
5938
  def ProductList(self):
5939
- """Dealer policy product list.
5939
+ """policy product list.
5940
5940
  :rtype: list of PolicyProductList
5941
5941
  """
5942
5942
  return self._ProductList
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1146
3
+ Version: 3.0.1148
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python-intl-en
6
6
  Author: Tencent Cloud
@@ -1,4 +1,4 @@
1
- tencentcloud/__init__.py,sha256=_kMVSpYVKa5MeODNwaO5r3-w_2061l5lbxEnsbtHV5E,630
1
+ tencentcloud/__init__.py,sha256=R5tXApzdse3Rb4xM4XBOxnn586pXuwNpebrOU2bZozs,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=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
@@ -94,6 +94,11 @@ tencentcloud/cdwdoris/v20211228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
94
94
  tencentcloud/cdwdoris/v20211228/cdwdoris_client.py,sha256=ssVyMWoLGmdbym_miT41ruobKrCoNzHaWRrnAhpqrFU,74386
95
95
  tencentcloud/cdwdoris/v20211228/errorcodes.py,sha256=31_6Op28DLsbVbkbp6mt-R1EoYZ_orri7yX_Pt9rRN8,703
96
96
  tencentcloud/cdwdoris/v20211228/models.py,sha256=44AYet-IkgDCo9aluF_UB8vY-_xvmYVbc-ykwj7Qx8M,614198
97
+ tencentcloud/cdwpg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ tencentcloud/cdwpg/v20201230/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
+ tencentcloud/cdwpg/v20201230/cdwpg_client.py,sha256=8cIv1xgXFiC2xVpqpRtftjfM0atp-f6gIbAcTeHBcUE,8405
100
+ tencentcloud/cdwpg/v20201230/errorcodes.py,sha256=4EVQUkWNxP0rzHcTyfqJ2NZtITAEdkTc7zPS9_STf6Q,788
101
+ tencentcloud/cdwpg/v20201230/models.py,sha256=8HscTOhJ-C0_LnMXAzok78ClXctUBux_KiMTH1Jg9ZU,100739
97
102
  tencentcloud/cfg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
103
  tencentcloud/cfg/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
104
  tencentcloud/cfg/v20210820/cfg_client.py,sha256=OunW50eWneMmktxtajVm9Y6YQP5UXC6P5UVByNQBqHg,15829
@@ -179,9 +184,9 @@ tencentcloud/csip/v20221121/errorcodes.py,sha256=BtrJ2Ezz21uWHzoEJED1bUeiBgp3zuf
179
184
  tencentcloud/csip/v20221121/models.py,sha256=hAdedmdDrD4HWsZQb7SdqtymGVFHoXVZYqkjYeZV5Ms,480806
180
185
  tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
186
  tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
- tencentcloud/cvm/v20170312/cvm_client.py,sha256=a0tQDt_syc2a2vFL3k_7BXuNFu45ws4pGfqIS_CQ9aQ,92580
187
+ tencentcloud/cvm/v20170312/cvm_client.py,sha256=1aD4XgaKlrdYmENkZ_1DIJ8-P4UrF86_11imTWnQJQ0,92578
183
188
  tencentcloud/cvm/v20170312/errorcodes.py,sha256=A-ckhQyCbsJtJ1And4c5-INIb6OBekV99rpARLv_jGo,52495
184
- tencentcloud/cvm/v20170312/models.py,sha256=CNKRWWxutmVAFvQI7UD2bs9Frx2l8i0Ft6m7qfYzbPw,746372
189
+ tencentcloud/cvm/v20170312/models.py,sha256=4ToyW25Qx8DsuQk5Jfa2hqBxnyPldS4poUyDHv8HP8s,751017
185
190
  tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
191
  tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
192
  tencentcloud/cwp/v20180228/cwp_client.py,sha256=XlAOIbfCE2PH5kdpATOrUkuE7eZd74lqbvhm2UDECi0,444132
@@ -329,7 +334,7 @@ tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
329
334
  tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
335
  tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=0IpVk8leCqNIkaXxdAO2bVkUA7eAdhy8Rl5l1g65CEA,7464
331
336
  tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=YLTuV0zSYue_6agFIeJGw387V24JqEaQ7oPeqIMh_jk,37714
332
- tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=unHoqAy_kAtBq9QSfu_eSf1uCmxcoW-ZWpFhsJaSy7E,210074
337
+ tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=r5Snd4h18sHi5Wf6LIhcy_lgTfVl_3wn_56og-H2o5I,210722
333
338
  tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
334
339
  tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
335
340
  tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
@@ -629,7 +634,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
629
634
  tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
630
635
  tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
631
636
  tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
632
- tencentcloud_sdk_python_intl_en-3.0.1146.dist-info/METADATA,sha256=8XdQiyw5vnvIWYSIxYs0acoV5fA9LngltJ4bdtnamCM,1628
633
- tencentcloud_sdk_python_intl_en-3.0.1146.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
634
- tencentcloud_sdk_python_intl_en-3.0.1146.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
635
- tencentcloud_sdk_python_intl_en-3.0.1146.dist-info/RECORD,,
637
+ tencentcloud_sdk_python_intl_en-3.0.1148.dist-info/METADATA,sha256=fhh-2Sm0AIJFAmdAGTtkb2VsQ3UsgnliPYEJqsQt_t8,1628
638
+ tencentcloud_sdk_python_intl_en-3.0.1148.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
639
+ tencentcloud_sdk_python_intl_en-3.0.1148.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
640
+ tencentcloud_sdk_python_intl_en-3.0.1148.dist-info/RECORD,,