tencentcloud-sdk-python 3.0.1347__py2.py3-none-any.whl → 3.0.1348__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 (41) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/bh/v20230418/models.py +61 -23
  3. tencentcloud/cam/v20190116/models.py +2 -2
  4. tencentcloud/cdwdoris/v20211228/models.py +300 -0
  5. tencentcloud/cdwpg/v20201230/models.py +96 -84
  6. tencentcloud/chc/v20230418/models.py +0 -30
  7. tencentcloud/clb/v20180317/models.py +46 -16
  8. tencentcloud/dbbrain/v20210527/models.py +0 -8
  9. tencentcloud/dcdb/v20180411/errorcodes.py +3 -0
  10. tencentcloud/dcdb/v20180411/models.py +0 -64
  11. tencentcloud/emr/v20190103/models.py +15 -54
  12. tencentcloud/ess/v20201111/models.py +4 -4
  13. tencentcloud/essbasic/v20210526/models.py +4 -4
  14. tencentcloud/gs/v20191118/models.py +4 -58
  15. tencentcloud/hai/v20230812/models.py +0 -44
  16. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
  17. tencentcloud/iotvideo/v20211125/iotvideo_client.py +1 -1
  18. tencentcloud/iotvideoindustry/v20201201/models.py +0 -30
  19. tencentcloud/lcic/v20220817/lcic_client.py +1 -1
  20. tencentcloud/lcic/v20220817/models.py +56 -68
  21. tencentcloud/lkeap/v20240522/lkeap_client.py +5 -0
  22. tencentcloud/mariadb/v20170312/models.py +2 -70
  23. tencentcloud/mqtt/v20240516/models.py +296 -188
  24. tencentcloud/organization/v20210331/models.py +30 -0
  25. tencentcloud/tbaas/v20180416/models.py +0 -46
  26. tencentcloud/tcb/v20180608/errorcodes.py +3 -0
  27. tencentcloud/tcr/v20190924/models.py +0 -134
  28. tencentcloud/tdmq/v20200217/models.py +0 -14
  29. tencentcloud/thpc/v20230321/models.py +34 -0
  30. tencentcloud/tke/v20180525/models.py +0 -66
  31. tencentcloud/trocket/v20230308/models.py +0 -24
  32. tencentcloud/tsf/v20180326/models.py +196 -182
  33. tencentcloud/vcube/v20220410/models.py +51 -158
  34. tencentcloud/vcube/v20220410/vcube_client.py +2 -2
  35. tencentcloud/vod/v20180717/models.py +8 -46
  36. tencentcloud/wedata/v20210820/models.py +17 -0
  37. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/METADATA +1 -1
  38. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/RECORD +41 -41
  39. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/LICENSE +0 -0
  40. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/WHEEL +0 -0
  41. {tencentcloud_sdk_python-3.0.1347.dist-info → tencentcloud_sdk_python-3.0.1348.dist-info}/top_level.txt +0 -0
@@ -28,12 +28,10 @@ class AndroidApp(AbstractModel):
28
28
  :param _AndroidAppId: 安卓应用 Id
29
29
  :type AndroidAppId: str
30
30
  :param _Name: 安卓应用名称
31
- 注意:此字段可能返回 null,表示取不到有效值。
32
31
  :type Name: str
33
32
  :param _State: 安卓应用状态(上架、下架)
34
33
  :type State: str
35
34
  :param _AndroidAppVersionInfo: 安卓应用版本列表
36
- 注意:此字段可能返回 null,表示取不到有效值。
37
35
  :type AndroidAppVersionInfo: list of AndroidAppVersionInfo
38
36
  :param _CreateTime: 安卓应用创建时间
39
37
  :type CreateTime: str
@@ -58,7 +56,6 @@ class AndroidApp(AbstractModel):
58
56
  @property
59
57
  def Name(self):
60
58
  """安卓应用名称
61
- 注意:此字段可能返回 null,表示取不到有效值。
62
59
  :rtype: str
63
60
  """
64
61
  return self._Name
@@ -81,7 +78,6 @@ class AndroidApp(AbstractModel):
81
78
  @property
82
79
  def AndroidAppVersionInfo(self):
83
80
  """安卓应用版本列表
84
- 注意:此字段可能返回 null,表示取不到有效值。
85
81
  :rtype: list of AndroidAppVersionInfo
86
82
  """
87
83
  return self._AndroidAppVersionInfo
@@ -205,14 +201,12 @@ class AndroidInstance(AbstractModel):
205
201
  :param _AndroidInstanceRegion: 实例所在区域
206
202
  :type AndroidInstanceRegion: str
207
203
  :param _AndroidInstanceZone: 实例可用区
208
- 注意:此字段可能返回 null,表示取不到有效值。
209
204
  :type AndroidInstanceZone: str
