tencentcloud-sdk-python 3.0.1297__py2.py3-none-any.whl → 3.0.1299__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/aca/v20210323/models.py +2 -2
- tencentcloud/autoscaling/v20180419/models.py +21 -0
- tencentcloud/bh/v20230418/models.py +4 -4
- tencentcloud/billing/v20180709/models.py +90 -0
- tencentcloud/cam/v20190116/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +121 -0
- tencentcloud/cfs/v20190719/errorcodes.py +1 -1
- tencentcloud/clb/v20180317/models.py +68 -0
- tencentcloud/cloudapp/v20220530/errorcodes.py +3 -0
- tencentcloud/cloudapp/v20220530/models.py +66 -17
- tencentcloud/cls/v20201016/models.py +24 -2
- tencentcloud/cynosdb/v20190107/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +113 -0
- tencentcloud/dbbrain/v20210527/models.py +17 -2
- tencentcloud/dc/v20180410/models.py +50 -121
- tencentcloud/drm/v20181115/models.py +17 -0
- tencentcloud/dts/v20211206/models.py +68 -2
- tencentcloud/emr/v20190103/models.py +136 -340
- tencentcloud/ess/v20201111/models.py +96 -156
- tencentcloud/essbasic/v20210526/models.py +44 -108
- tencentcloud/gaap/v20180529/gaap_client.py +9 -3
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hai/v20230812/errorcodes.py +6 -0
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +109 -0
- tencentcloud/hunyuan/v20230901/models.py +7 -7
- tencentcloud/keewidb/v20220308/models.py +1 -1
- tencentcloud/lcic/v20220817/models.py +12 -6
- tencentcloud/lkeap/v20240522/lkeap_client.py +24 -0
- tencentcloud/lkeap/v20240522/models.py +167 -0
- tencentcloud/mongodb/v20180408/errorcodes.py +3 -0
- tencentcloud/mongodb/v20180408/models.py +36 -20
- tencentcloud/mongodb/v20180408/mongodb_client.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +45 -112
- tencentcloud/ocr/v20181119/models.py +14 -14
- tencentcloud/ocr/v20181119/ocr_client.py +3 -3
- tencentcloud/postgres/v20170312/models.py +233 -0
- tencentcloud/postgres/v20170312/postgres_client.py +46 -0
- tencentcloud/redis/v20180412/models.py +6 -6
- tencentcloud/redis/v20180412/redis_client.py +8 -8
- tencentcloud/scf/v20180416/models.py +44 -4
- tencentcloud/ssl/v20191205/models.py +66 -10
- tencentcloud/ssl/v20191205/ssl_client.py +8 -1
- tencentcloud/tcb/v20180608/models.py +219 -345
- tencentcloud/tcb/v20180608/tcb_client.py +1 -1
- tencentcloud/tcbr/v20220217/models.py +51 -6
- tencentcloud/tdmq/v20200217/models.py +205 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/tione/v20211111/models.py +34 -0
- tencentcloud/trtc/v20190722/models.py +4 -16
- tencentcloud/vpc/v20170312/models.py +63 -29
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/RECORD +57 -57
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1297.dist-info → tencentcloud_sdk_python-3.0.1299.dist-info}/top_level.txt +0 -0
@@ -137,22 +137,16 @@ class ActivityRecordItem(AbstractModel):
|
|
137
137
|
def __init__(self):
|
138
138
|
r"""
|
139
139
|
:param _Uin: 用户uin
|
140
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
141
140
|
:type Uin: str
|
142
141
|
:param _ActivityId: 活动id
|
143
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
144
142
|
:type ActivityId: int
|
145
143
|
:param _Status: 自定义状态码
|
146
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
147
144
|
:type Status: int
|
148
145
|
:param _SubStatus: 自定义子状态码
|
149
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
150
146
|
:type SubStatus: str
|
151
147
|
:param _SubStatusInt: 整型子状态码
|
152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
153
148
|
:type SubStatusInt: int
|
154
149
|
:param _IsDeleted: 是否软删除
|
155
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
156
150
|
:type IsDeleted: bool
|
157
151
|
"""
|
158
152
|
self._Uin = None
|
@@ -165,7 +159,6 @@ class ActivityRecordItem(AbstractModel):
|
|
165
159
|
@property
|
166
160
|
def Uin(self):
|
167
161
|
"""用户uin
|
168
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
169
162
|
:rtype: str
|
170
163
|
"""
|
171
164
|
return self._Uin
|
@@ -177,7 +170,6 @@ class ActivityRecordItem(AbstractModel):
|
|
177
170
|
@property
|
178
171
|
def ActivityId(self):
|
179
172
|
"""活动id
|
180
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
181
173
|
:rtype: int
|
182
174
|
"""
|
183
175
|
return self._ActivityId
|
@@ -189,7 +181,6 @@ class ActivityRecordItem(AbstractModel):
|
|
189
181
|
@property
|
190
182
|
def Status(self):
|
191
183
|
"""自定义状态码
|
192
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
193
184
|
:rtype: int
|
194
185
|
"""
|
195
186
|
return self._Status
|
@@ -201,7 +192,6 @@ class ActivityRecordItem(AbstractModel):
|
|
201
192
|
@property
|
202
193
|
def SubStatus(self):
|
203
194
|
"""自定义子状态码
|
204
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
205
195
|
:rtype: str
|
206
196
|
"""
|
207
197
|
return self._SubStatus
|
@@ -213,7 +203,6 @@ class ActivityRecordItem(AbstractModel):
|
|
213
203
|
@property
|
214
204
|
def SubStatusInt(self):
|
215
205
|
"""整型子状态码
|
216
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
217
206
|
:rtype: int
|
218
207
|
"""
|
219
208
|
return self._SubStatusInt
|
@@ -225,7 +214,6 @@ class ActivityRecordItem(AbstractModel):
|
|
225
214
|
@property
|
226
215
|
def IsDeleted(self):
|
227
216
|
"""是否软删除
|
228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
229
217
|
:rtype: bool
|
230
218
|
"""
|
231
219
|
return self._IsDeleted
|
@@ -379,34 +367,25 @@ class BaasPackageInfo(AbstractModel):
|
|
379
367
|
def __init__(self):
|
380
368
|
r"""
|
381
369
|
:param _PackageName: DAU产品套餐ID
|
382
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
383
370
|
:type PackageName: str
|
384
371
|
:param _PackageTitle: DAU套餐中文名称
|
385
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
386
372
|
:type PackageTitle: str
|
387
373
|
:param _GroupName: 套餐分组
|
388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
389
374
|
:type GroupName: str
|
390
375
|
:param _GroupTitle: 套餐分组中文名
|
391
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
392
376
|
:type GroupTitle: str
|
393
377
|
:param _BillTags: json格式化计费标签,例如:
|
394
378
|
{"pid":2, "cids":{"create": 2, "renew": 2, "modify": 2}, "productCode":"p_tcb_mp", "subProductCode":"sp_tcb_mp_cloudbase_dau"}
|
395
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
396
379
|
:type BillTags: str
|
397
380
|
:param _ResourceLimit: json格式化用户资源限制,例如:
|
398
381
|
{"Qps":1000,"InvokeNum":{"TimeUnit":"m", "Unit":"万次", "MaxSize": 100},"Capacity":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}, "Cdn":{"Flux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}, "BackFlux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}},"Scf":{"Concurrency":1000,"OutFlux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100},"MemoryUse":{"TimeUnit":"m", "Unit":"WGBS", "MaxSize": 100000}}}
|
399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
400
382
|
:type ResourceLimit: str
|
401
383
|
:param _AdvanceLimit: json格式化高级限制,例如:
|
402
384
|
{"CMSEnable":false,"ProvisionedConcurrencyMem":512000, "PictureProcessing":false, "SecurityAudit":false, "RealTimePush":false, "TemplateMessageBatchPush":false, "Payment":false}
|
403
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
404
385
|
:type AdvanceLimit: str
|
405
386
|
:param _PackageDescription: 套餐描述
|
406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
407
387
|
:type PackageDescription: str
|
408
388
|
:param _IsExternal: 是否对外展示
|
409
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
410
389
|
:type IsExternal: bool
|
411
390
|
"""
|
412
391
|
self._PackageName = None
|
@@ -422,7 +401,6 @@ class BaasPackageInfo(AbstractModel):
|
|
422
401
|
@property
|
423
402
|
def PackageName(self):
|
424
403
|
"""DAU产品套餐ID
|
425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
426
404
|
:rtype: str
|
427
405
|
"""
|
428
406
|
return self._PackageName
|
@@ -434,7 +412,6 @@ class BaasPackageInfo(AbstractModel):
|
|
434
412
|
@property
|
435
413
|
def PackageTitle(self):
|
436
414
|
"""DAU套餐中文名称
|
437
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
438
415
|
:rtype: str
|
439
416
|
"""
|
440
417
|
return self._PackageTitle
|
@@ -446,7 +423,6 @@ class BaasPackageInfo(AbstractModel):
|
|
446
423
|
@property
|
447
424
|
def GroupName(self):
|
448
425
|
"""套餐分组
|
449
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
450
426
|
:rtype: str
|
451
427
|
"""
|
452
428
|
return self._GroupName
|
@@ -458,7 +434,6 @@ class BaasPackageInfo(AbstractModel):
|
|
458
434
|
@property
|
459
435
|
def GroupTitle(self):
|
460
436
|
"""套餐分组中文名
|
461
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
462
437
|
:rtype: str
|
463
438
|
"""
|
464
439
|
return self._GroupTitle
|
@@ -471,7 +446,6 @@ class BaasPackageInfo(AbstractModel):
|
|
471
446
|
def BillTags(self):
|
472
447
|
"""json格式化计费标签,例如:
|
473
448
|
{"pid":2, "cids":{"create": 2, "renew": 2, "modify": 2}, "productCode":"p_tcb_mp", "subProductCode":"sp_tcb_mp_cloudbase_dau"}
|
474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
475
449
|
:rtype: str
|
476
450
|
"""
|
477
451
|
return self._BillTags
|
@@ -484,7 +458,6 @@ class BaasPackageInfo(AbstractModel):
|
|
484
458
|
def ResourceLimit(self):
|
485
459
|
"""json格式化用户资源限制,例如:
|
486
460
|
{"Qps":1000,"InvokeNum":{"TimeUnit":"m", "Unit":"万次", "MaxSize": 100},"Capacity":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}, "Cdn":{"Flux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}, "BackFlux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100}},"Scf":{"Concurrency":1000,"OutFlux":{"TimeUnit":"m", "Unit":"GB", "MaxSize": 100},"MemoryUse":{"TimeUnit":"m", "Unit":"WGBS", "MaxSize": 100000}}}
|
487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
488
461
|
:rtype: str
|
489
462
|
"""
|
490
463
|
return self._ResourceLimit
|
@@ -497,7 +470,6 @@ class BaasPackageInfo(AbstractModel):
|
|
497
470
|
def AdvanceLimit(self):
|
498
471
|
"""json格式化高级限制,例如:
|
499
472
|
{"CMSEnable":false,"ProvisionedConcurrencyMem":512000, "PictureProcessing":false, "SecurityAudit":false, "RealTimePush":false, "TemplateMessageBatchPush":false, "Payment":false}
|
500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
501
473
|
:rtype: str
|
502
474
|
"""
|
503
475
|
return self._AdvanceLimit
|
@@ -509,7 +481,6 @@ class BaasPackageInfo(AbstractModel):
|
|
509
481
|
@property
|
510
482
|
def PackageDescription(self):
|
511
483
|
"""套餐描述
|
512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
513
484
|
:rtype: str
|
514
485
|
"""
|
515
486
|
return self._PackageDescription
|
@@ -521,7 +492,6 @@ class BaasPackageInfo(AbstractModel):
|
|
521
492
|
@property
|
522
493
|
def IsExternal(self):
|
523
494
|
"""是否对外展示
|
524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
525
495
|
:rtype: bool
|
526
496
|
"""
|
527
497
|
return self._IsExternal
|
@@ -755,10 +725,8 @@ class CbrPackageInfo(AbstractModel):
|
|
755
725
|
def __init__(self):
|
756
726
|
r"""
|
757
727
|
:param _PackageName: 代码包名称
|
758
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
759
728
|
:type PackageName: str
|
760
729
|
:param _PackageVersion: 代码包版本
|
761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
762
730
|
:type PackageVersion: str
|
763
731
|
"""
|
764
732
|
self._PackageName = None
|
@@ -767,7 +735,6 @@ class CbrPackageInfo(AbstractModel):
|
|
767
735
|
@property
|
768
736
|
def PackageName(self):
|
769
737
|
"""代码包名称
|
770
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
771
738
|
:rtype: str
|
772
739
|
"""
|
773
740
|
return self._PackageName
|
@@ -779,7 +746,6 @@ class CbrPackageInfo(AbstractModel):
|
|
779
746
|
@property
|
780
747
|
def PackageVersion(self):
|
781
748
|
"""代码包版本
|
782
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
783
749
|
:rtype: str
|
784
750
|
"""
|
785
751
|
return self._PackageVersion
|
@@ -810,13 +776,10 @@ class CbrRepoInfo(AbstractModel):
|
|
810
776
|
def __init__(self):
|
811
777
|
r"""
|
812
778
|
:param _Repo: 仓库名称
|
813
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
814
779
|
:type Repo: str
|
815
780
|
:param _RepoType: 仓库平台
|
816
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
817
781
|
:type RepoType: str
|
818
782
|
:param _RepoLanguage: 仓库语言
|
819
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
820
783
|
:type RepoLanguage: str
|
821
784
|
:param _Branch: 分支名称
|
822
785
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -830,7 +793,6 @@ class CbrRepoInfo(AbstractModel):
|
|
830
793
|
@property
|
831
794
|
def Repo(self):
|
832
795
|
"""仓库名称
|
833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
834
796
|
:rtype: str
|
835
797
|
"""
|
836
798
|
return self._Repo
|
@@ -842,7 +804,6 @@ class CbrRepoInfo(AbstractModel):
|
|
842
804
|
@property
|
843
805
|
def RepoType(self):
|
844
806
|
"""仓库平台
|
845
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
846
807
|
:rtype: str
|
847
808
|
"""
|
848
809
|
return self._RepoType
|
@@ -854,7 +815,6 @@ class CbrRepoInfo(AbstractModel):
|
|
854
815
|
@property
|
855
816
|
def RepoLanguage(self):
|
856
817
|
"""仓库语言
|
857
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
858
818
|
:rtype: str
|
859
819
|
"""
|
860
820
|
return self._RepoLanguage
|
@@ -943,16 +903,13 @@ class CheckTcbServiceResponse(AbstractModel):
|
|
943
903
|
class CloudBaseCapabilities(AbstractModel):
|
944
904
|
"""cloudrun安全特性能力
|
945
905
|
|
946
|
-
|
947
906
|
"""
|
948
907
|
|
949
908
|
def __init__(self):
|
950
909
|
r"""
|
951
910
|
:param _Add: 启用安全能力项列表
|
952
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
953
911
|
:type Add: list of str
|
954
912
|
:param _Drop: 禁用安全能力向列表
|
955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
956
913
|
:type Drop: list of str
|
957
914
|
"""
|
958
915
|
self._Add = None
|
@@ -961,7 +918,6 @@ class CloudBaseCapabilities(AbstractModel):
|
|
961
918
|
@property
|
962
919
|
def Add(self):
|
963
920
|
"""启用安全能力项列表
|
964
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
965
921
|
:rtype: list of str
|
966
922
|
"""
|
967
923
|
return self._Add
|
@@ -973,7 +929,6 @@ class CloudBaseCapabilities(AbstractModel):
|
|
973
929
|
@property
|
974
930
|
def Drop(self):
|
975
931
|
"""禁用安全能力向列表
|
976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
977
932
|
:rtype: list of str
|
978
933
|
"""
|
979
934
|
return self._Drop
|
@@ -1057,10 +1012,8 @@ class CloudBaseCodeRepoName(AbstractModel):
|
|
1057
1012
|
def __init__(self):
|
1058
1013
|
r"""
|
1059
1014
|
:param _Name: repo的名字
|
1060
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1061
1015
|
:type Name: str
|
1062
1016
|
:param _FullName: repo的完整全名
|
1063
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1064
1017
|
:type FullName: str
|
1065
1018
|
"""
|
1066
1019
|
self._Name = None
|
@@ -1069,7 +1022,6 @@ class CloudBaseCodeRepoName(AbstractModel):
|
|
1069
1022
|
@property
|
1070
1023
|
def Name(self):
|
1071
1024
|
"""repo的名字
|
1072
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1073
1025
|
:rtype: str
|
1074
1026
|
"""
|
1075
1027
|
return self._Name
|
@@ -1081,7 +1033,6 @@ class CloudBaseCodeRepoName(AbstractModel):
|
|
1081
1033
|
@property
|
1082
1034
|
def FullName(self):
|
1083
1035
|
"""repo的完整全名
|
1084
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1085
1036
|
:rtype: str
|
1086
1037
|
"""
|
1087
1038
|
return self._FullName
|
@@ -1112,25 +1063,18 @@ class CloudBaseEsInfo(AbstractModel):
|
|
1112
1063
|
def __init__(self):
|
1113
1064
|
r"""
|
1114
1065
|
:param _Id: es的id
|
1115
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1116
1066
|
:type Id: int
|
1117
1067
|
:param _SecretName: secret名字
|
1118
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1119
1068
|
:type SecretName: str
|
1120
1069
|
:param _Ip: ip地址
|
1121
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1122
1070
|
:type Ip: str
|
1123
1071
|
:param _Port: 端口
|
1124
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1125
1072
|
:type Port: int
|
1126
1073
|
:param _Index: 索引
|
1127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1128
1074
|
:type Index: str
|
1129
1075
|
:param _Account: 用户名
|
1130
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1131
1076
|
:type Account: str
|
1132
1077
|
:param _Password: 密码
|
1133
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1134
1078
|
:type Password: str
|
1135
1079
|
"""
|
1136
1080
|
self._Id = None
|
@@ -1144,7 +1088,6 @@ class CloudBaseEsInfo(AbstractModel):
|
|
1144
1088
|
@property
|
1145
1089
|
def Id(self):
|
1146
1090
|
"""es的id
|
1147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1148
1091
|
:rtype: int
|
1149
1092
|
"""
|
1150
1093
|
return self._Id
|
@@ -1156,7 +1099,6 @@ class CloudBaseEsInfo(AbstractModel):
|
|
1156
1099
|
@property
|
1157
1100
|
def SecretName(self):
|
1158
1101
|
"""secret名字
|
1159
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1160
1102
|
:rtype: str
|
1161
1103
|
"""
|
1162
1104
|
return self._SecretName
|
@@ -1168,7 +1110,6 @@ class CloudBaseEsInfo(AbstractModel):
|
|
1168
1110
|
@property
|
1169
1111
|
def Ip(self):
|
1170
1112
|
"""ip地址
|
1171
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1172
1113
|
:rtype: str
|
1173
1114
|
"""
|
1174
1115
|
return self._Ip
|
@@ -1180,7 +1121,6 @@ class CloudBaseEsInfo(AbstractModel):
|
|
1180
1121
|
@property
|
1181
1122
|
def Port(self):
|
1182
1123
|
"""端口
|
1183
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1184
1124
|
:rtype: int
|
1185
1125
|
"""
|
1186
1126
|
return self._Port
|
@@ -1192,7 +1132,6 @@ class CloudBaseEsInfo(AbstractModel):
|
|
1192
1132
|
@property
|
1193
1133
|
def Index(self):
|
1194
1134
|
"""索引
|
1195
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1196
1135
|
:rtype: str
|
1197
1136
|
"""
|
1198
1137
|
return self._Index
|
@@ -1204,7 +1143,6 @@ class CloudBaseEsInfo(AbstractModel):
|
|
1204
1143
|
@property
|
1205
1144
|
def Account(self):
|
1206
1145
|
"""用户名
|
1207
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1208
1146
|
:rtype: str
|
1209
1147
|
"""
|
1210
1148
|
return self._Account
|
@@ -1216,7 +1154,6 @@ class CloudBaseEsInfo(AbstractModel):
|
|
1216
1154
|
@property
|
1217
1155
|
def Password(self):
|
1218
1156
|
"""密码
|
1219
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1220
1157
|
:rtype: str
|
1221
1158
|
"""
|
1222
1159
|
return self._Password
|
@@ -1254,16 +1191,12 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1254
1191
|
:param _Name: 项目名
|
1255
1192
|
:type Name: str
|
1256
1193
|
:param _Sam: SAM json
|
1257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1258
1194
|
:type Sam: str
|
1259
1195
|
:param _Source: 来源类型
|
1260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1261
1196
|
:type Source: :class:`tencentcloud.tcb.v20180608.models.CodeSource`
|
1262
1197
|
:param _CreateTime: 创建时间, unix时间戳
|
1263
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1264
1198
|
:type CreateTime: int
|
1265
1199
|
:param _UpdateTime: 更新时间 ,unix时间戳
|
1266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1267
1200
|
:type UpdateTime: int
|
1268
1201
|
:param _Status: 项目状态, 枚举值:
|
1269
1202
|
"creatingEnv"-创建环境中
|
@@ -1273,79 +1206,55 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1273
1206
|
"deploying"-部署中
|
1274
1207
|
"deployFail"-部署失败
|
1275
1208
|
"success"-部署成功
|
1276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1277
1209
|
:type Status: str
|
1278
1210
|
:param _Parameters: 环境变量
|
1279
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1280
1211
|
:type Parameters: list of KVPair
|
1281
1212
|
:param _Type: 项目类型, 枚举值:
|
1282
1213
|
"framework-oneclick" 控制台一键部署
|
1283
1214
|
"framework-local-oneclick" cli本地一键部署
|
1284
1215
|
"qci-extension-cicd" 内网coding ci cd
|
1285
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1286
1216
|
:type Type: str
|
1287
1217
|
:param _CIId: ci的id
|
1288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1289
1218
|
:type CIId: str
|
1290
1219
|
:param _CDId: cd的id
|
1291
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1292
1220
|
:type CDId: str
|
1293
1221
|
:param _EnvId: 环境id
|
1294
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1295
1222
|
:type EnvId: str
|
1296
1223
|
:param _VersionNum: 版本号
|
1297
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1298
1224
|
:type VersionNum: int
|
1299
1225
|
:param _FailReason: 错误原因
|
1300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1301
1226
|
:type FailReason: str
|
1302
1227
|
:param _RcJson: rc.json内容
|
1303
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1304
1228
|
:type RcJson: str
|
1305
1229
|
:param _AddonConfig: 插件配置内容
|
1306
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1307
1230
|
:type AddonConfig: str
|
1308
1231
|
:param _Tags: 标签
|
1309
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1310
1232
|
:type Tags: list of str
|
1311
1233
|
:param _NetworkConfig: 网络配置
|
1312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1313
1234
|
:type NetworkConfig: str
|
1314
1235
|
:param _ExtensionId: 扩展id
|
1315
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1316
1236
|
:type ExtensionId: str
|
1317
1237
|
:param _FailType: 错误类型
|
1318
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1319
1238
|
:type FailType: str
|
1320
1239
|
:param _RepoUrl: 私有仓库地址
|
1321
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1322
1240
|
:type RepoUrl: str
|
1323
1241
|
:param _AutoDeployOnCodeChange: 是否私有仓库代码变更触发自动部署
|
1324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1325
1242
|
:type AutoDeployOnCodeChange: bool
|
1326
1243
|
:param _BuildPercent: ci部署进度(%)
|
1327
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1328
1244
|
:type BuildPercent: int
|
1329
1245
|
:param _Uin: Uin
|
1330
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1331
1246
|
:type Uin: str
|
1332
1247
|
:param _BuildFinishTime: BuildFinishTime
|
1333
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1334
1248
|
:type BuildFinishTime: str
|
1335
1249
|
:param _DeployFinishTime: DeployFinishTime
|
1336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1337
1250
|
:type DeployFinishTime: str
|
1338
1251
|
:param _BuildId: BuildId
|
1339
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1340
1252
|
:type BuildId: str
|
1341
1253
|
:param _SourceUrl: SourceUrl
|
1342
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1343
1254
|
:type SourceUrl: str
|
1344
1255
|
:param _FailReasonShort: FailReasonShort
|
1345
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1346
1256
|
:type FailReasonShort: str
|
1347
1257
|
:param _FirstInitRepo: FirstInitRepo
|
1348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1349
1258
|
:type FirstInitRepo: str
|
1350
1259
|
"""
|
1351
1260
|
self._Name = None
|
@@ -1392,7 +1301,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1392
1301
|
@property
|
1393
1302
|
def Sam(self):
|
1394
1303
|
"""SAM json
|
1395
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1396
1304
|
:rtype: str
|
1397
1305
|
"""
|
1398
1306
|
return self._Sam
|
@@ -1404,7 +1312,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1404
1312
|
@property
|
1405
1313
|
def Source(self):
|
1406
1314
|
"""来源类型
|
1407
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1408
1315
|
:rtype: :class:`tencentcloud.tcb.v20180608.models.CodeSource`
|
1409
1316
|
"""
|
1410
1317
|
return self._Source
|
@@ -1416,7 +1323,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1416
1323
|
@property
|
1417
1324
|
def CreateTime(self):
|
1418
1325
|
"""创建时间, unix时间戳
|
1419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1420
1326
|
:rtype: int
|
1421
1327
|
"""
|
1422
1328
|
return self._CreateTime
|
@@ -1428,7 +1334,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1428
1334
|
@property
|
1429
1335
|
def UpdateTime(self):
|
1430
1336
|
"""更新时间 ,unix时间戳
|
1431
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1432
1337
|
:rtype: int
|
1433
1338
|
"""
|
1434
1339
|
return self._UpdateTime
|
@@ -1447,7 +1352,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1447
1352
|
"deploying"-部署中
|
1448
1353
|
"deployFail"-部署失败
|
1449
1354
|
"success"-部署成功
|
1450
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1451
1355
|
:rtype: str
|
1452
1356
|
"""
|
1453
1357
|
return self._Status
|
@@ -1459,7 +1363,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1459
1363
|
@property
|
1460
1364
|
def Parameters(self):
|
1461
1365
|
"""环境变量
|
1462
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1463
1366
|
:rtype: list of KVPair
|
1464
1367
|
"""
|
1465
1368
|
return self._Parameters
|
@@ -1474,7 +1377,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1474
1377
|
"framework-oneclick" 控制台一键部署
|
1475
1378
|
"framework-local-oneclick" cli本地一键部署
|
1476
1379
|
"qci-extension-cicd" 内网coding ci cd
|
1477
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1478
1380
|
:rtype: str
|
1479
1381
|
"""
|
1480
1382
|
return self._Type
|
@@ -1486,7 +1388,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1486
1388
|
@property
|
1487
1389
|
def CIId(self):
|
1488
1390
|
"""ci的id
|
1489
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1490
1391
|
:rtype: str
|
1491
1392
|
"""
|
1492
1393
|
return self._CIId
|
@@ -1498,7 +1399,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1498
1399
|
@property
|
1499
1400
|
def CDId(self):
|
1500
1401
|
"""cd的id
|
1501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1502
1402
|
:rtype: str
|
1503
1403
|
"""
|
1504
1404
|
return self._CDId
|
@@ -1510,7 +1410,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1510
1410
|
@property
|
1511
1411
|
def EnvId(self):
|
1512
1412
|
"""环境id
|
1513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1514
1413
|
:rtype: str
|
1515
1414
|
"""
|
1516
1415
|
return self._EnvId
|
@@ -1522,7 +1421,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1522
1421
|
@property
|
1523
1422
|
def VersionNum(self):
|
1524
1423
|
"""版本号
|
1525
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1526
1424
|
:rtype: int
|
1527
1425
|
"""
|
1528
1426
|
return self._VersionNum
|
@@ -1534,7 +1432,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1534
1432
|
@property
|
1535
1433
|
def FailReason(self):
|
1536
1434
|
"""错误原因
|
1537
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1538
1435
|
:rtype: str
|
1539
1436
|
"""
|
1540
1437
|
return self._FailReason
|
@@ -1546,7 +1443,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1546
1443
|
@property
|
1547
1444
|
def RcJson(self):
|
1548
1445
|
"""rc.json内容
|
1549
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1550
1446
|
:rtype: str
|
1551
1447
|
"""
|
1552
1448
|
return self._RcJson
|
@@ -1558,7 +1454,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1558
1454
|
@property
|
1559
1455
|
def AddonConfig(self):
|
1560
1456
|
"""插件配置内容
|
1561
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1562
1457
|
:rtype: str
|
1563
1458
|
"""
|
1564
1459
|
return self._AddonConfig
|
@@ -1570,7 +1465,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1570
1465
|
@property
|
1571
1466
|
def Tags(self):
|
1572
1467
|
"""标签
|
1573
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1574
1468
|
:rtype: list of str
|
1575
1469
|
"""
|
1576
1470
|
return self._Tags
|
@@ -1582,7 +1476,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1582
1476
|
@property
|
1583
1477
|
def NetworkConfig(self):
|
1584
1478
|
"""网络配置
|
1585
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1586
1479
|
:rtype: str
|
1587
1480
|
"""
|
1588
1481
|
return self._NetworkConfig
|
@@ -1594,7 +1487,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1594
1487
|
@property
|
1595
1488
|
def ExtensionId(self):
|
1596
1489
|
"""扩展id
|
1597
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1598
1490
|
:rtype: str
|
1599
1491
|
"""
|
1600
1492
|
return self._ExtensionId
|
@@ -1606,7 +1498,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1606
1498
|
@property
|
1607
1499
|
def FailType(self):
|
1608
1500
|
"""错误类型
|
1609
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1610
1501
|
:rtype: str
|
1611
1502
|
"""
|
1612
1503
|
return self._FailType
|
@@ -1618,7 +1509,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1618
1509
|
@property
|
1619
1510
|
def RepoUrl(self):
|
1620
1511
|
"""私有仓库地址
|
1621
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1622
1512
|
:rtype: str
|
1623
1513
|
"""
|
1624
1514
|
return self._RepoUrl
|
@@ -1630,7 +1520,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1630
1520
|
@property
|
1631
1521
|
def AutoDeployOnCodeChange(self):
|
1632
1522
|
"""是否私有仓库代码变更触发自动部署
|
1633
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1634
1523
|
:rtype: bool
|
1635
1524
|
"""
|
1636
1525
|
return self._AutoDeployOnCodeChange
|
@@ -1642,7 +1531,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1642
1531
|
@property
|
1643
1532
|
def BuildPercent(self):
|
1644
1533
|
"""ci部署进度(%)
|
1645
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1646
1534
|
:rtype: int
|
1647
1535
|
"""
|
1648
1536
|
return self._BuildPercent
|
@@ -1654,7 +1542,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1654
1542
|
@property
|
1655
1543
|
def Uin(self):
|
1656
1544
|
"""Uin
|
1657
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1658
1545
|
:rtype: str
|
1659
1546
|
"""
|
1660
1547
|
return self._Uin
|
@@ -1666,7 +1553,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1666
1553
|
@property
|
1667
1554
|
def BuildFinishTime(self):
|
1668
1555
|
"""BuildFinishTime
|
1669
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1670
1556
|
:rtype: str
|
1671
1557
|
"""
|
1672
1558
|
return self._BuildFinishTime
|
@@ -1678,7 +1564,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1678
1564
|
@property
|
1679
1565
|
def DeployFinishTime(self):
|
1680
1566
|
"""DeployFinishTime
|
1681
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1682
1567
|
:rtype: str
|
1683
1568
|
"""
|
1684
1569
|
return self._DeployFinishTime
|
@@ -1690,7 +1575,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1690
1575
|
@property
|
1691
1576
|
def BuildId(self):
|
1692
1577
|
"""BuildId
|
1693
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1694
1578
|
:rtype: str
|
1695
1579
|
"""
|
1696
1580
|
return self._BuildId
|
@@ -1702,7 +1586,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1702
1586
|
@property
|
1703
1587
|
def SourceUrl(self):
|
1704
1588
|
"""SourceUrl
|
1705
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1706
1589
|
:rtype: str
|
1707
1590
|
"""
|
1708
1591
|
return self._SourceUrl
|
@@ -1714,7 +1597,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1714
1597
|
@property
|
1715
1598
|
def FailReasonShort(self):
|
1716
1599
|
"""FailReasonShort
|
1717
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1718
1600
|
:rtype: str
|
1719
1601
|
"""
|
1720
1602
|
return self._FailReasonShort
|
@@ -1726,7 +1608,6 @@ class CloudBaseProjectVersion(AbstractModel):
|
|
1726
1608
|
@property
|
1727
1609
|
def FirstInitRepo(self):
|
1728
1610
|
"""FirstInitRepo
|
1729
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1730
1611
|
:rtype: str
|
1731
1612
|
"""
|
1732
1613
|
return self._FirstInitRepo
|
@@ -1791,10 +1672,13 @@ class CloudBaseRunEmptyDirVolumeSource(AbstractModel):
|
|
1791
1672
|
def __init__(self):
|
1792
1673
|
r"""
|
1793
1674
|
:param _EnableEmptyDirVolume: 启用emptydir数据卷
|
1675
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1794
1676
|
:type EnableEmptyDirVolume: bool
|
1795
1677
|
:param _Medium: "","Memory","HugePages"
|
1678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1796
1679
|
:type Medium: str
|
1797
1680
|
:param _SizeLimit: emptydir数据卷大小
|
1681
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1798
1682
|
:type SizeLimit: str
|
1799
1683
|
"""
|
1800
1684
|
self._EnableEmptyDirVolume = None
|
@@ -1804,6 +1688,7 @@ class CloudBaseRunEmptyDirVolumeSource(AbstractModel):
|
|
1804
1688
|
@property
|
1805
1689
|
def EnableEmptyDirVolume(self):
|
1806
1690
|
"""启用emptydir数据卷
|
1691
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1807
1692
|
:rtype: bool
|
1808
1693
|
"""
|
1809
1694
|
return self._EnableEmptyDirVolume
|
@@ -1815,6 +1700,7 @@ class CloudBaseRunEmptyDirVolumeSource(AbstractModel):
|
|
1815
1700
|
@property
|
1816
1701
|
def Medium(self):
|
1817
1702
|
""""","Memory","HugePages"
|
1703
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1818
1704
|
:rtype: str
|
1819
1705
|
"""
|
1820
1706
|
return self._Medium
|
@@ -1826,6 +1712,7 @@ class CloudBaseRunEmptyDirVolumeSource(AbstractModel):
|
|
1826
1712
|
@property
|
1827
1713
|
def SizeLimit(self):
|
1828
1714
|
"""emptydir数据卷大小
|
1715
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1829
1716
|
:rtype: str
|
1830
1717
|
"""
|
1831
1718
|
return self._SizeLimit
|
@@ -2250,13 +2137,10 @@ class CloudBaseRunKVPriority(AbstractModel):
|
|
2250
2137
|
def __init__(self):
|
2251
2138
|
r"""
|
2252
2139
|
:param _Key: 参数的Key
|
2253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2254
2140
|
:type Key: str
|
2255
2141
|
:param _Value: 参数的Value
|
2256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2257
2142
|
:type Value: str
|
2258
2143
|
:param _Priority: 优先级
|
2259
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2260
2144
|
:type Priority: int
|
2261
2145
|
"""
|
2262
2146
|
self._Key = None
|
@@ -2266,7 +2150,6 @@ class CloudBaseRunKVPriority(AbstractModel):
|
|
2266
2150
|
@property
|
2267
2151
|
def Key(self):
|
2268
2152
|
"""参数的Key
|
2269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2270
2153
|
:rtype: str
|
2271
2154
|
"""
|
2272
2155
|
return self._Key
|
@@ -2278,7 +2161,6 @@ class CloudBaseRunKVPriority(AbstractModel):
|
|
2278
2161
|
@property
|
2279
2162
|
def Value(self):
|
2280
2163
|
"""参数的Value
|
2281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2282
2164
|
:rtype: str
|
2283
2165
|
"""
|
2284
2166
|
return self._Value
|
@@ -2290,7 +2172,6 @@ class CloudBaseRunKVPriority(AbstractModel):
|
|
2290
2172
|
@property
|
2291
2173
|
def Priority(self):
|
2292
2174
|
"""优先级
|
2293
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2294
2175
|
:rtype: int
|
2295
2176
|
"""
|
2296
2177
|
return self._Priority
|
@@ -2322,19 +2203,14 @@ class CloudBaseRunNfsVolumeSource(AbstractModel):
|
|
2322
2203
|
def __init__(self):
|
2323
2204
|
r"""
|
2324
2205
|
:param _Server: NFS挂载Server
|
2325
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2326
2206
|
:type Server: str
|
2327
2207
|
:param _Path: Server路径
|
2328
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2329
2208
|
:type Path: str
|
2330
2209
|
:param _ReadOnly: 是否只读
|
2331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2332
2210
|
:type ReadOnly: bool
|
2333
2211
|
:param _SecretName: secret名称
|
2334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2335
2212
|
:type SecretName: str
|
2336
2213
|
:param _EnableEmptyDirVolume: 临时目录
|
2337
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2338
2214
|
:type EnableEmptyDirVolume: bool
|
2339
2215
|
"""
|
2340
2216
|
self._Server = None
|
@@ -2346,7 +2222,6 @@ class CloudBaseRunNfsVolumeSource(AbstractModel):
|
|
2346
2222
|
@property
|
2347
2223
|
def Server(self):
|
2348
2224
|
"""NFS挂载Server
|
2349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2350
2225
|
:rtype: str
|
2351
2226
|
"""
|
2352
2227
|
return self._Server
|
@@ -2358,7 +2233,6 @@ class CloudBaseRunNfsVolumeSource(AbstractModel):
|
|
2358
2233
|
@property
|
2359
2234
|
def Path(self):
|
2360
2235
|
"""Server路径
|
2361
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2362
2236
|
:rtype: str
|
2363
2237
|
"""
|
2364
2238
|
return self._Path
|
@@ -2370,7 +2244,6 @@ class CloudBaseRunNfsVolumeSource(AbstractModel):
|
|
2370
2244
|
@property
|
2371
2245
|
def ReadOnly(self):
|
2372
2246
|
"""是否只读
|
2373
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2374
2247
|
:rtype: bool
|
2375
2248
|
"""
|
2376
2249
|
return self._ReadOnly
|
@@ -2382,7 +2255,6 @@ class CloudBaseRunNfsVolumeSource(AbstractModel):
|
|
2382
2255
|
@property
|
2383
2256
|
def SecretName(self):
|
2384
2257
|
"""secret名称
|
2385
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2386
2258
|
:rtype: str
|
2387
2259
|
"""
|
2388
2260
|
return self._SecretName
|
@@ -2394,7 +2266,6 @@ class CloudBaseRunNfsVolumeSource(AbstractModel):
|
|
2394
2266
|
@property
|
2395
2267
|
def EnableEmptyDirVolume(self):
|
2396
2268
|
"""临时目录
|
2397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2398
2269
|
:rtype: bool
|
2399
2270
|
"""
|
2400
2271
|
return self._EnableEmptyDirVolume
|
@@ -2430,54 +2301,39 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2430
2301
|
:param _VersionName: 版本名称
|
2431
2302
|
:type VersionName: str
|
2432
2303
|
:param _Status: 状态
|
2433
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2434
2304
|
:type Status: str
|
2435
2305
|
:param _FlowRatio: 流量占比
|
2436
2306
|
:type FlowRatio: int
|
2437
2307
|
:param _CreatedTime: 创建时间
|
2438
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2439
2308
|
:type CreatedTime: str
|
2440
2309
|
:param _UpdatedTime: 更新时间
|
2441
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2442
2310
|
:type UpdatedTime: str
|
2443
2311
|
:param _BuildId: 构建ID
|
2444
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2445
2312
|
:type BuildId: int
|
2446
2313
|
:param _UploadType: 构建方式
|
2447
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2448
2314
|
:type UploadType: str
|
2449
2315
|
:param _Remark: 备注
|
2450
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2451
2316
|
:type Remark: str
|
2452
2317
|
:param _UrlParam: url中的参数路径
|
2453
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2454
2318
|
:type UrlParam: :class:`tencentcloud.tcb.v20180608.models.ObjectKV`
|
2455
2319
|
:param _Priority: 优先级(数值越小,优先级越高)
|
2456
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2457
2320
|
:type Priority: int
|
2458
2321
|
:param _IsDefaultPriority: 是否是默认兜底版本
|
2459
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2460
2322
|
:type IsDefaultPriority: bool
|
2461
2323
|
:param _FlowParams: KV Params
|
2462
2324
|
注意:此字段可能返回 null,表示取不到有效值。
|
2463
2325
|
:type FlowParams: list of CloudBaseRunKVPriority
|
2464
2326
|
:param _MinReplicas: 最小副本数
|
2465
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2466
2327
|
:type MinReplicas: int
|
2467
2328
|
:param _MaxReplicas: 最大副本数
|
2468
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2469
2329
|
:type MaxReplicas: int
|
2470
2330
|
:param _RunId: 操作记录id
|
2471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2472
2331
|
:type RunId: str
|
2473
2332
|
:param _Percent: 进度
|
2474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2475
2333
|
:type Percent: int
|
2476
2334
|
:param _CurrentReplicas: 当前副本数
|
2477
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2478
2335
|
:type CurrentReplicas: int
|
2479
2336
|
:param _Architecture: Monolithic,Microservice
|
2480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2481
2337
|
:type Architecture: str
|
2482
2338
|
"""
|
2483
2339
|
self._VersionName = None
|
@@ -2513,7 +2369,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2513
2369
|
@property
|
2514
2370
|
def Status(self):
|
2515
2371
|
"""状态
|
2516
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2517
2372
|
:rtype: str
|
2518
2373
|
"""
|
2519
2374
|
return self._Status
|
@@ -2536,7 +2391,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2536
2391
|
@property
|
2537
2392
|
def CreatedTime(self):
|
2538
2393
|
"""创建时间
|
2539
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2540
2394
|
:rtype: str
|
2541
2395
|
"""
|
2542
2396
|
return self._CreatedTime
|
@@ -2548,7 +2402,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2548
2402
|
@property
|
2549
2403
|
def UpdatedTime(self):
|
2550
2404
|
"""更新时间
|
2551
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2552
2405
|
:rtype: str
|
2553
2406
|
"""
|
2554
2407
|
return self._UpdatedTime
|
@@ -2560,7 +2413,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2560
2413
|
@property
|
2561
2414
|
def BuildId(self):
|
2562
2415
|
"""构建ID
|
2563
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2564
2416
|
:rtype: int
|
2565
2417
|
"""
|
2566
2418
|
return self._BuildId
|
@@ -2572,7 +2424,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2572
2424
|
@property
|
2573
2425
|
def UploadType(self):
|
2574
2426
|
"""构建方式
|
2575
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2576
2427
|
:rtype: str
|
2577
2428
|
"""
|
2578
2429
|
return self._UploadType
|
@@ -2584,7 +2435,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2584
2435
|
@property
|
2585
2436
|
def Remark(self):
|
2586
2437
|
"""备注
|
2587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2588
2438
|
:rtype: str
|
2589
2439
|
"""
|
2590
2440
|
return self._Remark
|
@@ -2596,7 +2446,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2596
2446
|
@property
|
2597
2447
|
def UrlParam(self):
|
2598
2448
|
"""url中的参数路径
|
2599
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2600
2449
|
:rtype: :class:`tencentcloud.tcb.v20180608.models.ObjectKV`
|
2601
2450
|
"""
|
2602
2451
|
return self._UrlParam
|
@@ -2608,7 +2457,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2608
2457
|
@property
|
2609
2458
|
def Priority(self):
|
2610
2459
|
"""优先级(数值越小,优先级越高)
|
2611
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2612
2460
|
:rtype: int
|
2613
2461
|
"""
|
2614
2462
|
return self._Priority
|
@@ -2620,7 +2468,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2620
2468
|
@property
|
2621
2469
|
def IsDefaultPriority(self):
|
2622
2470
|
"""是否是默认兜底版本
|
2623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2624
2471
|
:rtype: bool
|
2625
2472
|
"""
|
2626
2473
|
return self._IsDefaultPriority
|
@@ -2644,7 +2491,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2644
2491
|
@property
|
2645
2492
|
def MinReplicas(self):
|
2646
2493
|
"""最小副本数
|
2647
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2648
2494
|
:rtype: int
|
2649
2495
|
"""
|
2650
2496
|
return self._MinReplicas
|
@@ -2656,7 +2502,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2656
2502
|
@property
|
2657
2503
|
def MaxReplicas(self):
|
2658
2504
|
"""最大副本数
|
2659
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2660
2505
|
:rtype: int
|
2661
2506
|
"""
|
2662
2507
|
return self._MaxReplicas
|
@@ -2668,7 +2513,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2668
2513
|
@property
|
2669
2514
|
def RunId(self):
|
2670
2515
|
"""操作记录id
|
2671
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2672
2516
|
:rtype: str
|
2673
2517
|
"""
|
2674
2518
|
return self._RunId
|
@@ -2680,7 +2524,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2680
2524
|
@property
|
2681
2525
|
def Percent(self):
|
2682
2526
|
"""进度
|
2683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2684
2527
|
:rtype: int
|
2685
2528
|
"""
|
2686
2529
|
return self._Percent
|
@@ -2692,7 +2535,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2692
2535
|
@property
|
2693
2536
|
def CurrentReplicas(self):
|
2694
2537
|
"""当前副本数
|
2695
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2696
2538
|
:rtype: int
|
2697
2539
|
"""
|
2698
2540
|
return self._CurrentReplicas
|
@@ -2704,7 +2546,6 @@ class CloudBaseRunServerVersionItem(AbstractModel):
|
|
2704
2546
|
@property
|
2705
2547
|
def Architecture(self):
|
2706
2548
|
"""Monolithic,Microservice
|
2707
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2708
2549
|
:rtype: str
|
2709
2550
|
"""
|
2710
2551
|
return self._Architecture
|
@@ -2755,6 +2596,38 @@ class CloudBaseRunServiceVolumeHostPath(AbstractModel):
|
|
2755
2596
|
|
2756
2597
|
"""
|
2757
2598
|
|
2599
|
+
def __init__(self):
|
2600
|
+
r"""
|
2601
|
+
:param _Path: 主机路径
|
2602
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2603
|
+
:type Path: str
|
2604
|
+
"""
|
2605
|
+
self._Path = None
|
2606
|
+
|
2607
|
+
@property
|
2608
|
+
def Path(self):
|
2609
|
+
"""主机路径
|
2610
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2611
|
+
:rtype: str
|
2612
|
+
"""
|
2613
|
+
return self._Path
|
2614
|
+
|
2615
|
+
@Path.setter
|
2616
|
+
def Path(self, Path):
|
2617
|
+
self._Path = Path
|
2618
|
+
|
2619
|
+
|
2620
|
+
def _deserialize(self, params):
|
2621
|
+
self._Path = params.get("Path")
|
2622
|
+
memeber_set = set(params.keys())
|
2623
|
+
for name, value in vars(self).items():
|
2624
|
+
property_name = name[1:]
|
2625
|
+
if property_name in memeber_set:
|
2626
|
+
memeber_set.remove(property_name)
|
2627
|
+
if len(memeber_set) > 0:
|
2628
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2629
|
+
|
2630
|
+
|
2758
2631
|
|
2759
2632
|
class CloudBaseRunServiceVolumeMount(AbstractModel):
|
2760
2633
|
"""对标 EKS VolumeMount
|
@@ -3141,6 +3014,106 @@ class CloudBaseRunVersionFlowItem(AbstractModel):
|
|
3141
3014
|
|
3142
3015
|
|
3143
3016
|
|
3017
|
+
class CloudBaseRunVersionPod(AbstractModel):
|
3018
|
+
"""pod信息
|
3019
|
+
|
3020
|
+
"""
|
3021
|
+
|
3022
|
+
def __init__(self):
|
3023
|
+
r"""
|
3024
|
+
:param _Webshell: webshell链接
|
3025
|
+
:type Webshell: str
|
3026
|
+
:param _PodId: pod name
|
3027
|
+
:type PodId: str
|
3028
|
+
:param _PodIp: pod ip
|
3029
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3030
|
+
:type PodIp: str
|
3031
|
+
:param _Status: 状态
|
3032
|
+
:type Status: str
|
3033
|
+
:param _CreateTime: 创建时间
|
3034
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3035
|
+
:type CreateTime: str
|
3036
|
+
"""
|
3037
|
+
self._Webshell = None
|
3038
|
+
self._PodId = None
|
3039
|
+
self._PodIp = None
|
3040
|
+
self._Status = None
|
3041
|
+
self._CreateTime = None
|
3042
|
+
|
3043
|
+
@property
|
3044
|
+
def Webshell(self):
|
3045
|
+
"""webshell链接
|
3046
|
+
:rtype: str
|
3047
|
+
"""
|
3048
|
+
return self._Webshell
|
3049
|
+
|
3050
|
+
@Webshell.setter
|
3051
|
+
def Webshell(self, Webshell):
|
3052
|
+
self._Webshell = Webshell
|
3053
|
+
|
3054
|
+
@property
|
3055
|
+
def PodId(self):
|
3056
|
+
"""pod name
|
3057
|
+
:rtype: str
|
3058
|
+
"""
|
3059
|
+
return self._PodId
|
3060
|
+
|
3061
|
+
@PodId.setter
|
3062
|
+
def PodId(self, PodId):
|
3063
|
+
self._PodId = PodId
|
3064
|
+
|
3065
|
+
@property
|
3066
|
+
def PodIp(self):
|
3067
|
+
"""pod ip
|
3068
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3069
|
+
:rtype: str
|
3070
|
+
"""
|
3071
|
+
return self._PodIp
|
3072
|
+
|
3073
|
+
@PodIp.setter
|
3074
|
+
def PodIp(self, PodIp):
|
3075
|
+
self._PodIp = PodIp
|
3076
|
+
|
3077
|
+
@property
|
3078
|
+
def Status(self):
|
3079
|
+
"""状态
|
3080
|
+
:rtype: str
|
3081
|
+
"""
|
3082
|
+
return self._Status
|
3083
|
+
|
3084
|
+
@Status.setter
|
3085
|
+
def Status(self, Status):
|
3086
|
+
self._Status = Status
|
3087
|
+
|
3088
|
+
@property
|
3089
|
+
def CreateTime(self):
|
3090
|
+
"""创建时间
|
3091
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3092
|
+
:rtype: str
|
3093
|
+
"""
|
3094
|
+
return self._CreateTime
|
3095
|
+
|
3096
|
+
@CreateTime.setter
|
3097
|
+
def CreateTime(self, CreateTime):
|
3098
|
+
self._CreateTime = CreateTime
|
3099
|
+
|
3100
|
+
|
3101
|
+
def _deserialize(self, params):
|
3102
|
+
self._Webshell = params.get("Webshell")
|
3103
|
+
self._PodId = params.get("PodId")
|
3104
|
+
self._PodIp = params.get("PodIp")
|
3105
|
+
self._Status = params.get("Status")
|
3106
|
+
self._CreateTime = params.get("CreateTime")
|
3107
|
+
memeber_set = set(params.keys())
|
3108
|
+
for name, value in vars(self).items():
|
3109
|
+
property_name = name[1:]
|
3110
|
+
if property_name in memeber_set:
|
3111
|
+
memeber_set.remove(property_name)
|
3112
|
+
if len(memeber_set) > 0:
|
3113
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
3114
|
+
|
3115
|
+
|
3116
|
+
|
3144
3117
|
class CloudBaseRunVolumeMount(AbstractModel):
|
3145
3118
|
"""cfs挂载点
|
3146
3119
|
|
@@ -4241,34 +4214,24 @@ class CodeSource(AbstractModel):
|
|
4241
4214
|
def __init__(self):
|
4242
4215
|
r"""
|
4243
4216
|
:param _Type: 类型, 可能的枚举: "coding","package","package_url","github","gitlab","gitee","rawcode"
|
4244
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4245
4217
|
:type Type: str
|
4246
4218
|
:param _Url: 下载链接
|
4247
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4248
4219
|
:type Url: str
|
4249
4220
|
:param _Name: 名称
|
4250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4251
4221
|
:type Name: str
|
4252
4222
|
:param _WorkDir: 工作目录
|
4253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4254
4223
|
:type WorkDir: str
|
4255
4224
|
:param _CodingPackageName: code包名, type为coding的时候需要填写
|
4256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4257
4225
|
:type CodingPackageName: str
|
4258
4226
|
:param _CodingPackageVersion: coding版本名, type为coding的时候需要填写
|
4259
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4260
4227
|
:type CodingPackageVersion: str
|
4261
4228
|
:param _RawCode: 源码
|
4262
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4263
4229
|
:type RawCode: str
|
4264
4230
|
:param _Branch: 代码分支
|
4265
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4266
4231
|
:type Branch: str
|
4267
4232
|
:param _ProjectId: coding项目ID,type为coding时需要填写
|
4268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4269
4233
|
:type ProjectId: int
|
4270
4234
|
:param _ProjectName: coding项目
|
4271
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4272
4235
|
:type ProjectName: str
|
4273
4236
|
"""
|
4274
4237
|
self._Type = None
|
@@ -4285,7 +4248,6 @@ class CodeSource(AbstractModel):
|
|
4285
4248
|
@property
|
4286
4249
|
def Type(self):
|
4287
4250
|
"""类型, 可能的枚举: "coding","package","package_url","github","gitlab","gitee","rawcode"
|
4288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4289
4251
|
:rtype: str
|
4290
4252
|
"""
|
4291
4253
|
return self._Type
|
@@ -4297,7 +4259,6 @@ class CodeSource(AbstractModel):
|
|
4297
4259
|
@property
|
4298
4260
|
def Url(self):
|
4299
4261
|
"""下载链接
|
4300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4301
4262
|
:rtype: str
|
4302
4263
|
"""
|
4303
4264
|
return self._Url
|
@@ -4309,7 +4270,6 @@ class CodeSource(AbstractModel):
|
|
4309
4270
|
@property
|
4310
4271
|
def Name(self):
|
4311
4272
|
"""名称
|
4312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4313
4273
|
:rtype: str
|
4314
4274
|
"""
|
4315
4275
|
return self._Name
|
@@ -4321,7 +4281,6 @@ class CodeSource(AbstractModel):
|
|
4321
4281
|
@property
|
4322
4282
|
def WorkDir(self):
|
4323
4283
|
"""工作目录
|
4324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4325
4284
|
:rtype: str
|
4326
4285
|
"""
|
4327
4286
|
return self._WorkDir
|
@@ -4333,7 +4292,6 @@ class CodeSource(AbstractModel):
|
|
4333
4292
|
@property
|
4334
4293
|
def CodingPackageName(self):
|
4335
4294
|
"""code包名, type为coding的时候需要填写
|
4336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4337
4295
|
:rtype: str
|
4338
4296
|
"""
|
4339
4297
|
return self._CodingPackageName
|
@@ -4345,7 +4303,6 @@ class CodeSource(AbstractModel):
|
|
4345
4303
|
@property
|
4346
4304
|
def CodingPackageVersion(self):
|
4347
4305
|
"""coding版本名, type为coding的时候需要填写
|
4348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4349
4306
|
:rtype: str
|
4350
4307
|
"""
|
4351
4308
|
return self._CodingPackageVersion
|
@@ -4357,7 +4314,6 @@ class CodeSource(AbstractModel):
|
|
4357
4314
|
@property
|
4358
4315
|
def RawCode(self):
|
4359
4316
|
"""源码
|
4360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4361
4317
|
:rtype: str
|
4362
4318
|
"""
|
4363
4319
|
return self._RawCode
|
@@ -4369,7 +4325,6 @@ class CodeSource(AbstractModel):
|
|
4369
4325
|
@property
|
4370
4326
|
def Branch(self):
|
4371
4327
|
"""代码分支
|
4372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4373
4328
|
:rtype: str
|
4374
4329
|
"""
|
4375
4330
|
return self._Branch
|
@@ -4381,7 +4336,6 @@ class CodeSource(AbstractModel):
|
|
4381
4336
|
@property
|
4382
4337
|
def ProjectId(self):
|
4383
4338
|
"""coding项目ID,type为coding时需要填写
|
4384
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4385
4339
|
:rtype: int
|
4386
4340
|
"""
|
4387
4341
|
return self._ProjectId
|
@@ -4393,7 +4347,6 @@ class CodeSource(AbstractModel):
|
|
4393
4347
|
@property
|
4394
4348
|
def ProjectName(self):
|
4395
4349
|
"""coding项目
|
4396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4397
4350
|
:rtype: str
|
4398
4351
|
"""
|
4399
4352
|
return self._ProjectName
|
@@ -4764,7 +4717,6 @@ class CreateAndDeployCloudBaseProjectResponse(AbstractModel):
|
|
4764
4717
|
def __init__(self):
|
4765
4718
|
r"""
|
4766
4719
|
:param _EnvId: 环境Id
|
4767
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4768
4720
|
:type EnvId: str
|
4769
4721
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4770
4722
|
:type RequestId: str
|
@@ -4775,7 +4727,6 @@ class CreateAndDeployCloudBaseProjectResponse(AbstractModel):
|
|
4775
4727
|
@property
|
4776
4728
|
def EnvId(self):
|
4777
4729
|
"""环境Id
|
4778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4779
4730
|
:rtype: str
|
4780
4731
|
"""
|
4781
4732
|
return self._EnvId
|
@@ -6096,7 +6047,6 @@ class CreatePostpayPackageResponse(AbstractModel):
|
|
6096
6047
|
:param _TranId: 后付费订单号
|
6097
6048
|
:type TranId: str
|
6098
6049
|
:param _EnvId: 环境ID
|
6099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6100
6050
|
:type EnvId: str
|
6101
6051
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6102
6052
|
:type RequestId: str
|
@@ -6119,7 +6069,6 @@ class CreatePostpayPackageResponse(AbstractModel):
|
|
6119
6069
|
@property
|
6120
6070
|
def EnvId(self):
|
6121
6071
|
"""环境ID
|
6122
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6123
6072
|
:rtype: str
|
6124
6073
|
"""
|
6125
6074
|
return self._EnvId
|
@@ -6359,7 +6308,6 @@ class CreateStaticStoreResponse(AbstractModel):
|
|
6359
6308
|
def __init__(self):
|
6360
6309
|
r"""
|
6361
6310
|
:param _Result: 创建静态资源结果(succ/fail)
|
6362
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6363
6311
|
:type Result: str
|
6364
6312
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6365
6313
|
:type RequestId: str
|
@@ -6370,7 +6318,6 @@ class CreateStaticStoreResponse(AbstractModel):
|
|
6370
6318
|
@property
|
6371
6319
|
def Result(self):
|
6372
6320
|
"""创建静态资源结果(succ/fail)
|
6373
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6374
6321
|
:rtype: str
|
6375
6322
|
"""
|
6376
6323
|
return self._Result
|
@@ -6750,7 +6697,6 @@ class CustomHeader(AbstractModel):
|
|
6750
6697
|
def __init__(self):
|
6751
6698
|
r"""
|
6752
6699
|
:param _RequestToAddList: 请求添加头部配置
|
6753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6754
6700
|
:type RequestToAddList: list of CustomRequestToAdd
|
6755
6701
|
"""
|
6756
6702
|
self._RequestToAddList = None
|
@@ -6758,7 +6704,6 @@ class CustomHeader(AbstractModel):
|
|
6758
6704
|
@property
|
6759
6705
|
def RequestToAddList(self):
|
6760
6706
|
"""请求添加头部配置
|
6761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6762
6707
|
:rtype: list of CustomRequestToAdd
|
6763
6708
|
"""
|
6764
6709
|
return self._RequestToAddList
|
@@ -6904,13 +6849,10 @@ class CustomRequestToAdd(AbstractModel):
|
|
6904
6849
|
def __init__(self):
|
6905
6850
|
r"""
|
6906
6851
|
:param _Key: Header名称
|
6907
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6908
6852
|
:type Key: str
|
6909
6853
|
:param _Value: Header值
|
6910
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6911
6854
|
:type Value: str
|
6912
6855
|
:param _AppendAction: Header类型
|
6913
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6914
6856
|
:type AppendAction: str
|
6915
6857
|
"""
|
6916
6858
|
self._Key = None
|
@@ -6920,7 +6862,6 @@ class CustomRequestToAdd(AbstractModel):
|
|
6920
6862
|
@property
|
6921
6863
|
def Key(self):
|
6922
6864
|
"""Header名称
|
6923
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6924
6865
|
:rtype: str
|
6925
6866
|
"""
|
6926
6867
|
return self._Key
|
@@ -6932,7 +6873,6 @@ class CustomRequestToAdd(AbstractModel):
|
|
6932
6873
|
@property
|
6933
6874
|
def Value(self):
|
6934
6875
|
"""Header值
|
6935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6936
6876
|
:rtype: str
|
6937
6877
|
"""
|
6938
6878
|
return self._Value
|
@@ -6944,7 +6884,6 @@ class CustomRequestToAdd(AbstractModel):
|
|
6944
6884
|
@property
|
6945
6885
|
def AppendAction(self):
|
6946
6886
|
"""Header类型
|
6947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6948
6887
|
:rtype: str
|
6949
6888
|
"""
|
6950
6889
|
return self._AppendAction
|
@@ -6987,7 +6926,6 @@ class DatabasesInfo(AbstractModel):
|
|
6987
6926
|
当前支持ap-shanghai
|
6988
6927
|
:type Region: str
|
6989
6928
|
:param _UpdateTime: 更新时间
|
6990
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6991
6929
|
:type UpdateTime: str
|
6992
6930
|
"""
|
6993
6931
|
self._InstanceId = None
|
@@ -7036,7 +6974,6 @@ class DatabasesInfo(AbstractModel):
|
|
7036
6974
|
@property
|
7037
6975
|
def UpdateTime(self):
|
7038
6976
|
"""更新时间
|
7039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7040
6977
|
:rtype: str
|
7041
6978
|
"""
|
7042
6979
|
return self._UpdateTime
|
@@ -9262,10 +9199,8 @@ class DescribeCloudBaseProjectLatestVersionListResponse(AbstractModel):
|
|
9262
9199
|
def __init__(self):
|
9263
9200
|
r"""
|
9264
9201
|
:param _ProjectList: 项目列表
|
9265
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9266
9202
|
:type ProjectList: list of CloudBaseProjectVersion
|
9267
9203
|
:param _TotalCount: 总数
|
9268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9269
9204
|
:type TotalCount: int
|
9270
9205
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9271
9206
|
:type RequestId: str
|
@@ -9277,7 +9212,6 @@ class DescribeCloudBaseProjectLatestVersionListResponse(AbstractModel):
|
|
9277
9212
|
@property
|
9278
9213
|
def ProjectList(self):
|
9279
9214
|
"""项目列表
|
9280
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9281
9215
|
:rtype: list of CloudBaseProjectVersion
|
9282
9216
|
"""
|
9283
9217
|
return self._ProjectList
|
@@ -9289,7 +9223,6 @@ class DescribeCloudBaseProjectLatestVersionListResponse(AbstractModel):
|
|
9289
9223
|
@property
|
9290
9224
|
def TotalCount(self):
|
9291
9225
|
"""总数
|
9292
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9293
9226
|
:rtype: int
|
9294
9227
|
"""
|
9295
9228
|
return self._TotalCount
|
@@ -9440,10 +9373,8 @@ class DescribeCloudBaseProjectVersionListResponse(AbstractModel):
|
|
9440
9373
|
def __init__(self):
|
9441
9374
|
r"""
|
9442
9375
|
:param _ProjectVersions: 版本列表
|
9443
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9444
9376
|
:type ProjectVersions: list of CloudBaseProjectVersion
|
9445
9377
|
:param _TotalCount: 总个数
|
9446
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9447
9378
|
:type TotalCount: int
|
9448
9379
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9449
9380
|
:type RequestId: str
|
@@ -9455,7 +9386,6 @@ class DescribeCloudBaseProjectVersionListResponse(AbstractModel):
|
|
9455
9386
|
@property
|
9456
9387
|
def ProjectVersions(self):
|
9457
9388
|
"""版本列表
|
9458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9459
9389
|
:rtype: list of CloudBaseProjectVersion
|
9460
9390
|
"""
|
9461
9391
|
return self._ProjectVersions
|
@@ -9467,7 +9397,6 @@ class DescribeCloudBaseProjectVersionListResponse(AbstractModel):
|
|
9467
9397
|
@property
|
9468
9398
|
def TotalCount(self):
|
9469
9399
|
"""总个数
|
9470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9471
9400
|
:rtype: int
|
9472
9401
|
"""
|
9473
9402
|
return self._TotalCount
|
@@ -10207,11 +10136,69 @@ class DescribeCloudBaseRunPodListResponse(AbstractModel):
|
|
10207
10136
|
|
10208
10137
|
def __init__(self):
|
10209
10138
|
r"""
|
10139
|
+
:param _Offset: 偏移量
|
10140
|
+
:type Offset: int
|
10141
|
+
:param _Limit: 分页大小
|
10142
|
+
:type Limit: int
|
10143
|
+
:param _TotalCount: 总数
|
10144
|
+
:type TotalCount: int
|
10145
|
+
:param _PodList: 容器列表
|
10146
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10147
|
+
:type PodList: list of CloudBaseRunVersionPod
|
10210
10148
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10211
10149
|
:type RequestId: str
|
10212
10150
|
"""
|
10151
|
+
self._Offset = None
|
10152
|
+
self._Limit = None
|
10153
|
+
self._TotalCount = None
|
10154
|
+
self._PodList = None
|
10213
10155
|
self._RequestId = None
|
10214
10156
|
|
10157
|
+
@property
|
10158
|
+
def Offset(self):
|
10159
|
+
"""偏移量
|
10160
|
+
:rtype: int
|
10161
|
+
"""
|
10162
|
+
return self._Offset
|
10163
|
+
|
10164
|
+
@Offset.setter
|
10165
|
+
def Offset(self, Offset):
|
10166
|
+
self._Offset = Offset
|
10167
|
+
|
10168
|
+
@property
|
10169
|
+
def Limit(self):
|
10170
|
+
"""分页大小
|
10171
|
+
:rtype: int
|
10172
|
+
"""
|
10173
|
+
return self._Limit
|
10174
|
+
|
10175
|
+
@Limit.setter
|
10176
|
+
def Limit(self, Limit):
|
10177
|
+
self._Limit = Limit
|
10178
|
+
|
10179
|
+
@property
|
10180
|
+
def TotalCount(self):
|
10181
|
+
"""总数
|
10182
|
+
:rtype: int
|
10183
|
+
"""
|
10184
|
+
return self._TotalCount
|
10185
|
+
|
10186
|
+
@TotalCount.setter
|
10187
|
+
def TotalCount(self, TotalCount):
|
10188
|
+
self._TotalCount = TotalCount
|
10189
|
+
|
10190
|
+
@property
|
10191
|
+
def PodList(self):
|
10192
|
+
"""容器列表
|
10193
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10194
|
+
:rtype: list of CloudBaseRunVersionPod
|
10195
|
+
"""
|
10196
|
+
return self._PodList
|
10197
|
+
|
10198
|
+
@PodList.setter
|
10199
|
+
def PodList(self, PodList):
|
10200
|
+
self._PodList = PodList
|
10201
|
+
|
10215
10202
|
@property
|
10216
10203
|
def RequestId(self):
|
10217
10204
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -10225,6 +10212,15 @@ class DescribeCloudBaseRunPodListResponse(AbstractModel):
|
|
10225
10212
|
|
10226
10213
|
|
10227
10214
|
def _deserialize(self, params):
|
10215
|
+
self._Offset = params.get("Offset")
|
10216
|
+
self._Limit = params.get("Limit")
|
10217
|
+
self._TotalCount = params.get("TotalCount")
|
10218
|
+
if params.get("PodList") is not None:
|
10219
|
+
self._PodList = []
|
10220
|
+
for item in params.get("PodList"):
|
10221
|
+
obj = CloudBaseRunVersionPod()
|
10222
|
+
obj._deserialize(item)
|
10223
|
+
self._PodList.append(obj)
|
10228
10224
|
self._RequestId = params.get("RequestId")
|
10229
10225
|
|
10230
10226
|
|
@@ -12965,13 +12961,10 @@ class DescribeDownloadFileResponse(AbstractModel):
|
|
12965
12961
|
def __init__(self):
|
12966
12962
|
r"""
|
12967
12963
|
:param _FilePath: 文件路径,该字段已废弃
|
12968
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12969
12964
|
:type FilePath: str
|
12970
12965
|
:param _CustomKey: 加密key,用于计算下载加密文件的header。参考SSE-C https://cloud.tencent.com/document/product/436/7728#sse-c
|
12971
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12972
12966
|
:type CustomKey: str
|
12973
12967
|
:param _DownloadUrl: 下载链接
|
12974
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12975
12968
|
:type DownloadUrl: str
|
12976
12969
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12977
12970
|
:type RequestId: str
|
@@ -12984,7 +12977,6 @@ class DescribeDownloadFileResponse(AbstractModel):
|
|
12984
12977
|
@property
|
12985
12978
|
def FilePath(self):
|
12986
12979
|
"""文件路径,该字段已废弃
|
12987
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12988
12980
|
:rtype: str
|
12989
12981
|
"""
|
12990
12982
|
return self._FilePath
|
@@ -12996,7 +12988,6 @@ class DescribeDownloadFileResponse(AbstractModel):
|
|
12996
12988
|
@property
|
12997
12989
|
def CustomKey(self):
|
12998
12990
|
"""加密key,用于计算下载加密文件的header。参考SSE-C https://cloud.tencent.com/document/product/436/7728#sse-c
|
12999
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13000
12991
|
:rtype: str
|
13001
12992
|
"""
|
13002
12993
|
return self._CustomKey
|
@@ -13008,7 +12999,6 @@ class DescribeDownloadFileResponse(AbstractModel):
|
|
13008
12999
|
@property
|
13009
13000
|
def DownloadUrl(self):
|
13010
13001
|
"""下载链接
|
13011
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13012
13002
|
:rtype: str
|
13013
13003
|
"""
|
13014
13004
|
return self._DownloadUrl
|
@@ -13636,7 +13626,6 @@ class DescribeEnvFreeQuotaResponse(AbstractModel):
|
|
13636
13626
|
def __init__(self):
|
13637
13627
|
r"""
|
13638
13628
|
:param _QuotaItems: 免费抵扣配额详情
|
13639
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13640
13629
|
:type QuotaItems: list of PostpayEnvQuota
|
13641
13630
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13642
13631
|
:type RequestId: str
|
@@ -13647,7 +13636,6 @@ class DescribeEnvFreeQuotaResponse(AbstractModel):
|
|
13647
13636
|
@property
|
13648
13637
|
def QuotaItems(self):
|
13649
13638
|
"""免费抵扣配额详情
|
13650
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13651
13639
|
:rtype: list of PostpayEnvQuota
|
13652
13640
|
"""
|
13653
13641
|
return self._QuotaItems
|
@@ -14011,7 +13999,6 @@ class DescribeEnvPostpaidDeductResponse(AbstractModel):
|
|
14011
13999
|
def __init__(self):
|
14012
14000
|
r"""
|
14013
14001
|
:param _PostPaidEnvDeductInfoList: 指标抵扣详情列表
|
14014
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14015
14002
|
:type PostPaidEnvDeductInfoList: list of PostPaidEnvDeductInfo
|
14016
14003
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14017
14004
|
:type RequestId: str
|
@@ -14022,7 +14009,6 @@ class DescribeEnvPostpaidDeductResponse(AbstractModel):
|
|
14022
14009
|
@property
|
14023
14010
|
def PostPaidEnvDeductInfoList(self):
|
14024
14011
|
"""指标抵扣详情列表
|
14025
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14026
14012
|
:rtype: list of PostPaidEnvDeductInfo
|
14027
14013
|
"""
|
14028
14014
|
return self._PostPaidEnvDeductInfoList
|
@@ -15145,7 +15131,6 @@ class DescribePostpayFreeQuotasResponse(AbstractModel):
|
|
15145
15131
|
def __init__(self):
|
15146
15132
|
r"""
|
15147
15133
|
:param _FreequotaInfoList: 免费量资源信息列表
|
15148
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15149
15134
|
:type FreequotaInfoList: list of FreequotaInfo
|
15150
15135
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15151
15136
|
:type RequestId: str
|
@@ -15156,7 +15141,6 @@ class DescribePostpayFreeQuotasResponse(AbstractModel):
|
|
15156
15141
|
@property
|
15157
15142
|
def FreequotaInfoList(self):
|
15158
15143
|
"""免费量资源信息列表
|
15159
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15160
15144
|
:rtype: list of FreequotaInfo
|
15161
15145
|
"""
|
15162
15146
|
return self._FreequotaInfoList
|
@@ -15246,7 +15230,6 @@ class DescribePostpayPackageFreeQuotasResponse(AbstractModel):
|
|
15246
15230
|
def __init__(self):
|
15247
15231
|
r"""
|
15248
15232
|
:param _PackageFreeQuotaInfos: 免费量资源信息列表
|
15249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15250
15233
|
:type PackageFreeQuotaInfos: list of PackageFreeQuotaInfo
|
15251
15234
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15252
15235
|
:type RequestId: str
|
@@ -15257,7 +15240,6 @@ class DescribePostpayPackageFreeQuotasResponse(AbstractModel):
|
|
15257
15240
|
@property
|
15258
15241
|
def PackageFreeQuotaInfos(self):
|
15259
15242
|
"""免费量资源信息列表
|
15260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15261
15243
|
:rtype: list of PackageFreeQuotaInfo
|
15262
15244
|
"""
|
15263
15245
|
return self._PackageFreeQuotaInfos
|
@@ -15325,6 +15307,10 @@ class DescribeQuotaDataRequest(AbstractModel):
|
|
15325
15307
|
<li> TkeMemUsedPkgDay: 当天容器托管内存使用量,单位MB*秒 </li>
|
15326
15308
|
<li> CodingBuildTimePkgDay: 当天容器托管构建时间使用量,单位毫秒 </li>
|
15327
15309
|
<li> TkeHttpServiceNatPkgDay: 当天容器托管流量使用量,单位B </li>
|
15310
|
+
<li> CynosdbCcupkg: 当月微信云托管MySQL CCU使用量,单位个 (需要除以1000)</li>
|
15311
|
+
<li> CynosdbStoragepkg: 当月微信云托管MySQL 存储使用量,单位MB (需要除以1000)</li>
|
15312
|
+
<li> CynosdbCcupkgDay: 当天微信云托管MySQL 存储使用量,单位个 (需要除以1000) </li>
|
15313
|
+
<li> CynosdbStoragepkgDay: 当天微信云托管MySQL 存储使用量,单位MB (需要除以1000) </li>
|
15328
15314
|
:type MetricName: str
|
15329
15315
|
:param _ResourceID: 资源ID, 目前仅对云函数、容器托管相关的指标有意义。云函数(FunctionInvocationpkg, FunctionGBspkg, FunctionFluxpkg)、容器托管(服务名称)。如果想查询某个云函数的指标则在ResourceId中传入函数名; 如果只想查询整个namespace的指标, 则留空或不传。
|
15330
15316
|
:type ResourceID: str
|
@@ -15374,6 +15360,10 @@ class DescribeQuotaDataRequest(AbstractModel):
|
|
15374
15360
|
<li> TkeMemUsedPkgDay: 当天容器托管内存使用量,单位MB*秒 </li>
|
15375
15361
|
<li> CodingBuildTimePkgDay: 当天容器托管构建时间使用量,单位毫秒 </li>
|
15376
15362
|
<li> TkeHttpServiceNatPkgDay: 当天容器托管流量使用量,单位B </li>
|
15363
|
+
<li> CynosdbCcupkg: 当月微信云托管MySQL CCU使用量,单位个 (需要除以1000)</li>
|
15364
|
+
<li> CynosdbStoragepkg: 当月微信云托管MySQL 存储使用量,单位MB (需要除以1000)</li>
|
15365
|
+
<li> CynosdbCcupkgDay: 当天微信云托管MySQL 存储使用量,单位个 (需要除以1000) </li>
|
15366
|
+
<li> CynosdbStoragepkgDay: 当天微信云托管MySQL 存储使用量,单位MB (需要除以1000) </li>
|
15377
15367
|
:rtype: str
|
15378
15368
|
"""
|
15379
15369
|
return self._MetricName
|
@@ -15420,7 +15410,6 @@ class DescribeQuotaDataResponse(AbstractModel):
|
|
15420
15410
|
:param _Value: 指标的值
|
15421
15411
|
:type Value: int
|
15422
15412
|
:param _SubValue: 指标的附加值信息
|
15423
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15424
15413
|
:type SubValue: str
|
15425
15414
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15426
15415
|
:type RequestId: str
|
@@ -15455,7 +15444,6 @@ class DescribeQuotaDataResponse(AbstractModel):
|
|
15455
15444
|
@property
|
15456
15445
|
def SubValue(self):
|
15457
15446
|
"""指标的附加值信息
|
15458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15459
15447
|
:rtype: str
|
15460
15448
|
"""
|
15461
15449
|
return self._SubValue
|
@@ -15527,7 +15515,6 @@ class DescribeSmsQuotasResponse(AbstractModel):
|
|
15527
15515
|
def __init__(self):
|
15528
15516
|
r"""
|
15529
15517
|
:param _SmsFreeQuotaList: 短信免费量信息列表
|
15530
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15531
15518
|
:type SmsFreeQuotaList: list of SmsFreeQuota
|
15532
15519
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15533
15520
|
:type RequestId: str
|
@@ -15538,7 +15525,6 @@ class DescribeSmsQuotasResponse(AbstractModel):
|
|
15538
15525
|
@property
|
15539
15526
|
def SmsFreeQuotaList(self):
|
15540
15527
|
"""短信免费量信息列表
|
15541
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15542
15528
|
:rtype: list of SmsFreeQuota
|
15543
15529
|
"""
|
15544
15530
|
return self._SmsFreeQuotaList
|
@@ -15643,7 +15629,6 @@ class DescribeSpecialCostItemsResponse(AbstractModel):
|
|
15643
15629
|
def __init__(self):
|
15644
15630
|
r"""
|
15645
15631
|
:param _SpecialCostItems: 1分钱抵扣详情
|
15646
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15647
15632
|
:type SpecialCostItems: list of SpecialCostItem
|
15648
15633
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
15649
15634
|
:type RequestId: str
|
@@ -15654,7 +15639,6 @@ class DescribeSpecialCostItemsResponse(AbstractModel):
|
|
15654
15639
|
@property
|
15655
15640
|
def SpecialCostItems(self):
|
15656
15641
|
"""1分钱抵扣详情
|
15657
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
15658
15642
|
:rtype: list of SpecialCostItem
|
15659
15643
|
"""
|
15660
15644
|
return self._SpecialCostItems
|
@@ -16025,7 +16009,6 @@ class DescribeUserActivityInfoResponse(AbstractModel):
|
|
16025
16009
|
:param _GroupTimeLeft: 拼团剩余时间,单位为s.1元钱裂变需求中即为time(成团时间)+24H-Now(),过期后为0,即返回必为自然数
|
16026
16010
|
:type GroupTimeLeft: int
|
16027
16011
|
:param _NickNameList: 昵称列表,通过","拼接, 1元钱裂变活动中与Notes中uin一一对应
|
16028
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16029
16012
|
:type NickNameList: str
|
16030
16013
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
16031
16014
|
:type RequestId: str
|
@@ -16084,7 +16067,6 @@ class DescribeUserActivityInfoResponse(AbstractModel):
|
|
16084
16067
|
@property
|
16085
16068
|
def NickNameList(self):
|
16086
16069
|
"""昵称列表,通过","拼接, 1元钱裂变活动中与Notes中uin一一对应
|
16087
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16088
16070
|
:rtype: str
|
16089
16071
|
"""
|
16090
16072
|
return self._NickNameList
|
@@ -17181,19 +17163,14 @@ class EnvBillingInfoItem(AbstractModel):
|
|
17181
17163
|
:param _PaymentChannel: 付费渠道。
|
17182
17164
|
<li> miniapp:小程序</li>
|
17183
17165
|
<li> qcloud:腾讯云</li>
|
17184
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17185
17166
|
:type PaymentChannel: str
|
17186
17167
|
:param _OrderInfo: 最新的订单信息
|
17187
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17188
17168
|
:type OrderInfo: :class:`tencentcloud.tcb.v20180608.models.OrderInfo`
|
17189
17169
|
:param _FreeQuota: 免费配额信息。
|
17190
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17191
17170
|
:type FreeQuota: str
|
17192
17171
|
:param _EnableOverrun: 是否开启 `超过套餐额度部分转按量付费`
|
17193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17194
17172
|
:type EnableOverrun: bool
|
17195
17173
|
:param _ExtPackageType: 环境套餐类型
|
17196
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17197
17174
|
:type ExtPackageType: str
|
17198
17175
|
:param _EnvCharged: 是否付费期环境,可取值:yes/no。
|
17199
17176
|
:type EnvCharged: str
|
@@ -17338,7 +17315,6 @@ class EnvBillingInfoItem(AbstractModel):
|
|
17338
17315
|
"""付费渠道。
|
17339
17316
|
<li> miniapp:小程序</li>
|
17340
17317
|
<li> qcloud:腾讯云</li>
|
17341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17342
17318
|
:rtype: str
|
17343
17319
|
"""
|
17344
17320
|
return self._PaymentChannel
|
@@ -17350,7 +17326,6 @@ class EnvBillingInfoItem(AbstractModel):
|
|
17350
17326
|
@property
|
17351
17327
|
def OrderInfo(self):
|
17352
17328
|
"""最新的订单信息
|
17353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17354
17329
|
:rtype: :class:`tencentcloud.tcb.v20180608.models.OrderInfo`
|
17355
17330
|
"""
|
17356
17331
|
return self._OrderInfo
|
@@ -17362,7 +17337,6 @@ class EnvBillingInfoItem(AbstractModel):
|
|
17362
17337
|
@property
|
17363
17338
|
def FreeQuota(self):
|
17364
17339
|
"""免费配额信息。
|
17365
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17366
17340
|
:rtype: str
|
17367
17341
|
"""
|
17368
17342
|
return self._FreeQuota
|
@@ -17374,7 +17348,6 @@ class EnvBillingInfoItem(AbstractModel):
|
|
17374
17348
|
@property
|
17375
17349
|
def EnableOverrun(self):
|
17376
17350
|
"""是否开启 `超过套餐额度部分转按量付费`
|
17377
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17378
17351
|
:rtype: bool
|
17379
17352
|
"""
|
17380
17353
|
return self._EnableOverrun
|
@@ -17386,7 +17359,6 @@ class EnvBillingInfoItem(AbstractModel):
|
|
17386
17359
|
@property
|
17387
17360
|
def ExtPackageType(self):
|
17388
17361
|
"""环境套餐类型
|
17389
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17390
17362
|
:rtype: str
|
17391
17363
|
"""
|
17392
17364
|
return self._ExtPackageType
|
@@ -17478,54 +17450,38 @@ class EnvInfo(AbstractModel):
|
|
17478
17450
|
:param _Functions: 函数列表
|
17479
17451
|
:type Functions: list of FunctionInfo
|
17480
17452
|
:param _PackageId: tcb产品套餐ID,参考DescribePackages接口的返回值。
|
17481
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17482
17453
|
:type PackageId: str
|
17483
17454
|
:param _PackageName: 套餐中文名称,参考DescribePackages接口的返回值。
|
17484
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17485
17455
|
:type PackageName: str
|
17486
17456
|
:param _LogServices: 云日志服务列表
|
17487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17488
17457
|
:type LogServices: list of LogServiceInfo
|
17489
17458
|
:param _StaticStorages: 静态资源信息
|
17490
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17491
17459
|
:type StaticStorages: list of StaticStorageInfo
|
17492
17460
|
:param _IsAutoDegrade: 是否到期自动降为免费版
|
17493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17494
17461
|
:type IsAutoDegrade: bool
|
17495
17462
|
:param _EnvChannel: 环境渠道
|
17496
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17497
17463
|
:type EnvChannel: str
|
17498
17464
|
:param _PayMode: 支付方式。包含以下取值:
|
17499
17465
|
<li> prepayment:预付费</li>
|
17500
17466
|
<li> postpaid:后付费</li>
|
17501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17502
17467
|
:type PayMode: str
|
17503
17468
|
:param _IsDefault: 是否为默认环境
|
17504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17505
17469
|
:type IsDefault: bool
|
17506
17470
|
:param _Region: 环境所属地域
|
17507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17508
17471
|
:type Region: str
|
17509
17472
|
:param _Tags: 环境标签列表
|
17510
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17511
17473
|
:type Tags: list of Tag
|
17512
17474
|
:param _CustomLogServices: 自定义日志服务
|
17513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17514
17475
|
:type CustomLogServices: list of ClsInfo
|
17515
17476
|
:param _EnvType: 环境类型:baas, run, hoting, weda
|
17516
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17517
17477
|
:type EnvType: str
|
17518
17478
|
:param _IsDauPackage: 是否是dau新套餐
|
17519
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17520
17479
|
:type IsDauPackage: bool
|
17521
17480
|
:param _PackageType: 套餐类型:空\baas\tcbr
|
17522
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17523
17481
|
:type PackageType: str
|
17524
17482
|
:param _ArchitectureType: 架构类型
|
17525
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17526
17483
|
:type ArchitectureType: str
|
17527
17484
|
:param _Recycle: 回收标志,默认为空
|
17528
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17529
17485
|
:type Recycle: str
|
17530
17486
|
"""
|
17531
17487
|
self._EnvId = None
|
@@ -17660,7 +17616,6 @@ class EnvInfo(AbstractModel):
|
|
17660
17616
|
@property
|
17661
17617
|
def PackageId(self):
|
17662
17618
|
"""tcb产品套餐ID,参考DescribePackages接口的返回值。
|
17663
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17664
17619
|
:rtype: str
|
17665
17620
|
"""
|
17666
17621
|
return self._PackageId
|
@@ -17672,7 +17627,6 @@ class EnvInfo(AbstractModel):
|
|
17672
17627
|
@property
|
17673
17628
|
def PackageName(self):
|
17674
17629
|
"""套餐中文名称,参考DescribePackages接口的返回值。
|
17675
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17676
17630
|
:rtype: str
|
17677
17631
|
"""
|
17678
17632
|
return self._PackageName
|
@@ -17684,7 +17638,6 @@ class EnvInfo(AbstractModel):
|
|
17684
17638
|
@property
|
17685
17639
|
def LogServices(self):
|
17686
17640
|
"""云日志服务列表
|
17687
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17688
17641
|
:rtype: list of LogServiceInfo
|
17689
17642
|
"""
|
17690
17643
|
return self._LogServices
|
@@ -17696,7 +17649,6 @@ class EnvInfo(AbstractModel):
|
|
17696
17649
|
@property
|
17697
17650
|
def StaticStorages(self):
|
17698
17651
|
"""静态资源信息
|
17699
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17700
17652
|
:rtype: list of StaticStorageInfo
|
17701
17653
|
"""
|
17702
17654
|
return self._StaticStorages
|
@@ -17708,7 +17660,6 @@ class EnvInfo(AbstractModel):
|
|
17708
17660
|
@property
|
17709
17661
|
def IsAutoDegrade(self):
|
17710
17662
|
"""是否到期自动降为免费版
|
17711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17712
17663
|
:rtype: bool
|
17713
17664
|
"""
|
17714
17665
|
return self._IsAutoDegrade
|
@@ -17720,7 +17671,6 @@ class EnvInfo(AbstractModel):
|
|
17720
17671
|
@property
|
17721
17672
|
def EnvChannel(self):
|
17722
17673
|
"""环境渠道
|
17723
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17724
17674
|
:rtype: str
|
17725
17675
|
"""
|
17726
17676
|
return self._EnvChannel
|
@@ -17734,7 +17684,6 @@ class EnvInfo(AbstractModel):
|
|
17734
17684
|
"""支付方式。包含以下取值:
|
17735
17685
|
<li> prepayment:预付费</li>
|
17736
17686
|
<li> postpaid:后付费</li>
|
17737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17738
17687
|
:rtype: str
|
17739
17688
|
"""
|
17740
17689
|
return self._PayMode
|
@@ -17746,7 +17695,6 @@ class EnvInfo(AbstractModel):
|
|
17746
17695
|
@property
|
17747
17696
|
def IsDefault(self):
|
17748
17697
|
"""是否为默认环境
|
17749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17750
17698
|
:rtype: bool
|
17751
17699
|
"""
|
17752
17700
|
return self._IsDefault
|
@@ -17758,7 +17706,6 @@ class EnvInfo(AbstractModel):
|
|
17758
17706
|
@property
|
17759
17707
|
def Region(self):
|
17760
17708
|
"""环境所属地域
|
17761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17762
17709
|
:rtype: str
|
17763
17710
|
"""
|
17764
17711
|
return self._Region
|
@@ -17770,7 +17717,6 @@ class EnvInfo(AbstractModel):
|
|
17770
17717
|
@property
|
17771
17718
|
def Tags(self):
|
17772
17719
|
"""环境标签列表
|
17773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17774
17720
|
:rtype: list of Tag
|
17775
17721
|
"""
|
17776
17722
|
return self._Tags
|
@@ -17782,7 +17728,6 @@ class EnvInfo(AbstractModel):
|
|
17782
17728
|
@property
|
17783
17729
|
def CustomLogServices(self):
|
17784
17730
|
"""自定义日志服务
|
17785
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17786
17731
|
:rtype: list of ClsInfo
|
17787
17732
|
"""
|
17788
17733
|
return self._CustomLogServices
|
@@ -17794,7 +17739,6 @@ class EnvInfo(AbstractModel):
|
|
17794
17739
|
@property
|
17795
17740
|
def EnvType(self):
|
17796
17741
|
"""环境类型:baas, run, hoting, weda
|
17797
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17798
17742
|
:rtype: str
|
17799
17743
|
"""
|
17800
17744
|
return self._EnvType
|
@@ -17806,7 +17750,6 @@ class EnvInfo(AbstractModel):
|
|
17806
17750
|
@property
|
17807
17751
|
def IsDauPackage(self):
|
17808
17752
|
"""是否是dau新套餐
|
17809
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17810
17753
|
:rtype: bool
|
17811
17754
|
"""
|
17812
17755
|
return self._IsDauPackage
|
@@ -17818,7 +17761,6 @@ class EnvInfo(AbstractModel):
|
|
17818
17761
|
@property
|
17819
17762
|
def PackageType(self):
|
17820
17763
|
"""套餐类型:空\baas\tcbr
|
17821
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17822
17764
|
:rtype: str
|
17823
17765
|
"""
|
17824
17766
|
return self._PackageType
|
@@ -17830,7 +17772,6 @@ class EnvInfo(AbstractModel):
|
|
17830
17772
|
@property
|
17831
17773
|
def ArchitectureType(self):
|
17832
17774
|
"""架构类型
|
17833
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17834
17775
|
:rtype: str
|
17835
17776
|
"""
|
17836
17777
|
return self._ArchitectureType
|
@@ -17842,7 +17783,6 @@ class EnvInfo(AbstractModel):
|
|
17842
17783
|
@property
|
17843
17784
|
def Recycle(self):
|
17844
17785
|
"""回收标志,默认为空
|
17845
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17846
17786
|
:rtype: str
|
17847
17787
|
"""
|
17848
17788
|
return self._Recycle
|
@@ -18395,7 +18335,9 @@ class ExtensionFileInfo(AbstractModel):
|
|
18395
18335
|
:type CodeUri: str
|
18396
18336
|
:param _UploadUrl: 上传文件的临时地址,含签名
|
18397
18337
|
:type UploadUrl: str
|
18398
|
-
:param _CustomKey:
|
18338
|
+
:param _CustomKey: 自定义密钥。如果为空,则表示不需要加密。
|
18339
|
+
参考cos预签名url上传https://cloud.tencent.com/document/product/436/36121
|
18340
|
+
上传的时候要按照 SSE-C 的方式设置header:https://cloud.tencent.com/document/product/436/7728
|
18399
18341
|
:type CustomKey: str
|
18400
18342
|
:param _MaxSize: 文件大小限制,单位M,客户端上传前需要主动检查文件大小,超过限制的文件会被删除。
|
18401
18343
|
:type MaxSize: int
|
@@ -18429,7 +18371,9 @@ class ExtensionFileInfo(AbstractModel):
|
|
18429
18371
|
|
18430
18372
|
@property
|
18431
18373
|
def CustomKey(self):
|
18432
|
-
"""
|
18374
|
+
"""自定义密钥。如果为空,则表示不需要加密。
|
18375
|
+
参考cos预签名url上传https://cloud.tencent.com/document/product/436/36121
|
18376
|
+
上传的时候要按照 SSE-C 的方式设置header:https://cloud.tencent.com/document/product/436/7728
|
18433
18377
|
:rtype: str
|
18434
18378
|
"""
|
18435
18379
|
return self._CustomKey
|
@@ -18488,11 +18432,9 @@ class FreequotaInfo(AbstractModel):
|
|
18488
18432
|
<li>sum-month:以月为单位抵扣</li>
|
18489
18433
|
<li>sum-day:以天为单位抵扣</li>
|
18490
18434
|
<li>totalize:总容量抵扣</li>
|
18491
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18492
18435
|
:type DeductType: str
|
18493
18436
|
:param _FreeQuotaType: 免费量类型
|
18494
18437
|
<li>basic:通用量抵扣</li>
|
18495
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18496
18438
|
:type FreeQuotaType: str
|
18497
18439
|
"""
|
18498
18440
|
self._ResourceType = None
|
@@ -18556,7 +18498,6 @@ class FreequotaInfo(AbstractModel):
|
|
18556
18498
|
<li>sum-month:以月为单位抵扣</li>
|
18557
18499
|
<li>sum-day:以天为单位抵扣</li>
|
18558
18500
|
<li>totalize:总容量抵扣</li>
|
18559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18560
18501
|
:rtype: str
|
18561
18502
|
"""
|
18562
18503
|
return self._DeductType
|
@@ -18569,7 +18510,6 @@ class FreequotaInfo(AbstractModel):
|
|
18569
18510
|
def FreeQuotaType(self):
|
18570
18511
|
"""免费量类型
|
18571
18512
|
<li>basic:通用量抵扣</li>
|
18572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18573
18513
|
:rtype: str
|
18574
18514
|
"""
|
18575
18515
|
return self._FreeQuotaType
|
@@ -19767,7 +19707,6 @@ class LogServiceInfo(AbstractModel):
|
|
19767
19707
|
:param _Region: cls日志所属地域
|
19768
19708
|
:type Region: str
|
19769
19709
|
:param _Period: topic保存时长 默认7天
|
19770
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19771
19710
|
:type Period: int
|
19772
19711
|
"""
|
19773
19712
|
self._LogsetName = None
|
@@ -19835,7 +19774,6 @@ class LogServiceInfo(AbstractModel):
|
|
19835
19774
|
@property
|
19836
19775
|
def Period(self):
|
19837
19776
|
"""topic保存时长 默认7天
|
19838
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19839
19777
|
:rtype: int
|
19840
19778
|
"""
|
19841
19779
|
return self._Period
|
@@ -20995,15 +20933,12 @@ class OrderInfo(AbstractModel):
|
|
20995
20933
|
<li>postpaid 后付费</li>
|
20996
20934
|
:type PayMode: str
|
20997
20935
|
:param _ExtensionId: 订单绑定的扩展ID
|
20998
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
20999
20936
|
:type ExtensionId: str
|
21000
20937
|
:param _ResourceReady: 资源初始化结果(仅当ExtensionId不为空时有效): successful(初始化成功), failed(初始化失败), doing(初始化进行中), init(准备初始化)
|
21001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21002
20938
|
:type ResourceReady: str
|
21003
20939
|
:param _Flag: 安装标记。建议使用方统一转大小写之后再判断。
|
21004
20940
|
<li>QuickStart:快速启动来源</li>
|
21005
20941
|
<li>Activity:活动来源</li>
|
21006
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21007
20942
|
:type Flag: str
|
21008
20943
|
:param _ReqBody: 下单时的参数
|
21009
20944
|
:type ReqBody: str
|
@@ -21113,7 +21048,6 @@ class OrderInfo(AbstractModel):
|
|
21113
21048
|
@property
|
21114
21049
|
def ExtensionId(self):
|
21115
21050
|
"""订单绑定的扩展ID
|
21116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21117
21051
|
:rtype: str
|
21118
21052
|
"""
|
21119
21053
|
return self._ExtensionId
|
@@ -21125,7 +21059,6 @@ class OrderInfo(AbstractModel):
|
|
21125
21059
|
@property
|
21126
21060
|
def ResourceReady(self):
|
21127
21061
|
"""资源初始化结果(仅当ExtensionId不为空时有效): successful(初始化成功), failed(初始化失败), doing(初始化进行中), init(准备初始化)
|
21128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21129
21062
|
:rtype: str
|
21130
21063
|
"""
|
21131
21064
|
return self._ResourceReady
|
@@ -21139,7 +21072,6 @@ class OrderInfo(AbstractModel):
|
|
21139
21072
|
"""安装标记。建议使用方统一转大小写之后再判断。
|
21140
21073
|
<li>QuickStart:快速启动来源</li>
|
21141
21074
|
<li>Activity:活动来源</li>
|
21142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21143
21075
|
:rtype: str
|
21144
21076
|
"""
|
21145
21077
|
return self._Flag
|
@@ -21194,26 +21126,20 @@ class PackageFreeQuotaInfo(AbstractModel):
|
|
21194
21126
|
<li>CDN</li>
|
21195
21127
|
<li>FLEXDB</li>
|
21196
21128
|
<li>SCF</li>
|
21197
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21198
21129
|
:type ResourceType: str
|
21199
21130
|
:param _ResourceMetric: 资源指标名称
|
21200
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21201
21131
|
:type ResourceMetric: str
|
21202
21132
|
:param _FreeQuota: 资源指标免费量
|
21203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21204
21133
|
:type FreeQuota: int
|
21205
21134
|
:param _MetricUnit: 指标单位
|
21206
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21207
21135
|
:type MetricUnit: str
|
21208
21136
|
:param _DeductType: 免费量抵扣周期
|
21209
21137
|
<li>sum-month:以月为单位抵扣</li>
|
21210
21138
|
<li>sum-day:以天为单位抵扣</li>
|
21211
21139
|
<li>totalize:总容量抵扣</li>
|
21212
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21213
21140
|
:type DeductType: str
|
21214
21141
|
:param _FreeQuotaType: 免费量类型
|
21215
21142
|
<li>basic:通用量抵扣</li>
|
21216
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21217
21143
|
:type FreeQuotaType: str
|
21218
21144
|
"""
|
21219
21145
|
self._ResourceType = None
|
@@ -21230,7 +21156,6 @@ class PackageFreeQuotaInfo(AbstractModel):
|
|
21230
21156
|
<li>CDN</li>
|
21231
21157
|
<li>FLEXDB</li>
|
21232
21158
|
<li>SCF</li>
|
21233
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21234
21159
|
:rtype: str
|
21235
21160
|
"""
|
21236
21161
|
return self._ResourceType
|
@@ -21242,7 +21167,6 @@ class PackageFreeQuotaInfo(AbstractModel):
|
|
21242
21167
|
@property
|
21243
21168
|
def ResourceMetric(self):
|
21244
21169
|
"""资源指标名称
|
21245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21246
21170
|
:rtype: str
|
21247
21171
|
"""
|
21248
21172
|
return self._ResourceMetric
|
@@ -21254,7 +21178,6 @@ class PackageFreeQuotaInfo(AbstractModel):
|
|
21254
21178
|
@property
|
21255
21179
|
def FreeQuota(self):
|
21256
21180
|
"""资源指标免费量
|
21257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21258
21181
|
:rtype: int
|
21259
21182
|
"""
|
21260
21183
|
return self._FreeQuota
|
@@ -21266,7 +21189,6 @@ class PackageFreeQuotaInfo(AbstractModel):
|
|
21266
21189
|
@property
|
21267
21190
|
def MetricUnit(self):
|
21268
21191
|
"""指标单位
|
21269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21270
21192
|
:rtype: str
|
21271
21193
|
"""
|
21272
21194
|
return self._MetricUnit
|
@@ -21281,7 +21203,6 @@ class PackageFreeQuotaInfo(AbstractModel):
|
|
21281
21203
|
<li>sum-month:以月为单位抵扣</li>
|
21282
21204
|
<li>sum-day:以天为单位抵扣</li>
|
21283
21205
|
<li>totalize:总容量抵扣</li>
|
21284
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21285
21206
|
:rtype: str
|
21286
21207
|
"""
|
21287
21208
|
return self._DeductType
|
@@ -21294,7 +21215,6 @@ class PackageFreeQuotaInfo(AbstractModel):
|
|
21294
21215
|
def FreeQuotaType(self):
|
21295
21216
|
"""免费量类型
|
21296
21217
|
<li>basic:通用量抵扣</li>
|
21297
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21298
21218
|
:rtype: str
|
21299
21219
|
"""
|
21300
21220
|
return self._FreeQuotaType
|
@@ -21329,13 +21249,10 @@ class PlatformStatistic(AbstractModel):
|
|
21329
21249
|
def __init__(self):
|
21330
21250
|
r"""
|
21331
21251
|
:param _Platform: 终端用户从属平台
|
21332
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21333
21252
|
:type Platform: str
|
21334
21253
|
:param _Count: 平台终端用户数
|
21335
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21336
21254
|
:type Count: int
|
21337
21255
|
:param _UpdateTime: 更新时间
|
21338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21339
21256
|
:type UpdateTime: str
|
21340
21257
|
"""
|
21341
21258
|
self._Platform = None
|
@@ -21345,7 +21262,6 @@ class PlatformStatistic(AbstractModel):
|
|
21345
21262
|
@property
|
21346
21263
|
def Platform(self):
|
21347
21264
|
"""终端用户从属平台
|
21348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21349
21265
|
:rtype: str
|
21350
21266
|
"""
|
21351
21267
|
return self._Platform
|
@@ -21357,7 +21273,6 @@ class PlatformStatistic(AbstractModel):
|
|
21357
21273
|
@property
|
21358
21274
|
def Count(self):
|
21359
21275
|
"""平台终端用户数
|
21360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21361
21276
|
:rtype: int
|
21362
21277
|
"""
|
21363
21278
|
return self._Count
|
@@ -21369,7 +21284,6 @@ class PlatformStatistic(AbstractModel):
|
|
21369
21284
|
@property
|
21370
21285
|
def UpdateTime(self):
|
21371
21286
|
"""更新时间
|
21372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21373
21287
|
:rtype: str
|
21374
21288
|
"""
|
21375
21289
|
return self._UpdateTime
|
@@ -21401,22 +21315,16 @@ class PostPaidEnvDeductInfo(AbstractModel):
|
|
21401
21315
|
def __init__(self):
|
21402
21316
|
r"""
|
21403
21317
|
:param _ResourceType: 资源方
|
21404
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21405
21318
|
:type ResourceType: str
|
21406
21319
|
:param _MetricName: 指标名
|
21407
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21408
21320
|
:type MetricName: str
|
21409
21321
|
:param _ResQuota: 按量计费详情
|
21410
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21411
21322
|
:type ResQuota: float
|
21412
21323
|
:param _PkgQuota: 资源包抵扣详情
|
21413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21414
21324
|
:type PkgQuota: float
|
21415
21325
|
:param _FreeQuota: 免费额度抵扣详情
|
21416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21417
21326
|
:type FreeQuota: float
|
21418
21327
|
:param _EnvId: 环境id
|
21419
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21420
21328
|
:type EnvId: str
|
21421
21329
|
"""
|
21422
21330
|
self._ResourceType = None
|
@@ -21429,7 +21337,6 @@ class PostPaidEnvDeductInfo(AbstractModel):
|
|
21429
21337
|
@property
|
21430
21338
|
def ResourceType(self):
|
21431
21339
|
"""资源方
|
21432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21433
21340
|
:rtype: str
|
21434
21341
|
"""
|
21435
21342
|
return self._ResourceType
|
@@ -21441,7 +21348,6 @@ class PostPaidEnvDeductInfo(AbstractModel):
|
|
21441
21348
|
@property
|
21442
21349
|
def MetricName(self):
|
21443
21350
|
"""指标名
|
21444
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21445
21351
|
:rtype: str
|
21446
21352
|
"""
|
21447
21353
|
return self._MetricName
|
@@ -21453,7 +21359,6 @@ class PostPaidEnvDeductInfo(AbstractModel):
|
|
21453
21359
|
@property
|
21454
21360
|
def ResQuota(self):
|
21455
21361
|
"""按量计费详情
|
21456
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21457
21362
|
:rtype: float
|
21458
21363
|
"""
|
21459
21364
|
return self._ResQuota
|
@@ -21465,7 +21370,6 @@ class PostPaidEnvDeductInfo(AbstractModel):
|
|
21465
21370
|
@property
|
21466
21371
|
def PkgQuota(self):
|
21467
21372
|
"""资源包抵扣详情
|
21468
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21469
21373
|
:rtype: float
|
21470
21374
|
"""
|
21471
21375
|
return self._PkgQuota
|
@@ -21477,7 +21381,6 @@ class PostPaidEnvDeductInfo(AbstractModel):
|
|
21477
21381
|
@property
|
21478
21382
|
def FreeQuota(self):
|
21479
21383
|
"""免费额度抵扣详情
|
21480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21481
21384
|
:rtype: float
|
21482
21385
|
"""
|
21483
21386
|
return self._FreeQuota
|
@@ -21489,7 +21392,6 @@ class PostPaidEnvDeductInfo(AbstractModel):
|
|
21489
21392
|
@property
|
21490
21393
|
def EnvId(self):
|
21491
21394
|
"""环境id
|
21492
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
21493
21395
|
:rtype: str
|
21494
21396
|
"""
|
21495
21397
|
return self._EnvId
|
@@ -22622,19 +22524,14 @@ class SmsFreeQuota(AbstractModel):
|
|
22622
22524
|
def __init__(self):
|
22623
22525
|
r"""
|
22624
22526
|
:param _FreeQuota: 免费量总条数
|
22625
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22626
22527
|
:type FreeQuota: int
|
22627
22528
|
:param _TotalUsedQuota: 共计已使用总条数
|
22628
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22629
22529
|
:type TotalUsedQuota: int
|
22630
22530
|
:param _CycleStart: 免费周期起点,0000-00-00 00:00:00 形式
|
22631
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22632
22531
|
:type CycleStart: str
|
22633
22532
|
:param _CycleEnd: 免费周期终点,0000-00-00 00:00:00 形式
|
22634
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22635
22533
|
:type CycleEnd: str
|
22636
22534
|
:param _TodayUsedQuota: 今天已使用总条数
|
22637
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22638
22535
|
:type TodayUsedQuota: int
|
22639
22536
|
"""
|
22640
22537
|
self._FreeQuota = None
|
@@ -22646,7 +22543,6 @@ class SmsFreeQuota(AbstractModel):
|
|
22646
22543
|
@property
|
22647
22544
|
def FreeQuota(self):
|
22648
22545
|
"""免费量总条数
|
22649
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22650
22546
|
:rtype: int
|
22651
22547
|
"""
|
22652
22548
|
return self._FreeQuota
|
@@ -22658,7 +22554,6 @@ class SmsFreeQuota(AbstractModel):
|
|
22658
22554
|
@property
|
22659
22555
|
def TotalUsedQuota(self):
|
22660
22556
|
"""共计已使用总条数
|
22661
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22662
22557
|
:rtype: int
|
22663
22558
|
"""
|
22664
22559
|
return self._TotalUsedQuota
|
@@ -22670,7 +22565,6 @@ class SmsFreeQuota(AbstractModel):
|
|
22670
22565
|
@property
|
22671
22566
|
def CycleStart(self):
|
22672
22567
|
"""免费周期起点,0000-00-00 00:00:00 形式
|
22673
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22674
22568
|
:rtype: str
|
22675
22569
|
"""
|
22676
22570
|
return self._CycleStart
|
@@ -22682,7 +22576,6 @@ class SmsFreeQuota(AbstractModel):
|
|
22682
22576
|
@property
|
22683
22577
|
def CycleEnd(self):
|
22684
22578
|
"""免费周期终点,0000-00-00 00:00:00 形式
|
22685
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22686
22579
|
:rtype: str
|
22687
22580
|
"""
|
22688
22581
|
return self._CycleEnd
|
@@ -22694,7 +22587,6 @@ class SmsFreeQuota(AbstractModel):
|
|
22694
22587
|
@property
|
22695
22588
|
def TodayUsedQuota(self):
|
22696
22589
|
"""今天已使用总条数
|
22697
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22698
22590
|
:rtype: int
|
22699
22591
|
"""
|
22700
22592
|
return self._TodayUsedQuota
|
@@ -22728,16 +22620,12 @@ class SpecialCostItem(AbstractModel):
|
|
22728
22620
|
def __init__(self):
|
22729
22621
|
r"""
|
22730
22622
|
:param _ReportDate: 上报日期
|
22731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22732
22623
|
:type ReportDate: str
|
22733
22624
|
:param _Uin: 腾讯云uin
|
22734
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22735
22625
|
:type Uin: str
|
22736
22626
|
:param _EnvId: 资源id:环境id
|
22737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22738
22627
|
:type EnvId: str
|
22739
22628
|
:param _Status: 上报任务状态
|
22740
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22741
22629
|
:type Status: str
|
22742
22630
|
"""
|
22743
22631
|
self._ReportDate = None
|
@@ -22748,7 +22636,6 @@ class SpecialCostItem(AbstractModel):
|
|
22748
22636
|
@property
|
22749
22637
|
def ReportDate(self):
|
22750
22638
|
"""上报日期
|
22751
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22752
22639
|
:rtype: str
|
22753
22640
|
"""
|
22754
22641
|
return self._ReportDate
|
@@ -22760,7 +22647,6 @@ class SpecialCostItem(AbstractModel):
|
|
22760
22647
|
@property
|
22761
22648
|
def Uin(self):
|
22762
22649
|
"""腾讯云uin
|
22763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22764
22650
|
:rtype: str
|
22765
22651
|
"""
|
22766
22652
|
return self._Uin
|
@@ -22772,7 +22658,6 @@ class SpecialCostItem(AbstractModel):
|
|
22772
22658
|
@property
|
22773
22659
|
def EnvId(self):
|
22774
22660
|
"""资源id:环境id
|
22775
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22776
22661
|
:rtype: str
|
22777
22662
|
"""
|
22778
22663
|
return self._EnvId
|
@@ -22784,7 +22669,6 @@ class SpecialCostItem(AbstractModel):
|
|
22784
22669
|
@property
|
22785
22670
|
def Status(self):
|
22786
22671
|
"""上报任务状态
|
22787
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
22788
22672
|
:rtype: str
|
22789
22673
|
"""
|
22790
22674
|
return self._Status
|
@@ -23086,19 +22970,14 @@ class StaticStorageInfo(AbstractModel):
|
|
23086
22970
|
def __init__(self):
|
23087
22971
|
r"""
|
23088
22972
|
:param _StaticDomain: 静态CDN域名
|
23089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23090
22973
|
:type StaticDomain: str
|
23091
22974
|
:param _DefaultDirName: 静态CDN默认文件夹,当前为根目录
|
23092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23093
22975
|
:type DefaultDirName: str
|
23094
22976
|
:param _Status: 资源状态(process/online/offline/init)
|
23095
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23096
22977
|
:type Status: str
|
23097
22978
|
:param _Region: cos所属区域
|
23098
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23099
22979
|
:type Region: str
|
23100
22980
|
:param _Bucket: bucket信息
|
23101
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23102
22981
|
:type Bucket: str
|
23103
22982
|
"""
|
23104
22983
|
self._StaticDomain = None
|
@@ -23110,7 +22989,6 @@ class StaticStorageInfo(AbstractModel):
|
|
23110
22989
|
@property
|
23111
22990
|
def StaticDomain(self):
|
23112
22991
|
"""静态CDN域名
|
23113
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23114
22992
|
:rtype: str
|
23115
22993
|
"""
|
23116
22994
|
return self._StaticDomain
|
@@ -23122,7 +23000,6 @@ class StaticStorageInfo(AbstractModel):
|
|
23122
23000
|
@property
|
23123
23001
|
def DefaultDirName(self):
|
23124
23002
|
"""静态CDN默认文件夹,当前为根目录
|
23125
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23126
23003
|
:rtype: str
|
23127
23004
|
"""
|
23128
23005
|
return self._DefaultDirName
|
@@ -23134,7 +23011,6 @@ class StaticStorageInfo(AbstractModel):
|
|
23134
23011
|
@property
|
23135
23012
|
def Status(self):
|
23136
23013
|
"""资源状态(process/online/offline/init)
|
23137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23138
23014
|
:rtype: str
|
23139
23015
|
"""
|
23140
23016
|
return self._Status
|
@@ -23146,7 +23022,6 @@ class StaticStorageInfo(AbstractModel):
|
|
23146
23022
|
@property
|
23147
23023
|
def Region(self):
|
23148
23024
|
"""cos所属区域
|
23149
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23150
23025
|
:rtype: str
|
23151
23026
|
"""
|
23152
23027
|
return self._Region
|
@@ -23158,7 +23033,6 @@ class StaticStorageInfo(AbstractModel):
|
|
23158
23033
|
@property
|
23159
23034
|
def Bucket(self):
|
23160
23035
|
"""bucket信息
|
23161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
23162
23036
|
:rtype: str
|
23163
23037
|
"""
|
23164
23038
|
return self._Bucket
|