tencentcloud-sdk-python 3.0.1357__py2.py3-none-any.whl → 3.0.1358__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/bh/v20230418/bh_client.py +115 -0
- tencentcloud/bh/v20230418/errorcodes.py +15 -0
- tencentcloud/bh/v20230418/models.py +854 -28
- tencentcloud/bpaas/v20181217/models.py +0 -54
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +15 -0
- tencentcloud/chc/v20230418/chc_client.py +23 -0
- tencentcloud/chc/v20230418/models.py +185 -2
- tencentcloud/cls/v20201016/cls_client.py +23 -0
- tencentcloud/cls/v20201016/models.py +79 -0
- tencentcloud/cwp/v20180228/models.py +2 -2
- tencentcloud/es/v20180416/models.py +57 -6
- tencentcloud/es/v20250101/__init__.py +0 -0
- tencentcloud/es/v20250101/errorcodes.py +45 -0
- tencentcloud/es/v20250101/es_client.py +228 -0
- tencentcloud/es/v20250101/models.py +2168 -0
- tencentcloud/ess/v20201111/ess_client.py +33 -0
- tencentcloud/ess/v20201111/models.py +137 -2
- tencentcloud/essbasic/v20210526/essbasic_client.py +33 -0
- tencentcloud/essbasic/v20210526/models.py +120 -0
- tencentcloud/lcic/v20220817/models.py +15 -0
- tencentcloud/ocr/v20181119/models.py +2 -2
- tencentcloud/sts/v20180813/errorcodes.py +9 -0
- tencentcloud/sts/v20180813/models.py +171 -0
- tencentcloud/sts/v20180813/sts_client.py +23 -0
- tencentcloud/tcr/v20190924/models.py +10 -6
- tencentcloud/tdmq/v20200217/models.py +68 -0
- tencentcloud/tione/v20211111/errorcodes.py +3 -0
- tencentcloud/tione/v20211111/models.py +384 -0
- tencentcloud/tione/v20211111/tione_client.py +23 -0
- tencentcloud/tse/v20201207/models.py +0 -296
- tencentcloud/tsf/v20180326/models.py +6 -110
- tencentcloud/tsf/v20180326/tsf_client.py +3 -1
- tencentcloud/waf/v20180125/models.py +473 -0
- tencentcloud/waf/v20180125/waf_client.py +69 -0
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/RECORD +41 -37
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/top_level.txt +0 -0
@@ -6937,28 +6937,20 @@ class ContainerEvent(AbstractModel):
|
|
6937
6937
|
def __init__(self):
|
6938
6938
|
r"""
|
6939
6939
|
:param _FirstTimestamp: 第一次出现的时间,以 ms 为单位的时间戳
|
6940
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6941
6940
|
:type FirstTimestamp: int
|
6942
6941
|
:param _LastTimestamp: 最后一次出现的时间,以 ms 为单位的时间戳
|
6943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6944
6942
|
:type LastTimestamp: int
|
6945
6943
|
:param _Type: 级别
|
6946
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6947
6944
|
:type Type: str
|
6948
6945
|
:param _Kind: 资源类型
|
6949
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6950
6946
|
:type Kind: str
|
6951
6947
|
:param _Name: 资源名称
|
6952
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6953
6948
|
:type Name: str
|
6954
6949
|
:param _Reason: 内容
|
6955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6956
6950
|
:type Reason: str
|
6957
6951
|
:param _Message: 详细描述
|
6958
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6959
6952
|
:type Message: str
|
6960
6953
|
:param _Count: 出现次数
|
6961
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6962
6954
|
:type Count: int
|
6963
6955
|
"""
|
6964
6956
|
self._FirstTimestamp = None
|
@@ -6973,7 +6965,6 @@ class ContainerEvent(AbstractModel):
|
|
6973
6965
|
@property
|
6974
6966
|
def FirstTimestamp(self):
|
6975
6967
|
"""第一次出现的时间,以 ms 为单位的时间戳
|
6976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6977
6968
|
:rtype: int
|
6978
6969
|
"""
|
6979
6970
|
return self._FirstTimestamp
|
@@ -6985,7 +6976,6 @@ class ContainerEvent(AbstractModel):
|
|
6985
6976
|
@property
|
6986
6977
|
def LastTimestamp(self):
|
6987
6978
|
"""最后一次出现的时间,以 ms 为单位的时间戳
|
6988
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6989
6979
|
:rtype: int
|
6990
6980
|
"""
|
6991
6981
|
return self._LastTimestamp
|
@@ -6997,7 +6987,6 @@ class ContainerEvent(AbstractModel):
|
|
6997
6987
|
@property
|
6998
6988
|
def Type(self):
|
6999
6989
|
"""级别
|
7000
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7001
6990
|
:rtype: str
|
7002
6991
|
"""
|
7003
6992
|
return self._Type
|
@@ -7009,7 +6998,6 @@ class ContainerEvent(AbstractModel):
|
|
7009
6998
|
@property
|
7010
6999
|
def Kind(self):
|
7011
7000
|
"""资源类型
|
7012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7013
7001
|
:rtype: str
|
7014
7002
|
"""
|
7015
7003
|
return self._Kind
|
@@ -7021,7 +7009,6 @@ class ContainerEvent(AbstractModel):
|
|
7021
7009
|
@property
|
7022
7010
|
def Name(self):
|
7023
7011
|
"""资源名称
|
7024
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7025
7012
|
:rtype: str
|
7026
7013
|
"""
|
7027
7014
|
return self._Name
|
@@ -7033,7 +7020,6 @@ class ContainerEvent(AbstractModel):
|
|
7033
7020
|
@property
|
7034
7021
|
def Reason(self):
|
7035
7022
|
"""内容
|
7036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7037
7023
|
:rtype: str
|
7038
7024
|
"""
|
7039
7025
|
return self._Reason
|
@@ -7045,7 +7031,6 @@ class ContainerEvent(AbstractModel):
|
|
7045
7031
|
@property
|
7046
7032
|
def Message(self):
|
7047
7033
|
"""详细描述
|
7048
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7049
7034
|
:rtype: str
|
7050
7035
|
"""
|
7051
7036
|
return self._Message
|
@@ -7057,7 +7042,6 @@ class ContainerEvent(AbstractModel):
|
|
7057
7042
|
@property
|
7058
7043
|
def Count(self):
|
7059
7044
|
"""出现次数
|
7060
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7061
7045
|
:rtype: int
|
7062
7046
|
"""
|
7063
7047
|
return self._Count
|
@@ -14500,10 +14484,8 @@ class CustomPodSchedule(AbstractModel):
|
|
14500
14484
|
def __init__(self):
|
14501
14485
|
r"""
|
14502
14486
|
:param _ForceSchedule: -
|
14503
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14504
14487
|
:type ForceSchedule: :class:`tencentcloud.tsf.v20180326.models.ForceSchedule`
|
14505
14488
|
:param _TrySchedule: -
|
14506
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14507
14489
|
:type TrySchedule: :class:`tencentcloud.tsf.v20180326.models.TrySchedule`
|
14508
14490
|
"""
|
14509
14491
|
self._ForceSchedule = None
|
@@ -14512,7 +14494,6 @@ class CustomPodSchedule(AbstractModel):
|
|
14512
14494
|
@property
|
14513
14495
|
def ForceSchedule(self):
|
14514
14496
|
"""-
|
14515
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14516
14497
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.ForceSchedule`
|
14517
14498
|
"""
|
14518
14499
|
return self._ForceSchedule
|
@@ -14524,7 +14505,6 @@ class CustomPodSchedule(AbstractModel):
|
|
14524
14505
|
@property
|
14525
14506
|
def TrySchedule(self):
|
14526
14507
|
"""-
|
14527
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14528
14508
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.TrySchedule`
|
14529
14509
|
"""
|
14530
14510
|
return self._TrySchedule
|
@@ -19320,7 +19300,6 @@ class DescribeBasicResourceUsageResponse(AbstractModel):
|
|
19320
19300
|
def __init__(self):
|
19321
19301
|
r"""
|
19322
19302
|
:param _Result: TSF基本资源信息
|
19323
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19324
19303
|
:type Result: :class:`tencentcloud.tsf.v20180326.models.OverviewBasicResourceUsage`
|
19325
19304
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
19326
19305
|
:type RequestId: str
|
@@ -19331,7 +19310,6 @@ class DescribeBasicResourceUsageResponse(AbstractModel):
|
|
19331
19310
|
@property
|
19332
19311
|
def Result(self):
|
19333
19312
|
"""TSF基本资源信息
|
19334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19335
19313
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.OverviewBasicResourceUsage`
|
19336
19314
|
"""
|
19337
19315
|
return self._Result
|
@@ -26487,9 +26465,9 @@ class DescribeOverviewInvocationRequest(AbstractModel):
|
|
26487
26465
|
|
26488
26466
|
def __init__(self):
|
26489
26467
|
r"""
|
26490
|
-
:param _NamespaceId: 命名空间ID
|
26468
|
+
:param _NamespaceId: 命名空间ID, 此参数必填
|
26491
26469
|
:type NamespaceId: str
|
26492
|
-
:param _Type:
|
26470
|
+
:param _Type: 监控统计类型,必填,可选值:SumReqAmount、AvgFailureRate、AvgTimeCost,分别对应请求量、请求错误率、平均响应耗时
|
26493
26471
|
:type Type: str
|
26494
26472
|
:param _Period: 监控统计数据粒度,可选值:60、3600、86400,分别对应1分钟、1小时、1天
|
26495
26473
|
:type Period: int
|
@@ -26506,7 +26484,7 @@ class DescribeOverviewInvocationRequest(AbstractModel):
|
|
26506
26484
|
|
26507
26485
|
@property
|
26508
26486
|
def NamespaceId(self):
|
26509
|
-
"""命名空间ID
|
26487
|
+
"""命名空间ID, 此参数必填
|
26510
26488
|
:rtype: str
|
26511
26489
|
"""
|
26512
26490
|
return self._NamespaceId
|
@@ -26517,7 +26495,7 @@ class DescribeOverviewInvocationRequest(AbstractModel):
|
|
26517
26495
|
|
26518
26496
|
@property
|
26519
26497
|
def Type(self):
|
26520
|
-
"""
|
26498
|
+
"""监控统计类型,必填,可选值:SumReqAmount、AvgFailureRate、AvgTimeCost,分别对应请求量、请求错误率、平均响应耗时
|
26521
26499
|
:rtype: str
|
26522
26500
|
"""
|
26523
26501
|
return self._Type
|
@@ -26584,7 +26562,6 @@ class DescribeOverviewInvocationResponse(AbstractModel):
|
|
26584
26562
|
def __init__(self):
|
26585
26563
|
r"""
|
26586
26564
|
:param _Result: 监控统计数据列表
|
26587
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26588
26565
|
:type Result: list of MetricDataPoint
|
26589
26566
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
26590
26567
|
:type RequestId: str
|
@@ -26595,7 +26572,6 @@ class DescribeOverviewInvocationResponse(AbstractModel):
|
|
26595
26572
|
@property
|
26596
26573
|
def Result(self):
|
26597
26574
|
"""监控统计数据列表
|
26598
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
26599
26575
|
:rtype: list of MetricDataPoint
|
26600
26576
|
"""
|
26601
26577
|
return self._Result
|
@@ -32520,7 +32496,6 @@ class FieldRef(AbstractModel):
|
|
32520
32496
|
def __init__(self):
|
32521
32497
|
r"""
|
32522
32498
|
:param _FieldPath: k8s 的 FieldPath
|
32523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
32524
32499
|
:type FieldPath: str
|
32525
32500
|
"""
|
32526
32501
|
self._FieldPath = None
|
@@ -32528,7 +32503,6 @@ class FieldRef(AbstractModel):
|
|
32528
32503
|
@property
|
32529
32504
|
def FieldPath(self):
|
32530
32505
|
"""k8s 的 FieldPath
|
32531
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
32532
32506
|
:rtype: str
|
32533
32507
|
"""
|
32534
32508
|
return self._FieldPath
|
@@ -33149,10 +33123,8 @@ class ForceSchedule(AbstractModel):
|
|
33149
33123
|
def __init__(self):
|
33150
33124
|
r"""
|
33151
33125
|
:param _AffinityList: -
|
33152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33153
33126
|
:type AffinityList: list of Affinity
|
33154
33127
|
:param _AntiAffinityList: -
|
33155
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33156
33128
|
:type AntiAffinityList: list of Affinity
|
33157
33129
|
"""
|
33158
33130
|
self._AffinityList = None
|
@@ -33161,7 +33133,6 @@ class ForceSchedule(AbstractModel):
|
|
33161
33133
|
@property
|
33162
33134
|
def AffinityList(self):
|
33163
33135
|
"""-
|
33164
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33165
33136
|
:rtype: list of Affinity
|
33166
33137
|
"""
|
33167
33138
|
return self._AffinityList
|
@@ -33173,7 +33144,6 @@ class ForceSchedule(AbstractModel):
|
|
33173
33144
|
@property
|
33174
33145
|
def AntiAffinityList(self):
|
33175
33146
|
"""-
|
33176
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33177
33147
|
:rtype: list of Affinity
|
33178
33148
|
"""
|
33179
33149
|
return self._AntiAffinityList
|
@@ -33330,7 +33300,6 @@ class GatewayConfig(AbstractModel):
|
|
33330
33300
|
def __init__(self):
|
33331
33301
|
r"""
|
33332
33302
|
:param _Name: 服务名称
|
33333
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33334
33303
|
:type Name: str
|
33335
33304
|
"""
|
33336
33305
|
self._Name = None
|
@@ -33338,7 +33307,6 @@ class GatewayConfig(AbstractModel):
|
|
33338
33307
|
@property
|
33339
33308
|
def Name(self):
|
33340
33309
|
"""服务名称
|
33341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33342
33310
|
:rtype: str
|
33343
33311
|
"""
|
33344
33312
|
return self._Name
|
@@ -37664,7 +37632,6 @@ class InvocationMetricScatterPlot(AbstractModel):
|
|
37664
37632
|
:param _Period: 时间轴开始时间,GMT,精确到毫秒
|
37665
37633
|
:type Period: int
|
37666
37634
|
:param _DataPoints: 多值数据点集合
|
37667
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37668
37635
|
:type DataPoints: list of MultiValueDataPoints
|
37669
37636
|
"""
|
37670
37637
|
self._EndTime = None
|
@@ -37708,7 +37675,6 @@ class InvocationMetricScatterPlot(AbstractModel):
|
|
37708
37675
|
@property
|
37709
37676
|
def DataPoints(self):
|
37710
37677
|
"""多值数据点集合
|
37711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37712
37678
|
:rtype: list of MultiValueDataPoints
|
37713
37679
|
"""
|
37714
37680
|
return self._DataPoints
|
@@ -40126,7 +40092,7 @@ class ModifyContainerGroupRequest(AbstractModel):
|
|
40126
40092
|
|
40127
40093
|
def __init__(self):
|
40128
40094
|
r"""
|
40129
|
-
:param _GroupId: 部署组ID
|
40095
|
+
:param _GroupId: 部署组ID 必填项
|
40130
40096
|
:type GroupId: str
|
40131
40097
|
:param _AccessType: 0:公网 1:集群内访问 2:NodePort
|
40132
40098
|
:type AccessType: int
|
@@ -40151,7 +40117,7 @@ class ModifyContainerGroupRequest(AbstractModel):
|
|
40151
40117
|
|
40152
40118
|
@property
|
40153
40119
|
def GroupId(self):
|
40154
|
-
"""部署组ID
|
40120
|
+
"""部署组ID 必填项
|
40155
40121
|
:rtype: str
|
40156
40122
|
"""
|
40157
40123
|
return self._GroupId
|
@@ -40260,7 +40226,6 @@ class ModifyContainerGroupResponse(AbstractModel):
|
|
40260
40226
|
:param _Result: 更新部署组是否成功。
|
40261
40227
|
true:成功。
|
40262
40228
|
false:失败。
|
40263
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
40264
40229
|
:type Result: bool
|
40265
40230
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
40266
40231
|
:type RequestId: str
|
@@ -40273,7 +40238,6 @@ false:失败。
|
|
40273
40238
|
"""更新部署组是否成功。
|
40274
40239
|
true:成功。
|
40275
40240
|
false:失败。
|
40276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
40277
40241
|
:rtype: bool
|
40278
40242
|
"""
|
40279
40243
|
return self._Result
|
@@ -42470,7 +42434,6 @@ class MultiValue(AbstractModel):
|
|
42470
42434
|
def __init__(self):
|
42471
42435
|
r"""
|
42472
42436
|
:param _Values: 数据点
|
42473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42474
42437
|
:type Values: list of float
|
42475
42438
|
"""
|
42476
42439
|
self._Values = None
|
@@ -42478,7 +42441,6 @@ class MultiValue(AbstractModel):
|
|
42478
42441
|
@property
|
42479
42442
|
def Values(self):
|
42480
42443
|
"""数据点
|
42481
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42482
42444
|
:rtype: list of float
|
42483
42445
|
"""
|
42484
42446
|
return self._Values
|
@@ -42941,13 +42903,10 @@ class OperationInfo(AbstractModel):
|
|
42941
42903
|
def __init__(self):
|
42942
42904
|
r"""
|
42943
42905
|
:param _Init: 初始化按钮的控制信息
|
42944
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42945
42906
|
:type Init: :class:`tencentcloud.tsf.v20180326.models.OperationInfoDetail`
|
42946
42907
|
:param _AddInstance: 添加实例按钮的控制信息
|
42947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42948
42908
|
:type AddInstance: :class:`tencentcloud.tsf.v20180326.models.OperationInfoDetail`
|
42949
42909
|
:param _Destroy: 销毁机器的控制信息
|
42950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42951
42910
|
:type Destroy: :class:`tencentcloud.tsf.v20180326.models.OperationInfoDetail`
|
42952
42911
|
"""
|
42953
42912
|
self._Init = None
|
@@ -42957,7 +42916,6 @@ class OperationInfo(AbstractModel):
|
|
42957
42916
|
@property
|
42958
42917
|
def Init(self):
|
42959
42918
|
"""初始化按钮的控制信息
|
42960
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42961
42919
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.OperationInfoDetail`
|
42962
42920
|
"""
|
42963
42921
|
return self._Init
|
@@ -42969,7 +42927,6 @@ class OperationInfo(AbstractModel):
|
|
42969
42927
|
@property
|
42970
42928
|
def AddInstance(self):
|
42971
42929
|
"""添加实例按钮的控制信息
|
42972
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42973
42930
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.OperationInfoDetail`
|
42974
42931
|
"""
|
42975
42932
|
return self._AddInstance
|
@@ -42981,7 +42938,6 @@ class OperationInfo(AbstractModel):
|
|
42981
42938
|
@property
|
42982
42939
|
def Destroy(self):
|
42983
42940
|
"""销毁机器的控制信息
|
42984
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42985
42941
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.OperationInfoDetail`
|
42986
42942
|
"""
|
42987
42943
|
return self._Destroy
|
@@ -45934,7 +45890,6 @@ class ResourceFieldRef(AbstractModel):
|
|
45934
45890
|
def __init__(self):
|
45935
45891
|
r"""
|
45936
45892
|
:param _Resource: k8s 的 Resource
|
45937
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45938
45893
|
:type Resource: str
|
45939
45894
|
"""
|
45940
45895
|
self._Resource = None
|
@@ -45942,7 +45897,6 @@ class ResourceFieldRef(AbstractModel):
|
|
45942
45897
|
@property
|
45943
45898
|
def Resource(self):
|
45944
45899
|
"""k8s 的 Resource
|
45945
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45946
45900
|
:rtype: str
|
45947
45901
|
"""
|
45948
45902
|
return self._Resource
|
@@ -50063,10 +50017,8 @@ class TaskRecord(AbstractModel):
|
|
50063
50017
|
:param _TimeOut: 超时时间
|
50064
50018
|
:type TimeOut: int
|
50065
50019
|
:param _RetryCount: 重试次数
|
50066
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50067
50020
|
:type RetryCount: int
|
50068
50021
|
:param _RetryInterval: 重试间隔
|
50069
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50070
50022
|
:type RetryInterval: int
|
50071
50023
|
:param _TaskRule: 触发规则
|
50072
50024
|
:type TaskRule: :class:`tencentcloud.tsf.v20180326.models.TaskRule`
|
@@ -50075,31 +50027,22 @@ class TaskRecord(AbstractModel):
|
|
50075
50027
|
:param _TaskId: 任务ID
|
50076
50028
|
:type TaskId: str
|
50077
50029
|
:param _SuccessOperator: 判断任务成功的操作符
|
50078
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50079
50030
|
:type SuccessOperator: str
|
50080
50031
|
:param _SuccessRatio: 判断任务成功的阈值
|
50081
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50082
50032
|
:type SuccessRatio: int
|
50083
50033
|
:param _ShardCount: 分片数量
|
50084
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50085
50034
|
:type ShardCount: int
|
50086
50035
|
:param _AdvanceSettings: 高级设置
|
50087
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50088
50036
|
:type AdvanceSettings: :class:`tencentcloud.tsf.v20180326.models.AdvanceSettings`
|
50089
50037
|
:param _ShardArguments: 分片参数
|
50090
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50091
50038
|
:type ShardArguments: list of ShardArgument
|
50092
50039
|
:param _BelongFlowIds: 所属工作流ID
|
50093
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50094
50040
|
:type BelongFlowIds: list of str
|
50095
50041
|
:param _TaskLogId: 任务历史ID
|
50096
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50097
50042
|
:type TaskLogId: str
|
50098
50043
|
:param _TriggerType: 触发类型
|
50099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50100
50044
|
:type TriggerType: str
|
50101
50045
|
:param _TaskArgument: 任务参数,长度限制10000个字符
|
50102
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50103
50046
|
:type TaskArgument: str
|
50104
50047
|
"""
|
50105
50048
|
self._TaskName = None
|
@@ -50192,7 +50135,6 @@ class TaskRecord(AbstractModel):
|
|
50192
50135
|
@property
|
50193
50136
|
def RetryCount(self):
|
50194
50137
|
"""重试次数
|
50195
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50196
50138
|
:rtype: int
|
50197
50139
|
"""
|
50198
50140
|
return self._RetryCount
|
@@ -50204,7 +50146,6 @@ class TaskRecord(AbstractModel):
|
|
50204
50146
|
@property
|
50205
50147
|
def RetryInterval(self):
|
50206
50148
|
"""重试间隔
|
50207
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50208
50149
|
:rtype: int
|
50209
50150
|
"""
|
50210
50151
|
return self._RetryInterval
|
@@ -50249,7 +50190,6 @@ class TaskRecord(AbstractModel):
|
|
50249
50190
|
@property
|
50250
50191
|
def SuccessOperator(self):
|
50251
50192
|
"""判断任务成功的操作符
|
50252
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50253
50193
|
:rtype: str
|
50254
50194
|
"""
|
50255
50195
|
return self._SuccessOperator
|
@@ -50261,7 +50201,6 @@ class TaskRecord(AbstractModel):
|
|
50261
50201
|
@property
|
50262
50202
|
def SuccessRatio(self):
|
50263
50203
|
"""判断任务成功的阈值
|
50264
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50265
50204
|
:rtype: int
|
50266
50205
|
"""
|
50267
50206
|
return self._SuccessRatio
|
@@ -50273,7 +50212,6 @@ class TaskRecord(AbstractModel):
|
|
50273
50212
|
@property
|
50274
50213
|
def ShardCount(self):
|
50275
50214
|
"""分片数量
|
50276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50277
50215
|
:rtype: int
|
50278
50216
|
"""
|
50279
50217
|
return self._ShardCount
|
@@ -50285,7 +50223,6 @@ class TaskRecord(AbstractModel):
|
|
50285
50223
|
@property
|
50286
50224
|
def AdvanceSettings(self):
|
50287
50225
|
"""高级设置
|
50288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50289
50226
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.AdvanceSettings`
|
50290
50227
|
"""
|
50291
50228
|
return self._AdvanceSettings
|
@@ -50297,7 +50234,6 @@ class TaskRecord(AbstractModel):
|
|
50297
50234
|
@property
|
50298
50235
|
def ShardArguments(self):
|
50299
50236
|
"""分片参数
|
50300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50301
50237
|
:rtype: list of ShardArgument
|
50302
50238
|
"""
|
50303
50239
|
return self._ShardArguments
|
@@ -50309,7 +50245,6 @@ class TaskRecord(AbstractModel):
|
|
50309
50245
|
@property
|
50310
50246
|
def BelongFlowIds(self):
|
50311
50247
|
"""所属工作流ID
|
50312
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50313
50248
|
:rtype: list of str
|
50314
50249
|
"""
|
50315
50250
|
return self._BelongFlowIds
|
@@ -50321,7 +50256,6 @@ class TaskRecord(AbstractModel):
|
|
50321
50256
|
@property
|
50322
50257
|
def TaskLogId(self):
|
50323
50258
|
"""任务历史ID
|
50324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50325
50259
|
:rtype: str
|
50326
50260
|
"""
|
50327
50261
|
return self._TaskLogId
|
@@ -50333,7 +50267,6 @@ class TaskRecord(AbstractModel):
|
|
50333
50267
|
@property
|
50334
50268
|
def TriggerType(self):
|
50335
50269
|
"""触发类型
|
50336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50337
50270
|
:rtype: str
|
50338
50271
|
"""
|
50339
50272
|
return self._TriggerType
|
@@ -50345,7 +50278,6 @@ class TaskRecord(AbstractModel):
|
|
50345
50278
|
@property
|
50346
50279
|
def TaskArgument(self):
|
50347
50280
|
"""任务参数,长度限制10000个字符
|
50348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50349
50281
|
:rtype: str
|
50350
50282
|
"""
|
50351
50283
|
return self._TaskArgument
|
@@ -50461,7 +50393,6 @@ class TaskRule(AbstractModel):
|
|
50461
50393
|
:param _RuleType: 触发规则类型, Cron/Repeat
|
50462
50394
|
:type RuleType: str
|
50463
50395
|
:param _Expression: Cron类型规则,cron表达式。
|
50464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50465
50396
|
:type Expression: str
|
50466
50397
|
:param _RepeatInterval: 时间间隔, 单位毫秒
|
50467
50398
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -50485,7 +50416,6 @@ class TaskRule(AbstractModel):
|
|
50485
50416
|
@property
|
50486
50417
|
def Expression(self):
|
50487
50418
|
"""Cron类型规则,cron表达式。
|
50488
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50489
50419
|
:rtype: str
|
50490
50420
|
"""
|
50491
50421
|
return self._Expression
|
@@ -50805,10 +50735,8 @@ class TrySchedule(AbstractModel):
|
|
50805
50735
|
def __init__(self):
|
50806
50736
|
r"""
|
50807
50737
|
:param _AffinityList: -
|
50808
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50809
50738
|
:type AffinityList: list of Affinity
|
50810
50739
|
:param _AntiAffinityList: -
|
50811
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50812
50740
|
:type AntiAffinityList: list of Affinity
|
50813
50741
|
"""
|
50814
50742
|
self._AffinityList = None
|
@@ -50817,7 +50745,6 @@ class TrySchedule(AbstractModel):
|
|
50817
50745
|
@property
|
50818
50746
|
def AffinityList(self):
|
50819
50747
|
"""-
|
50820
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50821
50748
|
:rtype: list of Affinity
|
50822
50749
|
"""
|
50823
50750
|
return self._AffinityList
|
@@ -50829,7 +50756,6 @@ class TrySchedule(AbstractModel):
|
|
50829
50756
|
@property
|
50830
50757
|
def AntiAffinityList(self):
|
50831
50758
|
"""-
|
50832
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50833
50759
|
:rtype: list of Affinity
|
50834
50760
|
"""
|
50835
50761
|
return self._AntiAffinityList
|
@@ -51182,13 +51108,10 @@ class TsfPageApplication(AbstractModel):
|
|
51182
51108
|
def __init__(self):
|
51183
51109
|
r"""
|
51184
51110
|
:param _TotalCount: 应用总数目
|
51185
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
51186
51111
|
:type TotalCount: int
|
51187
51112
|
:param _Content: 应用信息列表
|
51188
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
51189
51113
|
:type Content: list of ApplicationForPage
|
51190
51114
|
:param _SpecTotalCount: 获取部署组实例列表返回的原始批次个数
|
51191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
51192
51115
|
:type SpecTotalCount: int
|
51193
51116
|
"""
|
51194
51117
|
self._TotalCount = None
|
@@ -51198,7 +51121,6 @@ class TsfPageApplication(AbstractModel):
|
|
51198
51121
|
@property
|
51199
51122
|
def TotalCount(self):
|
51200
51123
|
"""应用总数目
|
51201
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
51202
51124
|
:rtype: int
|
51203
51125
|
"""
|
51204
51126
|
return self._TotalCount
|
@@ -51210,7 +51132,6 @@ class TsfPageApplication(AbstractModel):
|
|
51210
51132
|
@property
|
51211
51133
|
def Content(self):
|
51212
51134
|
"""应用信息列表
|
51213
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
51214
51135
|
:rtype: list of ApplicationForPage
|
51215
51136
|
"""
|
51216
51137
|
return self._Content
|
@@ -51222,7 +51143,6 @@ class TsfPageApplication(AbstractModel):
|
|
51222
51143
|
@property
|
51223
51144
|
def SpecTotalCount(self):
|
51224
51145
|
"""获取部署组实例列表返回的原始批次个数
|
51225
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
51226
51146
|
:rtype: int
|
51227
51147
|
"""
|
51228
51148
|
return self._SpecTotalCount
|
@@ -51325,7 +51245,6 @@ class TsfPageBusinessLogV2(AbstractModel):
|
|
51325
51245
|
注意:此字段可能返回 null,表示取不到有效值。
|
51326
51246
|
:type Status: str
|
51327
51247
|
:param _SearchAfter: 查询es时,使用searchAfter返回的游标
|
51328
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
51329
51248
|
:type SearchAfter: list of str
|
51330
51249
|
"""
|
51331
51250
|
self._TotalCount = None
|
@@ -51383,7 +51302,6 @@ class TsfPageBusinessLogV2(AbstractModel):
|
|
51383
51302
|
@property
|
51384
51303
|
def SearchAfter(self):
|
51385
51304
|
"""查询es时,使用searchAfter返回的游标
|
51386
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
51387
51305
|
:rtype: list of str
|
51388
51306
|
"""
|
51389
51307
|
return self._SearchAfter
|
@@ -52399,7 +52317,6 @@ class TsfPageStdoutLogV2(AbstractModel):
|
|
52399
52317
|
注意:此字段可能返回 null,表示取不到有效值。
|
52400
52318
|
:type Status: str
|
52401
52319
|
:param _SearchAfter: 游标ID
|
52402
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
52403
52320
|
:type SearchAfter: list of str
|
52404
52321
|
"""
|
52405
52322
|
self._TotalCount = None
|
@@ -52457,7 +52374,6 @@ class TsfPageStdoutLogV2(AbstractModel):
|
|
52457
52374
|
@property
|
52458
52375
|
def SearchAfter(self):
|
52459
52376
|
"""游标ID
|
52460
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
52461
52377
|
:rtype: list of str
|
52462
52378
|
"""
|
52463
52379
|
return self._SearchAfter
|
@@ -54301,7 +54217,6 @@ class UpdateHealthCheckSettingsResponse(AbstractModel):
|
|
54301
54217
|
:param _Result: 更新健康检查配置操作是否成功。
|
54302
54218
|
true:操作成功。
|
54303
54219
|
false:操作失败。
|
54304
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54305
54220
|
:type Result: bool
|
54306
54221
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
54307
54222
|
:type RequestId: str
|
@@ -54314,7 +54229,6 @@ false:操作失败。
|
|
54314
54229
|
"""更新健康检查配置操作是否成功。
|
54315
54230
|
true:操作成功。
|
54316
54231
|
false:操作失败。
|
54317
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54318
54232
|
:rtype: bool
|
54319
54233
|
"""
|
54320
54234
|
return self._Result
|
@@ -54571,16 +54485,13 @@ class ValueFrom(AbstractModel):
|
|
54571
54485
|
def __init__(self):
|
54572
54486
|
r"""
|
54573
54487
|
:param _FieldRef: k8s env 的 FieldRef
|
54574
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54575
54488
|
:type FieldRef: :class:`tencentcloud.tsf.v20180326.models.FieldRef`
|
54576
54489
|
:param _ResourceFieldRef: k8s env 的 ResourceFieldRef
|
54577
54490
|
注意:此字段可能返回 null,表示取不到有效值。
|
54578
54491
|
:type ResourceFieldRef: :class:`tencentcloud.tsf.v20180326.models.ResourceFieldRef`
|
54579
54492
|
:param _ConfigMapKeyRef: k8s env的configMapKeyRef
|
54580
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54581
54493
|
:type ConfigMapKeyRef: :class:`tencentcloud.tsf.v20180326.models.CommonRef`
|
54582
54494
|
:param _SecretKeyRef: k8s env 的 secretKeyRef
|
54583
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54584
54495
|
:type SecretKeyRef: :class:`tencentcloud.tsf.v20180326.models.CommonRef`
|
54585
54496
|
"""
|
54586
54497
|
self._FieldRef = None
|
@@ -54591,7 +54502,6 @@ class ValueFrom(AbstractModel):
|
|
54591
54502
|
@property
|
54592
54503
|
def FieldRef(self):
|
54593
54504
|
"""k8s env 的 FieldRef
|
54594
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54595
54505
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.FieldRef`
|
54596
54506
|
"""
|
54597
54507
|
return self._FieldRef
|
@@ -54615,7 +54525,6 @@ class ValueFrom(AbstractModel):
|
|
54615
54525
|
@property
|
54616
54526
|
def ConfigMapKeyRef(self):
|
54617
54527
|
"""k8s env的configMapKeyRef
|
54618
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54619
54528
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.CommonRef`
|
54620
54529
|
"""
|
54621
54530
|
return self._ConfigMapKeyRef
|
@@ -54627,7 +54536,6 @@ class ValueFrom(AbstractModel):
|
|
54627
54536
|
@property
|
54628
54537
|
def SecretKeyRef(self):
|
54629
54538
|
"""k8s env 的 secretKeyRef
|
54630
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54631
54539
|
:rtype: :class:`tencentcloud.tsf.v20180326.models.CommonRef`
|
54632
54540
|
"""
|
54633
54541
|
return self._SecretKeyRef
|
@@ -54758,22 +54666,16 @@ class VmGroup(AbstractModel):
|
|
54758
54666
|
:param _EnableBatchHealthCheck: 批次是否开启健康检查
|
54759
54667
|
:type EnableBatchHealthCheck: bool
|
54760
54668
|
:param _FilebeatCgroupEnable: 是否开启cgroup控制内存cpu
|
54761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54762
54669
|
:type FilebeatCgroupEnable: bool
|
54763
54670
|
:param _FilebeatMaxCpu: filebeat使用cpu上限
|
54764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54765
54671
|
:type FilebeatMaxCpu: float
|
54766
54672
|
:param _FilebeatMaxMem: filebeat使用内存上限
|
54767
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54768
54673
|
:type FilebeatMaxMem: int
|
54769
54674
|
:param _RepositoryId: 仓库ID
|
54770
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54771
54675
|
:type RepositoryId: str
|
54772
54676
|
:param _RepositoryName: 仓库名称
|
54773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54774
54677
|
:type RepositoryName: str
|
54775
54678
|
:param _RepositoryType: 仓库类型
|
54776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54777
54679
|
:type RepositoryType: str
|
54778
54680
|
"""
|
54779
54681
|
self._GroupId = None
|
@@ -55266,7 +55168,6 @@ class VmGroup(AbstractModel):
|
|
55266
55168
|
@property
|
55267
55169
|
def FilebeatCgroupEnable(self):
|
55268
55170
|
"""是否开启cgroup控制内存cpu
|
55269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55270
55171
|
:rtype: bool
|
55271
55172
|
"""
|
55272
55173
|
return self._FilebeatCgroupEnable
|
@@ -55278,7 +55179,6 @@ class VmGroup(AbstractModel):
|
|
55278
55179
|
@property
|
55279
55180
|
def FilebeatMaxCpu(self):
|
55280
55181
|
"""filebeat使用cpu上限
|
55281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55282
55182
|
:rtype: float
|
55283
55183
|
"""
|
55284
55184
|
return self._FilebeatMaxCpu
|
@@ -55290,7 +55190,6 @@ class VmGroup(AbstractModel):
|
|
55290
55190
|
@property
|
55291
55191
|
def FilebeatMaxMem(self):
|
55292
55192
|
"""filebeat使用内存上限
|
55293
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55294
55193
|
:rtype: int
|
55295
55194
|
"""
|
55296
55195
|
return self._FilebeatMaxMem
|
@@ -55302,7 +55201,6 @@ class VmGroup(AbstractModel):
|
|
55302
55201
|
@property
|
55303
55202
|
def RepositoryId(self):
|
55304
55203
|
"""仓库ID
|
55305
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55306
55204
|
:rtype: str
|
55307
55205
|
"""
|
55308
55206
|
return self._RepositoryId
|
@@ -55314,7 +55212,6 @@ class VmGroup(AbstractModel):
|
|
55314
55212
|
@property
|
55315
55213
|
def RepositoryName(self):
|
55316
55214
|
"""仓库名称
|
55317
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55318
55215
|
:rtype: str
|
55319
55216
|
"""
|
55320
55217
|
return self._RepositoryName
|
@@ -55326,7 +55223,6 @@ class VmGroup(AbstractModel):
|
|
55326
55223
|
@property
|
55327
55224
|
def RepositoryType(self):
|
55328
55225
|
"""仓库类型
|
55329
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55330
55226
|
:rtype: str
|
55331
55227
|
"""
|
55332
55228
|
return self._RepositoryType
|