210
205
  :param _State: 实例状态:INITIALIZING,NORMAL,PROCESSING
211
206
  :type State: str
212
207
  :param _AndroidInstanceType: 实例规格
213
208
  :type AndroidInstanceType: str
214
209
  :param _AndroidInstanceImageId: 实例镜像 ID
215
- 注意:此字段可能返回 null,表示取不到有效值。
216
210
  :type AndroidInstanceImageId: str
217
211
  :param _Width: 分辨率宽度
218
212
  :type Width: int
@@ -268,7 +262,6 @@ class AndroidInstance(AbstractModel):
268
262
  @property
269
263
  def AndroidInstanceZone(self):
270
264
  """实例可用区
271
- 注意:此字段可能返回 null,表示取不到有效值。
272
265
  :rtype: str
273
266
  """
274
267
  return self._AndroidInstanceZone
@@ -302,7 +295,6 @@ class AndroidInstance(AbstractModel):
302
295
  @property
303
296
  def AndroidInstanceImageId(self):
304
297
  """实例镜像 ID
305
- 注意:此字段可能返回 null,表示取不到有效值。
306
298
  :rtype: str
307
299
  """
308
300
  return self._AndroidInstanceImageId
@@ -426,13 +418,10 @@ class AndroidInstanceAppInfo(AbstractModel):
426
418
  def __init__(self):
427
419
  r"""
428
420
  :param _AndroidAppId: 应用id
429
- 注意:此字段可能返回 null,表示取不到有效值。
430
421
  :type AndroidAppId: str
431
422
  :param _Name: 应用名称
432
- 注意:此字段可能返回 null,表示取不到有效值。
433
423
  :type Name: str
434
424
  :param _AndroidAppVersion: 应用版本
435
- 注意:此字段可能返回 null,表示取不到有效值。
436
425
  :type AndroidAppVersion: str
437
426
  :param _PackageName: 应用包名
438
427
  :type PackageName: str
@@ -451,7 +440,6 @@ class AndroidInstanceAppInfo(AbstractModel):
451
440
  @property
452
441
  def AndroidAppId(self):
453
442
  """应用id
454
- 注意:此字段可能返回 null,表示取不到有效值。
455
443
  :rtype: str
456
444
  """
457
445
  return self._AndroidAppId
@@ -463,7 +451,6 @@ class AndroidInstanceAppInfo(AbstractModel):
463
451
  @property
464
452
  def Name(self):
465
453
  """应用名称
466
- 注意:此字段可能返回 null,表示取不到有效值。
467
454
  :rtype: str
468
455
  """
469
456
  return self._Name
@@ -475,7 +462,6 @@ class AndroidInstanceAppInfo(AbstractModel):
475
462
  @property
476
463
  def AndroidAppVersion(self):
477
464
  """应用版本
478
- 注意:此字段可能返回 null,表示取不到有效值。
479
465
  :rtype: str
480
466
  """
481
467
  return self._AndroidAppVersion
@@ -543,16 +529,12 @@ class AndroidInstanceImage(AbstractModel):
543
529
  def __init__(self):
544
530
  r"""
545
531
  :param _AndroidInstanceImageId: 镜像 ID
546
- 注意:此字段可能返回 null,表示取不到有效值。
547
532
  :type AndroidInstanceImageId: str
548
533
  :param _AndroidInstanceImageName: 镜像名称,由业务方自定义,仅用于展示
549
- 注意:此字段可能返回 null,表示取不到有效值。
550
534
  :type AndroidInstanceImageName: str
551
535
  :param _AndroidInstanceImageState: 镜像状态
552
- 注意:此字段可能返回 null,表示取不到有效值。
553
536
  :type AndroidInstanceImageState: str
554
537
  :param _AndroidInstanceImageZone: 镜像可用区
555
- 注意:此字段可能返回 null,表示取不到有效值。
556
538
  :type AndroidInstanceImageZone: str
557
539
  """
558
540
  self._AndroidInstanceImageId = None
@@ -563,7 +545,6 @@ class AndroidInstanceImage(AbstractModel):
563
545
  @property
564
546
  def AndroidInstanceImageId(self):
565
547
  """镜像 ID
566
- 注意:此字段可能返回 null,表示取不到有效值。
567
548
  :rtype: str
568
549
  """
569
550
  return self._AndroidInstanceImageId
@@ -575,7 +556,6 @@ class AndroidInstanceImage(AbstractModel):
575
556
  @property
576
557
  def AndroidInstanceImageName(self):
577
558
  """镜像名称,由业务方自定义,仅用于展示
578
- 注意:此字段可能返回 null,表示取不到有效值。
579
559
  :rtype: str
580
560
  """
581
561
  return self._AndroidInstanceImageName
@@ -587,7 +567,6 @@ class AndroidInstanceImage(AbstractModel):
587
567
  @property
588
568
  def AndroidInstanceImageState(self):
589
569
  """镜像状态
