tencentcloud-sdk-python 3.0.1321__py2.py3-none-any.whl → 3.0.1322__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.
Files changed (32) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/billing/v20180709/billing_client.py +0 -75
  3. tencentcloud/billing/v20180709/models.py +2 -833
  4. tencentcloud/facefusion/v20220927/facefusion_client.py +0 -1
  5. tencentcloud/gme/v20180711/models.py +0 -12
  6. tencentcloud/keewidb/v20220308/keewidb_client.py +1 -0
  7. tencentcloud/lcic/v20220817/models.py +0 -4
  8. tencentcloud/lighthouse/v20200324/models.py +4 -16
  9. tencentcloud/lkeap/v20240522/lkeap_client.py +4 -4
  10. tencentcloud/lkeap/v20240522/models.py +4 -6
  11. tencentcloud/mna/v20210119/mna_client.py +46 -0
  12. tencentcloud/mna/v20210119/models.py +424 -0
  13. tencentcloud/monitor/v20230616/__init__.py +0 -0
  14. tencentcloud/monitor/v20230616/errorcodes.py +30 -0
  15. tencentcloud/monitor/v20230616/models.py +494 -0
  16. tencentcloud/monitor/v20230616/monitor_client.py +55 -0
  17. tencentcloud/mqtt/v20240516/errorcodes.py +12 -0
  18. tencentcloud/mqtt/v20240516/models.py +1305 -116
  19. tencentcloud/mqtt/v20240516/mqtt_client.py +185 -0
  20. tencentcloud/ocr/v20181119/models.py +15 -0
  21. tencentcloud/ssl/v20191205/models.py +2 -2
  22. tencentcloud/trtc/v20190722/models.py +0 -6
  23. tencentcloud/vclm/v20240523/errorcodes.py +0 -72
  24. tencentcloud/vclm/v20240523/models.py +1 -854
  25. tencentcloud/vclm/v20240523/vclm_client.py +0 -104
  26. tencentcloud/wedata/v20210820/models.py +34 -0
  27. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  28. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/METADATA +1 -1
  29. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/RECORD +32 -28
  30. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/LICENSE +0 -0
  31. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/WHEEL +0 -0
  32. {tencentcloud_sdk_python-3.0.1321.dist-info → tencentcloud_sdk_python-3.0.1322.dist-info}/top_level.txt +0 -0
@@ -303,6 +303,57 @@ class ActivateHardwareResponse(AbstractModel):
303
303
  self._RequestId = params.get("RequestId")
304
304
 
305
305
 
306
+ class ActiveDeviceList(AbstractModel):
307
+ """激活设备数统计
308
+
309
+ """
310
+
311
+ def __init__(self):
312
+ r"""
313
+ :param _Count: 数量
314
+ :type Count: int
315
+ :param _Time: 时间
316
+ :type Time: str
317
+ """
318
+ self._Count = None
319
+ self._Time = None
320
+
321
+ @property
322
+ def Count(self):
323
+ """数量
324
+ :rtype: int
325
+ """
326
+ return self._Count
327
+
328
+ @Count.setter
329
+ def Count(self, Count):
330
+ self._Count = Count
331
+
332
+ @property
333
+ def Time(self):
334
+ """时间
335
+ :rtype: str
336
+ """
337
+ return self._Time
338
+
339
+ @Time.setter
340
+ def Time(self, Time):
341
+ self._Time = Time
342
+
343
+
344
+ def _deserialize(self, params):
345
+ self._Count = params.get("Count")
346
+ self._Time = params.get("Time")
347
+ memeber_set = set(params.keys())
348
+ for name, value in vars(self).items():
349
+ property_name = name[1:]
350
+ if property_name in memeber_set:
351
+ memeber_set.remove(property_name)
352
+ if len(memeber_set) > 0:
353
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
354
+
355
+
356
+
306
357
  class AddDeviceRequest(AbstractModel):
