tencentcloud-sdk-python 3.0.1364__py2.py3-none-any.whl → 3.0.1365__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cdc/v20201214/cdc_client.py +46 -0
  3. tencentcloud/cdc/v20201214/errorcodes.py +18 -0
  4. tencentcloud/cdc/v20201214/models.py +173 -0
  5. tencentcloud/cdn/v20180606/models.py +15 -0
  6. tencentcloud/clb/v20180317/models.py +0 -2
  7. tencentcloud/cvm/v20170312/models.py +34 -0
  8. tencentcloud/dbbrain/v20210527/dbbrain_client.py +23 -0
  9. tencentcloud/dbbrain/v20210527/models.py +109 -0
  10. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  11. tencentcloud/dlc/v20210125/models.py +124 -0
  12. tencentcloud/lkeap/v20240522/lkeap_client.py +3 -3
  13. tencentcloud/monitor/v20180724/models.py +8 -8
  14. tencentcloud/monitor/v20180724/monitor_client.py +1 -1
  15. tencentcloud/mps/v20190612/errorcodes.py +6 -0
  16. tencentcloud/mps/v20190612/models.py +133 -8
  17. tencentcloud/ssm/v20190923/models.py +45 -0
  18. tencentcloud/tds/v20220801/models.py +441 -0
  19. tencentcloud/tds/v20220801/tds_client.py +23 -0
  20. tencentcloud/tem/v20210701/models.py +0 -498
  21. tencentcloud/teo/v20220901/models.py +4 -4
  22. tencentcloud/waf/v20180125/models.py +173 -0
  23. {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/METADATA +1 -1
  24. {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/RECORD +27 -27
  25. {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/LICENSE +0 -0
  26. {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/WHEEL +0 -0
  27. {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/top_level.txt +0 -0
@@ -30,31 +30,23 @@ class Autoscaler(AbstractModel):
30
30
  :param _MaxReplicas: 弹性伸缩最大实例数
31
31
  :type MaxReplicas: int
32
32
  :param _HorizontalAutoscaler: 指标弹性伸缩策略(指标策略和定时策略必须填写一个)
33
- 注意:此字段可能返回 null,表示取不到有效值。
34
33
  :type HorizontalAutoscaler: list of HorizontalAutoscaler
35
34
  :param _CronHorizontalAutoscaler: 定时弹性伸缩策略(指标策略和定时策略必须填写一个)
36
- 注意:此字段可能返回 null,表示取不到有效值。
37
35
  :type CronHorizontalAutoscaler: list of CronHorizontalAutoscaler
38
36
  :param _AutoscalerId: 弹性伸缩ID
39
- 注意:此字段可能返回 null,表示取不到有效值。
40
37
  :type AutoscalerId: str
41
38
  :param _AutoscalerName: 弹性伸缩名称
42
- 注意:此字段可能返回 null,表示取不到有效值。
43
39
  :type AutoscalerName: str
44
40
  :param _Description: 弹性伸缩描述
45
- 注意:此字段可能返回 null,表示取不到有效值。
46
41
  :type Description: str
47
42
  :param _CreateDate: 创建日期
48
- 注意:此字段可能返回 null,表示取不到有效值。
49
43
  :type CreateDate: str
50
44
  :param _ModifyDate: 修改时间
51
- 注意:此字段可能返回 null,表示取不到有效值。
52
45
  :type ModifyDate: str
53
46
  :param _EnableDate: 启用时间
54
47
  注意:此字段可能返回 null,表示取不到有效值。
55
48
  :type EnableDate: str
56
49
  :param _Enabled: 是否启用
57
- 注意:此字段可能返回 null,表示取不到有效值。
58
50
  :type Enabled: bool
59
51
  """
60
52
  self._MinReplicas = None
@@ -94,7 +86,6 @@ class Autoscaler(AbstractModel):
94
86
  @property
95
87
  def HorizontalAutoscaler(self):
96
88
  """指标弹性伸缩策略(指标策略和定时策略必须填写一个)
97
- 注意:此字段可能返回 null,表示取不到有效值。
98
89
  :rtype: list of HorizontalAutoscaler
99
90
  """
100
91
  return self._HorizontalAutoscaler
@@ -106,7 +97,6 @@ class Autoscaler(AbstractModel):
106
97
  @property
107
98
  def CronHorizontalAutoscaler(self):
108
99
  """定时弹性伸缩策略(指标策略和定时策略必须填写一个)
109
- 注意:此字段可能返回 null,表示取不到有效值。
110
100
  :rtype: list of CronHorizontalAutoscaler
111
101
  """
112
102
  return self._CronHorizontalAutoscaler
@@ -118,7 +108,6 @@ class Autoscaler(AbstractModel):
118
108
  @property
119
109
  def AutoscalerId(self):
120
110
  """弹性伸缩ID
121
- 注意:此字段可能返回 null,表示取不到有效值。
122
111
  :rtype: str
123
112
  """
124
113
  return self._AutoscalerId
@@ -130,7 +119,6 @@ class Autoscaler(AbstractModel):
130
119
  @property
131
120
  def AutoscalerName(self):
132
121
  """弹性伸缩名称
133
- 注意:此字段可能返回 null,表示取不到有效值。
134
122
  :rtype: str
135
123
  """
136
124
  return self._AutoscalerName
@@ -142,7 +130,6 @@ class Autoscaler(AbstractModel):
142
130
  @property
143
131
  def Description(self):
144
132
  """弹性伸缩描述
145
- 注意:此字段可能返回 null,表示取不到有效值。
146
133
  :rtype: str
147
134
  """
148
135
  return self._Description
@@ -154,7 +141,6 @@ class Autoscaler(AbstractModel):
154
141
  @property
155
142
  def CreateDate(self):
156
143
  """创建日期
157
- 注意:此字段可能返回 null,表示取不到有效值。
158
144
  :rtype: str
159
145
  """
160
146
  return self._CreateDate
@@ -166,7 +152,6 @@ class Autoscaler(AbstractModel):
166
152
  @property
167
153
  def ModifyDate(self):
168
154
  """修改时间
169
- 注意:此字段可能返回 null,表示取不到有效值。
170
155
  :rtype: str
171
156
  """
172
157
  return self._ModifyDate
@@ -190,7 +175,6 @@ class Autoscaler(AbstractModel):
190
175
  @property
191
176
  def Enabled(self):
192
177
  """是否启用
193
- 注意:此字段可能返回 null,表示取不到有效值。
194
178
  :rtype: bool
195
179
  """
196
180
  return self._Enabled
@@ -570,7 +554,6 @@ class CreateApplicationAutoscalerResponse(AbstractModel):
570
554
  def __init__(self):
571
555
  r"""
572
556
  :param _Result: 弹性伸缩策略组合ID
573
- 注意:此字段可能返回 null,表示取不到有效值。
574
557
  :type Result: str
575
558
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
576
559
  :type RequestId: str
@@ -581,7 +564,6 @@ class CreateApplicationAutoscalerResponse(AbstractModel):
581
564
  @property
582
565
  def Result(self):
583
566
  """弹性伸缩策略组合ID
584
- 注意:此字段可能返回 null,表示取不到有效值。
585
567
  :rtype: str
586
568
  """
587
569
  return self._Result
@@ -989,7 +971,6 @@ class CreateApplicationServiceResponse(AbstractModel):
989
971
  def __init__(self):
990
972
  r"""
991
973
  :param _Result: 是否成功
992
- 注意:此字段可能返回 null,表示取不到有效值。
993
974
  :type Result: bool
994
975
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
995
976
  :type RequestId: str
@@ -1000,7 +981,6 @@ class CreateApplicationServiceResponse(AbstractModel):
1000
981
  @property
1001
982
  def Result(self):
1002
983
  """是否成功
1003
- 注意:此字段可能返回 null,表示取不到有效值。
1004
984
  :rtype: bool
1005
985
  """
1006
986
  return self._Result
@@ -1259,7 +1239,6 @@ class CreateCosTokenResponse(AbstractModel):
1259
1239
  def __init__(self):
1260
1240
  r"""
1261
1241
  :param _Result: 成功时为CosToken对象,失败为null
1262
- 注意:此字段可能返回 null,表示取不到有效值。
1263
1242
  :type Result: :class:`tencentcloud.tem.v20210701.models.CosToken`
1264
1243
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1265
1244
  :type RequestId: str
@@ -1270,7 +1249,6 @@ class CreateCosTokenResponse(AbstractModel):
1270
1249
  @property
1271
1250
  def Result(self):
1272
1251
  """成功时为CosToken对象,失败为null
1273
- 注意:此字段可能返回 null,表示取不到有效值。
1274
1252
  :rtype: :class:`tencentcloud.tem.v20210701.models.CosToken`
1275
1253
  """
1276
1254
  return self._Result
@@ -1542,7 +1520,6 @@ class CreateEnvironmentResponse(AbstractModel):
1542
1520
  def __init__(self):
1543
1521
  r"""
1544
1522
  :param _Result: 成功时为环境ID,失败为null
1545
- 注意:此字段可能返回 null,表示取不到有效值。
1546
1523
  :type Result: str
1547
1524
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1548
1525
  :type RequestId: str
@@ -1553,7 +1530,6 @@ class CreateEnvironmentResponse(AbstractModel):
1553
1530
  @property
1554
1531
  def Result(self):
1555
1532
  """成功时为环境ID,失败为null
1556
- 注意:此字段可能返回 null,表示取不到有效值。
1557
1533
  :rtype: str
1558
1534
  """
1559
1535
  return self._Result
@@ -1929,7 +1905,6 @@ class CreateResourceResponse(AbstractModel):
1929
1905
  def __init__(self):
1930
1906
  r"""
1931
1907
  :param _Result: 成功与否
1932
- 注意:此字段可能返回 null,表示取不到有效值。
1933
1908
  :type Result: bool
1934
1909
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1935
1910
  :type RequestId: str
@@ -1940,7 +1915,6 @@ class CreateResourceResponse(AbstractModel):
1940
1915
  @property
1941
1916
  def Result(self):
1942
1917
  """成功与否
1943
- 注意:此字段可能返回 null,表示取不到有效值。
1944
1918
  :rtype: bool
1945
1919
  """
1946
1920
  return self._Result
@@ -2089,7 +2063,6 @@ class CronHorizontalAutoscalerSchedule(AbstractModel):
2089
2063
  00:00(零点零分触发)
2090
2064
  :type StartAt: str
2091
2065
  :param _TargetReplicas: 目标实例数(不大于50)
2092
- 注意:此字段可能返回 null,表示取不到有效值。
2093
2066
  :type TargetReplicas: int
2094
2067
  """
2095
2068
  self._StartAt = None
@@ -2111,7 +2084,6 @@ class CronHorizontalAutoscalerSchedule(AbstractModel):
2111
2084
  @property
2112
2085
  def TargetReplicas(self):
2113
2086
  """目标实例数(不大于50)
2114
- 注意:此字段可能返回 null,表示取不到有效值。
2115
2087
  :rtype: int
2116
2088
  """
2117
2089
  return self._TargetReplicas
@@ -2223,7 +2195,6 @@ class DeleteApplicationAutoscalerResponse(AbstractModel):
2223
2195
  def __init__(self):
2224
2196
  r"""
2225
2197
  :param _Result: 是否成功
2226
- 注意:此字段可能返回 null,表示取不到有效值。
2227
2198
  :type Result: bool
2228
2199
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2229
2200
  :type RequestId: str
@@ -2234,7 +2205,6 @@ class DeleteApplicationAutoscalerResponse(AbstractModel):
2234
2205
  @property
2235
2206
  def Result(self):
2236
2207
  """是否成功
2237
- 注意:此字段可能返回 null,表示取不到有效值。
2238
2208
  :rtype: bool
2239
2209
  """
2240
2210
  return self._Result
@@ -2473,7 +2443,6 @@ class DeleteApplicationServiceResponse(AbstractModel):
2473
2443
  def __init__(self):
2474
2444
  r"""
2475
2445
  :param _Result: 是否成功
2476
- 注意:此字段可能返回 null,表示取不到有效值。
2477
2446
  :type Result: bool
2478
2447
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2479
2448
  :type RequestId: str
@@ -2484,7 +2453,6 @@ class DeleteApplicationServiceResponse(AbstractModel):
2484
2453
  @property
2485
2454
  def Result(self):
2486
2455
  """是否成功
2487
- 注意:此字段可能返回 null,表示取不到有效值。
2488
2456
  :rtype: bool
2489
2457
  """
2490
2458
  return self._Result
@@ -3503,22 +3471,16 @@ class DeployServiceBatchDetail(AbstractModel):
3503
3471
  注意:此字段可能返回 null,表示取不到有效值。
3504
3472
  :type NewPodList: :class:`tencentcloud.tem.v20210701.models.DeployServicePodDetail`
3505
3473
  :param _BatchStatus: 当前批次状态:"WaitForTimeExceed", "WaitForResume", "Deploying", "Finish", "NotStart"
3506
- 注意:此字段可能返回 null,表示取不到有效值。
3507
3474
  :type BatchStatus: str
3508
3475
  :param _PodNum: 该批次预计旧实例数量
3509
- 注意:此字段可能返回 null,表示取不到有效值。
3510
3476
  :type PodNum: int
3511
3477
  :param _BatchIndex: 批次id
3512
- 注意:此字段可能返回 null,表示取不到有效值。
3513
3478
  :type BatchIndex: int
3514
3479
  :param _OldPods: 旧实例列表
3515
- 注意:此字段可能返回 null,表示取不到有效值。
3516
3480
  :type OldPods: list of DeployServicePodDetail
3517
3481
  :param _NewPods: 新实例列表
3518
- 注意:此字段可能返回 null,表示取不到有效值。
3519
3482
  :type NewPods: list of DeployServicePodDetail
3520
3483
  :param _NextBatchStartTime: =0:手动确认批次;>0:下一批次开始时间戳
3521
- 注意:此字段可能返回 null,表示取不到有效值。
3522
3484
  :type NextBatchStartTime: int
3523
3485
  """
3524
3486
  self._OldPodList = None
@@ -3557,7 +3519,6 @@ class DeployServiceBatchDetail(AbstractModel):
3557
3519
  @property
3558
3520
  def BatchStatus(self):
3559
3521
  """当前批次状态:"WaitForTimeExceed", "WaitForResume", "Deploying", "Finish", "NotStart"
3560
- 注意:此字段可能返回 null,表示取不到有效值。
3561
3522
  :rtype: str
3562
3523
  """
3563
3524
  return self._BatchStatus
@@ -3569,7 +3530,6 @@ class DeployServiceBatchDetail(AbstractModel):
3569
3530
  @property
3570
3531
  def PodNum(self):
3571
3532
  """该批次预计旧实例数量
3572
- 注意:此字段可能返回 null,表示取不到有效值。
3573
3533
  :rtype: int
3574
3534
  """
3575
3535
  return self._PodNum
@@ -3581,7 +3541,6 @@ class DeployServiceBatchDetail(AbstractModel):
3581
3541
  @property
3582
3542
  def BatchIndex(self):
3583
3543
  """批次id
3584
- 注意:此字段可能返回 null,表示取不到有效值。
3585
3544
  :rtype: int
3586
3545
  """
3587
3546
  return self._BatchIndex
@@ -3593,7 +3552,6 @@ class DeployServiceBatchDetail(AbstractModel):
3593
3552
  @property
3594
3553
  def OldPods(self):
3595
3554
  """旧实例列表
3596
- 注意:此字段可能返回 null,表示取不到有效值。
3597
3555
  :rtype: list of DeployServicePodDetail
3598
3556
  """
3599
3557
  return self._OldPods
@@ -3605,7 +3563,6 @@ class DeployServiceBatchDetail(AbstractModel):
3605
3563
  @property
3606
3564
  def NewPods(self):
3607
3565
  """新实例列表
3608
- 注意:此字段可能返回 null,表示取不到有效值。
3609
3566
  :rtype: list of DeployServicePodDetail
3610
3567
  """
3611
3568
  return self._NewPods
@@ -3617,7 +3574,6 @@ class DeployServiceBatchDetail(AbstractModel):
3617
3574
  @property
3618
3575
  def NextBatchStartTime(self):
3619
3576
  """=0:手动确认批次;>0:下一批次开始时间戳
3620
- 注意:此字段可能返回 null,表示取不到有效值。
3621
3577
  :rtype: int
3622
3578
  """
3623
3579
  return self._NextBatchStartTime
@@ -3668,25 +3624,18 @@ class DeployServicePodDetail(AbstractModel):
3668
3624
  def __init__(self):
3669
3625
  r"""
3670
3626
  :param _PodId: pod Id
3671
- 注意:此字段可能返回 null,表示取不到有效值。
3672
3627
  :type PodId: str
3673
3628
  :param _PodStatus: pod状态
3674
- 注意:此字段可能返回 null,表示取不到有效值。
3675
3629
  :type PodStatus: list of str
3676
3630
  :param _PodVersion: pod版本
3677
- 注意:此字段可能返回 null,表示取不到有效值。
3678
3631
  :type PodVersion: str
3679
3632
  :param _CreateTime: pod创建时间
3680
- 注意:此字段可能返回 null,表示取不到有效值。
3681
3633
  :type CreateTime: str
3682
3634
  :param _Zone: pod所在可用区
3683
- 注意:此字段可能返回 null,表示取不到有效值。
3684
3635
  :type Zone: str
3685
3636
  :param _Webshell: webshell地址
3686
- 注意:此字段可能返回 null,表示取不到有效值。
3687
3637
  :type Webshell: str
3688
3638
  :param _Status: 状态
3689
- 注意:此字段可能返回 null,表示取不到有效值。
3690
3639
  :type Status: str
3691
3640
  """
3692
3641
  self._PodId = None
@@ -3700,7 +3649,6 @@ class DeployServicePodDetail(AbstractModel):
3700
3649
  @property
3701
3650
  def PodId(self):
3702
3651
  """pod Id
3703
- 注意:此字段可能返回 null,表示取不到有效值。
3704
3652
  :rtype: str
3705
3653
  """
3706
3654
  return self._PodId
@@ -3712,7 +3660,6 @@ class DeployServicePodDetail(AbstractModel):
3712
3660
  @property
3713
3661
  def PodStatus(self):
3714
3662
  """pod状态
3715
- 注意:此字段可能返回 null,表示取不到有效值。
3716
3663
  :rtype: list of str
3717
3664
  """
3718
3665
  return self._PodStatus
@@ -3724,7 +3671,6 @@ class DeployServicePodDetail(AbstractModel):
3724
3671
  @property
3725
3672
  def PodVersion(self):
3726
3673
  """pod版本
3727
- 注意:此字段可能返回 null,表示取不到有效值。
3728
3674
  :rtype: str
3729
3675
  """
3730
3676
  return self._PodVersion
@@ -3736,7 +3682,6 @@ class DeployServicePodDetail(AbstractModel):
3736
3682
  @property
3737
3683
  def CreateTime(self):
3738
3684
  """pod创建时间
3739
- 注意:此字段可能返回 null,表示取不到有效值。
3740
3685
  :rtype: str
3741
3686
  """
3742
3687
  return self._CreateTime
@@ -3748,7 +3693,6 @@ class DeployServicePodDetail(AbstractModel):
3748
3693
  @property
3749
3694
  def Zone(self):
3750
3695
  """pod所在可用区
3751
- 注意:此字段可能返回 null,表示取不到有效值。
3752
3696
  :rtype: str
3753
3697
  """
3754
3698
  return self._Zone
@@ -3760,7 +3704,6 @@ class DeployServicePodDetail(AbstractModel):
3760
3704
  @property
3761
3705
  def Webshell(self):
3762
3706
  """webshell地址
3763
- 注意:此字段可能返回 null,表示取不到有效值。
3764
3707
  :rtype: str
3765
3708
  """
3766
3709
  return self._Webshell
@@ -3772,7 +3715,6 @@ class DeployServicePodDetail(AbstractModel):
3772
3715
  @property
3773
3716
  def Status(self):
3774
3717
  """状态
3775
- 注意:此字段可能返回 null,表示取不到有效值。
3776
3718
  :rtype: str
3777
3719
  """
3778
3720
  return self._Status
@@ -3985,7 +3927,6 @@ class DescribeApplicationAutoscalerListResponse(AbstractModel):
3985
3927
  def __init__(self):
3986
3928
  r"""
3987
3929
  :param _Result: 弹性伸缩策略组合
3988
- 注意:此字段可能返回 null,表示取不到有效值。
3989
3930
  :type Result: list of Autoscaler
3990
3931
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3991
3932
  :type RequestId: str
@@ -3996,7 +3937,6 @@ class DescribeApplicationAutoscalerListResponse(AbstractModel):
3996
3937
  @property
3997
3938
  def Result(self):
3998
3939
  """弹性伸缩策略组合
3999
- 注意:此字段可能返回 null,表示取不到有效值。
4000
3940
  :rtype: list of Autoscaler
4001
3941
  """
4002
3942
  return self._Result
@@ -4728,7 +4668,6 @@ class DescribeConfigDataListPage(AbstractModel):
4728
4668
  :param _Records: 记录
4729
4669
  :type Records: list of ConfigData
4730
4670
  :param _ContinueToken: 分页游标,用以查询下一页
4731
- 注意:此字段可能返回 null,表示取不到有效值。
4732
4671
  :type ContinueToken: str
4733
4672
  :param _RemainingCount: 剩余数目
4734
4673
  注意:此字段可能返回 null,表示取不到有效值。
@@ -4752,7 +4691,6 @@ class DescribeConfigDataListPage(AbstractModel):
4752
4691
  @property
4753
4692
  def ContinueToken(self):
4754
4693
  """分页游标,用以查询下一页
4755
- 注意:此字段可能返回 null,表示取不到有效值。
4756
4694
  :rtype: str
4757
4695
  """
4758
4696
  return self._ContinueToken
@@ -5714,7 +5652,6 @@ class DescribeIngressesResponse(AbstractModel):
5714
5652
  def __init__(self):
5715
5653
  r"""
5716
5654
  :param _Result: ingress 数组
5717
- 注意:此字段可能返回 null,表示取不到有效值。
5718
5655
  :type Result: list of IngressInfo
5719
5656
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5720
5657
  :type RequestId: str
@@ -5725,7 +5662,6 @@ class DescribeIngressesResponse(AbstractModel):
5725
5662
  @property
5726
5663
  def Result(self):
5727
5664
  """ingress 数组
5728
- 注意:此字段可能返回 null,表示取不到有效值。
5729
5665
  :rtype: list of IngressInfo
5730
5666
  """
5731
5667
  return self._Result
@@ -6112,7 +6048,6 @@ class DescribeRelatedIngressesResponse(AbstractModel):
6112
6048
  def __init__(self):
6113
6049
  r"""
6114
6050
  :param _Result: ingress 数组
6115
- 注意:此字段可能返回 null,表示取不到有效值。
6116
6051
  :type Result: list of IngressInfo
6117
6052
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6118
6053
  :type RequestId: str
@@ -6123,7 +6058,6 @@ class DescribeRelatedIngressesResponse(AbstractModel):
6123
6058
  @property
6124
6059
  def Result(self):
6125
6060
  """ingress 数组
6126
- 注意:此字段可能返回 null,表示取不到有效值。
6127
6061
  :rtype: list of IngressInfo
6128
6062
  """
6129
6063
  return self._Result
@@ -6656,7 +6590,6 @@ class DisableApplicationAutoscalerResponse(AbstractModel):
6656
6590
  def __init__(self):
6657
6591
  r"""
6658
6592
  :param _Result: 是否成功
6659
- 注意:此字段可能返回 null,表示取不到有效值。
6660
6593
  :type Result: bool
6661
6594
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6662
6595
  :type RequestId: str
@@ -6667,7 +6600,6 @@ class DisableApplicationAutoscalerResponse(AbstractModel):
6667
6600
  @property
6668
6601
  def Result(self):
6669
6602
  """是否成功
6670
- 注意:此字段可能返回 null,表示取不到有效值。
6671
6603
  :rtype: bool
6672
6604
  """
6673
6605
  return self._Result
@@ -6707,49 +6639,36 @@ class EksService(AbstractModel):
6707
6639
  :param _Yaml: yaml 内容
6708
6640
  :type Yaml: str
6709
6641
  :param _ApplicationName: 服务名
6710
- 注意:此字段可能返回 null,表示取不到有效值。
6711
6642
  :type ApplicationName: str
6712
6643
  :param _VersionName: 版本名
6713
- 注意:此字段可能返回 null,表示取不到有效值。
6714
6644
  :type VersionName: str
6715
6645
  :param _ClusterIp: 内网ip
6716
- 注意:此字段可能返回 null,表示取不到有效值。
6717
6646
  :type ClusterIp: list of str
6718
6647
  :param _ExternalIp: 外网ip
6719
- 注意:此字段可能返回 null,表示取不到有效值。
6720
6648
  :type ExternalIp: str
6721
6649
  :param _Type: 访问类型,可选值:
6722
6650
  - EXTERNAL(公网访问)
6723
6651
  - VPC(vpc内访问)
6724
6652
  - CLUSTER(集群内访问)
6725
- 注意:此字段可能返回 null,表示取不到有效值。
6726
6653
  :type Type: str
6727
6654
  :param _SubnetId: 子网ID,只在类型为vpc访问时才有值
6728
- 注意:此字段可能返回 null,表示取不到有效值。
6729
6655
  :type SubnetId: str
6730
6656
  :param _LoadBalanceId: 负载均衡ID,只在外网访问和vpc内访问才有值,默认自动创建
6731
- 注意:此字段可能返回 null,表示取不到有效值。
6732
6657
  :type LoadBalanceId: str
6733
6658
  :param _PortMappings: 端口映射
6734
- 注意:此字段可能返回 null,表示取不到有效值。
6735
6659
  :type PortMappings: list of PortMapping
6736
6660
  :param _ServicePortMappingList: 每种类型访问配置详情
6737
- 注意:此字段可能返回 null,表示取不到有效值。
6738
6661
  :type ServicePortMappingList: list of ServicePortMapping
6739
6662
  :param _FlushAll: 刷新复写所有类型
6740
- 注意:此字段可能返回 null,表示取不到有效值。
6741
6663
  :type FlushAll: bool
6742
6664
  :param _EnableRegistryNextDeploy: 1: 下次部署自动注入注册中心信息;0:不注入
6743
6665
  注意:此字段可能返回 null,表示取不到有效值。
6744
6666
  :type EnableRegistryNextDeploy: int
6745
6667
  :param _ApplicationId: 返回应用id
6746
- 注意:此字段可能返回 null,表示取不到有效值。
6747
6668
  :type ApplicationId: str
6748
6669
  :param _AllIpDone: 所有服务IP是否已经ready
6749
- 注意:此字段可能返回 null,表示取不到有效值。
6750
6670
  :type AllIpDone: bool
6751
6671
  :param _ExternalDomain: clb 域名
6752
- 注意:此字段可能返回 null,表示取不到有效值。
6753
6672
  :type ExternalDomain: str
6754
6673
  """
6755
6674
  self._Name = None
@@ -6806,7 +6725,6 @@ class EksService(AbstractModel):
6806
6725
  @property
6807
6726
  def ApplicationName(self):
6808
6727
  """服务名
6809
- 注意:此字段可能返回 null,表示取不到有效值。
6810
6728
  :rtype: str
6811
6729
  """
6812
6730
  return self._ApplicationName
@@ -6818,7 +6736,6 @@ class EksService(AbstractModel):
6818
6736
  @property
6819
6737
  def VersionName(self):
6820
6738
  """版本名
6821
- 注意:此字段可能返回 null,表示取不到有效值。
6822
6739
  :rtype: str
6823
6740
  """
6824
6741
  return self._VersionName
@@ -6830,7 +6747,6 @@ class EksService(AbstractModel):
6830
6747
  @property
6831
6748
  def ClusterIp(self):
6832
6749
  """内网ip
6833
- 注意:此字段可能返回 null,表示取不到有效值。
6834
6750
  :rtype: list of str
6835
6751
  """
6836
6752
  return self._ClusterIp
@@ -6842,7 +6758,6 @@ class EksService(AbstractModel):
6842
6758
  @property
6843
6759
  def ExternalIp(self):
6844
6760
  """外网ip
6845
- 注意:此字段可能返回 null,表示取不到有效值。
6846
6761
  :rtype: str
6847
6762
  """
6848
6763
  return self._ExternalIp
@@ -6857,7 +6772,6 @@ class EksService(AbstractModel):
6857
6772
  - EXTERNAL(公网访问)
6858
6773
  - VPC(vpc内访问)
6859
6774
  - CLUSTER(集群内访问)
6860
- 注意:此字段可能返回 null,表示取不到有效值。
6861
6775
  :rtype: str
6862
6776
  """
6863
6777
  return self._Type
@@ -6869,7 +6783,6 @@ class EksService(AbstractModel):
6869
6783
  @property
6870
6784
  def SubnetId(self):
6871
6785
  """子网ID,只在类型为vpc访问时才有值
6872
- 注意:此字段可能返回 null,表示取不到有效值。
6873
6786
  :rtype: str
6874
6787
  """
6875
6788
  return self._SubnetId
@@ -6881,7 +6794,6 @@ class EksService(AbstractModel):
6881
6794
  @property
6882
6795
  def LoadBalanceId(self):
6883
6796
  """负载均衡ID,只在外网访问和vpc内访问才有值,默认自动创建
6884
- 注意:此字段可能返回 null,表示取不到有效值。
6885
6797
  :rtype: str
6886
6798
  """
6887
6799
  return self._LoadBalanceId
@@ -6893,7 +6805,6 @@ class EksService(AbstractModel):
6893
6805
  @property
6894
6806
  def PortMappings(self):
6895
6807
  """端口映射
6896
- 注意:此字段可能返回 null,表示取不到有效值。
6897
6808
  :rtype: list of PortMapping
6898
6809
  """
6899
6810
  return self._PortMappings
@@ -6905,7 +6816,6 @@ class EksService(AbstractModel):
6905
6816
  @property
6906
6817
  def ServicePortMappingList(self):
6907
6818
  """每种类型访问配置详情
6908
- 注意:此字段可能返回 null,表示取不到有效值。
6909
6819
  :rtype: list of ServicePortMapping
6910
6820
  """
6911
6821
  return self._ServicePortMappingList
@@ -6917,7 +6827,6 @@ class EksService(AbstractModel):
6917
6827
  @property
6918
6828
  def FlushAll(self):
6919
6829
  """刷新复写所有类型
6920
- 注意:此字段可能返回 null,表示取不到有效值。
6921
6830
  :rtype: bool
6922
6831
  """
6923
6832
  return self._FlushAll
@@ -6941,7 +6850,6 @@ class EksService(AbstractModel):
6941
6850
  @property
6942
6851
  def ApplicationId(self):
6943
6852
  """返回应用id
6944
- 注意:此字段可能返回 null,表示取不到有效值。
6945
6853
  :rtype: str
6946
6854
  """
6947
6855
  return self._ApplicationId
@@ -6953,7 +6861,6 @@ class EksService(AbstractModel):
6953
6861
  @property
6954
6862
  def AllIpDone(self):
6955
6863
  """所有服务IP是否已经ready
6956
- 注意:此字段可能返回 null,表示取不到有效值。
6957
6864
  :rtype: bool
6958
6865
  """
6959
6866
  return self._AllIpDone
@@ -6965,7 +6872,6 @@ class EksService(AbstractModel):
6965
6872
  @property
6966
6873
  def ExternalDomain(self):
6967
6874
  """clb 域名
6968
- 注意:此字段可能返回 null,表示取不到有效值。
6969
6875
  :rtype: str
6970
6876
  """
6971
6877
  return self._ExternalDomain
@@ -7102,7 +7008,6 @@ class EnableApplicationAutoscalerResponse(AbstractModel):
7102
7008
  def __init__(self):
7103
7009
  r"""
7104
7010
  :param _Result: 是否成功
7105
- 注意:此字段可能返回 null,表示取不到有效值。
7106
7011
  :type Result: bool
7107
7012
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7108
7013
  :type RequestId: str
@@ -7113,7 +7018,6 @@ class EnableApplicationAutoscalerResponse(AbstractModel):
7113
7018
  @property
7114
7019
  def Result(self):
7115
7020
  """是否成功
7116
- 注意:此字段可能返回 null,表示取不到有效值。
7117
7021
  :rtype: bool
7118
7022
  """
7119
7023
  return self._Result
@@ -7375,7 +7279,6 @@ class GenerateApplicationPackageDownloadUrlResponse(AbstractModel):
7375
7279
  def __init__(self):
7376
7280
  r"""
7377
7281
  :param _Result: 包下载临时链接
7378
- 注意:此字段可能返回 null,表示取不到有效值。
7379
7282
  :type Result: str
7380
7283
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7381
7284
  :type RequestId: str
@@ -7386,7 +7289,6 @@ class GenerateApplicationPackageDownloadUrlResponse(AbstractModel):
7386
7289
  @property
7387
7290
  def Result(self):
7388
7291
  """包下载临时链接
7389
- 注意:此字段可能返回 null,表示取不到有效值。
7390
7292
  :rtype: str
7391
7293
  """
7392
7294
  return self._Result
@@ -7585,7 +7487,6 @@ FS_SIZE_READ(磁盘读大小,MiB/s)
7585
7487
  :param _Enabled: 是否启用
7586
7488
  :type Enabled: bool
7587
7489
  :param _DoubleThreshold: 阈值(小数,优先使用)
7588
- 注意:此字段可能返回 null,表示取不到有效值。
7589
7490
  :type DoubleThreshold: float
7590
7491
  """
7591
7492
  self._MinReplicas = None
@@ -7667,7 +7568,6 @@ FS_SIZE_READ(磁盘读大小,MiB/s)
7667
7568
  @property
7668
7569
  def DoubleThreshold(self):
7669
7570
  """阈值(小数,优先使用)
7670
- 注意:此字段可能返回 null,表示取不到有效值。
7671
7571
  :rtype: float
7672
7572
  """
7673
7573
  return self._DoubleThreshold
@@ -7702,7 +7602,6 @@ class IngressInfo(AbstractModel):
7702
7602
  def __init__(self):
7703
7603
  r"""
7704
7604
  :param _EnvironmentId: 环境ID
7705
- 注意:此字段可能返回 null,表示取不到有效值。
7706
7605
  :type EnvironmentId: str
7707
7606
  :param _AddressIPVersion: ip version
7708
7607
  :type AddressIPVersion: str
@@ -7711,7 +7610,6 @@ class IngressInfo(AbstractModel):
7711
7610
  :param _Rules: rules 配置
7712
7611
  :type Rules: list of IngressRule
7713
7612
  :param _ClbId: clb ID
7714
- 注意:此字段可能返回 null,表示取不到有效值。
7715
7613
  :type ClbId: str
7716
7614
  :param _ClusterNamespace: 环境namespace
7717
7615
  :type ClusterNamespace: str
@@ -7719,23 +7617,18 @@ class IngressInfo(AbstractModel):
7719
7617
  注意:此字段可能返回 null,表示取不到有效值。
7720
7618
  :type Tls: list of IngressTls
7721
7619
  :param _ClusterId: 环境集群ID
7722
- 注意:此字段可能返回 null,表示取不到有效值。
7723
7620
  :type ClusterId: str
7724
7621
  :param _Vip: clb ip
7725
- 注意:此字段可能返回 null,表示取不到有效值。
7726
7622
  :type Vip: str
7727
7623
  :param _CreateTime: 创建时间
7728
- 注意:此字段可能返回 null,表示取不到有效值。
7729
7624
  :type CreateTime: str
7730
7625
  :param _Mixed: 是否混合 https,默认 false,可选值 true 代表有 https 协议监听
7731
7626
  :type Mixed: bool
7732
7627
  :param _RewriteType: 重定向模式,可选值:
7733
7628
  - AUTO(自动重定向http到https)
7734
7629
  - NONE(不使用重定向)
7735
- 注意:此字段可能返回 null,表示取不到有效值。
7736
7630
  :type RewriteType: str
7737
7631
  :param _Domain: clb 域名
7738
- 注意:此字段可能返回 null,表示取不到有效值。
7739
7632
  :type Domain: str
7740
7633
  """
7741
7634
  self._EnvironmentId = None
@@ -7755,7 +7648,6 @@ class IngressInfo(AbstractModel):
7755
7648
  @property
7756
7649
  def EnvironmentId(self):
7757
7650
  """环境ID
7758
- 注意:此字段可能返回 null,表示取不到有效值。
7759
7651
  :rtype: str
7760
7652
  """
7761
7653
  return self._EnvironmentId
@@ -7800,7 +7692,6 @@ class IngressInfo(AbstractModel):
7800
7692
  @property
7801
7693
  def ClbId(self):
7802
7694
  """clb ID
7803
- 注意:此字段可能返回 null,表示取不到有效值。
7804
7695
  :rtype: str
7805
7696
  """
7806
7697
  return self._ClbId
@@ -7835,7 +7726,6 @@ class IngressInfo(AbstractModel):
7835
7726
  @property
7836
7727
  def ClusterId(self):
7837
7728
  """环境集群ID
7838
- 注意:此字段可能返回 null,表示取不到有效值。
7839
7729
  :rtype: str
7840
7730
  """
7841
7731
  return self._ClusterId
@@ -7847,7 +7737,6 @@ class IngressInfo(AbstractModel):
7847
7737
  @property
7848
7738
  def Vip(self):
7849
7739
  """clb ip
7850
- 注意:此字段可能返回 null,表示取不到有效值。
7851
7740
  :rtype: str
7852
7741
  """
7853
7742
  return self._Vip
@@ -7859,7 +7748,6 @@ class IngressInfo(AbstractModel):
7859
7748
  @property
7860
7749
  def CreateTime(self):
7861
7750
  """创建时间
7862
- 注意:此字段可能返回 null,表示取不到有效值。
7863
7751
  :rtype: str
7864
7752
  """
7865
7753
  return self._CreateTime
@@ -7884,7 +7772,6 @@ class IngressInfo(AbstractModel):
7884
7772
  """重定向模式,可选值:
7885
7773
  - AUTO(自动重定向http到https)
7886
7774
  - NONE(不使用重定向)
7887
- 注意:此字段可能返回 null,表示取不到有效值。
7888
7775
  :rtype: str
7889
7776
  """
7890
7777
  return self._RewriteType
@@ -7896,7 +7783,6 @@ class IngressInfo(AbstractModel):
7896
7783
  @property
7897
7784
  def Domain(self):
7898
7785
  """clb 域名
7899
- 注意:此字段可能返回 null,表示取不到有效值。
7900
7786
  :rtype: str
7901
7787
  """
7902
7788
  return self._Domain
@@ -7950,7 +7836,6 @@ class IngressRule(AbstractModel):
7950
7836
  :param _Http: ingress rule value
7951
7837
  :type Http: :class:`tencentcloud.tem.v20210701.models.IngressRuleValue`
7952
7838
  :param _Host: host 地址
7953
- 注意:此字段可能返回 null,表示取不到有效值。
7954
7839
  :type Host: str
7955
7840
  :param _Protocol: 协议,选项为 http, https,默认为 http
7956
7841
  :type Protocol: str
@@ -7973,7 +7858,6 @@ class IngressRule(AbstractModel):
7973
7858
  @property
7974
7859
  def Host(self):
7975
7860
  """host 地址
7976
- 注意:此字段可能返回 null,表示取不到有效值。
7977
7861
  :rtype: str
7978
7862
  """
7979
7863
  return self._Host
@@ -8233,36 +8117,26 @@ class LogConfig(AbstractModel):
8233
8117
  :param _InputType: 收集类型,container_stdout 为标准输出;container_file 为文件;
8234
8118
  :type InputType: str
8235
8119
  :param _LogsetId: 日志集 ID
8236
- 注意:此字段可能返回 null,表示取不到有效值。
8237
8120
  :type LogsetId: str
8238
8121
  :param _TopicId: 日志主题 ID
8239
- 注意:此字段可能返回 null,表示取不到有效值。
8240
8122
  :type TopicId: str
8241
8123
  :param _LogType: 日志提取模式,minimalist_log 为单行全文;multiline_log 为多行全文; fullregex_log 为单行正则; multiline_fullregex_log 为多行正则; json_log 为 json;
8242
8124
  :type LogType: str
8243
8125
  :param _BeginningRegex: 首行正则表达式,当 LogType 为多行全文、多行正则时生效
8244
- 注意:此字段可能返回 null,表示取不到有效值。
8245
8126
  :type BeginningRegex: str
8246
8127
  :param _LogPath: 收集文件目录,当 InputType=container_file 时生效
8247
- 注意:此字段可能返回 null,表示取不到有效值。
8248
8128
  :type LogPath: str
8249
8129
  :param _FilePattern: 收集文件名模式,当 InputType=container_file 时生效
8250
- 注意:此字段可能返回 null,表示取不到有效值。
8251
8130
  :type FilePattern: str
8252
8131
  :param _CreateDate: 创建时间
8253
- 注意:此字段可能返回 null,表示取不到有效值。
8254
8132
  :type CreateDate: str
8255
8133
  :param _ModifyDate: 更新时间
8256
- 注意:此字段可能返回 null,表示取不到有效值。
8257
8134
  :type ModifyDate: str
8258
8135
  :param _ApplicationId: 应用 ID
8259
- 注意:此字段可能返回 null,表示取不到有效值。
8260
8136
  :type ApplicationId: str
8261
8137
  :param _ApplicationName: 应用名
8262
- 注意:此字段可能返回 null,表示取不到有效值。
8263
8138
  :type ApplicationName: str
8264
8139
  :param _ExtractRule: 导出规则
8265
- 注意:此字段可能返回 null,表示取不到有效值。
8266
8140
  :type ExtractRule: :class:`tencentcloud.tem.v20210701.models.LogConfigExtractRule`
8267
8141
  """
8268
8142
  self._Name = None
@@ -8304,7 +8178,6 @@ class LogConfig(AbstractModel):
8304
8178
  @property
8305
8179
  def LogsetId(self):
8306
8180
  """日志集 ID
8307
- 注意:此字段可能返回 null,表示取不到有效值。
8308
8181
  :rtype: str
8309
8182
  """
8310
8183
  return self._LogsetId
@@ -8316,7 +8189,6 @@ class LogConfig(AbstractModel):
8316
8189
  @property
8317
8190
  def TopicId(self):
8318
8191
  """日志主题 ID
8319
- 注意:此字段可能返回 null,表示取不到有效值。
8320
8192
  :rtype: str
8321
8193
  """
8322
8194
  return self._TopicId
@@ -8339,7 +8211,6 @@ class LogConfig(AbstractModel):
8339
8211
  @property
8340
8212
  def BeginningRegex(self):
8341
8213
  """首行正则表达式,当 LogType 为多行全文、多行正则时生效
8342
- 注意:此字段可能返回 null,表示取不到有效值。
8343
8214
  :rtype: str
8344
8215
  """
8345
8216
  return self._BeginningRegex
@@ -8351,7 +8222,6 @@ class LogConfig(AbstractModel):
8351
8222
  @property
8352
8223
  def LogPath(self):
8353
8224
  """收集文件目录,当 InputType=container_file 时生效
8354
- 注意:此字段可能返回 null,表示取不到有效值。
8355
8225
  :rtype: str
8356
8226
  """
8357
8227
  return self._LogPath
@@ -8363,7 +8233,6 @@ class LogConfig(AbstractModel):
8363
8233
  @property
8364
8234
  def FilePattern(self):
8365
8235
  """收集文件名模式,当 InputType=container_file 时生效
8366
- 注意:此字段可能返回 null,表示取不到有效值。
8367
8236
  :rtype: str
8368
8237
  """
8369
8238
  return self._FilePattern
@@ -8375,7 +8244,6 @@ class LogConfig(AbstractModel):
8375
8244
  @property
8376
8245
  def CreateDate(self):
8377
8246
  """创建时间
8378
- 注意:此字段可能返回 null,表示取不到有效值。
8379
8247
  :rtype: str
8380
8248
  """
8381
8249
  return self._CreateDate
@@ -8387,7 +8255,6 @@ class LogConfig(AbstractModel):
8387
8255
  @property
8388
8256
  def ModifyDate(self):
8389
8257
  """更新时间
8390
- 注意:此字段可能返回 null,表示取不到有效值。
8391
8258
  :rtype: str
8392
8259
  """
8393
8260
  return self._ModifyDate
@@ -8399,7 +8266,6 @@ class LogConfig(AbstractModel):
8399
8266
  @property
8400
8267
  def ApplicationId(self):
8401
8268
  """应用 ID
8402
- 注意:此字段可能返回 null,表示取不到有效值。
8403
8269
  :rtype: str
8404
8270
  """
8405
8271
  return self._ApplicationId
@@ -8411,7 +8277,6 @@ class LogConfig(AbstractModel):
8411
8277
  @property
8412
8278
  def ApplicationName(self):
8413
8279
  """应用名
8414
- 注意:此字段可能返回 null,表示取不到有效值。
8415
8280
  :rtype: str
8416
8281
  """
8417
8282
  return self._ApplicationName
@@ -8423,7 +8288,6 @@ class LogConfig(AbstractModel):
8423
8288
  @property
8424
8289
  def ExtractRule(self):
8425
8290
  """导出规则
8426
- 注意:此字段可能返回 null,表示取不到有效值。
8427
8291
  :rtype: :class:`tencentcloud.tem.v20210701.models.LogConfigExtractRule`
8428
8292
  """
8429
8293
  return self._ExtractRule
@@ -8467,37 +8331,26 @@ class LogConfigExtractRule(AbstractModel):
8467
8331
  def __init__(self):
8468
8332
  r"""
8469
8333
  :param _BeginningRegex: 首行正则表达式
8470
- 注意:此字段可能返回 null,表示取不到有效值。
8471
8334
  :type BeginningRegex: str
8472
8335
  :param _Keys: 提取结果
8473
- 注意:此字段可能返回 null,表示取不到有效值。
8474
8336
  :type Keys: list of str
8475
8337
  :param _FilterKeys: 过滤键
8476
- 注意:此字段可能返回 null,表示取不到有效值。
8477
8338
  :type FilterKeys: list of str
8478
8339
  :param _FilterRegex: 过滤值
8479
- 注意:此字段可能返回 null,表示取不到有效值。
8480
8340
  :type FilterRegex: list of str
8481
8341
  :param _LogRegex: 日志正则表达式
8482
- 注意:此字段可能返回 null,表示取不到有效值。
8483
8342
  :type LogRegex: str
8484
8343
  :param _TimeKey: 时间字段
8485
- 注意:此字段可能返回 null,表示取不到有效值。
8486
8344
  :type TimeKey: str
8487
8345
  :param _TimeFormat: 时间格式
8488
- 注意:此字段可能返回 null,表示取不到有效值。
8489
8346
  :type TimeFormat: str
8490
8347
  :param _UnMatchUpload: 是否上传解析失败日志
8491
- 注意:此字段可能返回 null,表示取不到有效值。
8492
8348
  :type UnMatchUpload: str
8493
8349
  :param _UnMatchedKey: 解析失败日志的键名称
8494
- 注意:此字段可能返回 null,表示取不到有效值。
8495
8350
  :type UnMatchedKey: str
8496
8351
  :param _Backtracking: tracking
8497
- 注意:此字段可能返回 null,表示取不到有效值。
8498
8352
  :type Backtracking: str
8499
8353
  :param _Delimiter: 分隔符
8500
- 注意:此字段可能返回 null,表示取不到有效值。
8501
8354
  :type Delimiter: str
8502
8355
  """
8503
8356
  self._BeginningRegex = None
@@ -8515,7 +8368,6 @@ class LogConfigExtractRule(AbstractModel):
8515
8368
  @property
8516
8369
  def BeginningRegex(self):
8517
8370
  """首行正则表达式
8518
- 注意:此字段可能返回 null,表示取不到有效值。
8519
8371
  :rtype: str
8520
8372
  """
8521
8373
  return self._BeginningRegex
@@ -8527,7 +8379,6 @@ class LogConfigExtractRule(AbstractModel):
8527
8379
  @property
8528
8380
  def Keys(self):
8529
8381
  """提取结果
8530
- 注意:此字段可能返回 null,表示取不到有效值。
8531
8382
  :rtype: list of str
8532
8383
  """
8533
8384
  return self._Keys
@@ -8539,7 +8390,6 @@ class LogConfigExtractRule(AbstractModel):
8539
8390
  @property
8540
8391
  def FilterKeys(self):
8541
8392
  """过滤键
8542
- 注意:此字段可能返回 null,表示取不到有效值。
8543
8393
  :rtype: list of str
8544
8394
  """
8545
8395
  return self._FilterKeys
@@ -8551,7 +8401,6 @@ class LogConfigExtractRule(AbstractModel):
8551
8401
  @property
8552
8402
  def FilterRegex(self):
8553
8403
  """过滤值
8554
- 注意:此字段可能返回 null,表示取不到有效值。
8555
8404
  :rtype: list of str
8556
8405
  """
8557
8406
  return self._FilterRegex
@@ -8563,7 +8412,6 @@ class LogConfigExtractRule(AbstractModel):
8563
8412
  @property
8564
8413
  def LogRegex(self):
8565
8414
  """日志正则表达式
8566
- 注意:此字段可能返回 null,表示取不到有效值。
8567
8415
  :rtype: str
8568
8416
  """
8569
8417
  return self._LogRegex
@@ -8575,7 +8423,6 @@ class LogConfigExtractRule(AbstractModel):
8575
8423
  @property
8576
8424
  def TimeKey(self):
8577
8425
  """时间字段
8578
- 注意:此字段可能返回 null,表示取不到有效值。
8579
8426
  :rtype: str
8580
8427
  """
8581
8428
  return self._TimeKey
@@ -8587,7 +8434,6 @@ class LogConfigExtractRule(AbstractModel):
8587
8434
  @property
8588
8435
  def TimeFormat(self):
8589
8436
  """时间格式
8590
- 注意:此字段可能返回 null,表示取不到有效值。
8591
8437
  :rtype: str
8592
8438
  """
8593
8439
  return self._TimeFormat
@@ -8599,7 +8445,6 @@ class LogConfigExtractRule(AbstractModel):
8599
8445
  @property
8600
8446
  def UnMatchUpload(self):
8601
8447
  """是否上传解析失败日志
8602
- 注意:此字段可能返回 null,表示取不到有效值。
8603
8448
  :rtype: str
8604
8449
  """
8605
8450
  return self._UnMatchUpload
@@ -8611,7 +8456,6 @@ class LogConfigExtractRule(AbstractModel):
8611
8456
  @property
8612
8457
  def UnMatchedKey(self):
8613
8458
  """解析失败日志的键名称
8614
- 注意:此字段可能返回 null,表示取不到有效值。
8615
8459
  :rtype: str
8616
8460
  """
8617
8461
  return self._UnMatchedKey
@@ -8623,7 +8467,6 @@ class LogConfigExtractRule(AbstractModel):
8623
8467
  @property
8624
8468
  def Backtracking(self):
8625
8469
  """tracking
8626
- 注意:此字段可能返回 null,表示取不到有效值。
8627
8470
  :rtype: str
8628
8471
  """
8629
8472
  return self._Backtracking
@@ -8635,7 +8478,6 @@ class LogConfigExtractRule(AbstractModel):
8635
8478
  @property
8636
8479
  def Delimiter(self):
8637
8480
  """分隔符
8638
- 注意:此字段可能返回 null,表示取不到有效值。
8639
8481
  :rtype: str
8640
8482
  """
8641
8483
  return self._Delimiter
@@ -8675,10 +8517,8 @@ class LogConfigListPage(AbstractModel):
8675
8517
  def __init__(self):
8676
8518
  r"""
8677
8519
  :param _Records: 记录
8678
- 注意:此字段可能返回 null,表示取不到有效值。
8679
8520
  :type Records: list of LogConfig
8680
8521
  :param _ContinueToken: 翻页游标
8681
- 注意:此字段可能返回 null,表示取不到有效值。
8682
8522
  :type ContinueToken: str
8683
8523
  """
8684
8524
  self._Records = None
@@ -8687,7 +8527,6 @@ class LogConfigListPage(AbstractModel):
8687
8527
  @property
8688
8528
  def Records(self):
8689
8529
  """记录
8690
- 注意:此字段可能返回 null,表示取不到有效值。
8691
8530
  :rtype: list of LogConfig
8692
8531
  """
8693
8532
  return self._Records
@@ -8699,7 +8538,6 @@ class LogConfigListPage(AbstractModel):
8699
8538
  @property
8700
8539
  def ContinueToken(self):
8701
8540
  """翻页游标
8702
- 注意:此字段可能返回 null,表示取不到有效值。
8703
8541
  :rtype: str
8704
8542
  """
8705
8543
  return self._ContinueToken
@@ -8929,7 +8767,6 @@ class ModifyApplicationAutoscalerResponse(AbstractModel):
8929
8767
  def __init__(self):
8930
8768
  r"""
8931
8769
  :param _Result: 是否成功
8932
- 注意:此字段可能返回 null,表示取不到有效值。
8933
8770
  :type Result: bool
8934
8771
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8935
8772
  :type RequestId: str
@@ -8940,7 +8777,6 @@ class ModifyApplicationAutoscalerResponse(AbstractModel):
8940
8777
  @property
8941
8778
  def Result(self):
8942
8779
  """是否成功
8943
- 注意:此字段可能返回 null,表示取不到有效值。
8944
8780
  :rtype: bool
8945
8781
  """
8946
8782
  return self._Result
@@ -9055,7 +8891,6 @@ class ModifyApplicationInfoResponse(AbstractModel):
9055
8891
  def __init__(self):
9056
8892
  r"""
9057
8893
  :param _Result: 成功与否
9058
- 注意:此字段可能返回 null,表示取不到有效值。
9059
8894
  :type Result: bool
9060
8895
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9061
8896
  :type RequestId: str
@@ -9066,7 +8901,6 @@ class ModifyApplicationInfoResponse(AbstractModel):
9066
8901
  @property
9067
8902
  def Result(self):
9068
8903
  """成功与否
9069
- 注意:此字段可能返回 null,表示取不到有效值。
9070
8904
  :rtype: bool
9071
8905
  """
9072
8906
  return self._Result
@@ -9181,7 +9015,6 @@ class ModifyApplicationReplicasResponse(AbstractModel):
9181
9015
  def __init__(self):
9182
9016
  r"""
9183
9017
  :param _Result: 是否成功
9184
- 注意:此字段可能返回 null,表示取不到有效值。
9185
9018
  :type Result: bool
9186
9019
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9187
9020
  :type RequestId: str
@@ -9192,7 +9025,6 @@ class ModifyApplicationReplicasResponse(AbstractModel):
9192
9025
  @property
9193
9026
  def Result(self):
9194
9027
  """是否成功
9195
- 注意:此字段可能返回 null,表示取不到有效值。
9196
9028
  :rtype: bool
9197
9029
  """
9198
9030
  return self._Result
@@ -9326,7 +9158,6 @@ class ModifyApplicationServiceResponse(AbstractModel):
9326
9158
  def __init__(self):
9327
9159
  r"""
9328
9160
  :param _Result: 是否成功
9329
- 注意:此字段可能返回 null,表示取不到有效值。
9330
9161
  :type Result: bool
9331
9162
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9332
9163
  :type RequestId: str
@@ -9337,7 +9168,6 @@ class ModifyApplicationServiceResponse(AbstractModel):
9337
9168
  @property
9338
9169
  def Result(self):
9339
9170
  """是否成功
9340
- 注意:此字段可能返回 null,表示取不到有效值。
9341
9171
  :rtype: bool
9342
9172
  """
9343
9173
  return self._Result
@@ -9626,7 +9456,6 @@ class ModifyEnvironmentResponse(AbstractModel):
9626
9456
  def __init__(self):
9627
9457
  r"""
9628
9458
  :param _Result: 成功时为环境ID,失败为null
9629
- 注意:此字段可能返回 null,表示取不到有效值。
9630
9459
  :type Result: bool
9631
9460
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9632
9461
  :type RequestId: str
@@ -9637,7 +9466,6 @@ class ModifyEnvironmentResponse(AbstractModel):
9637
9466
  @property
9638
9467
  def Result(self):
9639
9468
  """成功时为环境ID,失败为null
9640
- 注意:此字段可能返回 null,表示取不到有效值。
9641
9469
  :rtype: bool
9642
9470
  """
9643
9471
  return self._Result
@@ -9895,13 +9723,10 @@ class MountedSettingConf(AbstractModel):
9895
9723
  def __init__(self):
9896
9724
  r"""
9897
9725
  :param _ConfigDataName: 配置名称
9898
- 注意:此字段可能返回 null,表示取不到有效值。
9899
9726
  :type ConfigDataName: str
9900
9727
  :param _MountedPath: 挂载路径
9901
- 注意:此字段可能返回 null,表示取不到有效值。
9902
9728
  :type MountedPath: str
9903
9729
  :param _Data: 配置内容
9904
- 注意:此字段可能返回 null,表示取不到有效值。
9905
9730
  :type Data: list of Pair
9906
9731
  :param _SecretDataName: 加密配置名称
9907
9732
  注意:此字段可能返回 null,表示取不到有效值。
@@ -9915,7 +9740,6 @@ class MountedSettingConf(AbstractModel):
9915
9740
  @property
9916
9741
  def ConfigDataName(self):
9917
9742
  """配置名称
9918
- 注意:此字段可能返回 null,表示取不到有效值。
9919
9743
  :rtype: str
9920
9744
  """
9921
9745
  return self._ConfigDataName
@@ -9927,7 +9751,6 @@ class MountedSettingConf(AbstractModel):
9927
9751
  @property
9928
9752
  def MountedPath(self):
9929
9753
  """挂载路径
9930
- 注意:此字段可能返回 null,表示取不到有效值。
9931
9754
  :rtype: str
9932
9755
  """
9933
9756
  return self._MountedPath
@@ -9939,7 +9762,6 @@ class MountedSettingConf(AbstractModel):
9939
9762
  @property
9940
9763
  def Data(self):
9941
9764
  """配置内容
9942
- 注意:此字段可能返回 null,表示取不到有效值。
9943
9765
  :rtype: list of Pair
9944
9766
  """
9945
9767
  return self._Data
@@ -10003,19 +9825,14 @@ class NamespaceInfo(AbstractModel):
10003
9825
  :param _CreatedDate: 创建时间
10004
9826
  :type CreatedDate: str
10005
9827
  :param _EnvironmentName: 环境名称
10006
- 注意:此字段可能返回 null,表示取不到有效值。
10007
9828
  :type EnvironmentName: str
10008
9829
  :param _ApmInstanceId: APM 资源 ID
10009
- 注意:此字段可能返回 null,表示取不到有效值。
10010
9830
  :type ApmInstanceId: str
10011
9831
  :param _Locked: 环境是否上锁,1为上锁,0则未上锁
10012
- 注意:此字段可能返回 null,表示取不到有效值。
10013
9832
  :type Locked: int
10014
9833
  :param _Tags: 标签
10015
- 注意:此字段可能返回 null,表示取不到有效值。
10016
9834
  :type Tags: list of Tag
10017
9835
  :param _EnvType: 环境类型:test、pre、prod
10018
- 注意:此字段可能返回 null,表示取不到有效值。
10019
9836
  :type EnvType: str
10020
9837
  """
10021
9838
  self._EnvironmentId = None
@@ -10111,7 +9928,6 @@ class NamespaceInfo(AbstractModel):
10111
9928
  @property
10112
9929
  def EnvironmentName(self):
10113
9930
  """环境名称
10114
- 注意:此字段可能返回 null,表示取不到有效值。
10115
9931
  :rtype: str
10116
9932
  """
10117
9933
  return self._EnvironmentName
@@ -10123,7 +9939,6 @@ class NamespaceInfo(AbstractModel):
10123
9939
  @property
10124
9940
  def ApmInstanceId(self):
10125
9941
  """APM 资源 ID
10126
- 注意:此字段可能返回 null,表示取不到有效值。
10127
9942
  :rtype: str
10128
9943
  """
10129
9944
  return self._ApmInstanceId
@@ -10135,7 +9950,6 @@ class NamespaceInfo(AbstractModel):
10135
9950
  @property
10136
9951
  def Locked(self):
10137
9952
  """环境是否上锁,1为上锁,0则未上锁
10138
- 注意:此字段可能返回 null,表示取不到有效值。
10139
9953
  :rtype: int
10140
9954
  """
10141
9955
  return self._Locked
@@ -10147,7 +9961,6 @@ class NamespaceInfo(AbstractModel):
10147
9961
  @property
10148
9962
  def Tags(self):
10149
9963
  """标签
10150
- 注意:此字段可能返回 null,表示取不到有效值。
10151
9964
  :rtype: list of Tag
10152
9965
  """
10153
9966
  return self._Tags
@@ -10159,7 +9972,6 @@ class NamespaceInfo(AbstractModel):
10159
9972
  @property
10160
9973
  def EnvType(self):
10161
9974
  """环境类型:test、pre、prod
10162
- 注意:此字段可能返回 null,表示取不到有效值。
10163
9975
  :rtype: str
10164
9976
  """
10165
9977
  return self._EnvType
@@ -10213,7 +10025,6 @@ class NamespacePage(AbstractModel):
10213
10025
  :param _Pages: 页数
10214
10026
  :type Pages: int
10215
10027
  :param _Current: 当前条目
10216
- 注意:此字段可能返回 null,表示取不到有效值。
10217
10028
  :type Current: int
10218
10029
  """
10219
10030
  self._Records = None
@@ -10269,7 +10080,6 @@ class NamespacePage(AbstractModel):
10269
10080
  @property
10270
10081
  def Current(self):
10271
10082
  """当前条目
10272
- 注意:此字段可能返回 null,表示取不到有效值。
10273
10083
  :rtype: int
10274
10084
  """
10275
10085
  return self._Current
@@ -10429,16 +10239,12 @@ class NodeInfo(AbstractModel):
10429
10239
  :param _Name: node名字
10430
10240
  :type Name: str
10431
10241
  :param _Zone: node可用区
10432
- 注意:此字段可能返回 null,表示取不到有效值。
10433
10242
  :type Zone: str
10434
10243
  :param _SubnetId: node子网ID
10435
- 注意:此字段可能返回 null,表示取不到有效值。
10436
10244
  :type SubnetId: str
10437
10245
  :param _AvailableIpCount: 可用IP数
10438
- 注意:此字段可能返回 null,表示取不到有效值。
10439
10246
  :type AvailableIpCount: str
10440
10247
  :param _Cidr: cidr块
10441
- 注意:此字段可能返回 null,表示取不到有效值。
10442
10248
  :type Cidr: str
10443
10249
  """
10444
10250
  self._Name = None
@@ -10461,7 +10267,6 @@ class NodeInfo(AbstractModel):
10461
10267
  @property
10462
10268
  def Zone(self):
10463
10269
  """node可用区
10464
- 注意:此字段可能返回 null,表示取不到有效值。
10465
10270
  :rtype: str
10466
10271
  """
10467
10272
  return self._Zone
@@ -10473,7 +10278,6 @@ class NodeInfo(AbstractModel):
10473
10278
  @property
10474
10279
  def SubnetId(self):
10475
10280
  """node子网ID
10476
- 注意:此字段可能返回 null,表示取不到有效值。
10477
10281
  :rtype: str
10478
10282
  """
10479
10283
  return self._SubnetId
@@ -10485,7 +10289,6 @@ class NodeInfo(AbstractModel):
10485
10289
  @property
10486
10290
  def AvailableIpCount(self):
10487
10291
  """可用IP数
10488
- 注意:此字段可能返回 null,表示取不到有效值。
10489
10292
  :rtype: str
10490
10293
  """
10491
10294
  return self._AvailableIpCount
@@ -10497,7 +10300,6 @@ class NodeInfo(AbstractModel):
10497
10300
  @property
10498
10301
  def Cidr(self):
10499
10302
  """cidr块
10500
- 注意:此字段可能返回 null,表示取不到有效值。
10501
10303
  :rtype: str
10502
10304
  """
10503
10305
  return self._Cidr
@@ -10535,13 +10337,10 @@ class Pair(AbstractModel):
10535
10337
  :param _Value: 值
10536
10338
  :type Value: str
10537
10339
  :param _Type: 类型,default 为自定义,reserved 为系统变量,referenced 为引用配置项
10538
- 注意:此字段可能返回 null,表示取不到有效值。
10539
10340
  :type Type: str
10540
10341
  :param _Config: 配置名称
10541
- 注意:此字段可能返回 null,表示取不到有效值。
10542
10342
  :type Config: str
10543
10343
  :param _Secret: 加密配置名称
10544
- 注意:此字段可能返回 null,表示取不到有效值。
10545
10344
  :type Secret: str
10546
10345
  """
10547
10346
  self._Key = None
@@ -10575,7 +10374,6 @@ class Pair(AbstractModel):
10575
10374
  @property
10576
10375
  def Type(self):
10577
10376
  """类型,default 为自定义,reserved 为系统变量,referenced 为引用配置项
10578
- 注意:此字段可能返回 null,表示取不到有效值。
10579
10377
  :rtype: str
10580
10378
  """
10581
10379
  return self._Type
@@ -10587,7 +10385,6 @@ class Pair(AbstractModel):
10587
10385
  @property
10588
10386
  def Config(self):
10589
10387
  """配置名称
10590
- 注意:此字段可能返回 null,表示取不到有效值。
10591
10388
  :rtype: str
10592
10389
  """
10593
10390
  return self._Config
@@ -10599,7 +10396,6 @@ class Pair(AbstractModel):
10599
10396
  @property
10600
10397
  def Secret(self):
10601
10398
  """加密配置名称
10602
- 注意:此字段可能返回 null,表示取不到有效值。
10603
10399
  :rtype: str
10604
10400
  """
10605
10401
  return self._Secret
@@ -10891,7 +10687,6 @@ class RestartApplicationPodResponse(AbstractModel):
10891
10687
  def __init__(self):
10892
10688
  r"""
10893
10689
  :param _Result: 返回结果
10894
- 注意:此字段可能返回 null,表示取不到有效值。
10895
10690
  :type Result: bool
10896
10691
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10897
10692
  :type RequestId: str
@@ -10902,7 +10697,6 @@ class RestartApplicationPodResponse(AbstractModel):
10902
10697
  @property
10903
10698
  def Result(self):
10904
10699
  """返回结果
10905
- 注意:此字段可能返回 null,表示取不到有效值。
10906
10700
  :rtype: bool
10907
10701
  """
10908
10702
  return self._Result
@@ -11472,37 +11266,27 @@ class RunVersionPod(AbstractModel):
11472
11266
  :param _PodIp: 实例的ip
11473
11267
  :type PodIp: str
11474
11268
  :param _Zone: 可用区
11475
- 注意:此字段可能返回 null,表示取不到有效值。
11476
11269
  :type Zone: str
11477
11270
  :param _DeployVersion: 部署版本
11478
- 注意:此字段可能返回 null,表示取不到有效值。
11479
11271
  :type DeployVersion: str
11480
11272
  :param _RestartCount: 重启次数
11481
- 注意:此字段可能返回 null,表示取不到有效值。
11482
11273
  :type RestartCount: int
11483
11274
  :param _Ready: pod是否就绪
11484
- 注意:此字段可能返回 null,表示取不到有效值。
11485
11275
  :type Ready: bool
11486
11276
  :param _ContainerState: 容器状态
11487
- 注意:此字段可能返回 null,表示取不到有效值。
11488
11277
  :type ContainerState: str
11489
11278
  :param _NodeInfo: 实例所在节点信息
11490
- 注意:此字段可能返回 null,表示取不到有效值。
11491
11279
  :type NodeInfo: :class:`tencentcloud.tem.v20210701.models.NodeInfo`
11492
11280
  :param _StartTime: 启动时间
11493
- 注意:此字段可能返回 null,表示取不到有效值。
11494
11281
  :type StartTime: str
11495
11282
  :param _Unhealthy: 是否健康
11496
11283
  注意:此字段可能返回 null,表示取不到有效值。
11497
11284
  :type Unhealthy: bool
11498
11285
  :param _UnhealthyWarningMsg: 不健康时的提示信息
11499
- 注意:此字段可能返回 null,表示取不到有效值。
11500
11286
  :type UnhealthyWarningMsg: str
11501
11287
  :param _VersionId: 版本ID
11502
- 注意:此字段可能返回 null,表示取不到有效值。
11503
11288
  :type VersionId: str
11504
11289
  :param _ApplicationName: 应用名称
11505
- 注意:此字段可能返回 null,表示取不到有效值。
11506
11290
  :type ApplicationName: str
11507
11291
  """
11508
11292
  self._Webshell = None
@@ -11580,7 +11364,6 @@ class RunVersionPod(AbstractModel):
11580
11364
  @property
11581
11365
  def Zone(self):
11582
11366
  """可用区
11583
- 注意:此字段可能返回 null,表示取不到有效值。
11584
11367
  :rtype: str
11585
11368
  """
11586
11369
  return self._Zone
@@ -11592,7 +11375,6 @@ class RunVersionPod(AbstractModel):
11592
11375
  @property
11593
11376
  def DeployVersion(self):
11594
11377
  """部署版本
11595
- 注意:此字段可能返回 null,表示取不到有效值。
11596
11378
  :rtype: str
11597
11379
  """
11598
11380
  return self._DeployVersion
@@ -11604,7 +11386,6 @@ class RunVersionPod(AbstractModel):
11604
11386
  @property
11605
11387
  def RestartCount(self):
11606
11388
  """重启次数
11607
- 注意:此字段可能返回 null,表示取不到有效值。
11608
11389
  :rtype: int
11609
11390
  """
11610
11391
  return self._RestartCount
@@ -11616,7 +11397,6 @@ class RunVersionPod(AbstractModel):
11616
11397
  @property
11617
11398
  def Ready(self):
11618
11399
  """pod是否就绪
11619
- 注意:此字段可能返回 null,表示取不到有效值。
11620
11400
  :rtype: bool
11621
11401
  """
11622
11402
  return self._Ready
@@ -11628,7 +11408,6 @@ class RunVersionPod(AbstractModel):
11628
11408
  @property
11629
11409
  def ContainerState(self):
11630
11410
  """容器状态
11631
- 注意:此字段可能返回 null,表示取不到有效值。
11632
11411
  :rtype: str
11633
11412
  """
11634
11413
  return self._ContainerState
@@ -11640,7 +11419,6 @@ class RunVersionPod(AbstractModel):
11640
11419
  @property
11641
11420
  def NodeInfo(self):
11642
11421
  """实例所在节点信息
11643
- 注意:此字段可能返回 null,表示取不到有效值。
11644
11422
  :rtype: :class:`tencentcloud.tem.v20210701.models.NodeInfo`
11645
11423
  """
11646
11424
  return self._NodeInfo
@@ -11652,7 +11430,6 @@ class RunVersionPod(AbstractModel):
11652
11430
  @property
11653
11431
  def StartTime(self):
11654
11432
  """启动时间
11655
- 注意:此字段可能返回 null,表示取不到有效值。
11656
11433
  :rtype: str
11657
11434
  """
11658
11435
  return self._StartTime
@@ -11676,7 +11453,6 @@ class RunVersionPod(AbstractModel):
11676
11453
  @property
11677
11454
  def UnhealthyWarningMsg(self):
11678
11455
  """不健康时的提示信息
11679
- 注意:此字段可能返回 null,表示取不到有效值。
11680
11456
  :rtype: str
11681
11457
  """
11682
11458
  return self._UnhealthyWarningMsg
@@ -11688,7 +11464,6 @@ class RunVersionPod(AbstractModel):
11688
11464
  @property
11689
11465
  def VersionId(self):
11690
11466
  """版本ID
11691
- 注意:此字段可能返回 null,表示取不到有效值。
11692
11467
  :rtype: str
11693
11468
  """
11694
11469
  return self._VersionId
@@ -11700,7 +11475,6 @@ class RunVersionPod(AbstractModel):
11700
11475
  @property
11701
11476
  def ApplicationName(self):
11702
11477
  """应用名称
11703
- 注意:此字段可能返回 null,表示取不到有效值。
11704
11478
  :rtype: str
11705
11479
  """
11706
11480
  return self._ApplicationName
@@ -11755,7 +11529,6 @@ class ServicePage(AbstractModel):
11755
11529
  :param _Pages: 页数
11756
11530
  :type Pages: int
11757
11531
  :param _Current: 当前条数
11758
- 注意:此字段可能返回 null,表示取不到有效值。
11759
11532
  :type Current: int
11760
11533
  """
11761
11534
  self._Records = None
@@ -11811,7 +11584,6 @@ class ServicePage(AbstractModel):
11811
11584
  @property
11812
11585
  def Current(self):
11813
11586
  """当前条数
11814
- 注意:此字段可能返回 null,表示取不到有效值。
11815
11587
  :rtype: int
11816
11588
  """
11817
11589
  return self._Current
@@ -11850,37 +11622,26 @@ class ServicePortMapping(AbstractModel):
11850
11622
  def __init__(self):
11851
11623
  r"""
11852
11624
  :param _Type: 服务类型:如:EXTERNAL,VPC,CLUSTER
11853
- 注意:此字段可能返回 null,表示取不到有效值。
11854
11625
  :type Type: str
11855
11626
  :param _ServiceName: 服务名称
11856
- 注意:此字段可能返回 null,表示取不到有效值。
11857
11627
  :type ServiceName: str
11858
11628
  :param _ClusterIp: 集群内访问vip
11859
- 注意:此字段可能返回 null,表示取不到有效值。
11860
11629
  :type ClusterIp: str
11861
11630
  :param _ExternalIp: 集群外方位vip
11862
- 注意:此字段可能返回 null,表示取不到有效值。
11863
11631
  :type ExternalIp: str
11864
11632
  :param _SubnetId: 子网id
11865
- 注意:此字段可能返回 null,表示取不到有效值。
11866
11633
  :type SubnetId: str
11867
11634
  :param _VpcId: vpc id
11868
- 注意:此字段可能返回 null,表示取不到有效值。
11869
11635
  :type VpcId: str
11870
11636
  :param _LoadBalanceId: LoadBalance Id
11871
- 注意:此字段可能返回 null,表示取不到有效值。
11872
11637
  :type LoadBalanceId: str
11873
11638
  :param _Yaml: yaml 内容
11874
- 注意:此字段可能返回 null,表示取不到有效值。
11875
11639
  :type Yaml: str
11876
11640
  :param _Ports: 暴露端口列表
11877
- 注意:此字段可能返回 null,表示取不到有效值。
11878
11641
  :type Ports: list of int
11879
11642
  :param _PortMappingItemList: 端口映射数组
11880
- 注意:此字段可能返回 null,表示取不到有效值。
11881
11643
  :type PortMappingItemList: list of ServicePortMappingItem
11882
11644
  :param _ExternalDomain: clb domain
11883
- 注意:此字段可能返回 null,表示取不到有效值。
11884
11645
  :type ExternalDomain: str
11885
11646
  """
11886
11647
  self._Type = None
@@ -11898,7 +11659,6 @@ class ServicePortMapping(AbstractModel):
11898
11659
  @property
11899
11660
  def Type(self):
11900
11661
  """服务类型:如:EXTERNAL,VPC,CLUSTER
11901
- 注意:此字段可能返回 null,表示取不到有效值。
11902
11662
  :rtype: str
11903
11663
  """
11904
11664
  return self._Type
@@ -11910,7 +11670,6 @@ class ServicePortMapping(AbstractModel):
11910
11670
  @property
11911
11671
  def ServiceName(self):
11912
11672
  """服务名称
11913
- 注意:此字段可能返回 null,表示取不到有效值。
11914
11673
  :rtype: str
11915
11674
  """
11916
11675
  return self._ServiceName
@@ -11922,7 +11681,6 @@ class ServicePortMapping(AbstractModel):
11922
11681
  @property
11923
11682
  def ClusterIp(self):
11924
11683
  """集群内访问vip
11925
- 注意:此字段可能返回 null,表示取不到有效值。
11926
11684
  :rtype: str
11927
11685
  """
11928
11686
  return self._ClusterIp
@@ -11934,7 +11692,6 @@ class ServicePortMapping(AbstractModel):
11934
11692
  @property
11935
11693
  def ExternalIp(self):
11936
11694
  """集群外方位vip
11937
- 注意:此字段可能返回 null,表示取不到有效值。
11938
11695
  :rtype: str
11939
11696
  """
11940
11697
  return self._ExternalIp
@@ -11946,7 +11703,6 @@ class ServicePortMapping(AbstractModel):
11946
11703
  @property
11947
11704
  def SubnetId(self):
11948
11705
  """子网id
11949
- 注意:此字段可能返回 null,表示取不到有效值。
11950
11706
  :rtype: str
11951
11707
  """
11952
11708
  return self._SubnetId
@@ -11958,7 +11714,6 @@ class ServicePortMapping(AbstractModel):
11958
11714
  @property
11959
11715
  def VpcId(self):
11960
11716
  """vpc id
11961
- 注意:此字段可能返回 null,表示取不到有效值。
11962
11717
  :rtype: str
11963
11718
  """
11964
11719
  return self._VpcId
@@ -11970,7 +11725,6 @@ class ServicePortMapping(AbstractModel):
11970
11725
  @property
11971
11726
  def LoadBalanceId(self):
11972
11727
  """LoadBalance Id
11973
- 注意:此字段可能返回 null,表示取不到有效值。
11974
11728
  :rtype: str
11975
11729
  """
11976
11730
  return self._LoadBalanceId
@@ -11982,7 +11736,6 @@ class ServicePortMapping(AbstractModel):
11982
11736
  @property
11983
11737
  def Yaml(self):
11984
11738
  """yaml 内容
11985
- 注意:此字段可能返回 null,表示取不到有效值。
11986
11739
  :rtype: str
11987
11740
  """
11988
11741
  return self._Yaml
@@ -11994,7 +11747,6 @@ class ServicePortMapping(AbstractModel):
11994
11747
  @property
11995
11748
  def Ports(self):
11996
11749
  """暴露端口列表
11997
- 注意:此字段可能返回 null,表示取不到有效值。
11998
11750
  :rtype: list of int
11999
11751
  """
12000
11752
  return self._Ports
@@ -12006,7 +11758,6 @@ class ServicePortMapping(AbstractModel):
12006
11758
  @property
12007
11759
  def PortMappingItemList(self):
12008
11760
  """端口映射数组
12009
- 注意:此字段可能返回 null,表示取不到有效值。
12010
11761
  :rtype: list of ServicePortMappingItem
12011
11762
  """
12012
11763
  return self._PortMappingItemList
@@ -12018,7 +11769,6 @@ class ServicePortMapping(AbstractModel):
12018
11769
  @property
12019
11770
  def ExternalDomain(self):
12020
11771
  """clb domain
12021
- 注意:此字段可能返回 null,表示取不到有效值。
12022
11772
  :rtype: str
12023
11773
  """
12024
11774
  return self._ExternalDomain
@@ -12063,13 +11813,10 @@ class ServicePortMappingItem(AbstractModel):
12063
11813
  def __init__(self):
12064
11814
  r"""
12065
11815
  :param _Port: 应用访问端口
12066
- 注意:此字段可能返回 null,表示取不到有效值。
12067
11816
  :type Port: int
12068
11817
  :param _TargetPort: 应用监听端口
12069
- 注意:此字段可能返回 null,表示取不到有效值。
12070
11818
  :type TargetPort: int
12071
11819
  :param _Protocol: 协议类型
12072
- 注意:此字段可能返回 null,表示取不到有效值。
12073
11820
  :type Protocol: str
12074
11821
  """
12075
11822
  self._Port = None
@@ -12079,7 +11826,6 @@ class ServicePortMappingItem(AbstractModel):
12079
11826
  @property
12080
11827
  def Port(self):
12081
11828
  """应用访问端口
12082
- 注意:此字段可能返回 null,表示取不到有效值。
12083
11829
  :rtype: int
12084
11830
  """
12085
11831
  return self._Port
@@ -12091,7 +11837,6 @@ class ServicePortMappingItem(AbstractModel):
12091
11837
  @property
12092
11838
  def TargetPort(self):
12093
11839
  """应用监听端口
12094
- 注意:此字段可能返回 null,表示取不到有效值。
12095
11840
  :rtype: int
12096
11841
  """
12097
11842
  return self._TargetPort
@@ -12103,7 +11848,6 @@ class ServicePortMappingItem(AbstractModel):
12103
11848
  @property
12104
11849
  def Protocol(self):
12105
11850
  """协议类型
12106
- 注意:此字段可能返回 null,表示取不到有效值。
12107
11851
  :rtype: str
12108
11852
  """
12109
11853
  return self._Protocol
@@ -12151,34 +11895,25 @@ class ServiceVersionBrief(AbstractModel):
12151
11895
  注意:此字段可能返回 null,表示取不到有效值。
12152
11896
  :type ExpectedInstances: int
12153
11897
  :param _DeployMode: 部署方式
12154
- 注意:此字段可能返回 null,表示取不到有效值。
12155
11898
  :type DeployMode: str
12156
11899
  :param _BuildTaskId: 建构任务ID
12157
- 注意:此字段可能返回 null,表示取不到有效值。
12158
11900
  :type BuildTaskId: str
12159
11901
  :param _EnvironmentId: 环境ID
12160
- 注意:此字段可能返回 null,表示取不到有效值。
12161
11902
  :type EnvironmentId: str
12162
11903
  :param _EnvironmentName: 环境name
12163
- 注意:此字段可能返回 null,表示取不到有效值。
12164
11904
  :type EnvironmentName: str
12165
11905
  :param _ApplicationId: 服务ID
12166
- 注意:此字段可能返回 null,表示取不到有效值。
12167
11906
  :type ApplicationId: str
12168
11907
  :param _ApplicationName: 服务name
12169
- 注意:此字段可能返回 null,表示取不到有效值。
12170
11908
  :type ApplicationName: str
12171
11909
  :param _UnderDeploying: 是否正在发布中
12172
11910
  注意:此字段可能返回 null,表示取不到有效值。
12173
11911
  :type UnderDeploying: bool
12174
11912
  :param _BatchDeployStatus: 分批次部署状态
12175
- 注意:此字段可能返回 null,表示取不到有效值。
12176
11913
  :type BatchDeployStatus: str
12177
11914
  :param _Zones: 可用区
12178
- 注意:此字段可能返回 null,表示取不到有效值。
12179
11915
  :type Zones: list of str
12180
11916
  :param _NodeInfos: 节点信息
12181
- 注意:此字段可能返回 null,表示取不到有效值。
12182
11917
  :type NodeInfos: list of NodeInfo
12183
11918
  :param _PodList: 实例信息
12184
11919
  注意:此字段可能返回 null,表示取不到有效值。
@@ -12187,10 +11922,8 @@ class ServiceVersionBrief(AbstractModel):
12187
11922
  注意:此字段可能返回 null,表示取不到有效值。
12188
11923
  :type WorkloadInfo: :class:`tencentcloud.tem.v20210701.models.WorkloadInfo`
12189
11924
  :param _CreateDate: 创建日期
12190
- 注意:此字段可能返回 null,表示取不到有效值。
12191
11925
  :type CreateDate: str
12192
11926
  :param _RegionId: 地域id
12193
- 注意:此字段可能返回 null,表示取不到有效值。
12194
11927
  :type RegionId: str
12195
11928
  """
12196
11929
  self._VersionName = None
@@ -12297,7 +12030,6 @@ class ServiceVersionBrief(AbstractModel):
12297
12030
  @property
12298
12031
  def DeployMode(self):
12299
12032
  """部署方式
12300
- 注意:此字段可能返回 null,表示取不到有效值。
12301
12033
  :rtype: str
12302
12034
  """
12303
12035
  return self._DeployMode
@@ -12309,7 +12041,6 @@ class ServiceVersionBrief(AbstractModel):
12309
12041
  @property
12310
12042
  def BuildTaskId(self):
12311
12043
  """建构任务ID
12312
- 注意:此字段可能返回 null,表示取不到有效值。
12313
12044
  :rtype: str
12314
12045
  """
12315
12046
  return self._BuildTaskId
@@ -12321,7 +12052,6 @@ class ServiceVersionBrief(AbstractModel):
12321
12052
  @property
12322
12053
  def EnvironmentId(self):
12323
12054
  """环境ID
12324
- 注意:此字段可能返回 null,表示取不到有效值。
12325
12055
  :rtype: str
12326
12056
  """
12327
12057
  return self._EnvironmentId
@@ -12333,7 +12063,6 @@ class ServiceVersionBrief(AbstractModel):
12333
12063
  @property
12334
12064
  def EnvironmentName(self):
12335
12065
  """环境name
12336
- 注意:此字段可能返回 null,表示取不到有效值。
12337
12066
  :rtype: str
12338
12067
  """
12339
12068
  return self._EnvironmentName
@@ -12345,7 +12074,6 @@ class ServiceVersionBrief(AbstractModel):
12345
12074
  @property
12346
12075
  def ApplicationId(self):
12347
12076
  """服务ID
12348
- 注意:此字段可能返回 null,表示取不到有效值。
12349
12077
  :rtype: str
12350
12078
  """
12351
12079
  return self._ApplicationId
@@ -12357,7 +12085,6 @@ class ServiceVersionBrief(AbstractModel):
12357
12085
  @property
12358
12086
  def ApplicationName(self):
12359
12087
  """服务name
12360
- 注意:此字段可能返回 null,表示取不到有效值。
12361
12088
  :rtype: str
12362
12089
  """
12363
12090
  return self._ApplicationName
@@ -12381,7 +12108,6 @@ class ServiceVersionBrief(AbstractModel):
12381
12108
  @property
12382
12109
  def BatchDeployStatus(self):
12383
12110
  """分批次部署状态
12384
- 注意:此字段可能返回 null,表示取不到有效值。
12385
12111
  :rtype: str
12386
12112
  """
12387
12113
  return self._BatchDeployStatus
@@ -12393,7 +12119,6 @@ class ServiceVersionBrief(AbstractModel):
12393
12119
  @property
12394
12120
  def Zones(self):
12395
12121
  """可用区
12396
- 注意:此字段可能返回 null,表示取不到有效值。
12397
12122
  :rtype: list of str
12398
12123
  """
12399
12124
  return self._Zones
@@ -12405,7 +12130,6 @@ class ServiceVersionBrief(AbstractModel):
12405
12130
  @property
12406
12131
  def NodeInfos(self):
12407
12132
  """节点信息
12408
- 注意:此字段可能返回 null,表示取不到有效值。
12409
12133
  :rtype: list of NodeInfo
12410
12134
  """
12411
12135
  return self._NodeInfos
@@ -12441,7 +12165,6 @@ class ServiceVersionBrief(AbstractModel):
12441
12165
  @property
12442
12166
  def CreateDate(self):
12443
12167
  """创建日期
12444
- 注意:此字段可能返回 null,表示取不到有效值。
12445
12168
  :rtype: str
12446
12169
  """
12447
12170
  return self._CreateDate
@@ -12453,7 +12176,6 @@ class ServiceVersionBrief(AbstractModel):
12453
12176
  @property
12454
12177
  def RegionId(self):
12455
12178
  """地域id
12456
- 注意:此字段可能返回 null,表示取不到有效值。
12457
12179
  :rtype: str
12458
12180
  """
12459
12181
  return self._RegionId
@@ -12678,7 +12400,6 @@ class StorageConf(AbstractModel):
12678
12400
  :param _StorageVolPath: 存储卷路径
12679
12401
  :type StorageVolPath: str
12680
12402
  :param _StorageVolIp: 存储卷IP
12681
- 注意:此字段可能返回 null,表示取不到有效值。
12682
12403
  :type StorageVolIp: str
12683
12404
  """
12684
12405
  self._StorageVolName = None
@@ -12710,7 +12431,6 @@ class StorageConf(AbstractModel):
12710
12431
  @property
12711
12432
  def StorageVolIp(self):
12712
12433
  """存储卷IP
12713
- 注意:此字段可能返回 null,表示取不到有效值。
12714
12434
  :rtype: str
12715
12435
  """
12716
12436
  return self._StorageVolIp
@@ -12793,10 +12513,8 @@ class Tag(AbstractModel):
12793
12513
  def __init__(self):
12794
12514
  r"""
12795
12515
  :param _TagKey: 标签键
12796
- 注意:此字段可能返回 null,表示取不到有效值。
12797
12516
  :type TagKey: str
12798
12517
  :param _TagValue: 标签值
12799
- 注意:此字段可能返回 null,表示取不到有效值。
12800
12518
  :type TagValue: str
12801
12519
  """
12802
12520
  self._TagKey = None
@@ -12805,7 +12523,6 @@ class Tag(AbstractModel):
12805
12523
  @property
12806
12524
  def TagKey(self):
12807
12525
  """标签键
12808
- 注意:此字段可能返回 null,表示取不到有效值。
12809
12526
  :rtype: str
12810
12527
  """
12811
12528
  return self._TagKey
@@ -12817,7 +12534,6 @@ class Tag(AbstractModel):
12817
12534
  @property
12818
12535
  def TagValue(self):
12819
12536
  """标签值
12820
- 注意:此字段可能返回 null,表示取不到有效值。
12821
12537
  :rtype: str
12822
12538
  """
12823
12539
  return self._TagValue
@@ -12851,19 +12567,15 @@ class TemDeployApplicationDetailInfo(AbstractModel):
12851
12567
  注意:此字段可能返回 null,表示取不到有效值。
12852
12568
  :type DeployStrategyConf: :class:`tencentcloud.tem.v20210701.models.DeployStrategyConf`
12853
12569
  :param _StartTime: 开始时间
12854
- 注意:此字段可能返回 null,表示取不到有效值。
12855
12570
  :type StartTime: str
12856
12571
  :param _EndTime: 结束时间
12857
- 注意:此字段可能返回 null,表示取不到有效值。
12858
12572
  :type EndTime: str
12859
12573
  :param _Status: 当前状态
12860
- 注意:此字段可能返回 null,表示取不到有效值。
12861
12574
  :type Status: str
12862
12575
  :param _BetaBatchDetail: beta分批详情
12863
12576
  注意:此字段可能返回 null,表示取不到有效值。
12864
12577
  :type BetaBatchDetail: :class:`tencentcloud.tem.v20210701.models.DeployServiceBatchDetail`
12865
12578
  :param _OtherBatchDetail: 其他分批详情
12866
- 注意:此字段可能返回 null,表示取不到有效值。
12867
12579
  :type OtherBatchDetail: list of DeployServiceBatchDetail
12868
12580
  :param _OldVersionPodList: 老版本pod列表
12869
12581
  注意:此字段可能返回 null,表示取不到有效值。
@@ -12872,19 +12584,14 @@ class TemDeployApplicationDetailInfo(AbstractModel):
12872
12584
  注意:此字段可能返回 null,表示取不到有效值。
12873
12585
  :type CurrentBatchIndex: int
12874
12586
  :param _ErrorMessage: 错误原因
12875
- 注意:此字段可能返回 null,表示取不到有效值。
12876
12587
  :type ErrorMessage: str
12877
12588
  :param _CurrentBatchStatus: 当前批次状态
12878
- 注意:此字段可能返回 null,表示取不到有效值。
12879
12589
  :type CurrentBatchStatus: str
12880
12590
  :param _NewDeployVersion: 新版本version
12881
- 注意:此字段可能返回 null,表示取不到有效值。
12882
12591
  :type NewDeployVersion: str
12883
12592
  :param _OldDeployVersion: 旧版本version
12884
- 注意:此字段可能返回 null,表示取不到有效值。
12885
12593
  :type OldDeployVersion: str
12886
12594
  :param _NewVersionPackageInfo: 包名称
12887
- 注意:此字段可能返回 null,表示取不到有效值。
12888
12595
  :type NewVersionPackageInfo: str
12889
12596
  :param _NextBatchStartTime: 下一批次开始时间
12890
12597
  注意:此字段可能返回 null,表示取不到有效值。
@@ -12920,7 +12627,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
12920
12627
  @property
12921
12628
  def StartTime(self):
12922
12629
  """开始时间
12923
- 注意:此字段可能返回 null,表示取不到有效值。
12924
12630
  :rtype: str
12925
12631
  """
12926
12632
  return self._StartTime
@@ -12932,7 +12638,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
12932
12638
  @property
12933
12639
  def EndTime(self):
12934
12640
  """结束时间
12935
- 注意:此字段可能返回 null,表示取不到有效值。
12936
12641
  :rtype: str
12937
12642
  """
12938
12643
  return self._EndTime
@@ -12944,7 +12649,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
12944
12649
  @property
12945
12650
  def Status(self):
12946
12651
  """当前状态
12947
- 注意:此字段可能返回 null,表示取不到有效值。
12948
12652
  :rtype: str
12949
12653
  """
12950
12654
  return self._Status
@@ -12968,7 +12672,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
12968
12672
  @property
12969
12673
  def OtherBatchDetail(self):
12970
12674
  """其他分批详情
12971
- 注意:此字段可能返回 null,表示取不到有效值。
12972
12675
  :rtype: list of DeployServiceBatchDetail
12973
12676
  """
12974
12677
  return self._OtherBatchDetail
@@ -13004,7 +12707,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
13004
12707
  @property
13005
12708
  def ErrorMessage(self):
13006
12709
  """错误原因
13007
- 注意:此字段可能返回 null,表示取不到有效值。
13008
12710
  :rtype: str
13009
12711
  """
13010
12712
  return self._ErrorMessage
@@ -13016,7 +12718,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
13016
12718
  @property
13017
12719
  def CurrentBatchStatus(self):
13018
12720
  """当前批次状态
13019
- 注意:此字段可能返回 null,表示取不到有效值。
13020
12721
  :rtype: str
13021
12722
  """
13022
12723
  return self._CurrentBatchStatus
@@ -13028,7 +12729,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
13028
12729
  @property
13029
12730
  def NewDeployVersion(self):
13030
12731
  """新版本version
13031
- 注意:此字段可能返回 null,表示取不到有效值。
13032
12732
  :rtype: str
13033
12733
  """
13034
12734
  return self._NewDeployVersion
@@ -13040,7 +12740,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
13040
12740
  @property
13041
12741
  def OldDeployVersion(self):
13042
12742
  """旧版本version
13043
- 注意:此字段可能返回 null,表示取不到有效值。
13044
12743
  :rtype: str
13045
12744
  """
13046
12745
  return self._OldDeployVersion
@@ -13052,7 +12751,6 @@ class TemDeployApplicationDetailInfo(AbstractModel):
13052
12751
  @property
13053
12752
  def NewVersionPackageInfo(self):
13054
12753
  """包名称
13055
- 注意:此字段可能返回 null,表示取不到有效值。
13056
12754
  :rtype: str
13057
12755
  """
13058
12756
  return self._NewVersionPackageInfo
@@ -13118,13 +12816,10 @@ class TemEnvironmentStartingStatus(AbstractModel):
13118
12816
  def __init__(self):
13119
12817
  r"""
13120
12818
  :param _ApplicationNumNeedToStart: 需要启动的应用数量
13121
- 注意:此字段可能返回 null,表示取不到有效值。
13122
12819
  :type ApplicationNumNeedToStart: int
13123
12820
  :param _StartedApplicationNum: 已经启动的应用数量
13124
- 注意:此字段可能返回 null,表示取不到有效值。
13125
12821
  :type StartedApplicationNum: int
13126
12822
  :param _StartFailedApplicationNum: 启动失败的应用数量
13127
- 注意:此字段可能返回 null,表示取不到有效值。
13128
12823
  :type StartFailedApplicationNum: int
13129
12824
  """
13130
12825
  self._ApplicationNumNeedToStart = None
@@ -13134,7 +12829,6 @@ class TemEnvironmentStartingStatus(AbstractModel):
13134
12829
  @property
13135
12830
  def ApplicationNumNeedToStart(self):
13136
12831
  """需要启动的应用数量
13137
- 注意:此字段可能返回 null,表示取不到有效值。
13138
12832
  :rtype: int
13139
12833
  """
13140
12834
  return self._ApplicationNumNeedToStart
@@ -13146,7 +12840,6 @@ class TemEnvironmentStartingStatus(AbstractModel):
13146
12840
  @property
13147
12841
  def StartedApplicationNum(self):
13148
12842
  """已经启动的应用数量
13149
- 注意:此字段可能返回 null,表示取不到有效值。
13150
12843
  :rtype: int
13151
12844
  """
13152
12845
  return self._StartedApplicationNum
@@ -13158,7 +12851,6 @@ class TemEnvironmentStartingStatus(AbstractModel):
13158
12851
  @property
13159
12852
  def StartFailedApplicationNum(self):
13160
12853
  """启动失败的应用数量
13161
- 注意:此字段可能返回 null,表示取不到有效值。
13162
12854
  :rtype: int
13163
12855
  """
13164
12856
  return self._StartFailedApplicationNum
@@ -13190,13 +12882,10 @@ class TemEnvironmentStoppingStatus(AbstractModel):
13190
12882
  def __init__(self):
13191
12883
  r"""
13192
12884
  :param _ApplicationNumNeedToStop: 需要停止的应用数量
13193
- 注意:此字段可能返回 null,表示取不到有效值。
13194
12885
  :type ApplicationNumNeedToStop: int
13195
12886
  :param _StoppedApplicationNum: 已经停止的应用数量
13196
- 注意:此字段可能返回 null,表示取不到有效值。
13197
12887
  :type StoppedApplicationNum: int
13198
12888
  :param _StopFailedApplicationNum: 停止失败的应用数量
13199
- 注意:此字段可能返回 null,表示取不到有效值。
13200
12889
  :type StopFailedApplicationNum: int
13201
12890
  """
13202
12891
  self._ApplicationNumNeedToStop = None
@@ -13206,7 +12895,6 @@ class TemEnvironmentStoppingStatus(AbstractModel):
13206
12895
  @property
13207
12896
  def ApplicationNumNeedToStop(self):
13208
12897
  """需要停止的应用数量
13209
- 注意:此字段可能返回 null,表示取不到有效值。
13210
12898
  :rtype: int
13211
12899
  """
13212
12900
  return self._ApplicationNumNeedToStop
@@ -13218,7 +12906,6 @@ class TemEnvironmentStoppingStatus(AbstractModel):
13218
12906
  @property
13219
12907
  def StoppedApplicationNum(self):
13220
12908
  """已经停止的应用数量
13221
- 注意:此字段可能返回 null,表示取不到有效值。
13222
12909
  :rtype: int
13223
12910
  """
13224
12911
  return self._StoppedApplicationNum
@@ -13230,7 +12917,6 @@ class TemEnvironmentStoppingStatus(AbstractModel):
13230
12917
  @property
13231
12918
  def StopFailedApplicationNum(self):
13232
12919
  """停止失败的应用数量
13233
- 注意:此字段可能返回 null,表示取不到有效值。
13234
12920
  :rtype: int
13235
12921
  """
13236
12922
  return self._StopFailedApplicationNum
@@ -13270,7 +12956,6 @@ class TemNamespaceInfo(AbstractModel):
13270
12956
  :param _Region: 区域名称
13271
12957
  :type Region: str
13272
12958
  :param _Description: 环境描述
13273
- 注意:此字段可能返回 null,表示取不到有效值。
13274
12959
  :type Description: str
13275
12960
  :param _Status: 状态,1:已销毁;0:正常
13276
12961
  :type Status: int
@@ -13297,28 +12982,20 @@ class TemNamespaceInfo(AbstractModel):
13297
12982
  :param _Locked: 环境锁,1为上锁,0则为上锁
13298
12983
  :type Locked: int
13299
12984
  :param _AppId: 用户AppId
13300
- 注意:此字段可能返回 null,表示取不到有效值。
13301
12985
  :type AppId: str
13302
12986
  :param _Uin: 用户Uin
13303
- 注意:此字段可能返回 null,表示取不到有效值。
13304
12987
  :type Uin: str
13305
12988
  :param _SubAccountUin: 用户SubAccountUin
13306
- 注意:此字段可能返回 null,表示取不到有效值。
13307
12989
  :type SubAccountUin: str
13308
12990
  :param _ClusterId: 集群ID
13309
- 注意:此字段可能返回 null,表示取不到有效值。
13310
12991
  :type ClusterId: str
13311
12992
  :param _Tags: 标签
13312
- 注意:此字段可能返回 null,表示取不到有效值。
13313
12993
  :type Tags: list of Tag
13314
12994
  :param _HasAuthority: 资源是否有权限
13315
- 注意:此字段可能返回 null,表示取不到有效值。
13316
12995
  :type HasAuthority: bool
13317
12996
  :param _EnvType: 环境类型: test、pre、prod
13318
- 注意:此字段可能返回 null,表示取不到有效值。
13319
12997
  :type EnvType: str
13320
12998
  :param _RegionId: 地域码
13321
- 注意:此字段可能返回 null,表示取不到有效值。
13322
12999
  :type RegionId: str
13323
13000
  """
13324
13001
  self._EnvironmentId = None
@@ -13394,7 +13071,6 @@ class TemNamespaceInfo(AbstractModel):
13394
13071
  @property
13395
13072
  def Description(self):
13396
13073
  """环境描述
13397
- 注意:此字段可能返回 null,表示取不到有效值。
13398
13074
  :rtype: str
13399
13075
  """
13400
13076
  return self._Description
@@ -13538,7 +13214,6 @@ class TemNamespaceInfo(AbstractModel):
13538
13214
  @property
13539
13215
  def AppId(self):
13540
13216
  """用户AppId
13541
- 注意:此字段可能返回 null,表示取不到有效值。
13542
13217
  :rtype: str
13543
13218
  """
13544
13219
  return self._AppId
@@ -13550,7 +13225,6 @@ class TemNamespaceInfo(AbstractModel):
13550
13225
  @property
13551
13226
  def Uin(self):
13552
13227
  """用户Uin
13553
- 注意:此字段可能返回 null,表示取不到有效值。
13554
13228
  :rtype: str
13555
13229
  """
13556
13230
  return self._Uin
@@ -13562,7 +13236,6 @@ class TemNamespaceInfo(AbstractModel):
13562
13236
  @property
13563
13237
  def SubAccountUin(self):
13564
13238
  """用户SubAccountUin
13565
- 注意:此字段可能返回 null,表示取不到有效值。
13566
13239
  :rtype: str
13567
13240
  """
13568
13241
  return self._SubAccountUin
@@ -13574,7 +13247,6 @@ class TemNamespaceInfo(AbstractModel):
13574
13247
  @property
13575
13248
  def ClusterId(self):
13576
13249
  """集群ID
13577
- 注意:此字段可能返回 null,表示取不到有效值。
13578
13250
  :rtype: str
13579
13251
  """
13580
13252
  return self._ClusterId
@@ -13586,7 +13258,6 @@ class TemNamespaceInfo(AbstractModel):
13586
13258
  @property
13587
13259
  def Tags(self):
13588
13260
  """标签
13589
- 注意:此字段可能返回 null,表示取不到有效值。
13590
13261
  :rtype: list of Tag
13591
13262
  """
13592
13263
  return self._Tags
@@ -13598,7 +13269,6 @@ class TemNamespaceInfo(AbstractModel):
13598
13269
  @property
13599
13270
  def HasAuthority(self):
13600
13271
  """资源是否有权限
13601
- 注意:此字段可能返回 null,表示取不到有效值。
13602
13272
  :rtype: bool
13603
13273
  """
13604
13274
  return self._HasAuthority
@@ -13610,7 +13280,6 @@ class TemNamespaceInfo(AbstractModel):
13610
13280
  @property
13611
13281
  def EnvType(self):
13612
13282
  """环境类型: test、pre、prod
13613
- 注意:此字段可能返回 null,表示取不到有效值。
13614
13283
  :rtype: str
13615
13284
  """
13616
13285
  return self._EnvType
@@ -13622,7 +13291,6 @@ class TemNamespaceInfo(AbstractModel):
13622
13291
  @property
13623
13292
  def RegionId(self):
13624
13293
  """地域码
13625
- 注意:此字段可能返回 null,表示取不到有效值。
13626
13294
  :rtype: str
13627
13295
  """
13628
13296
  return self._RegionId
@@ -13681,58 +13349,40 @@ class TemService(AbstractModel):
13681
13349
  def __init__(self):
13682
13350
  r"""
13683
13351
  :param _ApplicationId: 主键
13684
- 注意:此字段可能返回 null,表示取不到有效值。
13685
13352
  :type ApplicationId: str
13686
13353
  :param _ApplicationName: 服务名
13687
- 注意:此字段可能返回 null,表示取不到有效值。
13688
13354
  :type ApplicationName: str
13689
13355
  :param _Description: 描述
13690
- 注意:此字段可能返回 null,表示取不到有效值。
13691
13356
  :type Description: str
13692
13357
  :param _EnvironmentId: 命名空间id
13693
- 注意:此字段可能返回 null,表示取不到有效值。
13694
13358
  :type EnvironmentId: str
13695
13359
  :param _CreateDate: 创建时间
13696
- 注意:此字段可能返回 null,表示取不到有效值。
13697
13360
  :type CreateDate: str
13698
13361
  :param _ModifyDate: 修改时间
13699
- 注意:此字段可能返回 null,表示取不到有效值。
13700
13362
  :type ModifyDate: str
13701
13363
  :param _Modifier: 修改人
13702
- 注意:此字段可能返回 null,表示取不到有效值。
13703
13364
  :type Modifier: str
13704
13365
  :param _Creator: 创建者
13705
- 注意:此字段可能返回 null,表示取不到有效值。
13706
13366
  :type Creator: str
13707
13367
  :param _RepoType: tcr个人版or企业版
13708
- 注意:此字段可能返回 null,表示取不到有效值。
13709
13368
  :type RepoType: int
13710
13369
  :param _InstanceId: 企业版实例id
13711
- 注意:此字段可能返回 null,表示取不到有效值。
13712
13370
  :type InstanceId: str
13713
13371
  :param _RepoName: 镜像仓库名
13714
- 注意:此字段可能返回 null,表示取不到有效值。
13715
13372
  :type RepoName: str
13716
13373
  :param _CodingLanguage: 编程语言
13717
- 注意:此字段可能返回 null,表示取不到有效值。
13718
13374
  :type CodingLanguage: str
13719
13375
  :param _DeployMode: 部署方式
13720
- 注意:此字段可能返回 null,表示取不到有效值。
13721
13376
  :type DeployMode: str
13722
13377
  :param _EnvironmentName: 环境名称
13723
- 注意:此字段可能返回 null,表示取不到有效值。
13724
13378
  :type EnvironmentName: str
13725
13379
  :param _ActiveVersions: 服务当前运行环境的实例信息
13726
- 注意:此字段可能返回 null,表示取不到有效值。
13727
13380
  :type ActiveVersions: list of ServiceVersionBrief
13728
13381
  :param _EnableTracing: 是否启用链路追踪
13729
- 注意:此字段可能返回 null,表示取不到有效值。
13730
13382
  :type EnableTracing: int
13731
13383
  :param _Tags: 标签
13732
- 注意:此字段可能返回 null,表示取不到有效值。
13733
13384
  :type Tags: list of Tag
13734
13385
  :param _HasAuthority: 是否有资源权限
13735
- 注意:此字段可能返回 null,表示取不到有效值。
13736
13386
  :type HasAuthority: bool
13737
13387
  """
13738
13388
  self._ApplicationId = None
@@ -13757,7 +13407,6 @@ class TemService(AbstractModel):
13757
13407
  @property
13758
13408
  def ApplicationId(self):
13759
13409
  """主键
13760
- 注意:此字段可能返回 null,表示取不到有效值。
13761
13410
  :rtype: str
13762
13411
  """
13763
13412
  return self._ApplicationId
@@ -13769,7 +13418,6 @@ class TemService(AbstractModel):
13769
13418
  @property
13770
13419
  def ApplicationName(self):
13771
13420
  """服务名
13772
- 注意:此字段可能返回 null,表示取不到有效值。
13773
13421
  :rtype: str
13774
13422
  """
13775
13423
  return self._ApplicationName
@@ -13781,7 +13429,6 @@ class TemService(AbstractModel):
13781
13429
  @property
13782
13430
  def Description(self):
13783
13431
  """描述
13784
- 注意:此字段可能返回 null,表示取不到有效值。
13785
13432
  :rtype: str
13786
13433
  """
13787
13434
  return self._Description
@@ -13793,7 +13440,6 @@ class TemService(AbstractModel):
13793
13440
  @property
13794
13441
  def EnvironmentId(self):
13795
13442
  """命名空间id
13796
- 注意:此字段可能返回 null,表示取不到有效值。
13797
13443
  :rtype: str
13798
13444
  """
13799
13445
  return self._EnvironmentId
@@ -13805,7 +13451,6 @@ class TemService(AbstractModel):
13805
13451
  @property
13806
13452
  def CreateDate(self):
13807
13453
  """创建时间
13808
- 注意:此字段可能返回 null,表示取不到有效值。
13809
13454
  :rtype: str
13810
13455
  """
13811
13456
  return self._CreateDate
@@ -13817,7 +13462,6 @@ class TemService(AbstractModel):
13817
13462
  @property
13818
13463
  def ModifyDate(self):
13819
13464
  """修改时间
13820
- 注意:此字段可能返回 null,表示取不到有效值。
13821
13465
  :rtype: str
13822
13466
  """
13823
13467
  return self._ModifyDate
@@ -13829,7 +13473,6 @@ class TemService(AbstractModel):
13829
13473
  @property
13830
13474
  def Modifier(self):
13831
13475
  """修改人
13832
- 注意:此字段可能返回 null,表示取不到有效值。
13833
13476
  :rtype: str
13834
13477
  """
13835
13478
  return self._Modifier
@@ -13841,7 +13484,6 @@ class TemService(AbstractModel):
13841
13484
  @property
13842
13485
  def Creator(self):
13843
13486
  """创建者
13844
- 注意:此字段可能返回 null,表示取不到有效值。
13845
13487
  :rtype: str
13846
13488
  """
13847
13489
  return self._Creator
@@ -13853,7 +13495,6 @@ class TemService(AbstractModel):
13853
13495
  @property
13854
13496
  def RepoType(self):
13855
13497
  """tcr个人版or企业版
13856
- 注意:此字段可能返回 null,表示取不到有效值。
13857
13498
  :rtype: int
13858
13499
  """
13859
13500
  return self._RepoType
@@ -13865,7 +13506,6 @@ class TemService(AbstractModel):
13865
13506
  @property
13866
13507
  def InstanceId(self):
13867
13508
  """企业版实例id
13868
- 注意:此字段可能返回 null,表示取不到有效值。
13869
13509
  :rtype: str
13870
13510
  """
13871
13511
  return self._InstanceId
@@ -13877,7 +13517,6 @@ class TemService(AbstractModel):
13877
13517
  @property
13878
13518
  def RepoName(self):
13879
13519
  """镜像仓库名
13880
- 注意:此字段可能返回 null,表示取不到有效值。
13881
13520
  :rtype: str
13882
13521
  """
13883
13522
  return self._RepoName
@@ -13889,7 +13528,6 @@ class TemService(AbstractModel):
13889
13528
  @property
13890
13529
  def CodingLanguage(self):
13891
13530
  """编程语言
13892
- 注意:此字段可能返回 null,表示取不到有效值。
13893
13531
  :rtype: str
13894
13532
  """
13895
13533
  return self._CodingLanguage
@@ -13901,7 +13539,6 @@ class TemService(AbstractModel):
13901
13539
  @property
13902
13540
  def DeployMode(self):
13903
13541
  """部署方式
13904
- 注意:此字段可能返回 null,表示取不到有效值。
13905
13542
  :rtype: str
13906
13543
  """
13907
13544
  return self._DeployMode
@@ -13913,7 +13550,6 @@ class TemService(AbstractModel):
13913
13550
  @property
13914
13551
  def EnvironmentName(self):
13915
13552
  """环境名称
13916
- 注意:此字段可能返回 null,表示取不到有效值。
13917
13553
  :rtype: str
13918
13554
  """
13919
13555
  return self._EnvironmentName
@@ -13925,7 +13561,6 @@ class TemService(AbstractModel):
13925
13561
  @property
13926
13562
  def ActiveVersions(self):
13927
13563
  """服务当前运行环境的实例信息
13928
- 注意:此字段可能返回 null,表示取不到有效值。
13929
13564
  :rtype: list of ServiceVersionBrief
13930
13565
  """
13931
13566
  return self._ActiveVersions
@@ -13937,7 +13572,6 @@ class TemService(AbstractModel):
13937
13572
  @property
13938
13573
  def EnableTracing(self):
13939
13574
  """是否启用链路追踪
13940
- 注意:此字段可能返回 null,表示取不到有效值。
13941
13575
  :rtype: int
13942
13576
  """
13943
13577
  return self._EnableTracing
@@ -13949,7 +13583,6 @@ class TemService(AbstractModel):
13949
13583
  @property
13950
13584
  def Tags(self):
13951
13585
  """标签
13952
- 注意:此字段可能返回 null,表示取不到有效值。
13953
13586
  :rtype: list of Tag
13954
13587
  """
13955
13588
  return self._Tags
@@ -13961,7 +13594,6 @@ class TemService(AbstractModel):
13961
13594
  @property
13962
13595
  def HasAuthority(self):
13963
13596
  """是否有资源权限
13964
- 注意:此字段可能返回 null,表示取不到有效值。
13965
13597
  :rtype: bool
13966
13598
  """
13967
13599
  return self._HasAuthority
@@ -14063,43 +13695,33 @@ class TemServiceVersionInfo(AbstractModel):
14063
13695
  :param _ModifyDate: 修改时间
14064
13696
  :type ModifyDate: str
14065
13697
  :param _StorageMountConfs: 挂载配置
14066
- 注意:此字段可能返回 null,表示取不到有效值。
14067
13698
  :type StorageMountConfs: list of StorageMountConf
14068
13699
  :param _VersionName: 版本名称
14069
- 注意:此字段可能返回 null,表示取不到有效值。
14070
13700
  :type VersionName: str
14071
13701
  :param _LogOutputConf: 日志输出配置
14072
13702
  注意:此字段可能返回 null,表示取不到有效值。
14073
13703
  :type LogOutputConf: :class:`tencentcloud.tem.v20210701.models.LogOutputConf`
14074
13704
  :param _ApplicationName: 服务名称
14075
- 注意:此字段可能返回 null,表示取不到有效值。
14076
13705
  :type ApplicationName: str
14077
13706
  :param _ApplicationDescription: 服务描述
14078
- 注意:此字段可能返回 null,表示取不到有效值。
14079
13707
  :type ApplicationDescription: str
14080
13708
  :param _EnvironmentName: 环境名称
14081
- 注意:此字段可能返回 null,表示取不到有效值。
14082
13709
  :type EnvironmentName: str
14083
13710
  :param _EnvironmentId: 环境ID
14084
- 注意:此字段可能返回 null,表示取不到有效值。
14085
13711
  :type EnvironmentId: str
14086
13712
  :param _PublicDomain: 公网地址
14087
- 注意:此字段可能返回 null,表示取不到有效值。
14088
13713
  :type PublicDomain: str
14089
13714
  :param _EnablePublicAccess: 是否开通公网访问
14090
13715
  注意:此字段可能返回 null,表示取不到有效值。
14091
13716
  :type EnablePublicAccess: bool
14092
13717
  :param _CurrentInstances: 现有的实例
14093
- 注意:此字段可能返回 null,表示取不到有效值。
14094
13718
  :type CurrentInstances: int
14095
13719
  :param _ExpectedInstances: 期望的实例
14096
13720
  注意:此字段可能返回 null,表示取不到有效值。
14097
13721
  :type ExpectedInstances: int
14098
13722
  :param _CodingLanguage: 编程语言
14099
- 注意:此字段可能返回 null,表示取不到有效值。
14100
13723
  :type CodingLanguage: str
14101
13724
  :param _PkgName: 程序包名
14102
- 注意:此字段可能返回 null,表示取不到有效值。
14103
13725
  :type PkgName: str
14104
13726
  :param _EsEnable: 是否启用弹性伸缩
14105
13727
  注意:此字段可能返回 null,表示取不到有效值。
@@ -14108,40 +13730,30 @@ class TemServiceVersionInfo(AbstractModel):
14108
13730
  注意:此字段可能返回 null,表示取不到有效值。
14109
13731
  :type EsStrategy: int
14110
13732
  :param _ImageTag: 镜像tag
14111
- 注意:此字段可能返回 null,表示取不到有效值。
14112
13733
  :type ImageTag: str
14113
13734
  :param _LogEnable: 是否启用log
14114
13735
  注意:此字段可能返回 null,表示取不到有效值。
14115
13736
  :type LogEnable: int
14116
13737
  :param _MinAliveInstances: 最小实例数
14117
- 注意:此字段可能返回 null,表示取不到有效值。
14118
13738
  :type MinAliveInstances: str
14119
13739
  :param _SecurityGroupIds: 安全组
14120
- 注意:此字段可能返回 null,表示取不到有效值。
14121
13740
  :type SecurityGroupIds: list of str
14122
13741
  :param _ImageCommand: 镜像命令
14123
- 注意:此字段可能返回 null,表示取不到有效值。
14124
13742
  :type ImageCommand: str
14125
13743
  :param _ImageArgs: 镜像命令参数
14126
13744
  注意:此字段可能返回 null,表示取不到有效值。
14127
13745
  :type ImageArgs: list of str
14128
13746
  :param _UseRegistryDefaultConfig: 是否使用默认注册中心配置
14129
- 注意:此字段可能返回 null,表示取不到有效值。
14130
13747
  :type UseRegistryDefaultConfig: bool
14131
13748
  :param _Service: eks 访问设置
14132
- 注意:此字段可能返回 null,表示取不到有效值。
14133
13749
  :type Service: :class:`tencentcloud.tem.v20210701.models.EksService`
14134
13750
  :param _SettingConfs: 挂载配置信息
14135
- 注意:此字段可能返回 null,表示取不到有效值。
14136
13751
  :type SettingConfs: list of MountedSettingConf
14137
13752
  :param _LogConfs: log path数组信息
14138
- 注意:此字段可能返回 null,表示取不到有效值。
14139
13753
  :type LogConfs: list of str
14140
13754
  :param _PostStart: 启动后立即执行的脚本
14141
- 注意:此字段可能返回 null,表示取不到有效值。
14142
13755
  :type PostStart: str
14143
13756
  :param _PreStop: 停止前执行的脚本
14144
- 注意:此字段可能返回 null,表示取不到有效值。
14145
13757
  :type PreStop: str
14146
13758
  :param _Liveness: 存活探针配置
14147
13759
  注意:此字段可能返回 null,表示取不到有效值。
@@ -14150,46 +13762,32 @@ class TemServiceVersionInfo(AbstractModel):
14150
13762
  注意:此字段可能返回 null,表示取不到有效值。
14151
13763
  :type Readiness: :class:`tencentcloud.tem.v20210701.models.HealthCheckConfig`
14152
13764
  :param _HorizontalAutoscaler: 弹性策略
14153
- 注意:此字段可能返回 null,表示取不到有效值。
14154
13765
  :type HorizontalAutoscaler: list of HorizontalAutoscaler
14155
13766
  :param _CronHorizontalAutoscaler: 定时弹性策略
14156
- 注意:此字段可能返回 null,表示取不到有效值。
14157
13767
  :type CronHorizontalAutoscaler: list of CronHorizontalAutoscaler
14158
13768
  :param _Zones: 应用实际可用区
14159
- 注意:此字段可能返回 null,表示取不到有效值。
14160
13769
  :type Zones: list of str
14161
13770
  :param _LastDeployDate: 最新部署时间
14162
- 注意:此字段可能返回 null,表示取不到有效值。
14163
13771
  :type LastDeployDate: str
14164
13772
  :param _LastDeploySuccessDate: 最新部署成功时间
14165
- 注意:此字段可能返回 null,表示取不到有效值。
14166
13773
  :type LastDeploySuccessDate: str
14167
13774
  :param _NodeInfos: 应用所在node信息
14168
- 注意:此字段可能返回 null,表示取不到有效值。
14169
13775
  :type NodeInfos: list of NodeInfo
14170
13776
  :param _ImageType: image类型 -0 为demo -1为正常image
14171
- 注意:此字段可能返回 null,表示取不到有效值。
14172
13777
  :type ImageType: int
14173
13778
  :param _EnableTracing: 是否启用调用链组件
14174
- 注意:此字段可能返回 null,表示取不到有效值。
14175
13779
  :type EnableTracing: int
14176
13780
  :param _EnableTracingReport: 是否开启调用链上报,只有 EnableTracing=1 时生效(参数已弃用)
14177
- 注意:此字段可能返回 null,表示取不到有效值。
14178
13781
  :type EnableTracingReport: int
14179
13782
  :param _RepoType: 镜像类型:0-个人镜像、1-企业镜像、2-公有镜像
14180
- 注意:此字段可能返回 null,表示取不到有效值。
14181
13783
  :type RepoType: int
14182
13784
  :param _BatchDeployStatus: 分批发布子状态:batch_updating、batch_updating_waiting_confirm
14183
- 注意:此字段可能返回 null,表示取不到有效值。
14184
13785
  :type BatchDeployStatus: str
14185
13786
  :param _ApmInstanceId: APM 资源 ID
14186
- 注意:此字段可能返回 null,表示取不到有效值。
14187
13787
  :type ApmInstanceId: str
14188
13788
  :param _WorkloadInfo: 工作负载信息
14189
- 注意:此字段可能返回 null,表示取不到有效值。
14190
13789
  :type WorkloadInfo: :class:`tencentcloud.tem.v20210701.models.WorkloadInfo`
14191
13790
  :param _SpeedUp: 是否启用应用加速
14192
- 注意:此字段可能返回 null,表示取不到有效值。
14193
13791
  :type SpeedUp: bool
14194
13792
  :param _StartupProbe: 启动检测探针配置
14195
13793
  注意:此字段可能返回 null,表示取不到有效值。
@@ -14197,71 +13795,52 @@ class TemServiceVersionInfo(AbstractModel):
14197
13795
  :param _OsFlavour: 操作系统版本,可选参数:
14198
13796
  - ALPINE
14199
13797
  - CENTOS
14200
- 注意:此字段可能返回 null,表示取不到有效值。
14201
13798
  :type OsFlavour: str
14202
13799
  :param _RepoServer: 镜像仓库server
14203
- 注意:此字段可能返回 null,表示取不到有效值。
14204
13800
  :type RepoServer: str
14205
13801
  :param _UnderDeploying: 是否正在发布中
14206
- 注意:此字段可能返回 null,表示取不到有效值。
14207
13802
  :type UnderDeploying: bool
14208
13803
  :param _EnablePrometheusConf: 监控业务指标监控
14209
13804
  注意:此字段可能返回 null,表示取不到有效值。
14210
13805
  :type EnablePrometheusConf: :class:`tencentcloud.tem.v20210701.models.EnablePrometheusConf`
14211
13806
  :param _StoppedManually: 是否为手动停止
14212
- 注意:此字段可能返回 null,表示取不到有效值。
14213
13807
  :type StoppedManually: bool
14214
13808
  :param _TcrInstanceId: tcr实例ID
14215
- 注意:此字段可能返回 null,表示取不到有效值。
14216
13809
  :type TcrInstanceId: str
14217
13810
  :param _EnableMetrics: 1:开始自动metrics采集(open-telemetry);
14218
13811
  0:关闭metrics采集;
14219
- 注意:此字段可能返回 null,表示取不到有效值。
14220
13812
  :type EnableMetrics: int
14221
13813
  :param _AppId: 用户AppId
14222
- 注意:此字段可能返回 null,表示取不到有效值。
14223
13814
  :type AppId: str
14224
13815
  :param _SubAccountUin: 用户SubAccountUin
14225
- 注意:此字段可能返回 null,表示取不到有效值。
14226
13816
  :type SubAccountUin: str
14227
13817
  :param _Uin: 用户Uin
14228
- 注意:此字段可能返回 null,表示取不到有效值。
14229
13818
  :type Uin: str
14230
13819
  :param _Region: 地域
14231
- 注意:此字段可能返回 null,表示取不到有效值。
14232
13820
  :type Region: str
14233
13821
  :param _GroupId: 应用分组ID
14234
- 注意:此字段可能返回 null,表示取不到有效值。
14235
13822
  :type GroupId: str
14236
13823
  :param _EnableRegistry: 是否启用注册中心
14237
- 注意:此字段可能返回 null,表示取不到有效值。
14238
13824
  :type EnableRegistry: int
14239
13825
  :param _AutoscalerList: 弹性伸缩数组
14240
- 注意:此字段可能返回 null,表示取不到有效值。
14241
13826
  :type AutoscalerList: list of Autoscaler
14242
13827
  :param _Modifier: 修改人
14243
- 注意:此字段可能返回 null,表示取不到有效值。
14244
13828
  :type Modifier: str
14245
13829
  :param _Creator: 创建人
14246
- 注意:此字段可能返回 null,表示取不到有效值。
14247
13830
  :type Creator: str
14248
13831
  :param _DeployStrategyConf: 部署策略
14249
13832
  注意:此字段可能返回 null,表示取不到有效值。
14250
13833
  :type DeployStrategyConf: :class:`tencentcloud.tem.v20210701.models.DeployStrategyConf`
14251
13834
  :param _PodList: 实例列表
14252
- 注意:此字段可能返回 null,表示取不到有效值。
14253
13835
  :type PodList: :class:`tencentcloud.tem.v20210701.models.DescribeRunPodPage`
14254
13836
  :param _ConfEdited: 发布时配置是否有修改
14255
13837
  注意:此字段可能返回 null,表示取不到有效值。
14256
13838
  :type ConfEdited: bool
14257
13839
  :param _Tags: 标签
14258
- 注意:此字段可能返回 null,表示取不到有效值。
14259
13840
  :type Tags: list of Tag
14260
13841
  :param _PreStopEncoded: 是否编码
14261
- 注意:此字段可能返回 null,表示取不到有效值。
14262
13842
  :type PreStopEncoded: str
14263
13843
  :param _PostStartEncoded: 是否编码
14264
- 注意:此字段可能返回 null,表示取不到有效值。
14265
13844
  :type PostStartEncoded: str
14266
13845
  """
14267
13846
  self._VersionId = None
@@ -14599,7 +14178,6 @@ class TemServiceVersionInfo(AbstractModel):
14599
14178
  @property
14600
14179
  def StorageMountConfs(self):
14601
14180
  """挂载配置
14602
- 注意:此字段可能返回 null,表示取不到有效值。
14603
14181
  :rtype: list of StorageMountConf
14604
14182
  """
14605
14183
  return self._StorageMountConfs
@@ -14611,7 +14189,6 @@ class TemServiceVersionInfo(AbstractModel):
14611
14189
  @property
14612
14190
  def VersionName(self):
14613
14191
  """版本名称
14614
- 注意:此字段可能返回 null,表示取不到有效值。
14615
14192
  :rtype: str
14616
14193
  """
14617
14194
  return self._VersionName
@@ -14635,7 +14212,6 @@ class TemServiceVersionInfo(AbstractModel):
14635
14212
  @property
14636
14213
  def ApplicationName(self):
14637
14214
  """服务名称
14638
- 注意:此字段可能返回 null,表示取不到有效值。
14639
14215
  :rtype: str
14640
14216
  """
14641
14217
  return self._ApplicationName
@@ -14647,7 +14223,6 @@ class TemServiceVersionInfo(AbstractModel):
14647
14223
  @property
14648
14224
  def ApplicationDescription(self):
14649
14225
  """服务描述
14650
- 注意:此字段可能返回 null,表示取不到有效值。
14651
14226
  :rtype: str
14652
14227
  """
14653
14228
  return self._ApplicationDescription
@@ -14659,7 +14234,6 @@ class TemServiceVersionInfo(AbstractModel):
14659
14234
  @property
14660
14235
  def EnvironmentName(self):
14661
14236
  """环境名称
14662
- 注意:此字段可能返回 null,表示取不到有效值。
14663
14237
  :rtype: str
14664
14238
  """
14665
14239
  return self._EnvironmentName
@@ -14671,7 +14245,6 @@ class TemServiceVersionInfo(AbstractModel):
14671
14245
  @property
14672
14246
  def EnvironmentId(self):
14673
14247
  """环境ID
14674
- 注意:此字段可能返回 null,表示取不到有效值。
14675
14248
  :rtype: str
14676
14249
  """
14677
14250
  return self._EnvironmentId
@@ -14683,7 +14256,6 @@ class TemServiceVersionInfo(AbstractModel):
14683
14256
  @property
14684
14257
  def PublicDomain(self):
14685
14258
  """公网地址
14686
- 注意:此字段可能返回 null,表示取不到有效值。
14687
14259
  :rtype: str
14688
14260
  """
14689
14261
  return self._PublicDomain
@@ -14707,7 +14279,6 @@ class TemServiceVersionInfo(AbstractModel):
14707
14279
  @property
14708
14280
  def CurrentInstances(self):
14709
14281
  """现有的实例
14710
- 注意:此字段可能返回 null,表示取不到有效值。
14711
14282
  :rtype: int
14712
14283
  """
14713
14284
  return self._CurrentInstances
@@ -14731,7 +14302,6 @@ class TemServiceVersionInfo(AbstractModel):
14731
14302
  @property
14732
14303
  def CodingLanguage(self):
14733
14304
  """编程语言
14734
- 注意:此字段可能返回 null,表示取不到有效值。
14735
14305
  :rtype: str
14736
14306
  """
14737
14307
  return self._CodingLanguage
@@ -14743,7 +14313,6 @@ class TemServiceVersionInfo(AbstractModel):
14743
14313
  @property
14744
14314
  def PkgName(self):
14745
14315
  """程序包名
14746
- 注意:此字段可能返回 null,表示取不到有效值。
14747
14316
  :rtype: str
14748
14317
  """
14749
14318
  return self._PkgName
@@ -14779,7 +14348,6 @@ class TemServiceVersionInfo(AbstractModel):
14779
14348
  @property
14780
14349
  def ImageTag(self):
14781
14350
  """镜像tag
14782
- 注意:此字段可能返回 null,表示取不到有效值。
14783
14351
  :rtype: str
14784
14352
  """
14785
14353
  return self._ImageTag
@@ -14803,7 +14371,6 @@ class TemServiceVersionInfo(AbstractModel):
14803
14371
  @property
14804
14372
  def MinAliveInstances(self):
14805
14373
  """最小实例数
14806
- 注意:此字段可能返回 null,表示取不到有效值。
14807
14374
  :rtype: str
14808
14375
  """
14809
14376
  return self._MinAliveInstances
@@ -14815,7 +14382,6 @@ class TemServiceVersionInfo(AbstractModel):
14815
14382
  @property
14816
14383
  def SecurityGroupIds(self):
14817
14384
  """安全组
14818
- 注意:此字段可能返回 null,表示取不到有效值。
14819
14385
  :rtype: list of str
14820
14386
  """
14821
14387
  return self._SecurityGroupIds
@@ -14827,7 +14393,6 @@ class TemServiceVersionInfo(AbstractModel):
14827
14393
  @property
14828
14394
  def ImageCommand(self):
14829
14395
  """镜像命令
14830
- 注意:此字段可能返回 null,表示取不到有效值。
14831
14396
  :rtype: str
14832
14397
  """
14833
14398
  return self._ImageCommand
@@ -14851,7 +14416,6 @@ class TemServiceVersionInfo(AbstractModel):
14851
14416
  @property
14852
14417
  def UseRegistryDefaultConfig(self):
14853
14418
  """是否使用默认注册中心配置
14854
- 注意:此字段可能返回 null,表示取不到有效值。
14855
14419
  :rtype: bool
14856
14420
  """
14857
14421
  return self._UseRegistryDefaultConfig
@@ -14863,7 +14427,6 @@ class TemServiceVersionInfo(AbstractModel):
14863
14427
  @property
14864
14428
  def Service(self):
14865
14429
  """eks 访问设置
14866
- 注意:此字段可能返回 null,表示取不到有效值。
14867
14430
  :rtype: :class:`tencentcloud.tem.v20210701.models.EksService`
14868
14431
  """
14869
14432
  return self._Service
@@ -14875,7 +14438,6 @@ class TemServiceVersionInfo(AbstractModel):
14875
14438
  @property
14876
14439
  def SettingConfs(self):
14877
14440
  """挂载配置信息
14878
- 注意:此字段可能返回 null,表示取不到有效值。
14879
14441
  :rtype: list of MountedSettingConf
14880
14442
  """
14881
14443
  return self._SettingConfs
@@ -14887,7 +14449,6 @@ class TemServiceVersionInfo(AbstractModel):
14887
14449
  @property
14888
14450
  def LogConfs(self):
14889
14451
  """log path数组信息
14890
- 注意:此字段可能返回 null,表示取不到有效值。
14891
14452
  :rtype: list of str
14892
14453
  """
14893
14454
  return self._LogConfs
@@ -14899,7 +14460,6 @@ class TemServiceVersionInfo(AbstractModel):
14899
14460
  @property
14900
14461
  def PostStart(self):
14901
14462
  """启动后立即执行的脚本
14902
- 注意:此字段可能返回 null,表示取不到有效值。
14903
14463
  :rtype: str
14904
14464
  """
14905
14465
  return self._PostStart
@@ -14911,7 +14471,6 @@ class TemServiceVersionInfo(AbstractModel):
14911
14471
  @property
14912
14472
  def PreStop(self):
14913
14473
  """停止前执行的脚本
14914
- 注意:此字段可能返回 null,表示取不到有效值。
14915
14474
  :rtype: str
14916
14475
  """
14917
14476
  return self._PreStop
@@ -14947,7 +14506,6 @@ class TemServiceVersionInfo(AbstractModel):
14947
14506
  @property
14948
14507
  def HorizontalAutoscaler(self):
14949
14508
  """弹性策略
14950
- 注意:此字段可能返回 null,表示取不到有效值。
14951
14509
  :rtype: list of HorizontalAutoscaler
14952
14510
  """
14953
14511
  return self._HorizontalAutoscaler
@@ -14959,7 +14517,6 @@ class TemServiceVersionInfo(AbstractModel):
14959
14517
  @property
14960
14518
  def CronHorizontalAutoscaler(self):
14961
14519
  """定时弹性策略
14962
- 注意:此字段可能返回 null,表示取不到有效值。
14963
14520
  :rtype: list of CronHorizontalAutoscaler
14964
14521
  """
14965
14522
  return self._CronHorizontalAutoscaler
@@ -14971,7 +14528,6 @@ class TemServiceVersionInfo(AbstractModel):
14971
14528
  @property
14972
14529
  def Zones(self):
14973
14530
  """应用实际可用区
14974
- 注意:此字段可能返回 null,表示取不到有效值。
14975
14531
  :rtype: list of str
14976
14532
  """
14977
14533
  return self._Zones
@@ -14983,7 +14539,6 @@ class TemServiceVersionInfo(AbstractModel):
14983
14539
  @property
14984
14540
  def LastDeployDate(self):
14985
14541
  """最新部署时间
14986
- 注意:此字段可能返回 null,表示取不到有效值。
14987
14542
  :rtype: str
14988
14543
  """
14989
14544
  return self._LastDeployDate
@@ -14995,7 +14550,6 @@ class TemServiceVersionInfo(AbstractModel):
14995
14550
  @property
14996
14551
  def LastDeploySuccessDate(self):
14997
14552
  """最新部署成功时间
14998
- 注意:此字段可能返回 null,表示取不到有效值。
14999
14553
  :rtype: str
15000
14554
  """
15001
14555
  return self._LastDeploySuccessDate
@@ -15007,7 +14561,6 @@ class TemServiceVersionInfo(AbstractModel):
15007
14561
  @property
15008
14562
  def NodeInfos(self):
15009
14563
  """应用所在node信息
15010
- 注意:此字段可能返回 null,表示取不到有效值。
15011
14564
  :rtype: list of NodeInfo
15012
14565
  """
15013
14566
  return self._NodeInfos
@@ -15019,7 +14572,6 @@ class TemServiceVersionInfo(AbstractModel):
15019
14572
  @property
15020
14573
  def ImageType(self):
15021
14574
  """image类型 -0 为demo -1为正常image
15022
- 注意:此字段可能返回 null,表示取不到有效值。
15023
14575
  :rtype: int
15024
14576
  """
15025
14577
  return self._ImageType
@@ -15031,7 +14583,6 @@ class TemServiceVersionInfo(AbstractModel):
15031
14583
  @property
15032
14584
  def EnableTracing(self):
15033
14585
  """是否启用调用链组件
15034
- 注意:此字段可能返回 null,表示取不到有效值。
15035
14586
  :rtype: int
15036
14587
  """
15037
14588
  return self._EnableTracing
@@ -15043,7 +14594,6 @@ class TemServiceVersionInfo(AbstractModel):
15043
14594
  @property
15044
14595
  def EnableTracingReport(self):
15045
14596
  """是否开启调用链上报,只有 EnableTracing=1 时生效(参数已弃用)
15046
- 注意:此字段可能返回 null,表示取不到有效值。
15047
14597
  :rtype: int
15048
14598
  """
15049
14599
  return self._EnableTracingReport
@@ -15055,7 +14605,6 @@ class TemServiceVersionInfo(AbstractModel):
15055
14605
  @property
15056
14606
  def RepoType(self):
15057
14607
  """镜像类型:0-个人镜像、1-企业镜像、2-公有镜像
15058
- 注意:此字段可能返回 null,表示取不到有效值。
15059
14608
  :rtype: int
15060
14609
  """
15061
14610
  return self._RepoType
@@ -15067,7 +14616,6 @@ class TemServiceVersionInfo(AbstractModel):
15067
14616
  @property
15068
14617
  def BatchDeployStatus(self):
15069
14618
  """分批发布子状态:batch_updating、batch_updating_waiting_confirm
15070
- 注意:此字段可能返回 null,表示取不到有效值。
15071
14619
  :rtype: str
15072
14620
  """
15073
14621
  return self._BatchDeployStatus
@@ -15079,7 +14627,6 @@ class TemServiceVersionInfo(AbstractModel):
15079
14627
  @property
15080
14628
  def ApmInstanceId(self):
15081
14629
  """APM 资源 ID
15082
- 注意:此字段可能返回 null,表示取不到有效值。
15083
14630
  :rtype: str
15084
14631
  """
15085
14632
  return self._ApmInstanceId
@@ -15091,7 +14638,6 @@ class TemServiceVersionInfo(AbstractModel):
15091
14638
  @property
15092
14639
  def WorkloadInfo(self):
15093
14640
  """工作负载信息
15094
- 注意:此字段可能返回 null,表示取不到有效值。
15095
14641
  :rtype: :class:`tencentcloud.tem.v20210701.models.WorkloadInfo`
15096
14642
  """
15097
14643
  return self._WorkloadInfo
@@ -15103,7 +14649,6 @@ class TemServiceVersionInfo(AbstractModel):
15103
14649
  @property
15104
14650
  def SpeedUp(self):
15105
14651
  """是否启用应用加速
15106
- 注意:此字段可能返回 null,表示取不到有效值。
15107
14652
  :rtype: bool
15108
14653
  """
15109
14654
  return self._SpeedUp
@@ -15129,7 +14674,6 @@ class TemServiceVersionInfo(AbstractModel):
15129
14674
  """操作系统版本,可选参数:
15130
14675
  - ALPINE
15131
14676
  - CENTOS
15132
- 注意:此字段可能返回 null,表示取不到有效值。
15133
14677
  :rtype: str
15134
14678
  """
15135
14679
  return self._OsFlavour
@@ -15141,7 +14685,6 @@ class TemServiceVersionInfo(AbstractModel):
15141
14685
  @property
15142
14686
  def RepoServer(self):
15143
14687
  """镜像仓库server
15144
- 注意:此字段可能返回 null,表示取不到有效值。
15145
14688
  :rtype: str
15146
14689
  """
15147
14690
  return self._RepoServer
@@ -15153,7 +14696,6 @@ class TemServiceVersionInfo(AbstractModel):
15153
14696
  @property
15154
14697
  def UnderDeploying(self):
15155
14698
  """是否正在发布中
15156
- 注意:此字段可能返回 null,表示取不到有效值。
15157
14699
  :rtype: bool
15158
14700
  """
15159
14701
  return self._UnderDeploying
@@ -15177,7 +14719,6 @@ class TemServiceVersionInfo(AbstractModel):
15177
14719
  @property
15178
14720
  def StoppedManually(self):
15179
14721
  """是否为手动停止
15180
- 注意:此字段可能返回 null,表示取不到有效值。
15181
14722
  :rtype: bool
15182
14723
  """
15183
14724
  return self._StoppedManually
@@ -15189,7 +14730,6 @@ class TemServiceVersionInfo(AbstractModel):
15189
14730
  @property
15190
14731
  def TcrInstanceId(self):
15191
14732
  """tcr实例ID
15192
- 注意:此字段可能返回 null,表示取不到有效值。
15193
14733
  :rtype: str
15194
14734
  """
15195
14735
  return self._TcrInstanceId
@@ -15202,7 +14742,6 @@ class TemServiceVersionInfo(AbstractModel):
15202
14742
  def EnableMetrics(self):
15203
14743
  """1:开始自动metrics采集(open-telemetry);
15204
14744
  0:关闭metrics采集;
15205
- 注意:此字段可能返回 null,表示取不到有效值。
15206
14745
  :rtype: int
15207
14746
  """
15208
14747
  return self._EnableMetrics
@@ -15214,7 +14753,6 @@ class TemServiceVersionInfo(AbstractModel):
15214
14753
  @property
15215
14754
  def AppId(self):
15216
14755
  """用户AppId
15217
- 注意:此字段可能返回 null,表示取不到有效值。
15218
14756
  :rtype: str
15219
14757
  """
15220
14758
  return self._AppId
@@ -15226,7 +14764,6 @@ class TemServiceVersionInfo(AbstractModel):
15226
14764
  @property
15227
14765
  def SubAccountUin(self):
15228
14766
  """用户SubAccountUin
15229
- 注意:此字段可能返回 null,表示取不到有效值。
15230
14767
  :rtype: str
15231
14768
  """
15232
14769
  return self._SubAccountUin
@@ -15238,7 +14775,6 @@ class TemServiceVersionInfo(AbstractModel):
15238
14775
  @property
15239
14776
  def Uin(self):
15240
14777
  """用户Uin
15241
- 注意:此字段可能返回 null,表示取不到有效值。
15242
14778
  :rtype: str
15243
14779
  """
15244
14780
  return self._Uin
@@ -15250,7 +14786,6 @@ class TemServiceVersionInfo(AbstractModel):
15250
14786
  @property
15251
14787
  def Region(self):
15252
14788
  """地域
15253
- 注意:此字段可能返回 null,表示取不到有效值。
15254
14789
  :rtype: str
15255
14790
  """
15256
14791
  return self._Region
@@ -15262,7 +14797,6 @@ class TemServiceVersionInfo(AbstractModel):
15262
14797
  @property
15263
14798
  def GroupId(self):
15264
14799
  """应用分组ID
15265
- 注意:此字段可能返回 null,表示取不到有效值。
15266
14800
  :rtype: str
15267
14801
  """
15268
14802
  return self._GroupId
@@ -15274,7 +14808,6 @@ class TemServiceVersionInfo(AbstractModel):
15274
14808
  @property
15275
14809
  def EnableRegistry(self):
15276
14810
  """是否启用注册中心
15277
- 注意:此字段可能返回 null,表示取不到有效值。
15278
14811
  :rtype: int
15279
14812
  """
15280
14813
  return self._EnableRegistry
@@ -15286,7 +14819,6 @@ class TemServiceVersionInfo(AbstractModel):
15286
14819
  @property
15287
14820
  def AutoscalerList(self):
15288
14821
  """弹性伸缩数组
15289
- 注意:此字段可能返回 null,表示取不到有效值。
15290
14822
  :rtype: list of Autoscaler
15291
14823
  """
15292
14824
  return self._AutoscalerList
@@ -15298,7 +14830,6 @@ class TemServiceVersionInfo(AbstractModel):
15298
14830
  @property
15299
14831
  def Modifier(self):
15300
14832
  """修改人
15301
- 注意:此字段可能返回 null,表示取不到有效值。
15302
14833
  :rtype: str
15303
14834
  """
15304
14835
  return self._Modifier
@@ -15310,7 +14841,6 @@ class TemServiceVersionInfo(AbstractModel):
15310
14841
  @property
15311
14842
  def Creator(self):
15312
14843
  """创建人
15313
- 注意:此字段可能返回 null,表示取不到有效值。
15314
14844
  :rtype: str
15315
14845
  """
15316
14846
  return self._Creator
@@ -15334,7 +14864,6 @@ class TemServiceVersionInfo(AbstractModel):
15334
14864
  @property
15335
14865
  def PodList(self):
15336
14866
  """实例列表
15337
- 注意:此字段可能返回 null,表示取不到有效值。
15338
14867
  :rtype: :class:`tencentcloud.tem.v20210701.models.DescribeRunPodPage`
15339
14868
  """
15340
14869
  return self._PodList
@@ -15358,7 +14887,6 @@ class TemServiceVersionInfo(AbstractModel):
15358
14887
  @property
15359
14888
  def Tags(self):
15360
14889
  """标签
15361
- 注意:此字段可能返回 null,表示取不到有效值。
15362
14890
  :rtype: list of Tag
15363
14891
  """
15364
14892
  return self._Tags
@@ -15370,7 +14898,6 @@ class TemServiceVersionInfo(AbstractModel):
15370
14898
  @property
15371
14899
  def PreStopEncoded(self):
15372
14900
  """是否编码
15373
- 注意:此字段可能返回 null,表示取不到有效值。
15374
14901
  :rtype: str
15375
14902
  """
15376
14903
  return self._PreStopEncoded
@@ -15382,7 +14909,6 @@ class TemServiceVersionInfo(AbstractModel):
15382
14909
  @property
15383
14910
  def PostStartEncoded(self):
15384
14911
  """是否编码
15385
- 注意:此字段可能返回 null,表示取不到有效值。
15386
14912
  :rtype: str
15387
14913
  """
15388
14914
  return self._PostStartEncoded
@@ -15564,13 +15090,10 @@ class UseDefaultRepoParameters(AbstractModel):
15564
15090
  def __init__(self):
15565
15091
  r"""
15566
15092
  :param _EnterpriseInstanceName: 企业版实例名
15567
- 注意:此字段可能返回 null,表示取不到有效值。
15568
15093
  :type EnterpriseInstanceName: str
15569
15094
  :param _EnterpriseInstanceChargeType: 企业版收费类型 0 按量收费 1 包年包月
15570
- 注意:此字段可能返回 null,表示取不到有效值。
15571
15095
  :type EnterpriseInstanceChargeType: int
15572
15096
  :param _EnterpriseInstanceType: 企业版规格:basic-基础班 ,standard-标准版,premium-高级版
15573
- 注意:此字段可能返回 null,表示取不到有效值。
15574
15097
  :type EnterpriseInstanceType: str
15575
15098
  """
15576
15099
  self._EnterpriseInstanceName = None
@@ -15580,7 +15103,6 @@ class UseDefaultRepoParameters(AbstractModel):
15580
15103
  @property
15581
15104
  def EnterpriseInstanceName(self):
15582
15105
  """企业版实例名
15583
- 注意:此字段可能返回 null,表示取不到有效值。
15584
15106
  :rtype: str
15585
15107
  """
15586
15108
  return self._EnterpriseInstanceName
@@ -15592,7 +15114,6 @@ class UseDefaultRepoParameters(AbstractModel):
15592
15114
  @property
15593
15115
  def EnterpriseInstanceChargeType(self):
15594
15116
  """企业版收费类型 0 按量收费 1 包年包月
15595
- 注意:此字段可能返回 null,表示取不到有效值。
15596
15117
  :rtype: int
15597
15118
  """
15598
15119
  return self._EnterpriseInstanceChargeType
@@ -15604,7 +15125,6 @@ class UseDefaultRepoParameters(AbstractModel):
15604
15125
  @property
15605
15126
  def EnterpriseInstanceType(self):
15606
15127
  """企业版规格:basic-基础班 ,standard-标准版,premium-高级版
15607
- 注意:此字段可能返回 null,表示取不到有效值。
15608
15128
  :rtype: str
15609
15129
  """
15610
15130
  return self._EnterpriseInstanceType
@@ -15636,31 +15156,22 @@ class WorkloadInfo(AbstractModel):
15636
15156
  def __init__(self):
15637
15157
  r"""
15638
15158
  :param _ClusterId: 资源 ID
15639
- 注意:此字段可能返回 null,表示取不到有效值。
15640
15159
  :type ClusterId: str
15641
15160
  :param _ApplicationName: 应用名
15642
- 注意:此字段可能返回 null,表示取不到有效值。
15643
15161
  :type ApplicationName: str
15644
15162
  :param _VersionName: 版本名称
15645
- 注意:此字段可能返回 null,表示取不到有效值。
15646
15163
  :type VersionName: str
15647
15164
  :param _ReadyReplicas: Ready实例数
15648
- 注意:此字段可能返回 null,表示取不到有效值。
15649
15165
  :type ReadyReplicas: int
15650
15166
  :param _Replicas: 实例数
15651
- 注意:此字段可能返回 null,表示取不到有效值。
15652
15167
  :type Replicas: int
15653
15168
  :param _UpdatedReplicas: Updated实例数
15654
- 注意:此字段可能返回 null,表示取不到有效值。
15655
15169
  :type UpdatedReplicas: int
15656
15170
  :param _UpdatedReadyReplicas: UpdatedReady实例数
15657
- 注意:此字段可能返回 null,表示取不到有效值。
15658
15171
  :type UpdatedReadyReplicas: int
15659
15172
  :param _UpdateRevision: 更新版本
15660
- 注意:此字段可能返回 null,表示取不到有效值。
15661
15173
  :type UpdateRevision: str
15662
15174
  :param _CurrentRevision: 当前版本
15663
- 注意:此字段可能返回 null,表示取不到有效值。
15664
15175
  :type CurrentRevision: str
15665
15176
  """
15666
15177
  self._ClusterId = None
@@ -15676,7 +15187,6 @@ class WorkloadInfo(AbstractModel):
15676
15187
  @property
15677
15188
  def ClusterId(self):
15678
15189
  """资源 ID
15679
- 注意:此字段可能返回 null,表示取不到有效值。
15680
15190
  :rtype: str
15681
15191
  """
15682
15192
  return self._ClusterId
@@ -15688,7 +15198,6 @@ class WorkloadInfo(AbstractModel):
15688
15198
  @property
15689
15199
  def ApplicationName(self):
15690
15200
  """应用名
15691
- 注意:此字段可能返回 null,表示取不到有效值。
15692
15201
  :rtype: str
15693
15202
  """
15694
15203
  return self._ApplicationName
@@ -15700,7 +15209,6 @@ class WorkloadInfo(AbstractModel):
15700
15209
  @property
15701
15210
  def VersionName(self):
15702
15211
  """版本名称
15703
- 注意:此字段可能返回 null,表示取不到有效值。
15704
15212
  :rtype: str
15705
15213
  """
15706
15214
  return self._VersionName
@@ -15712,7 +15220,6 @@ class WorkloadInfo(AbstractModel):
15712
15220
  @property
15713
15221
  def ReadyReplicas(self):
15714
15222
  """Ready实例数
15715
- 注意:此字段可能返回 null,表示取不到有效值。
15716
15223
  :rtype: int
15717
15224
  """
15718
15225
  return self._ReadyReplicas
@@ -15724,7 +15231,6 @@ class WorkloadInfo(AbstractModel):
15724
15231
  @property
15725
15232
  def Replicas(self):
15726
15233
  """实例数
15727
- 注意:此字段可能返回 null,表示取不到有效值。
15728
15234
  :rtype: int
15729
15235
  """
15730
15236
  return self._Replicas
@@ -15736,7 +15242,6 @@ class WorkloadInfo(AbstractModel):
15736
15242
  @property
15737
15243
  def UpdatedReplicas(self):
15738
15244
  """Updated实例数
15739
- 注意:此字段可能返回 null,表示取不到有效值。
15740
15245
  :rtype: int
15741
15246
  """
15742
15247
  return self._UpdatedReplicas
@@ -15748,7 +15253,6 @@ class WorkloadInfo(AbstractModel):
15748
15253
  @property
15749
15254
  def UpdatedReadyReplicas(self):
15750
15255
  """UpdatedReady实例数
15751
- 注意:此字段可能返回 null,表示取不到有效值。
15752
15256
  :rtype: int
15753
15257
  """
15754
15258
  return self._UpdatedReadyReplicas
@@ -15760,7 +15264,6 @@ class WorkloadInfo(AbstractModel):
15760
15264
  @property
15761
15265
  def UpdateRevision(self):
15762
15266
  """更新版本
15763
- 注意:此字段可能返回 null,表示取不到有效值。
15764
15267
  :rtype: str
15765
15268
  """
15766
15269
  return self._UpdateRevision
@@ -15772,7 +15275,6 @@ class WorkloadInfo(AbstractModel):
15772
15275
  @property
15773
15276
  def CurrentRevision(self):
15774
15277
  """当前版本
15775
- 注意:此字段可能返回 null,表示取不到有效值。
15776
15278
  :rtype: str
15777
15279
  """
15778
15280
  return self._CurrentRevision