590
- 注意:此字段可能返回 null,表示取不到有效值。
591
570
  :rtype: str
592
571
  """
593
572
  return self._AndroidInstanceImageState
@@ -599,7 +578,6 @@ class AndroidInstanceImage(AbstractModel):
599
578
  @property
600
579
  def AndroidInstanceImageZone(self):
601
580
  """镜像可用区
602
- 注意:此字段可能返回 null,表示取不到有效值。
603
581
  :rtype: str
604
582
  """
605
583
  return self._AndroidInstanceImageZone
@@ -683,10 +661,8 @@ class AndroidInstanceTask(AbstractModel):
683
661
  def __init__(self):
684
662
  r"""
685
663
  :param _TaskId: 任务ID
686
- 注意:此字段可能返回 null,表示取不到有效值。
687
664
  :type TaskId: str
688
665
  :param _AndroidInstanceId: 实例ID
689
- 注意:此字段可能返回 null,表示取不到有效值。
690
666
  :type AndroidInstanceId: str
691
667
  """
692
668
  self._TaskId = None
@@ -695,7 +671,6 @@ class AndroidInstanceTask(AbstractModel):
695
671
  @property
696
672
  def TaskId(self):
697
673
  """任务ID
698
- 注意:此字段可能返回 null,表示取不到有效值。
699
674
  :rtype: str
700
675
  """
701
676
  return self._TaskId
@@ -707,7 +682,6 @@ class AndroidInstanceTask(AbstractModel):
707
682
  @property
708
683
  def AndroidInstanceId(self):
709
684
  """实例ID
710
- 注意:此字段可能返回 null,表示取不到有效值。
711
685
  :rtype: str
712
686
  """
713
687
  return self._AndroidInstanceId
@@ -744,7 +718,6 @@ class AndroidInstanceTaskStatus(AbstractModel):
744
718
  :param _AndroidInstanceId: 实例ID
745
719
  :type AndroidInstanceId: str
746
720
  :param _TaskResult: 任务执行结果描述,针对某些任务,可以是可解析的 json
747
- 注意:此字段可能返回 null,表示取不到有效值。
748
721
  :type TaskResult: str
749
722
  """
750
723
  self._TaskId = None
@@ -788,7 +761,6 @@ class AndroidInstanceTaskStatus(AbstractModel):
788
761
  @property
789
762
  def TaskResult(self):
790
763
  """任务执行结果描述,针对某些任务,可以是可解析的 json
791
- 注意:此字段可能返回 null,表示取不到有效值。
792
764
  :rtype: str
793
765
  """
794
766
  return self._TaskResult
@@ -1105,7 +1077,6 @@ class CreateAndroidInstanceImageResponse(AbstractModel):
1105
1077
  def __init__(self):
1106
1078
  r"""
1107
1079
  :param _AndroidInstanceImageId: 安卓实例镜像 ID
1108
- 注意:此字段可能返回 null,表示取不到有效值。
1109
1080
  :type AndroidInstanceImageId: str
1110
1081
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1111
1082
  :type RequestId: str
@@ -1116,7 +1087,6 @@ class CreateAndroidInstanceImageResponse(AbstractModel):
1116
1087
  @property
1117
1088
  def AndroidInstanceImageId(self):
1118
1089
  """安卓实例镜像 ID
1119
- 注意:此字段可能返回 null,表示取不到有效值。
1120
1090
  :rtype: str
1121
1091
  """
1122
1092
  return self._AndroidInstanceImageId
@@ -2230,7 +2200,6 @@ class DescribeAndroidAppsResponse(AbstractModel):
2230
2200
  def __init__(self):
2231
2201
  r"""
2232
2202
  :param _Apps: 安卓应用列表
2233
- 注意:此字段可能返回 null,表示取不到有效值。
2234
2203
  :type Apps: list of AndroidApp
2235
2204
  :param _TotalCount: 安卓应用列表长度
2236
2205
  :type TotalCount: int
@@ -2244,7 +2213,6 @@ class DescribeAndroidAppsResponse(AbstractModel):
2244
2213
  @property
2245
2214
  def Apps(self):
2246
2215
  """安卓应用列表
2247
- 注意:此字段可能返回 null,表示取不到有效值。
2248
2216
  :rtype: list of AndroidApp
2249
2217
  """
2250
2218
  return self._Apps
@@ -2331,7 +2299,6 @@ class DescribeAndroidInstanceAppsResponse(AbstractModel):
2331
2299
  def __init__(self):
2332
2300
  r"""
2333
2301
  :param _Apps: 安卓应用列表
2334
- 注意:此字段可能返回 null,表示取不到有效值。
2335
2302
  :type Apps: list of AndroidInstanceAppInfo
2336
2303
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2337
2304
  :type RequestId: str
@@ -2342,7 +2309,6 @@ class DescribeAndroidInstanceAppsResponse(AbstractModel):
2342
2309
  @property
2343
2310
  def Apps(self):
2344
2311
  """安卓应用列表