307
358
  """AddDevice请求参数结构体
308
359
 
@@ -2563,6 +2614,145 @@ class DevicePayModeInfo(AbstractModel):
2563
2614
 
2564
2615
 
2565
2616
 
2617
+ class DownloadActiveDeviceCountRequest(AbstractModel):
2618
+ """DownloadActiveDeviceCount请求参数结构体
2619
+
2620
+ """
2621
+
2622
+ def __init__(self):
2623
+ r"""
2624
+ :param _Period: 查询粒度。0:day, 1:week, 2:month, 不传默认为day
2625
+ :type Period: int
2626
+ :param _StartTime: 开始时间。单位秒
2627
+ :type StartTime: int
2628
+ :param _EndTime: 结束时间。单位秒
2629
+ :type EndTime: int
2630
+ :param _DevGroup: 设备组, 不传查询全部
2631
+ :type DevGroup: str
2632
+ :param _LicenseType: license类型, 不传查询全部, 1: 租户月付,2:厂商月付,3:永久授权
2633
+ :type LicenseType: int
2634
+ """
2635
+ self._Period = None
2636
+ self._StartTime = None
2637
+ self._EndTime = None
2638
+ self._DevGroup = None
2639
+ self._LicenseType = None
2640
+
2641
+ @property
2642
+ def Period(self):
2643
+ """查询粒度。0:day, 1:week, 2:month, 不传默认为day
2644
+ :rtype: int
2645
+ """
2646
+ return self._Period
2647
+
2648
+ @Period.setter
2649
+ def Period(self, Period):
2650
+ self._Period = Period
2651
+
2652
+ @property
2653
+ def StartTime(self):
2654
+ """开始时间。单位秒
2655
+ :rtype: int
2656
+ """
2657
+ return self._StartTime
2658
+
2659
+ @StartTime.setter
2660
+ def StartTime(self, StartTime):
2661
+ self._StartTime = StartTime
2662
+
2663
+ @property
2664
+ def EndTime(self):
2665
+ """结束时间。单位秒
2666
+ :rtype: int
2667
+ """
2668
+ return self._EndTime
2669
+
2670
+ @EndTime.setter
2671
+ def EndTime(self, EndTime):
2672
+ self._EndTime = EndTime
2673
+
2674
+ @property
2675
+ def DevGroup(self):
2676
+ """设备组, 不传查询全部
2677
+ :rtype: str
2678
+ """
2679
+ return self._DevGroup
2680
+
2681
+ @DevGroup.setter
2682
+ def DevGroup(self, DevGroup):
2683
+ self._DevGroup = DevGroup
2684
+
2685
+ @property
2686
+ def LicenseType(self):
2687
+ """license类型, 不传查询全部, 1: 租户月付,2:厂商月付,3:永久授权
2688
+ :rtype: int
2689
+ """
2690
+ return self._LicenseType
2691
+
2692
+ @LicenseType.setter
2693
+ def LicenseType(self, LicenseType):
2694
+ self._LicenseType = LicenseType
2695
+
2696
+
2697
+ def _deserialize(self, params):
2698
+ self._Period = params.get("Period")
2699
+ self._StartTime = params.get("StartTime")
2700
+ self._EndTime = params.get("EndTime")
2701
+ self._DevGroup = params.get("DevGroup")
2702
+ self._LicenseType = params.get("LicenseType")
2703
+ memeber_set = set(params.keys())
2704
+ for name, value in vars(self).items():
2705
+ property_name = name[1:]
2706
+ if property_name in memeber_set:
2707
+ memeber_set.remove(property_name)
2708
+ if len(memeber_set) > 0:
2709
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2710
+
2711
+
2712
+
2713
+ class DownloadActiveDeviceCountResponse(AbstractModel):
2714
+ """DownloadActiveDeviceCount返回参数结构体
2715
+
2716
+ """
2717
+
2718
+ def __init__(self):
2719
+ r"""
2720
+ :param _FilePath: URL地址
2721
+ :type FilePath: str
2722
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2723
+ :type RequestId: str
2724
+ """
2725
+ self._FilePath = None
2726
+ self._RequestId = None
2727
+
2728
+ @property
2729
+ def FilePath(self):
2730
+ """URL地址
2731
+ :rtype: str
2732
+ """
2733
+ return self._FilePath
2734
+
2735
+ @FilePath.setter
2736
+ def FilePath(self, FilePath):
2737
+ self._FilePath = FilePath
2738
+
2739
+ @property
2740
+ def RequestId(self):
2741
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2742
+ :rtype: str
2743
+ """
2744
+ return self._RequestId
2745
+
2746
+ @RequestId.setter
2747
+ def RequestId(self, RequestId):
2748
+ self._RequestId = RequestId
2749
+
2750
+
2751
+ def _deserialize(self, params):
2752
+ self._FilePath = params.get("FilePath")
2753
+ self._RequestId = params.get("RequestId")
2754
+
2755
+
2566
2756
  class ExpectedThreshold(AbstractModel):
