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

@@ -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:]
@@ -4025,11 +4060,17 @@ class DescribeDisasterRecoverGroupsRequest(AbstractModel):
4025
4060
  :type Offset: int
4026
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).
4027
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
4028
4068
  """
4029
4069
  self._DisasterRecoverGroupIds = None
4030
4070
  self._Name = None
4031
4071
  self._Offset = None
4032
4072
  self._Limit = None
4073
+ self._Filters = None
4033
4074
 
4034
4075
  @property
4035
4076
  def DisasterRecoverGroupIds(self):
@@ -4075,12 +4116,32 @@ class DescribeDisasterRecoverGroupsRequest(AbstractModel):
4075
4116
  def Limit(self, Limit):
4076
4117
  self._Limit = Limit
4077
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
+
4078
4133
 
4079
4134
  def _deserialize(self, params):
4080
4135
  self._DisasterRecoverGroupIds = params.get("DisasterRecoverGroupIds")
4081
4136
  self._Name = params.get("Name")
4082
4137
  self._Offset = params.get("Offset")
4083
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)
4084
4145
  memeber_set = set(params.keys())
4085
4146
  for name, value in vars(self).items():
4086
4147
  property_name = name[1:]
@@ -6563,6 +6624,8 @@ Note: This field may return null, indicating that no valid value was found.
6563
6624
  :param _CreateTime: Creation time of a spread placement group.
6564
6625
  Note: This field may return null, indicating that no valid value is found.
6565
6626
  :type CreateTime: str
6627
+ :param _Tags: List of tags associated with the placement group.
6628
+ :type Tags: list of Tag
6566
6629
  """
6567
6630
  self._DisasterRecoverGroupId = None
6568
6631
  self._Name = None
@@ -6571,6 +6634,7 @@ Note: This field may return null, indicating that no valid value is found.
6571
6634
  self._CurrentNum = None
6572
6635
  self._InstanceIds = None
6573
6636
  self._CreateTime = None
6637
+ self._Tags = None
6574
6638
 
6575
6639
  @property
6576
6640
  def DisasterRecoverGroupId(self):
@@ -6654,6 +6718,17 @@ Note: This field may return null, indicating that no valid value is found.
6654
6718
  def CreateTime(self, CreateTime):
6655
6719
  self._CreateTime = CreateTime
6656
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
+
6657
6732
 
6658
6733
  def _deserialize(self, params):
6659
6734
  self._DisasterRecoverGroupId = params.get("DisasterRecoverGroupId")
@@ -6663,6 +6738,12 @@ Note: This field may return null, indicating that no valid value is found.
6663
6738
  self._CurrentNum = params.get("CurrentNum")
6664
6739
  self._InstanceIds = params.get("InstanceIds")
6665
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)
6666
6747
  memeber_set = set(params.keys())
6667
6748
  for name, value in vars(self).items():
6668
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.1147
3
+ Version: 3.0.1149
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=ftEvSm2PLuqd9xay3tp8dXk8ehJgR7xH-JGhObmnOms,630
1
+ tencentcloud/__init__.py,sha256=CX-jx9quwe4Pua_t6KjlkO5_UXoikZa7Q4dNoWGbUmA,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
@@ -181,7 +186,7 @@ tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
181
186
  tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
182
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=7Hg7xHC0e6cXrNCrGTCywH4OJjqXBHfooulCiS7Cdmo,748030
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.1147.dist-info/METADATA,sha256=ZjxYgqFb-VZR5Zm56Nc8LYoqSgR-htFoh20Rl9cZedo,1628
633
- tencentcloud_sdk_python_intl_en-3.0.1147.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
634
- tencentcloud_sdk_python_intl_en-3.0.1147.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
635
- tencentcloud_sdk_python_intl_en-3.0.1147.dist-info/RECORD,,
637
+ tencentcloud_sdk_python_intl_en-3.0.1149.dist-info/METADATA,sha256=io768S7dyotGZUpaw3V6WuG9jO6nSCGVhdPhztZPvxM,1628
638
+ tencentcloud_sdk_python_intl_en-3.0.1149.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
639
+ tencentcloud_sdk_python_intl_en-3.0.1149.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
640
+ tencentcloud_sdk_python_intl_en-3.0.1149.dist-info/RECORD,,