2345
- 注意:此字段可能返回 null,表示取不到有效值。
2346
2312
  :rtype: list of AndroidInstanceAppInfo
2347
2313
  """
2348
2314
  return self._Apps
@@ -2447,10 +2413,8 @@ class DescribeAndroidInstanceImagesResponse(AbstractModel):
2447
2413
  def __init__(self):
2448
2414
  r"""
2449
2415
  :param _Total: 镜像总数
2450
- 注意:此字段可能返回 null,表示取不到有效值。
2451
2416
  :type Total: int
2452
2417
  :param _AndroidInstanceImages: 镜像列表
2453
- 注意:此字段可能返回 null,表示取不到有效值。
2454
2418
  :type AndroidInstanceImages: list of AndroidInstanceImage
2455
2419
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2456
2420
  :type RequestId: str
@@ -2462,7 +2426,6 @@ class DescribeAndroidInstanceImagesResponse(AbstractModel):
2462
2426
  @property
2463
2427
  def Total(self):
2464
2428
  """镜像总数
2465
- 注意:此字段可能返回 null,表示取不到有效值。
2466
2429
  :rtype: int
2467
2430
  """
2468
2431
  return self._Total
@@ -2474,7 +2437,6 @@ class DescribeAndroidInstanceImagesResponse(AbstractModel):
2474
2437
  @property
2475
2438
  def AndroidInstanceImages(self):
2476
2439
  """镜像列表
2477
- 注意:此字段可能返回 null,表示取不到有效值。
2478
2440
  :rtype: list of AndroidInstanceImage
2479
2441
  """
2480
2442
  return self._AndroidInstanceImages
@@ -2694,7 +2656,6 @@ class DescribeAndroidInstanceTasksStatusResponse(AbstractModel):
2694
2656
  def __init__(self):
2695
2657
  r"""
2696
2658
  :param _TaskStatusSet: 任务状态集合
2697
- 注意:此字段可能返回 null,表示取不到有效值。
2698
2659
  :type TaskStatusSet: list of AndroidInstanceTaskStatus
2699
2660
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2700
2661
  :type RequestId: str
@@ -2705,7 +2666,6 @@ class DescribeAndroidInstanceTasksStatusResponse(AbstractModel):
2705
2666
  @property
2706
2667
  def TaskStatusSet(self):
2707
2668
  """任务状态集合
2708
- 注意:此字段可能返回 null,表示取不到有效值。
2709
2669
  :rtype: list of AndroidInstanceTaskStatus
2710
2670
  """
2711
2671
  return self._TaskStatusSet
@@ -3267,9 +3227,9 @@ class Filter(AbstractModel):
3267
3227
 
3268
3228
  def __init__(self):
3269
3229
  r"""
3270
- :param _Name: "aaa"
3230
+ :param _Name: 字段名
3271
3231
  :type Name: str
3272
- :param _Values: ["bbb", "ccc"]
3232
+ :param _Values: 字段值列表
3273
3233
  :type Values: list of str
3274
3234
  """
3275
3235
  self._Name = None
@@ -3277,7 +3237,7 @@ class Filter(AbstractModel):
3277
3237
 
3278
3238
  @property
3279
3239
  def Name(self):
3280
- """"aaa"
3240
+ """字段名
3281
3241
  :rtype: str
3282
3242
  """
3283
3243
  return self._Name
@@ -3288,7 +3248,7 @@ class Filter(AbstractModel):
3288
3248
 
3289
3249
  @property
3290
3250
  def Values(self):
3291
- """["bbb", "ccc"]
3251
+ """字段值列表
3292
3252
  :rtype: list of str
3293
3253
  """
3294
3254
  return self._Values
@@ -3385,7 +3345,6 @@ class InstallAndroidInstancesAppResponse(AbstractModel):
3385
3345
  def __init__(self):
3386
3346
  r"""
3387
3347
  :param _TaskSet: 任务集合
3388
- 注意:此字段可能返回 null,表示取不到有效值。
3389
3348
  :type TaskSet: list of AndroidInstanceTask
3390
3349
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3391
3350
  :type RequestId: str
@@ -3396,7 +3355,6 @@ class InstallAndroidInstancesAppResponse(AbstractModel):
3396
3355
  @property
3397
3356
  def TaskSet(self):
3398
3357
  """任务集合
3399
- 注意:此字段可能返回 null,表示取不到有效值。
3400
3358
  :rtype: list of AndroidInstanceTask
3401
3359
  """
3402
3360
  return self._TaskSet
@@ -3911,7 +3869,6 @@ class RebootAndroidInstancesResponse(AbstractModel):
3911
3869
  def __init__(self):
