tencentcloud-sdk-python 3.0.1416__py2.py3-none-any.whl → 3.0.1417__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cdb/v20170320/cdb_client.py +2 -2
- tencentcloud/cdb/v20170320/models.py +46 -36
- tencentcloud/cwp/v20180228/models.py +197 -2
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +84 -0
- tencentcloud/emr/v20190103/errorcodes.py +3 -0
- tencentcloud/emr/v20190103/models.py +30 -0
- tencentcloud/gs/v20191118/gs_client.py +1 -1
- tencentcloud/gs/v20191118/models.py +169 -23
- tencentcloud/ioa/v20220601/ioa_client.py +23 -0
- tencentcloud/ioa/v20220601/models.py +297 -0
- tencentcloud/mariadb/v20170312/models.py +45 -0
- tencentcloud/wedata/v20210820/models.py +17 -0
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1417.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1417.dist-info}/RECORD +20 -20
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1417.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1417.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1417.dist-info}/top_level.txt +0 -0
@@ -2095,6 +2095,192 @@ class DescribeDeviceInfoRspData(AbstractModel):
|
|
2095
2095
|
|
2096
2096
|
|
2097
2097
|
|
2098
|
+
class DescribeDeviceVirtualGroupsPageRsp(AbstractModel):
|
2099
|
+
"""查询返回终端自定义分组的Data数据
|
2100
|
+
|
2101
|
+
"""
|
2102
|
+
|
2103
|
+
def __init__(self):
|
2104
|
+
r"""
|
2105
|
+
:param _Page: 分页公共对象
|
2106
|
+
:type Page: :class:`tencentcloud.ioa.v20220601.models.Paging`
|
2107
|
+
:param _Items: 终端自定义分组列表数据
|
2108
|
+
:type Items: list of DeviceVirtualDeviceGroupsDetail
|
2109
|
+
"""
|
2110
|
+
self._Page = None
|
2111
|
+
self._Items = None
|
2112
|
+
|
2113
|
+
@property
|
2114
|
+
def Page(self):
|
2115
|
+
"""分页公共对象
|
2116
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.Paging`
|
2117
|
+
"""
|
2118
|
+
return self._Page
|
2119
|
+
|
2120
|
+
@Page.setter
|
2121
|
+
def Page(self, Page):
|
2122
|
+
self._Page = Page
|
2123
|
+
|
2124
|
+
@property
|
2125
|
+
def Items(self):
|
2126
|
+
"""终端自定义分组列表数据
|
2127
|
+
:rtype: list of DeviceVirtualDeviceGroupsDetail
|
2128
|
+
"""
|
2129
|
+
return self._Items
|
2130
|
+
|
2131
|
+
@Items.setter
|
2132
|
+
def Items(self, Items):
|
2133
|
+
self._Items = Items
|
2134
|
+
|
2135
|
+
|
2136
|
+
def _deserialize(self, params):
|
2137
|
+
if params.get("Page") is not None:
|
2138
|
+
self._Page = Paging()
|
2139
|
+
self._Page._deserialize(params.get("Page"))
|
2140
|
+
if params.get("Items") is not None:
|
2141
|
+
self._Items = []
|
2142
|
+
for item in params.get("Items"):
|
2143
|
+
obj = DeviceVirtualDeviceGroupsDetail()
|
2144
|
+
obj._deserialize(item)
|
2145
|
+
self._Items.append(obj)
|
2146
|
+
memeber_set = set(params.keys())
|
2147
|
+
for name, value in vars(self).items():
|
2148
|
+
property_name = name[1:]
|
2149
|
+
if property_name in memeber_set:
|
2150
|
+
memeber_set.remove(property_name)
|
2151
|
+
if len(memeber_set) > 0:
|
2152
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2153
|
+
|
2154
|
+
|
2155
|
+
|
2156
|
+
class DescribeDeviceVirtualGroupsRequest(AbstractModel):
|
2157
|
+
"""DescribeDeviceVirtualGroups请求参数结构体
|
2158
|
+
|
2159
|
+
"""
|
2160
|
+
|
2161
|
+
def __init__(self):
|
2162
|
+
r"""
|
2163
|
+
:param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
2164
|
+
:type DomainInstanceId: str
|
2165
|
+
:param _Condition: 滤条件、分页参数 <li>Name - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li> <li>DeviceVirtualGroupName - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li>
|
2166
|
+
:type Condition: :class:`tencentcloud.ioa.v20220601.models.Condition`
|
2167
|
+
:param _OsType: 必填,系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
|
2168
|
+
:type OsType: int
|
2169
|
+
:param _VirtualGroupIds: 非必填,自定义分组ids
|
2170
|
+
:type VirtualGroupIds: list of int
|
2171
|
+
"""
|
2172
|
+
self._DomainInstanceId = None
|
2173
|
+
self._Condition = None
|
2174
|
+
self._OsType = None
|
2175
|
+
self._VirtualGroupIds = None
|
2176
|
+
|
2177
|
+
@property
|
2178
|
+
def DomainInstanceId(self):
|
2179
|
+
"""管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
2180
|
+
:rtype: str
|
2181
|
+
"""
|
2182
|
+
return self._DomainInstanceId
|
2183
|
+
|
2184
|
+
@DomainInstanceId.setter
|
2185
|
+
def DomainInstanceId(self, DomainInstanceId):
|
2186
|
+
self._DomainInstanceId = DomainInstanceId
|
2187
|
+
|
2188
|
+
@property
|
2189
|
+
def Condition(self):
|
2190
|
+
"""滤条件、分页参数 <li>Name - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li> <li>DeviceVirtualGroupName - String - 是否必填:否 - 操作符: like - 排序支持:否- 按终端自定义分组过滤。</li>
|
2191
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.Condition`
|
2192
|
+
"""
|
2193
|
+
return self._Condition
|
2194
|
+
|
2195
|
+
@Condition.setter
|
2196
|
+
def Condition(self, Condition):
|
2197
|
+
self._Condition = Condition
|
2198
|
+
|
2199
|
+
@property
|
2200
|
+
def OsType(self):
|
2201
|
+
"""必填,系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
|
2202
|
+
:rtype: int
|
2203
|
+
"""
|
2204
|
+
return self._OsType
|
2205
|
+
|
2206
|
+
@OsType.setter
|
2207
|
+
def OsType(self, OsType):
|
2208
|
+
self._OsType = OsType
|
2209
|
+
|
2210
|
+
@property
|
2211
|
+
def VirtualGroupIds(self):
|
2212
|
+
"""非必填,自定义分组ids
|
2213
|
+
:rtype: list of int
|
2214
|
+
"""
|
2215
|
+
return self._VirtualGroupIds
|
2216
|
+
|
2217
|
+
@VirtualGroupIds.setter
|
2218
|
+
def VirtualGroupIds(self, VirtualGroupIds):
|
2219
|
+
self._VirtualGroupIds = VirtualGroupIds
|
2220
|
+
|
2221
|
+
|
2222
|
+
def _deserialize(self, params):
|
2223
|
+
self._DomainInstanceId = params.get("DomainInstanceId")
|
2224
|
+
if params.get("Condition") is not None:
|
2225
|
+
self._Condition = Condition()
|
2226
|
+
self._Condition._deserialize(params.get("Condition"))
|
2227
|
+
self._OsType = params.get("OsType")
|
2228
|
+
self._VirtualGroupIds = params.get("VirtualGroupIds")
|
2229
|
+
memeber_set = set(params.keys())
|
2230
|
+
for name, value in vars(self).items():
|
2231
|
+
property_name = name[1:]
|
2232
|
+
if property_name in memeber_set:
|
2233
|
+
memeber_set.remove(property_name)
|
2234
|
+
if len(memeber_set) > 0:
|
2235
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2236
|
+
|
2237
|
+
|
2238
|
+
|
2239
|
+
class DescribeDeviceVirtualGroupsResponse(AbstractModel):
|
2240
|
+
"""DescribeDeviceVirtualGroups返回参数结构体
|
2241
|
+
|
2242
|
+
"""
|
2243
|
+
|
2244
|
+
def __init__(self):
|
2245
|
+
r"""
|
2246
|
+
:param _Data: 查询终端自定义分组的Data数据
|
2247
|
+
:type Data: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceVirtualGroupsPageRsp`
|
2248
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2249
|
+
:type RequestId: str
|
2250
|
+
"""
|
2251
|
+
self._Data = None
|
2252
|
+
self._RequestId = None
|
2253
|
+
|
2254
|
+
@property
|
2255
|
+
def Data(self):
|
2256
|
+
"""查询终端自定义分组的Data数据
|
2257
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceVirtualGroupsPageRsp`
|
2258
|
+
"""
|
2259
|
+
return self._Data
|
2260
|
+
|
2261
|
+
@Data.setter
|
2262
|
+
def Data(self, Data):
|
2263
|
+
self._Data = Data
|
2264
|
+
|
2265
|
+
@property
|
2266
|
+
def RequestId(self):
|
2267
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2268
|
+
:rtype: str
|
2269
|
+
"""
|
2270
|
+
return self._RequestId
|
2271
|
+
|
2272
|
+
@RequestId.setter
|
2273
|
+
def RequestId(self, RequestId):
|
2274
|
+
self._RequestId = RequestId
|
2275
|
+
|
2276
|
+
|
2277
|
+
def _deserialize(self, params):
|
2278
|
+
if params.get("Data") is not None:
|
2279
|
+
self._Data = DescribeDeviceVirtualGroupsPageRsp()
|
2280
|
+
self._Data._deserialize(params.get("Data"))
|
2281
|
+
self._RequestId = params.get("RequestId")
|
2282
|
+
|
2283
|
+
|
2098
2284
|
class DescribeDevicesPageRsp(AbstractModel):
|
2099
2285
|
"""分页的data数据
|
2100
2286
|
|
@@ -5051,6 +5237,117 @@ class DeviceServiceInfo(AbstractModel):
|
|
5051
5237
|
|
5052
5238
|
|
5053
5239
|
|
5240
|
+
class DeviceVirtualDeviceGroupsDetail(AbstractModel):
|
5241
|
+
"""终端自定义分组列表数据
|
5242
|
+
|
5243
|
+
"""
|
5244
|
+
|
5245
|
+
def __init__(self):
|
5246
|
+
r"""
|
5247
|
+
:param _Id: 终端自定义分组id
|
5248
|
+
:type Id: int
|
5249
|
+
:param _DeviceVirtualGroupName: 自定义分组名称
|
5250
|
+
:type DeviceVirtualGroupName: str
|
5251
|
+
:param _DeviceCount: 设备数
|
5252
|
+
:type DeviceCount: int
|
5253
|
+
:param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios )
|
5254
|
+
:type OsType: int
|
5255
|
+
:param _Itime: 创建时间
|
5256
|
+
:type Itime: str
|
5257
|
+
:param _Utime: 更新时间
|
5258
|
+
:type Utime: str
|
5259
|
+
"""
|
5260
|
+
self._Id = None
|
5261
|
+
self._DeviceVirtualGroupName = None
|
5262
|
+
self._DeviceCount = None
|
5263
|
+
self._OsType = None
|
5264
|
+
self._Itime = None
|
5265
|
+
self._Utime = None
|
5266
|
+
|
5267
|
+
@property
|
5268
|
+
def Id(self):
|
5269
|
+
"""终端自定义分组id
|
5270
|
+
:rtype: int
|
5271
|
+
"""
|
5272
|
+
return self._Id
|
5273
|
+
|
5274
|
+
@Id.setter
|
5275
|
+
def Id(self, Id):
|
5276
|
+
self._Id = Id
|
5277
|
+
|
5278
|
+
@property
|
5279
|
+
def DeviceVirtualGroupName(self):
|
5280
|
+
"""自定义分组名称
|
5281
|
+
:rtype: str
|
5282
|
+
"""
|
5283
|
+
return self._DeviceVirtualGroupName
|
5284
|
+
|
5285
|
+
@DeviceVirtualGroupName.setter
|
5286
|
+
def DeviceVirtualGroupName(self, DeviceVirtualGroupName):
|
5287
|
+
self._DeviceVirtualGroupName = DeviceVirtualGroupName
|
5288
|
+
|
5289
|
+
@property
|
5290
|
+
def DeviceCount(self):
|
5291
|
+
"""设备数
|
5292
|
+
:rtype: int
|
5293
|
+
"""
|
5294
|
+
return self._DeviceCount
|
5295
|
+
|
5296
|
+
@DeviceCount.setter
|
5297
|
+
def DeviceCount(self, DeviceCount):
|
5298
|
+
self._DeviceCount = DeviceCount
|
5299
|
+
|
5300
|
+
@property
|
5301
|
+
def OsType(self):
|
5302
|
+
"""系统类型(0: win,1:linux,2: mac,4:android,5:ios )
|
5303
|
+
:rtype: int
|
5304
|
+
"""
|
5305
|
+
return self._OsType
|
5306
|
+
|
5307
|
+
@OsType.setter
|
5308
|
+
def OsType(self, OsType):
|
5309
|
+
self._OsType = OsType
|
5310
|
+
|
5311
|
+
@property
|
5312
|
+
def Itime(self):
|
5313
|
+
"""创建时间
|
5314
|
+
:rtype: str
|
5315
|
+
"""
|
5316
|
+
return self._Itime
|
5317
|
+
|
5318
|
+
@Itime.setter
|
5319
|
+
def Itime(self, Itime):
|
5320
|
+
self._Itime = Itime
|
5321
|
+
|
5322
|
+
@property
|
5323
|
+
def Utime(self):
|
5324
|
+
"""更新时间
|
5325
|
+
:rtype: str
|
5326
|
+
"""
|
5327
|
+
return self._Utime
|
5328
|
+
|
5329
|
+
@Utime.setter
|
5330
|
+
def Utime(self, Utime):
|
5331
|
+
self._Utime = Utime
|
5332
|
+
|
5333
|
+
|
5334
|
+
def _deserialize(self, params):
|
5335
|
+
self._Id = params.get("Id")
|
5336
|
+
self._DeviceVirtualGroupName = params.get("DeviceVirtualGroupName")
|
5337
|
+
self._DeviceCount = params.get("DeviceCount")
|
5338
|
+
self._OsType = params.get("OsType")
|
5339
|
+
self._Itime = params.get("Itime")
|
5340
|
+
self._Utime = params.get("Utime")
|
5341
|
+
memeber_set = set(params.keys())
|
5342
|
+
for name, value in vars(self).items():
|
5343
|
+
property_name = name[1:]
|
5344
|
+
if property_name in memeber_set:
|
5345
|
+
memeber_set.remove(property_name)
|
5346
|
+
if len(memeber_set) > 0:
|
5347
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
5348
|
+
|
5349
|
+
|
5350
|
+
|
5054
5351
|
class Filter(AbstractModel):
|
5055
5352
|
"""Filters 条件过滤
|
5056
5353
|
|
@@ -15650,6 +15650,12 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
15650
15650
|
:type VoucherIds: list of str
|
15651
15651
|
:param _Zones: 变更部署时指定的新可用区列表,第1个为主可用区,其余为从可用区
|
15652
15652
|
:type Zones: list of str
|
15653
|
+
:param _SwitchStartTime: 切换开始时间,格式如: "2019-12-12 07:00:00"。开始时间必须在当前时间一个小时以后,3天以内。
|
15654
|
+
:type SwitchStartTime: str
|
15655
|
+
:param _SwitchEndTime: 切换结束时间, 格式如: "2019-12-12 07:15:00",结束时间必须大于开始时间。
|
15656
|
+
:type SwitchEndTime: str
|
15657
|
+
:param _SwitchAutoRetry: 是否自动重试。 0:不自动重试 1:自动重试
|
15658
|
+
:type SwitchAutoRetry: int
|
15653
15659
|
"""
|
15654
15660
|
self._InstanceId = None
|
15655
15661
|
self._Memory = None
|
@@ -15657,6 +15663,9 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
15657
15663
|
self._AutoVoucher = None
|
15658
15664
|
self._VoucherIds = None
|
15659
15665
|
self._Zones = None
|
15666
|
+
self._SwitchStartTime = None
|
15667
|
+
self._SwitchEndTime = None
|
15668
|
+
self._SwitchAutoRetry = None
|
15660
15669
|
|
15661
15670
|
@property
|
15662
15671
|
def InstanceId(self):
|
@@ -15726,6 +15735,39 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
15726
15735
|
def Zones(self, Zones):
|
15727
15736
|
self._Zones = Zones
|
15728
15737
|
|
15738
|
+
@property
|
15739
|
+
def SwitchStartTime(self):
|
15740
|
+
"""切换开始时间,格式如: "2019-12-12 07:00:00"。开始时间必须在当前时间一个小时以后,3天以内。
|
15741
|
+
:rtype: str
|
15742
|
+
"""
|
15743
|
+
return self._SwitchStartTime
|
15744
|
+
|
15745
|
+
@SwitchStartTime.setter
|
15746
|
+
def SwitchStartTime(self, SwitchStartTime):
|
15747
|
+
self._SwitchStartTime = SwitchStartTime
|
15748
|
+
|
15749
|
+
@property
|
15750
|
+
def SwitchEndTime(self):
|
15751
|
+
"""切换结束时间, 格式如: "2019-12-12 07:15:00",结束时间必须大于开始时间。
|
15752
|
+
:rtype: str
|
15753
|
+
"""
|
15754
|
+
return self._SwitchEndTime
|
15755
|
+
|
15756
|
+
@SwitchEndTime.setter
|
15757
|
+
def SwitchEndTime(self, SwitchEndTime):
|
15758
|
+
self._SwitchEndTime = SwitchEndTime
|
15759
|
+
|
15760
|
+
@property
|
15761
|
+
def SwitchAutoRetry(self):
|
15762
|
+
"""是否自动重试。 0:不自动重试 1:自动重试
|
15763
|
+
:rtype: int
|
15764
|
+
"""
|
15765
|
+
return self._SwitchAutoRetry
|
15766
|
+
|
15767
|
+
@SwitchAutoRetry.setter
|
15768
|
+
def SwitchAutoRetry(self, SwitchAutoRetry):
|
15769
|
+
self._SwitchAutoRetry = SwitchAutoRetry
|
15770
|
+
|
15729
15771
|
|
15730
15772
|
def _deserialize(self, params):
|
15731
15773
|
self._InstanceId = params.get("InstanceId")
|
@@ -15734,6 +15776,9 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
15734
15776
|
self._AutoVoucher = params.get("AutoVoucher")
|
15735
15777
|
self._VoucherIds = params.get("VoucherIds")
|
15736
15778
|
self._Zones = params.get("Zones")
|
15779
|
+
self._SwitchStartTime = params.get("SwitchStartTime")
|
15780
|
+
self._SwitchEndTime = params.get("SwitchEndTime")
|
15781
|
+
self._SwitchAutoRetry = params.get("SwitchAutoRetry")
|
15737
15782
|
memeber_set = set(params.keys())
|
15738
15783
|
for name, value in vars(self).items():
|
15739
15784
|
property_name = name[1:]
|
@@ -7242,6 +7242,9 @@ class BizCatalogsInfo(AbstractModel):
|
|
7242
7242
|
:param _Position: 类目顺序
|
7243
7243
|
注意:此字段可能返回 null,表示取不到有效值。
|
7244
7244
|
:type Position: int
|
7245
|
+
:param _NameEn: 类目名称英文
|
7246
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7247
|
+
:type NameEn: str
|
7245
7248
|
"""
|
7246
7249
|
self._AppId = None
|
7247
7250
|
self._Id = None
|
@@ -7249,6 +7252,7 @@ class BizCatalogsInfo(AbstractModel):
|
|
7249
7252
|
self._Name = None
|
7250
7253
|
self._ParentId = None
|
7251
7254
|
self._Position = None
|
7255
|
+
self._NameEn = None
|
7252
7256
|
|
7253
7257
|
@property
|
7254
7258
|
def AppId(self):
|
@@ -7322,6 +7326,18 @@ class BizCatalogsInfo(AbstractModel):
|
|
7322
7326
|
def Position(self, Position):
|
7323
7327
|
self._Position = Position
|
7324
7328
|
|
7329
|
+
@property
|
7330
|
+
def NameEn(self):
|
7331
|
+
"""类目名称英文
|
7332
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
7333
|
+
:rtype: str
|
7334
|
+
"""
|
7335
|
+
return self._NameEn
|
7336
|
+
|
7337
|
+
@NameEn.setter
|
7338
|
+
def NameEn(self, NameEn):
|
7339
|
+
self._NameEn = NameEn
|
7340
|
+
|
7325
7341
|
|
7326
7342
|
def _deserialize(self, params):
|
7327
7343
|
self._AppId = params.get("AppId")
|
@@ -7330,6 +7346,7 @@ class BizCatalogsInfo(AbstractModel):
|
|
7330
7346
|
self._Name = params.get("Name")
|
7331
7347
|
self._ParentId = params.get("ParentId")
|
7332
7348
|
self._Position = params.get("Position")
|
7349
|
+
self._NameEn = params.get("NameEn")
|
7333
7350
|
memeber_set = set(params.keys())
|
7334
7351
|
for name, value in vars(self).items():
|
7335
7352
|
property_name = name[1:]
|
{tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1417.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256
|
53
|
+
tencentcloud/__init__.py,sha256=erX4Mg5ab75ewqUBekh7-ZHlfJ3IVKhW0STP4m23F6U,631
|
54
54
|
tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aai/v20180522/aai_client.py,sha256=TS0CfKHCyAf0JjZWSnoCkz26lWtT4jwp9-usOLcAJEE,5470
|
@@ -267,12 +267,12 @@ tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
267
267
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
268
268
|
tencentcloud/ccc/v20200210/ccc_client.py,sha256=p2J1TM-8_SJA7daL4IqgdlPlJhbq_ZfnIGNrAqzes2A,70774
|
269
269
|
tencentcloud/ccc/v20200210/errorcodes.py,sha256=Vkoj4I3eOZ5bijiXLpGX97G0NAncJVBoajjAp5mRtq8,6762
|
270
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
270
|
+
tencentcloud/ccc/v20200210/models.py,sha256=ibzP3WjHkQ3jKgyPBFS0kuHEfK2WyDPPz0YJpzA9caA,550718
|
271
271
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
272
272
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
273
|
-
tencentcloud/cdb/v20170320/cdb_client.py,sha256=
|
273
|
+
tencentcloud/cdb/v20170320/cdb_client.py,sha256=PveIFPBAOMOs3g34lpAxXa6n3QvX-a10cd5_bpQu4MA,175377
|
274
274
|
tencentcloud/cdb/v20170320/errorcodes.py,sha256=l7DI75aQ42t34gyB2QgU-Hfx9IoALpZuZo1mZPcUtd4,20991
|
275
|
-
tencentcloud/cdb/v20170320/models.py,sha256=
|
275
|
+
tencentcloud/cdb/v20170320/models.py,sha256=cygpWHH8-Y6GsYzgpn55o4vVzgAB8l_hbSbs_GKbRxU,1279715
|
276
276
|
tencentcloud/cdc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
277
277
|
tencentcloud/cdc/v20201214/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
278
|
tencentcloud/cdc/v20201214/cdc_client.py,sha256=so0qCYvQFt8BNQ5ZXogenM23WZ4v6v_K51B7bBPFpl4,22415
|
@@ -466,7 +466,7 @@ tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
466
466
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
467
467
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=EMgP4odADt9hKjiA9GFdTcdAkPRV27lEIOjlY38bPp0,475001
|
468
468
|
tencentcloud/cwp/v20180228/errorcodes.py,sha256=GGLopl1BdrhED3VJdN7OTgmr88O3OdihwPK-L0EGp78,4375
|
469
|
-
tencentcloud/cwp/v20180228/models.py,sha256=
|
469
|
+
tencentcloud/cwp/v20180228/models.py,sha256=5hq0uelnZ3A7wTD8CWqiuAv9pC__zcfPySEJpiCj5g0,3042824
|
470
470
|
tencentcloud/cws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
471
471
|
tencentcloud/cws/v20180312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
472
472
|
tencentcloud/cws/v20180312/cws_client.py,sha256=-8lLzGt9uiTS34hEaEuHe12zQS9mufBhK-dDKmfMcvs,18566
|
@@ -518,9 +518,9 @@ tencentcloud/dcdb/v20180411/errorcodes.py,sha256=KOnLE9LUBZHBp2nAn3095YZsZ5S_UtM
|
|
518
518
|
tencentcloud/dcdb/v20180411/models.py,sha256=YKApUaP7nC4Sk2YO23SuGVaLsbOysjK8A3kioSaSF8Y,550703
|
519
519
|
tencentcloud/dlc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
520
520
|
tencentcloud/dlc/v20210125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
521
|
-
tencentcloud/dlc/v20210125/dlc_client.py,sha256=
|
521
|
+
tencentcloud/dlc/v20210125/dlc_client.py,sha256=NkRfIfu2lU5VhOSHMlNbi4dGIGhkzBH8WBjUDexExhg,138057
|
522
522
|
tencentcloud/dlc/v20210125/errorcodes.py,sha256=rTUwGVyMW0Vdw-WGK5avRLg4hVfB7jmTlLAx5BMY6h8,30656
|
523
|
-
tencentcloud/dlc/v20210125/models.py,sha256=
|
523
|
+
tencentcloud/dlc/v20210125/models.py,sha256=eUTifRHw8vULuDAC1cSx__W7tNvdIf7XRCt6_0YSo1Q,1155509
|
524
524
|
tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
525
525
|
tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
526
526
|
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=LPoG7SLOwXw580n_H_cz-pX3hpfW_vRVJ2Nc0m0xhRc,83375
|
@@ -597,8 +597,8 @@ tencentcloud/eis/v20210601/models.py,sha256=d6g9nHAm8WXpTtxFmAZm6Hiq3h3DpsO1-bAG
|
|
597
597
|
tencentcloud/emr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
598
598
|
tencentcloud/emr/v20190103/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
599
599
|
tencentcloud/emr/v20190103/emr_client.py,sha256=p7VF7KkP29C-UGPBNy467s2VjyYF74_ZEeaz34_PYQY,83133
|
600
|
-
tencentcloud/emr/v20190103/errorcodes.py,sha256=
|
601
|
-
tencentcloud/emr/v20190103/models.py,sha256=
|
600
|
+
tencentcloud/emr/v20190103/errorcodes.py,sha256=w-psMFvzu7BBlr2TLoDJJLUJUWsETjyDWgXoM763qQE,21631
|
601
|
+
tencentcloud/emr/v20190103/models.py,sha256=zz10wFyqNMwFGSR1IVkegvOvzWgfZPeE3mX6qtEYmyY,1188607
|
602
602
|
tencentcloud/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
603
603
|
tencentcloud/es/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
604
604
|
tencentcloud/es/v20180416/errorcodes.py,sha256=InpWVh8N5W-qw6Ha4EIiZQB551mT4xKm2dliaxG-zF0,25273
|
@@ -669,8 +669,8 @@ tencentcloud/gpm/v20200820/models.py,sha256=S-5V151ImDvbENZIZjZorPVjtysBtK-bvu01
|
|
669
669
|
tencentcloud/gs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
670
670
|
tencentcloud/gs/v20191118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
671
671
|
tencentcloud/gs/v20191118/errorcodes.py,sha256=-dnux9oX7ak2LRpORaevmrDFu5bQFaJA7zDxln-wLgY,3076
|
672
|
-
tencentcloud/gs/v20191118/gs_client.py,sha256=
|
673
|
-
tencentcloud/gs/v20191118/models.py,sha256=
|
672
|
+
tencentcloud/gs/v20191118/gs_client.py,sha256=C7Fg2Htz2IA6eIwo2-8PzJhWyn-aPl6LQ1D1ZbhqMas,74368
|
673
|
+
tencentcloud/gs/v20191118/models.py,sha256=v43l6PPUXMzE8BXF4i7C_AcFwCxAsNyvQUotHXQpH54,328709
|
674
674
|
tencentcloud/gse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
675
675
|
tencentcloud/gse/v20191112/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
676
676
|
tencentcloud/gse/v20191112/errorcodes.py,sha256=nMYC_hPmvb5zGv9sQiMJpZqV3WQaPXApY3apilk_TFI,2551
|
@@ -767,8 +767,8 @@ tencentcloud/ims/v20201229/models.py,sha256=EyFrGV4SHoQq6Ccs6v3OlKxiURxPDyBqlx-Q
|
|
767
767
|
tencentcloud/ioa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
768
768
|
tencentcloud/ioa/v20220601/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
769
769
|
tencentcloud/ioa/v20220601/errorcodes.py,sha256=JY6FGE9O7HVrpvSREIX5_beLetgYnlNk6uGP8y0enoQ,2372
|
770
|
-
tencentcloud/ioa/v20220601/ioa_client.py,sha256=
|
771
|
-
tencentcloud/ioa/v20220601/models.py,sha256=
|
770
|
+
tencentcloud/ioa/v20220601/ioa_client.py,sha256=kXs98ag-c6CswQlDWvRLckWusIiKhvsQnXwqdBYt-gU,16832
|
771
|
+
tencentcloud/ioa/v20220601/models.py,sha256=7daQoZHZwFcDdEMCDr9oMeGpErnqy8G6x2RO2opxt0c,200755
|
772
772
|
tencentcloud/iot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
773
773
|
tencentcloud/iot/v20180123/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
774
774
|
tencentcloud/iot/v20180123/errorcodes.py,sha256=0OH9Mmv_MwE4IQh0gCD0DuwZw4Rg2EZ2gX97zEnYgaE,6136
|
@@ -879,7 +879,7 @@ tencentcloud/mariadb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
879
879
|
tencentcloud/mariadb/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
880
880
|
tencentcloud/mariadb/v20170312/errorcodes.py,sha256=tMECURjyGiwkCoTeUl-VdXQVlf073f38UbswACV0ChQ,15211
|
881
881
|
tencentcloud/mariadb/v20170312/mariadb_client.py,sha256=-PXsXB71z0x6C2VQ6jgU62v3CEGlDBQ3XYuMFLlePx0,76995
|
882
|
-
tencentcloud/mariadb/v20170312/models.py,sha256=
|
882
|
+
tencentcloud/mariadb/v20170312/models.py,sha256=91eyjk7UZuz16ICiNQyiXNYU8d28qrg7_RCHkRhVKuU,491610
|
883
883
|
tencentcloud/market/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
884
884
|
tencentcloud/market/v20191010/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
885
885
|
tencentcloud/market/v20191010/errorcodes.py,sha256=dVcAFnqa3EQWa3iCzFxA5rHaGesSokJPPtkuaK7TW44,914
|
@@ -1481,7 +1481,7 @@ tencentcloud/wav/v20210129/wav_client.py,sha256=QtF-tqavJuw9k9u1kBCqaOz9z9Nkp_Bj
|
|
1481
1481
|
tencentcloud/wedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1482
1482
|
tencentcloud/wedata/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1483
1483
|
tencentcloud/wedata/v20210820/errorcodes.py,sha256=pEK1cmduWA1tuN07nqYx6exrnBPzCugTINaFiQ6W5E8,4579
|
1484
|
-
tencentcloud/wedata/v20210820/models.py,sha256=
|
1484
|
+
tencentcloud/wedata/v20210820/models.py,sha256=6lbDIMj7cdzUtEci6PrxcNt_cNEBLmd4CilKT5scj8A,3302746
|
1485
1485
|
tencentcloud/wedata/v20210820/wedata_client.py,sha256=YnSIy8rzv0zNZBPPcEjlp-kviXKaMu9VMJmNw_33Vaw,261743
|
1486
1486
|
tencentcloud/weilingwith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1487
1487
|
tencentcloud/weilingwith/v20230427/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1517,8 +1517,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1517
1517
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=YV391ulIJZVFPtkkzGWg4n2fbxEDxJh5ji0uglbVnA0,1274
|
1518
1518
|
tencentcloud/yunsou/v20191115/models.py,sha256=jTr6sa2LfXEBd7uOgC19JRTLBXZmLGyP3QjNfGqLPyo,27653
|
1519
1519
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=H2Kzv6ow4QKnLc63655ffyUZBaGSczEYf3R5UTjcjGA,2714
|
1520
|
-
tencentcloud_sdk_python-3.0.
|
1521
|
-
tencentcloud_sdk_python-3.0.
|
1522
|
-
tencentcloud_sdk_python-3.0.
|
1523
|
-
tencentcloud_sdk_python-3.0.
|
1524
|
-
tencentcloud_sdk_python-3.0.
|
1520
|
+
tencentcloud_sdk_python-3.0.1417.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1521
|
+
tencentcloud_sdk_python-3.0.1417.dist-info/METADATA,sha256=NjVnWfU5T6J6NuTdB62GqXfalXhn0Zf1DI0PIp1zrLA,1613
|
1522
|
+
tencentcloud_sdk_python-3.0.1417.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1523
|
+
tencentcloud_sdk_python-3.0.1417.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1524
|
+
tencentcloud_sdk_python-3.0.1417.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1417.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1416.dist-info → tencentcloud_sdk_python-3.0.1417.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|