2567
2757
  """用户期望门限
2568
2758
 
@@ -2979,6 +3169,240 @@ DEVICE_5_FLOW_500G,分别代表20G、50G、100G、500G档位的流量包。
2979
3169
 
2980
3170
 
2981
3171
 
3172
+ class GetActiveDeviceCountRequest(AbstractModel):
3173
+ """GetActiveDeviceCount请求参数结构体
3174
+
3175
+ """
3176
+
3177
+ def __init__(self):
3178
+ r"""
3179
+ :param _Period: 查询粒度。0:day, 1:week, 2:month, 不传默认为day
3180
+ :type Period: int
3181
+ :param _StartTime: 开始时间。单位秒
3182
+ :type StartTime: int
3183
+ :param _EndTime: 结束时间。单位秒
3184
+ :type EndTime: int
3185
+ :param _DevGroup: 设备组, 不传查询全部
3186
+ :type DevGroup: str
3187
+ :param _LicenseType: license类型, 不传查询全部, 1: 租户月付,2:厂商月付,3:永久授权
3188
+ :type LicenseType: int
3189
+ """
3190
+ self._Period = None
3191
+ self._StartTime = None
3192
+ self._EndTime = None
3193
+ self._DevGroup = None
3194
+ self._LicenseType = None
3195
+
3196
+ @property
3197
+ def Period(self):
3198
+ """查询粒度。0:day, 1:week, 2:month, 不传默认为day
3199
+ :rtype: int
3200
+ """
3201
+ return self._Period
3202
+
3203
+ @Period.setter
3204
+ def Period(self, Period):
3205
+ self._Period = Period
3206
+
3207
+ @property
3208
+ def StartTime(self):
3209
+ """开始时间。单位秒
3210
+ :rtype: int
3211
+ """
3212
+ return self._StartTime
3213
+
3214
+ @StartTime.setter
3215
+ def StartTime(self, StartTime):
3216
+ self._StartTime = StartTime
3217
+
3218
+ @property
3219
+ def EndTime(self):
3220
+ """结束时间。单位秒
3221
+ :rtype: int
3222
+ """
3223
+ return self._EndTime
3224
+
3225
+ @EndTime.setter
3226
+ def EndTime(self, EndTime):
3227
+ self._EndTime = EndTime
3228
+
3229
+ @property
3230
+ def DevGroup(self):
3231
+ """设备组, 不传查询全部
3232
+ :rtype: str
3233
+ """
3234
+ return self._DevGroup
3235
+
3236
+ @DevGroup.setter
3237
+ def DevGroup(self, DevGroup):
3238
+ self._DevGroup = DevGroup
3239
+
3240
+ @property
3241
+ def LicenseType(self):
3242
+ """license类型, 不传查询全部, 1: 租户月付,2:厂商月付,3:永久授权
3243
+ :rtype: int
3244
+ """
3245
+ return self._LicenseType
3246
+
3247
+ @LicenseType.setter
3248
+ def LicenseType(self, LicenseType):
3249
+ self._LicenseType = LicenseType
3250
+
3251
+
3252
+ def _deserialize(self, params):
3253
+ self._Period = params.get("Period")
3254
+ self._StartTime = params.get("StartTime")
3255
+ self._EndTime = params.get("EndTime")
3256
+ self._DevGroup = params.get("DevGroup")
3257
+ self._LicenseType = params.get("LicenseType")
3258
+ memeber_set = set(params.keys())
3259
+ for name, value in vars(self).items():
3260
+ property_name = name[1:]
3261
+ if property_name in memeber_set:
3262
+ memeber_set.remove(property_name)
3263
+ if len(memeber_set) > 0:
3264
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
3265
+
3266
+
3267
+
3268
+ class GetActiveDeviceCountResponse(AbstractModel):
3269
+ """GetActiveDeviceCount返回参数结构体
3270
+
3271
+ """
3272
+
3273
+ def __init__(self):
3274
+ r"""
3275
+ :param _ActiveDeviceList: 激活设备统计
3276
+ :type ActiveDeviceList: list of ActiveDeviceList
3277
+ :param _Period: 查询粒度,0:day, 1:week, 2:month, 不传默认为day
3278
+ :type Period: int
3279
+ :param _StartTime: 开始时间
3280
+ :type StartTime: str
3281
+ :param _EndTime: 结束时间
3282
+ :type EndTime: str
3283
+ :param _DevGroup: 设备组
3284
+ :type DevGroup: str
3285
+ :param _LicenseType: license类型, 不传查询全部, 1: 租户月付,2:厂商月付,3:永久授权
3286
+ :type LicenseType: str
3287
+ :param _AppId: 租户ID
3288
+ :type AppId: str
3289
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3290
+ :type RequestId: str
3291
+ """
3292
+ self._ActiveDeviceList = None
3293
+ self._Period = None
3294
+ self._StartTime = None
3295
+ self._EndTime = None
3296
+ self._DevGroup = None
3297
+ self._LicenseType = None
3298
+ self._AppId = None
3299
+ self._RequestId = None
3300
+
3301
+ @property
3302
+ def ActiveDeviceList(self):
3303
+ """激活设备统计
3304
+ :rtype: list of ActiveDeviceList
3305
+ """
3306
+ return self._ActiveDeviceList
3307
+
3308
+ @ActiveDeviceList.setter
3309
+ def ActiveDeviceList(self, ActiveDeviceList):
3310
+ self._ActiveDeviceList = ActiveDeviceList
3311
+
3312
+ @property
3313
+ def Period(self):
3314
+ """查询粒度,0:day, 1:week, 2:month, 不传默认为day
3315
+ :rtype: int
3316
+ """
3317
+ return self._Period
3318
+
3319
+ @Period.setter
3320
+ def Period(self, Period):
3321
+ self._Period = Period
3322
+
3323
+ @property
3324
+ def StartTime(self):
3325
+ """开始时间
3326
+ :rtype: str
3327
+ """
3328
+ return self._StartTime
3329
+
3330
+ @StartTime.setter
3331
+ def StartTime(self, StartTime):
3332
+ self._StartTime = StartTime
3333
+
3334
+ @property
3335
+ def EndTime(self):
3336
+ """结束时间
3337
+ :rtype: str
3338
+ """
3339
+ return self._EndTime
3340
+
3341
+ @EndTime.setter
3342
+ def EndTime(self, EndTime):
3343
+ self._EndTime = EndTime
3344
+
3345
+ @property
3346
+ def DevGroup(self):
3347
+ """设备组
3348
+ :rtype: str
3349
+ """
3350
+ return self._DevGroup
3351
+
3352
+ @DevGroup.setter
3353
+ def DevGroup(self, DevGroup):
3354
+ self._DevGroup = DevGroup
3355
+
3356
+ @property
3357
+ def LicenseType(self):
3358
+ """license类型, 不传查询全部, 1: 租户月付,2:厂商月付,3:永久授权
3359
+ :rtype: str
3360
+ """
3361
+ return self._LicenseType
3362
+
3363
+ @LicenseType.setter
3364
+ def LicenseType(self, LicenseType):
3365
+ self._LicenseType = LicenseType
3366
+
3367
+ @property
3368
+ def AppId(self):
3369
+ """租户ID
3370
+ :rtype: str
3371
+ """
3372
+ return self._AppId
3373
+
3374
+ @AppId.setter
3375
+ def AppId(self, AppId):
3376
+ self._AppId = AppId
3377
+
3378
+ @property
3379
+ def RequestId(self):
3380
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3381
+ :rtype: str
3382
+ """
3383
+ return self._RequestId
3384
+
3385
+ @RequestId.setter
3386
+ def RequestId(self, RequestId):
3387
+ self._RequestId = RequestId
3388
+
3389
+
3390
+ def _deserialize(self, params):
3391
+ if params.get("ActiveDeviceList") is not None:
3392
+ self._ActiveDeviceList = []
3393
+ for item in params.get("ActiveDeviceList"):
3394
+ obj = ActiveDeviceList()
3395
+ obj._deserialize(item)
3396
+ self._ActiveDeviceList.append(obj)
3397
+ self._Period = params.get("Period")
3398
+ self._StartTime = params.get("StartTime")
3399
+ self._EndTime = params.get("EndTime")
3400
+ self._DevGroup = params.get("DevGroup")
3401
+ self._LicenseType = params.get("LicenseType")
3402
+ self._AppId = params.get("AppId")
3403
+ self._RequestId = params.get("RequestId")
3404
+
3405
+
2982
3406
  class GetDevicePayModeRequest(AbstractModel):
2983
3407
  """GetDevicePayMode请求参数结构体
2984
3408
 
File without changes
@@ -0,0 +1,30 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+
17
+ # 未开通。
18
+ FAILEDOPERATION_ERRNOTOPEN = 'FailedOperation.ErrNotOpen'
19
+
20
+ # 欠费。
21
+ FAILEDOPERATION_ERROWED = 'FailedOperation.ErrOwed'
22
+
23
+ # 内部错误。
24
+ INTERNALERROR = 'InternalError'
25
+
26
+ # 参数取值错误。
27
+ INVALIDPARAMETERVALUE = 'InvalidParameterValue'
28
+
29
+ # 操作不支持。
30
+ UNSUPPORTEDOPERATION = 'UnsupportedOperation'