3912
3870
  r"""
3913
3871
  :param _TaskSet: 任务集合
3914
- 注意:此字段可能返回 null,表示取不到有效值。
3915
3872
  :type TaskSet: list of AndroidInstanceTask
3916
3873
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3917
3874
  :type RequestId: str
@@ -3922,7 +3879,6 @@ class RebootAndroidInstancesResponse(AbstractModel):
3922
3879
  @property
3923
3880
  def TaskSet(self):
3924
3881
  """任务集合
3925
- 注意:此字段可能返回 null,表示取不到有效值。
3926
3882
  :rtype: list of AndroidInstanceTask
3927
3883
  """
3928
3884
  return self._TaskSet
@@ -4037,7 +3993,6 @@ class ResetAndroidInstancesResponse(AbstractModel):
4037
3993
  def __init__(self):
4038
3994
  r"""
4039
3995
  :param _TaskSet: 任务集合
4040
- 注意:此字段可能返回 null,表示取不到有效值。
4041
3996
  :type TaskSet: list of AndroidInstanceTask
4042
3997
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4043
3998
  :type RequestId: str
@@ -4048,7 +4003,6 @@ class ResetAndroidInstancesResponse(AbstractModel):
4048
4003
  @property
4049
4004
  def TaskSet(self):
4050
4005
  """任务集合
4051
- 注意:此字段可能返回 null,表示取不到有效值。
4052
4006
  :rtype: list of AndroidInstanceTask
4053
4007
  """
4054
4008
  return self._TaskSet
@@ -4360,7 +4314,6 @@ class StartAndroidInstancesResponse(AbstractModel):
4360
4314
  def __init__(self):
4361
4315
  r"""
4362
4316
  :param _TaskSet: 任务集合
4363
- 注意:此字段可能返回 null,表示取不到有效值。
4364
4317
  :type TaskSet: list of AndroidInstanceTask
4365
4318
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4366
4319
  :type RequestId: str
@@ -4371,7 +4324,6 @@ class StartAndroidInstancesResponse(AbstractModel):
4371
4324
  @property
4372
4325
  def TaskSet(self):
4373
4326
  """任务集合
4374
- 注意:此字段可能返回 null,表示取不到有效值。
4375
4327
  :rtype: list of AndroidInstanceTask
4376
4328
  """
4377
4329
  return self._TaskSet
@@ -4683,7 +4635,6 @@ class StopAndroidInstancesResponse(AbstractModel):
4683
4635
  def __init__(self):
4684
4636
  r"""
4685
4637
  :param _TaskSet: 任务集合
4686
- 注意:此字段可能返回 null,表示取不到有效值。
4687
4638
  :type TaskSet: list of AndroidInstanceTask
4688
4639
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4689
4640
  :type RequestId: str
@@ -4694,7 +4645,6 @@ class StopAndroidInstancesResponse(AbstractModel):
4694
4645
  @property
4695
4646
  def TaskSet(self):
4696
4647
  """任务集合
4697
- 注意:此字段可能返回 null,表示取不到有效值。
4698
4648
  :rtype: list of AndroidInstanceTask
4699
4649
  """
4700
4650
  return self._TaskSet
@@ -5236,7 +5186,6 @@ class SyncExecuteCommandResult(AbstractModel):
5236
5186
  :param _InstanceId: 实例ID
5237
5187
  :type InstanceId: str
5238
5188
  :param _Output: 命令执行输出内容
5239
- 注意:此字段可能返回 null,表示取不到有效值。
5240
5189
  :type Output: str
5241
5190
  :param _Status: 命令执行结果
5242
5191
  :type Status: str
@@ -5259,7 +5208,6 @@ class SyncExecuteCommandResult(AbstractModel):
5259
5208
  @property
5260
5209
  def Output(self):
5261
5210
  """命令执行输出内容
5262
- 注意:此字段可能返回 null,表示取不到有效值。
5263
5211
  :rtype: str
5264
5212
  """
5265
5213
  return self._Output
@@ -5507,7 +5455,6 @@ class UninstallAndroidInstancesAppResponse(AbstractModel):
5507
5455
  def __init__(self):
5508
5456
  r"""
5509
5457
  :param _TaskSet: 任务集合
5510
- 注意:此字段可能返回 null,表示取不到有效值。
5511
5458
  :type TaskSet: list of AndroidInstanceTask
5512
5459
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5513
5460
  :type RequestId: str
@@ -5518,7 +5465,6 @@ class UninstallAndroidInstancesAppResponse(AbstractModel):
5518
5465
  @property
5519
5466
  def TaskSet(self):
5520
5467
  """任务集合
5521
- 注意:此字段可能返回 null,表示取不到有效值。
5522
5468
  :rtype: list of AndroidInstanceTask
5523
5469
  """
5524
5470
  return self._TaskSet
@@ -27,33 +27,24 @@ class ApplicationInfo(AbstractModel):
27
27
  r"""
28
28
  :param _ApplicationId: 应用id
29
29
 
30
- 注意:此字段可能返回 null,表示取不到有效值。
31
30
  :type ApplicationId: str
32
31
  :param _ApplicationName: 应用名称
33
- 注意:此字段可能返回 null,表示取不到有效值。
34
32
  :type ApplicationName: str
35
33
  :param _Description: 应用描述
36
34
 
37
- 注意:此字段可能返回 null,表示取不到有效值。
38
35
  :type Description: str
39
36
  :param _ConfigEnvironment: 应用的环境配置
40
- 注意:此字段可能返回 null,表示取不到有效值。
41
37
  :type ConfigEnvironment: str
42
38
  :param _MinSystemDiskSize: 系统盘大小下限
43
- 注意:此字段可能返回 null,表示取不到有效值。
44
39
  :type MinSystemDiskSize: int
45
40
  :param _ApplicationType: 应用类型,目前该项取值可以为PRIVATE_APPLICATION或者PUBLIC_APPLICATION
46
- 注意:此字段可能返回 null,表示取不到有效值。
47
41
  :type ApplicationType: str
48
42
  :param _ApplicationState: 应用状态:CREATING-创建中;ONLINE -正常在线;DELETING -删除中;ARREARS - 欠费隔离
49
43
  示例值:ONLINE
50
- 注意:此字段可能返回 null,表示取不到有效值。
51
44
  :type ApplicationState: str
52
45
  :param _CreateTime: 应用创建时间
53
- 注意:此字段可能返回 null,表示取不到有效值。
54
46
  :type CreateTime: str
55
47
  :param _ApplicationSize: 应用大小
56
- 注意:此字段可能返回 null,表示取不到有效值。
57
48
  :type ApplicationSize: int
58
49
  """
59
50
  self._ApplicationId = None
@@ -70,7 +61,6 @@ class ApplicationInfo(AbstractModel):
70
61
  def ApplicationId(self):
71
62
  """应用id
72
63
 
73
- 注意:此字段可能返回 null,表示取不到有效值。
74
64
  :rtype: str
75
65
  """
76
66
  return self._ApplicationId
@@ -82,7 +72,6 @@ class ApplicationInfo(AbstractModel):
82
72
  @property
83
73
  def ApplicationName(self):
84
74
  """应用名称
85
- 注意:此字段可能返回 null,表示取不到有效值。
86
75
  :rtype: str
87
76
  """
88
77
  return self._ApplicationName
@@ -95,7 +84,6 @@ class ApplicationInfo(AbstractModel):
95
84
  def Description(self):
96
85
  """应用描述
97
86
 
98
- 注意:此字段可能返回 null,表示取不到有效值。
99
87
  :rtype: str
100
88
  """
101
89
  return self._Description
@@ -107,7 +95,6 @@ class ApplicationInfo(AbstractModel):
107
95
  @property
108
96
  def ConfigEnvironment(self):
109
97
  """应用的环境配置
110
- 注意:此字段可能返回 null,表示取不到有效值。
111
98
  :rtype: str
112
99
  """
113
100
  return self._ConfigEnvironment
@@ -119,7 +106,6 @@ class ApplicationInfo(AbstractModel):
119
106
  @property
120
107
  def MinSystemDiskSize(self):
121
108
  """系统盘大小下限
122
- 注意:此字段可能返回 null,表示取不到有效值。
123
109
  :rtype: int
124
110
  """
125
111
  return self._MinSystemDiskSize
@@ -131,7 +117,6 @@ class ApplicationInfo(AbstractModel):
131
117
  @property
132
118
  def ApplicationType(self):
133
119
  """应用类型,目前该项取值可以为PRIVATE_APPLICATION或者PUBLIC_APPLICATION
134
- 注意:此字段可能返回 null,表示取不到有效值。
135
120
  :rtype: str
136
121
  """
137
122
  return self._ApplicationType
@@ -144,7 +129,6 @@ class ApplicationInfo(AbstractModel):
144
129
  def ApplicationState(self):
145
130
  """应用状态:CREATING-创建中;ONLINE -正常在线;DELETING -删除中;ARREARS - 欠费隔离
146
131
  示例值:ONLINE
147
- 注意:此字段可能返回 null,表示取不到有效值。
148
132
  :rtype: str
149
133
  """
150
134
  return self._ApplicationState
@@ -156,7 +140,6 @@ class ApplicationInfo(AbstractModel):
156
140
  @property
157
141
  def CreateTime(self):
158
142
  """应用创建时间
159
- 注意:此字段可能返回 null,表示取不到有效值。
160
143
  :rtype: str
161
144
  """
162
145
  return self._CreateTime
@@ -168,7 +151,6 @@ class ApplicationInfo(AbstractModel):
168
151
  @property
169
152
  def ApplicationSize(self):
170
153
  """应用大小
171
- 注意:此字段可能返回 null,表示取不到有效值。
172
154
  :rtype: int
173
155
  """
174
156
  return self._ApplicationSize
@@ -1389,7 +1371,6 @@ class InquirePriceRunInstancesResponse(AbstractModel):
1389
1371
  def __init__(self):
1390
1372
  r"""
1391
1373
  :param _Price: 发货参数对应的价格组合,当DryRun=True,会返回空
1392
- 注意:此字段可能返回 null,表示取不到有效值。
1393
1374
  :type Price: :class:`tencentcloud.hai.v20230812.models.Price`
1394
1375
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1395
1376
  :type RequestId: str
@@ -1400,7 +1381,6 @@ class InquirePriceRunInstancesResponse(AbstractModel):
1400
1381
  @property
1401
1382
  def Price(self):
1402
1383
  """发货参数对应的价格组合,当DryRun=True,会返回空
1403
- 注意:此字段可能返回 null,表示取不到有效值。
1404
1384
  :rtype: :class:`tencentcloud.hai.v20230812.models.Price`
1405
1385
  """
1406
1386
  return self._Price
@@ -1946,20 +1926,15 @@ class ItemPrice(AbstractModel):
1946
1926
  def __init__(self):
1947
1927
  r"""
1948
1928
  :param _UnitPrice: 原单价
1949
- 注意:此字段可能返回 null,表示取不到有效值。
1950
1929
  :type UnitPrice: float
1951
1930
  :param _DiscountUnitPrice: 折扣后单价
1952
- 注意:此字段可能返回 null,表示取不到有效值。
1953
1931
  :type DiscountUnitPrice: float
1954
1932
  :param _Discount: 折扣
1955
- 注意:此字段可能返回 null,表示取不到有效值。
1956
1933
  :type Discount: float
1957
1934
  :param _ChargeUnit: 单位:时/月
1958
1935
 
1959
- 注意:此字段可能返回 null,表示取不到有效值。
1960
1936
  :type ChargeUnit: str
1961
1937
  :param _Amount: 商品数量
1962
- 注意:此字段可能返回 null,表示取不到有效值。
1963
1938
  :type Amount: int
1964
1939
  """
1965
1940
  self._UnitPrice = None
@@ -1971,7 +1946,6 @@ class ItemPrice(AbstractModel):
1971
1946
  @property
1972
1947
  def UnitPrice(self):
1973
1948
  """原单价
1974
- 注意:此字段可能返回 null,表示取不到有效值。
1975
1949
  :rtype: float
1976
1950
  """
1977
1951
  return self._UnitPrice
@@ -1983,7 +1957,6 @@ class ItemPrice(AbstractModel):
1983
1957
  @property
1984
1958
  def DiscountUnitPrice(self):
1985
1959
  """折扣后单价
1986
- 注意:此字段可能返回 null,表示取不到有效值。
1987
1960
  :rtype: float
1988
1961
  """
1989
1962
  return self._DiscountUnitPrice
@@ -1995,7 +1968,6 @@ class ItemPrice(AbstractModel):
1995
1968
  @property
1996
1969
  def Discount(self):
1997
1970
  """折扣
1998
- 注意:此字段可能返回 null,表示取不到有效值。
1999
1971
  :rtype: float
2000
1972
  """
2001
1973
  return self._Discount
@@ -2008,7 +1980,6 @@ class ItemPrice(AbstractModel):
2008
1980
  def ChargeUnit(self):
2009
1981
  """单位:时/月
2010
1982
 
2011
- 注意:此字段可能返回 null,表示取不到有效值。
2012
1983
  :rtype: str
2013
1984
  """
2014
1985
  return self._ChargeUnit
@@ -2020,7 +1991,6 @@ class ItemPrice(AbstractModel):
2020
1991
  @property
2021
1992
  def Amount(self):
2022
1993
  """商品数量
2023
- 注意:此字段可能返回 null,表示取不到有效值。
2024
1994
  :rtype: int
2025
1995
  """
2026
1996
  return self._Amount
@@ -2054,16 +2024,12 @@ class ItemPriceDetail(AbstractModel):
2054
2024
  def __init__(self):
2055
2025
  r"""
2056
2026
  :param _InstanceId: 实例id
2057
- 注意:此字段可能返回 null,表示取不到有效值。
2058
2027
  :type InstanceId: str
2059
2028
  :param _InstancePrice: 实例价格详情
2060
- 注意:此字段可能返回 null,表示取不到有效值。
2061
2029
  :type InstancePrice: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2062
2030
  :param _CloudDiskPrice: 磁盘价格详情
2063
- 注意:此字段可能返回 null,表示取不到有效值。
2064
2031
  :type CloudDiskPrice: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2065
2032
  :param _InstanceTotalPrice: 该实例的总价钱
2066
- 注意:此字段可能返回 null,表示取不到有效值。
2067
2033
  :type InstanceTotalPrice: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2068
2034
  """
2069
2035
  self._InstanceId = None
@@ -2074,7 +2040,6 @@ class ItemPriceDetail(AbstractModel):
2074
2040
  @property
2075
2041
  def InstanceId(self):
2076
2042
  """实例id
2077
- 注意:此字段可能返回 null,表示取不到有效值。
2078
2043
  :rtype: str
2079
2044
  """
2080
2045
  return self._InstanceId
@@ -2086,7 +2051,6 @@ class ItemPriceDetail(AbstractModel):
2086
2051
  @property
2087
2052
  def InstancePrice(self):
2088
2053
  """实例价格详情
2089
- 注意:此字段可能返回 null,表示取不到有效值。
2090
2054
  :rtype: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2091
2055
  """
2092
2056
  return self._InstancePrice
@@ -2098,7 +2062,6 @@ class ItemPriceDetail(AbstractModel):
2098
2062
  @property
2099
2063
  def CloudDiskPrice(self):
2100
2064
  """磁盘价格详情
2101
- 注意:此字段可能返回 null,表示取不到有效值。
2102
2065
  :rtype: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2103
2066
  """
2104
2067
  return self._CloudDiskPrice
@@ -2110,7 +2073,6 @@ class ItemPriceDetail(AbstractModel):
2110
2073
  @property
2111
2074
  def InstanceTotalPrice(self):
2112
2075
  """该实例的总价钱
2113
- 注意:此字段可能返回 null,表示取不到有效值。
2114
2076
  :rtype: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2115
2077
  """
2116
2078
  return self._InstanceTotalPrice
@@ -2504,13 +2466,10 @@ class Price(AbstractModel):
2504
2466
  def __init__(self):
2505
2467
  r"""
2506
2468
  :param _InstancePrice: 实例价格信息
2507
- 注意:此字段可能返回 null,表示取不到有效值。
2508
2469
  :type InstancePrice: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2509
2470
  :param _CloudDiskPrice: 云盘价格信息
2510
- 注意:此字段可能返回 null,表示取不到有效值。
2511
2471
  :type CloudDiskPrice: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2512
2472
  :param _PriceDetailSet: 分实例价格
2513
- 注意:此字段可能返回 null,表示取不到有效值。
2514
2473
  :type PriceDetailSet: list of ItemPriceDetail
2515
2474
  """
2516
2475
  self._InstancePrice = None
@@ -2520,7 +2479,6 @@ class Price(AbstractModel):
2520
2479
  @property
2521
2480
  def InstancePrice(self):
2522
2481
  """实例价格信息
2523
- 注意:此字段可能返回 null,表示取不到有效值。
2524
2482
  :rtype: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2525
2483
  """
2526
2484
  return self._InstancePrice
@@ -2532,7 +2490,6 @@ class Price(AbstractModel):
2532
2490
  @property
2533
2491
  def CloudDiskPrice(self):
2534
2492
  """云盘价格信息
2535
- 注意:此字段可能返回 null,表示取不到有效值。
2536
2493
  :rtype: :class:`tencentcloud.hai.v20230812.models.ItemPrice`
2537
2494
  """
2538
2495
  return self._CloudDiskPrice
@@ -2544,7 +2501,6 @@ class Price(AbstractModel):
2544
2501
  @property
2545
2502
  def PriceDetailSet(self):
2546
2503
  """分实例价格
2547
- 注意:此字段可能返回 null,表示取不到有效值。
2548
2504
  :rtype: list of ItemPriceDetail
2549
2505
  """
2550
2506
  return self._PriceDetailSet
@@ -188,7 +188,7 @@ class IotexplorerClient(AbstractClient):
188
188
 
189
189
 
190
190
  def ChangeP2PRoute(self, request):
191
- """p2p路线切换
191
+ """p2p路线切换(此接口目前处于内测接口,可以联系申请加白 )
192
192
 
193
193
  :param request: Request instance for ChangeP2PRoute.
194
194
  :type request: :class:`tencentcloud.iotexplorer.v20190423.models.ChangeP2PRouteRequest`
@@ -211,7 +211,7 @@ class IotvideoClient(AbstractClient):
211
211
 
212
212
 
213
213
  def ChangeP2PRoute(self, request):
214
- """p2p路线切换
214
+ """p2p路线切换(此接口目前处于内测接口,可以联系申请加白 )
215
215
 
216
216
  :param request: Request instance for ChangeP2PRoute.
217
217
  :type request: :class:`tencentcloud.iotvideo.v20211125.models.ChangeP2PRouteRequest`