tencentcloud-sdk-python 3.0.1300__py2.py3-none-any.whl → 3.0.1302__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.
@@ -12010,7 +12010,7 @@ class ScoreInfo(AbstractModel):
12010
12010
  :type PageUv: str
12011
12011
  :param _ApiDuration: 请求次数
12012
12012
  :type ApiDuration: str
12013
- :param _Score: 分数
12013
+ :param _Score: 项目总分
12014
12014
  :type Score: str
12015
12015
  :param _PageError: error
12016
12016
  :type PageError: str
@@ -12023,6 +12023,18 @@ class ScoreInfo(AbstractModel):
12023
12023
  :param _CreateTime: 时间
12024
12024
  注意:此字段可能返回 null,表示取不到有效值。
12025
12025
  :type CreateTime: str
12026
+ :param _PagePerformanceScore: 页面性能评分
12027
+ :type PagePerformanceScore: str
12028
+ :param _JsErrorScore: js错误评分
12029
+ :type JsErrorScore: str
12030
+ :param _ApiPerformanceScore: API性能评分
12031
+ :type ApiPerformanceScore: str
12032
+ :param _ApiAvaliableScore: API可用性评分
12033
+ :type ApiAvaliableScore: str
12034
+ :param _StaticPerformanceScore: 静态资源性能评分
12035
+ :type StaticPerformanceScore: str
12036
+ :param _StaticAvaliableScore: 静态资源可用性评分
12037
+ :type StaticAvaliableScore: str
12026
12038
  """
12027
12039
  self._StaticDuration = None
12028
12040
  self._PagePv = None
@@ -12038,6 +12050,12 @@ class ScoreInfo(AbstractModel):
12038
12050
  self._RecordNum = None
12039
12051
  self._PageDuration = None
12040
12052
  self._CreateTime = None
12053
+ self._PagePerformanceScore = None
12054
+ self._JsErrorScore = None
12055
+ self._ApiPerformanceScore = None
12056
+ self._ApiAvaliableScore = None
12057
+ self._StaticPerformanceScore = None
12058
+ self._StaticAvaliableScore = None
12041
12059
 
12042
12060
  @property
12043
12061
  def StaticDuration(self):
@@ -12129,7 +12147,7 @@ class ScoreInfo(AbstractModel):
12129
12147
 
12130
12148
  @property
12131
12149
  def Score(self):
12132
- """分数
12150
+ """项目总分
12133
12151
  :rtype: str
12134
12152
  """
12135
12153
  return self._Score
@@ -12194,6 +12212,72 @@ class ScoreInfo(AbstractModel):
12194
12212
  def CreateTime(self, CreateTime):
12195
12213
  self._CreateTime = CreateTime
12196
12214
 
12215
+ @property
12216
+ def PagePerformanceScore(self):
12217
+ """页面性能评分
12218
+ :rtype: str
12219
+ """
12220
+ return self._PagePerformanceScore
12221
+
12222
+ @PagePerformanceScore.setter
12223
+ def PagePerformanceScore(self, PagePerformanceScore):
12224
+ self._PagePerformanceScore = PagePerformanceScore
12225
+
12226
+ @property
12227
+ def JsErrorScore(self):
12228
+ """js错误评分
12229
+ :rtype: str
12230
+ """
12231
+ return self._JsErrorScore
12232
+
12233
+ @JsErrorScore.setter
12234
+ def JsErrorScore(self, JsErrorScore):
12235
+ self._JsErrorScore = JsErrorScore
12236
+
12237
+ @property
12238
+ def ApiPerformanceScore(self):
12239
+ """API性能评分
12240
+ :rtype: str
12241
+ """
12242
+ return self._ApiPerformanceScore
12243
+
12244
+ @ApiPerformanceScore.setter
12245
+ def ApiPerformanceScore(self, ApiPerformanceScore):
12246
+ self._ApiPerformanceScore = ApiPerformanceScore
12247
+
12248
+ @property
12249
+ def ApiAvaliableScore(self):
12250
+ """API可用性评分
12251
+ :rtype: str
12252
+ """
12253
+ return self._ApiAvaliableScore
12254
+
12255
+ @ApiAvaliableScore.setter
12256
+ def ApiAvaliableScore(self, ApiAvaliableScore):
12257
+ self._ApiAvaliableScore = ApiAvaliableScore
12258
+
12259
+ @property
12260
+ def StaticPerformanceScore(self):
12261
+ """静态资源性能评分
12262
+ :rtype: str
12263
+ """
12264
+ return self._StaticPerformanceScore
12265
+
12266
+ @StaticPerformanceScore.setter
12267
+ def StaticPerformanceScore(self, StaticPerformanceScore):
12268
+ self._StaticPerformanceScore = StaticPerformanceScore
12269
+
12270
+ @property
12271
+ def StaticAvaliableScore(self):
12272
+ """静态资源可用性评分
12273
+ :rtype: str
12274
+ """
12275
+ return self._StaticAvaliableScore
12276
+
12277
+ @StaticAvaliableScore.setter
12278
+ def StaticAvaliableScore(self, StaticAvaliableScore):
12279
+ self._StaticAvaliableScore = StaticAvaliableScore
12280
+
12197
12281
 
12198
12282
  def _deserialize(self, params):
12199
12283
  self._StaticDuration = params.get("StaticDuration")
@@ -12210,6 +12294,12 @@ class ScoreInfo(AbstractModel):
12210
12294
  self._RecordNum = params.get("RecordNum")
12211
12295
  self._PageDuration = params.get("PageDuration")
12212
12296
  self._CreateTime = params.get("CreateTime")
12297
+ self._PagePerformanceScore = params.get("PagePerformanceScore")
12298
+ self._JsErrorScore = params.get("JsErrorScore")
12299
+ self._ApiPerformanceScore = params.get("ApiPerformanceScore")
12300
+ self._ApiAvaliableScore = params.get("ApiAvaliableScore")
12301
+ self._StaticPerformanceScore = params.get("StaticPerformanceScore")
12302
+ self._StaticAvaliableScore = params.get("StaticAvaliableScore")
12213
12303
  memeber_set = set(params.keys())
12214
12304
  for name, value in vars(self).items():
12215
12305
  property_name = name[1:]
@@ -21661,18 +21661,15 @@ class FollowOrigin(AbstractModel):
21661
21661
  <li>on:开启;</li>
21662
21662
  <li>off:关闭。</li>
21663
21663
  :type Switch: str
21664
- :param _DefaultCache: 源站未返回 Cache-Control 头时,缓存/不缓存开关。当 Switch 为 on 时,此字段必填,否则此字段不生效。取值有:
21664
+ :param _DefaultCache: 源站未返回 Cache-Control 头时,缓存/不缓存开关。当 Switch 为 on 时,此字段必填,当 Switch 为 off 时,无需填写此字段,若填写则不生效。取值有:
21665
21665
  <li>on:缓存;</li>
21666
21666
  <li>off:不缓存。</li>
21667
- 注意:此字段可能返回 null,表示取不到有效值。
21668
21667
  :type DefaultCache: str
21669
21668
  :param _DefaultCacheStrategy: 源站未返回 Cache-Control 头时,使用/不使用默认缓存策略开关。当 DefaultCache 为 on 时,此字段必填,否则此字段不生效;当 DefaultCacheTime 不为 0 时,此字段必须为 off。取值有:
21670
21669
  <li>on:使用默认缓存策略;</li>
21671
21670
  <li>off:不使用默认缓存策略。</li>
21672
- 注意:此字段可能返回 null,表示取不到有效值。
21673
21671
  :type DefaultCacheStrategy: str
21674
- :param _DefaultCacheTime: 源站未返回 Cache-Control 头时,表示默认的缓存时间,单位为秒,取值:0315360000。当 DefaultCache 为 on 时,此字段必填,否则此字段不生效;当 DefaultCacheStrategy 为 on 时, 此字段必须为 0。
21675
- 注意:此字段可能返回 null,表示取不到有效值。
21672
+ :param _DefaultCacheTime: 源站未返回 Cache-Control 头时,表示默认的缓存时间,单位为秒,取值:0-315360000。当 DefaultCache 为 on 时,此字段必填,否则此字段不生效;当 DefaultCacheStrategy 为 on 时, 此字段必须为 0。
21676
21673
  :type DefaultCacheTime: int
21677
21674
  """
21678
21675
  self._Switch = None
@@ -21695,10 +21692,9 @@ class FollowOrigin(AbstractModel):
21695
21692
 
21696
21693
  @property
21697
21694
  def DefaultCache(self):
21698
- """源站未返回 Cache-Control 头时,缓存/不缓存开关。当 Switch 为 on 时,此字段必填,否则此字段不生效。取值有:
21695
+ """源站未返回 Cache-Control 头时,缓存/不缓存开关。当 Switch 为 on 时,此字段必填,当 Switch 为 off 时,无需填写此字段,若填写则不生效。取值有:
21699
21696
  <li>on:缓存;</li>
21700
21697
  <li>off:不缓存。</li>
21701
- 注意:此字段可能返回 null,表示取不到有效值。
21702
21698
  :rtype: str
21703
21699
  """
21704
21700
  return self._DefaultCache
@@ -21712,7 +21708,6 @@ class FollowOrigin(AbstractModel):
21712
21708
  """源站未返回 Cache-Control 头时,使用/不使用默认缓存策略开关。当 DefaultCache 为 on 时,此字段必填,否则此字段不生效;当 DefaultCacheTime 不为 0 时,此字段必须为 off。取值有:
21713
21709
  <li>on:使用默认缓存策略;</li>
21714
21710
  <li>off:不使用默认缓存策略。</li>
21715
- 注意:此字段可能返回 null,表示取不到有效值。
21716
21711
  :rtype: str
21717
21712
  """
21718
21713
  return self._DefaultCacheStrategy
@@ -21723,8 +21718,7 @@ class FollowOrigin(AbstractModel):
21723
21718
 
21724
21719
  @property
21725
21720
  def DefaultCacheTime(self):
21726
- """源站未返回 Cache-Control 头时,表示默认的缓存时间,单位为秒,取值:0315360000。当 DefaultCache 为 on 时,此字段必填,否则此字段不生效;当 DefaultCacheStrategy 为 on 时, 此字段必须为 0。
21727
- 注意:此字段可能返回 null,表示取不到有效值。
21721
+ """源站未返回 Cache-Control 头时,表示默认的缓存时间,单位为秒,取值:0-315360000。当 DefaultCache 为 on 时,此字段必填,否则此字段不生效;当 DefaultCacheStrategy 为 on 时, 此字段必须为 0。
21728
21722
  :rtype: int
21729
21723
  """
21730
21724
  return self._DefaultCacheTime
@@ -34237,7 +34231,7 @@ class RulesProperties(AbstractModel):
34237
34231
  <li> TOGGLE:参数值为开关类型,可在 ChoicesValue 中选择;</li>
34238
34232
  <li> OBJECT:参数值为对象类型,ChoiceProperties 为改对象类型关联的属性;</li>
34239
34233
  <li> CUSTOM_NUM:参数值用户自定义,整型类型;</li>
34240
- <li> CUSTOM_STRING:参数值用户自定义,字符串类型。</li>注意:当参数类型为 OBJECT 类型时,请注意参考 [示例2 参数为 OBJECT 类型的创建](https://cloud.tencent.com/document/product/1552/80622#.E7.A4.BA.E4.BE.8B2-.E5.8F.82.E6.95.B0.E4.B8.BA-OBJECT-.E7.B1.BB.E5.9E.8B.E7.9A.84.E5.88.9B.E5.BB.BA)
34234
+ <li> CUSTOM_STRING:参数值用户自定义,字符串类型。</li>注意:当参数类型为 OBJECT 类型时,请注意参考 [示例2 参数为 OBJECT 类型的创建](https://cloud.tencent.com/document/product/1552/80622#.E7.A4.BA.E4.BE.8B2-.E4.BF.AE.E6.94.B9.E6.BA.90.E7.AB.99.E4.B8.BAIP.E5.9F.9F.E5.90.8D)
34241
34235
  :type Type: str
34242
34236
  :param _Max: 数值参数的最大值,非数值参数或 Min 和 Max 值都为 0 则此项无意义。
34243
34237
  :type Max: int
@@ -34303,7 +34297,7 @@ class RulesProperties(AbstractModel):
34303
34297
  <li> TOGGLE:参数值为开关类型,可在 ChoicesValue 中选择;</li>
34304
34298
  <li> OBJECT:参数值为对象类型,ChoiceProperties 为改对象类型关联的属性;</li>
34305
34299
  <li> CUSTOM_NUM:参数值用户自定义,整型类型;</li>
34306
- <li> CUSTOM_STRING:参数值用户自定义,字符串类型。</li>注意:当参数类型为 OBJECT 类型时,请注意参考 [示例2 参数为 OBJECT 类型的创建](https://cloud.tencent.com/document/product/1552/80622#.E7.A4.BA.E4.BE.8B2-.E5.8F.82.E6.95.B0.E4.B8.BA-OBJECT-.E7.B1.BB.E5.9E.8B.E7.9A.84.E5.88.9B.E5.BB.BA)
34300
+ <li> CUSTOM_STRING:参数值用户自定义,字符串类型。</li>注意:当参数类型为 OBJECT 类型时,请注意参考 [示例2 参数为 OBJECT 类型的创建](https://cloud.tencent.com/document/product/1552/80622#.E7.A4.BA.E4.BE.8B2-.E4.BF.AE.E6.94.B9.E6.BA.90.E7.AB.99.E4.B8.BAIP.E5.9F.9F.E5.90.8D)
34307
34301
  :rtype: str
34308
34302
  """
34309
34303
  return self._Type
@@ -1272,7 +1272,7 @@ class DescribeClusterInstancesRequest(AbstractModel):
1272
1272
  :param _Limit: 返回数量,默认为20,最大值为100。关于Limit的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/15688)中的相关小节。
1273
1273
  :type Limit: int
1274
1274
  :param _Filters: 过滤条件列表:
1275
- InstanceIds(实例ID),InstanceType(实例类型:Regular,Native,Virtual,External),VagueIpAddress(模糊匹配IP),Labels(k8s节点label),NodePoolNames(节点池名称),VagueInstanceName(模糊匹配节点名),InstanceStates(节点状态),Unschedulable(是否封锁),NodePoolIds(节点池ID)
1275
+ InstanceIds(实例ID),InstanceType(实例类型:Regular,Native,Super,External),VagueIpAddress(模糊匹配IP),Labels(k8s节点label),NodePoolNames(节点池名称),VagueInstanceName(模糊匹配节点名),InstanceStates(节点状态),Unschedulable(是否封锁),NodePoolIds(节点池ID)
1276
1276
  :type Filters: list of Filter
1277
1277
  :param _SortBy: 排序信息
1278
1278
  :type SortBy: :class:`tencentcloud.tke.v20220501.models.SortBy`
@@ -1319,7 +1319,7 @@ InstanceIds(实例ID),InstanceType(实例类型:Regular,Native,Virtual,E
1319
1319
  @property
1320
1320
  def Filters(self):
1321
1321
  """过滤条件列表:
1322
- InstanceIds(实例ID),InstanceType(实例类型:Regular,Native,Virtual,External),VagueIpAddress(模糊匹配IP),Labels(k8s节点label),NodePoolNames(节点池名称),VagueInstanceName(模糊匹配节点名),InstanceStates(节点状态),Unschedulable(是否封锁),NodePoolIds(节点池ID)
1322
+ InstanceIds(实例ID),InstanceType(实例类型:Regular,Native,Super,External),VagueIpAddress(模糊匹配IP),Labels(k8s节点label),NodePoolNames(节点池名称),VagueInstanceName(模糊匹配节点名),InstanceStates(节点状态),Unschedulable(是否封锁),NodePoolIds(节点池ID)
1323
1323
  :rtype: list of Filter
1324
1324
  """
1325
1325
  return self._Filters
@@ -2225,28 +2225,20 @@ class Device(AbstractModel):
2225
2225
  def __init__(self):
2226
2226
  r"""
2227
2227
  :param _DeviceId: 设备ID
2228
- 注意:此字段可能返回 null,表示取不到有效值。
2229
2228
  :type DeviceId: str
2230
2229
  :param _DeviceName: 设备名称
2231
- 注意:此字段可能返回 null,表示取不到有效值。
2232
2230
  :type DeviceName: str
2233
2231
  :param _LicenseCount: 已经绑定license数量
2234
- 注意:此字段可能返回 null,表示取不到有效值。
2235
2232
  :type LicenseCount: int
2236
2233
  :param _RemainDay: 剩余天数:天
2237
- 注意:此字段可能返回 null,表示取不到有效值。
2238
2234
  :type RemainDay: int
2239
2235
  :param _ExpireTime: 过期时间:s
2240
- 注意:此字段可能返回 null,表示取不到有效值。
2241
2236
  :type ExpireTime: str
2242
2237
  :param _Duration: 服务时长:s
2243
- 注意:此字段可能返回 null,表示取不到有效值。
2244
2238
  :type Duration: str
2245
2239
  :param _LicenseIds: 已经绑定licenseId列表
2246
- 注意:此字段可能返回 null,表示取不到有效值。
2247
2240
  :type LicenseIds: list of str
2248
2241
  :param _MonthlyRemainTime: 每月license的限定时长
2249
- 注意:此字段可能返回 null,表示取不到有效值。
2250
2242
  :type MonthlyRemainTime: int
2251
2243
  :param _LimitedTime: 月封顶时长(分钟)
2252
2244
  :type LimitedTime: int
@@ -2264,7 +2256,6 @@ class Device(AbstractModel):
2264
2256
  @property
2265
2257
  def DeviceId(self):
2266
2258
  """设备ID
2267
- 注意:此字段可能返回 null,表示取不到有效值。
2268
2259
  :rtype: str
2269
2260
  """
2270
2261
  return self._DeviceId
@@ -2276,7 +2267,6 @@ class Device(AbstractModel):
2276
2267
  @property
2277
2268
  def DeviceName(self):
2278
2269
  """设备名称
2279
- 注意:此字段可能返回 null,表示取不到有效值。
2280
2270
  :rtype: str
2281
2271
  """
2282
2272
  return self._DeviceName
@@ -2288,7 +2278,6 @@ class Device(AbstractModel):
2288
2278
  @property
2289
2279
  def LicenseCount(self):
2290
2280
  """已经绑定license数量
2291
- 注意:此字段可能返回 null,表示取不到有效值。
2292
2281
  :rtype: int
2293
2282
  """
2294
2283
  return self._LicenseCount
@@ -2300,7 +2289,6 @@ class Device(AbstractModel):
2300
2289
  @property
2301
2290
  def RemainDay(self):
2302
2291
  """剩余天数:天
2303
- 注意:此字段可能返回 null,表示取不到有效值。
2304
2292
  :rtype: int
2305
2293
  """
2306
2294
  return self._RemainDay
@@ -2312,7 +2300,6 @@ class Device(AbstractModel):
2312
2300
  @property
2313
2301
  def ExpireTime(self):
2314
2302
  """过期时间:s
2315
- 注意:此字段可能返回 null,表示取不到有效值。
2316
2303
  :rtype: str
2317
2304
  """
2318
2305
  return self._ExpireTime
@@ -2324,7 +2311,6 @@ class Device(AbstractModel):
2324
2311
  @property
2325
2312
  def Duration(self):
2326
2313
  """服务时长:s
2327
- 注意:此字段可能返回 null,表示取不到有效值。
2328
2314
  :rtype: str
2329
2315
  """
2330
2316
  return self._Duration
@@ -2336,7 +2322,6 @@ class Device(AbstractModel):
2336
2322
  @property
2337
2323
  def LicenseIds(self):
2338
2324
  """已经绑定licenseId列表
2339
- 注意:此字段可能返回 null,表示取不到有效值。
2340
2325
  :rtype: list of str
2341
2326
  """
2342
2327
  return self._LicenseIds
@@ -2348,7 +2333,6 @@ class Device(AbstractModel):
2348
2333
  @property
2349
2334
  def MonthlyRemainTime(self):
2350
2335
  """每月license的限定时长
2351
- 注意:此字段可能返回 null,表示取不到有效值。
2352
2336
  :rtype: int
2353
2337
  """
2354
2338
  return self._MonthlyRemainTime
@@ -3924,70 +3908,49 @@ class SessionDeviceDetail(AbstractModel):
3924
3908
  :param _DeviceId: 设备ID
3925
3909
  :type DeviceId: str
3926
3910
  :param _Ver: sdk版本
3927
- 注意:此字段可能返回 null,表示取不到有效值。
3928
3911
  :type Ver: str
3929
3912
  :param _SdkMode: 模式(p2p/server)
3930
- 注意:此字段可能返回 null,表示取不到有效值。
3931
3913
  :type SdkMode: str
3932
3914
  :param _DecodeCost: 解码耗时,单位:ms
3933
- 注意:此字段可能返回 null,表示取不到有效值。
3934
3915
  :type DecodeCost: list of int
3935
3916
  :param _RenderConst: 【已废弃,使用RenderCost】
3936
3917
  注意:此字段可能返回 null,表示取不到有效值。
3937
3918
  :type RenderConst: list of int
3938
3919
  :param _K100: 卡顿k100
3939
- 注意:此字段可能返回 null,表示取不到有效值。
3940
3920
  :type K100: list of float
3941
3921
  :param _K150: 卡顿k150
3942
- 注意:此字段可能返回 null,表示取不到有效值。
3943
3922
  :type K150: list of float
3944
3923
  :param _NACK: nack请求数
3945
- 注意:此字段可能返回 null,表示取不到有效值。
3946
3924
  :type NACK: list of int
3947
3925
  :param _BitRateEstimate: 服务端调控码率,单位:kbps
3948
- 注意:此字段可能返回 null,表示取不到有效值。
3949
3926
  :type BitRateEstimate: list of int
3950
3927
  :param _Width: 宽度
3951
- 注意:此字段可能返回 null,表示取不到有效值。
3952
3928
  :type Width: int
3953
3929
  :param _Height: 高度
3954
- 注意:此字段可能返回 null,表示取不到有效值。
3955
3930
  :type Height: int
3956
3931
  :param _EncodeCost: 编码耗时,单位:ms
3957
- 注意:此字段可能返回 null,表示取不到有效值。
3958
3932
  :type EncodeCost: list of int
3959
3933
  :param _CaptureCost: 采集耗时,单位:ms
3960
- 注意:此字段可能返回 null,表示取不到有效值。
3961
3934
  :type CaptureCost: list of int
3962
3935
  :param _RenderCost: 渲染耗时,单位:ms
3963
- 注意:此字段可能返回 null,表示取不到有效值。
3964
3936
  :type RenderCost: list of int
3965
3937
  :param _ConfigWidth: 配置宽度
3966
- 注意:此字段可能返回 null,表示取不到有效值。
3967
3938
  :type ConfigWidth: int
3968
3939
  :param _ConfigHeight: 配置高度
3969
- 注意:此字段可能返回 null,表示取不到有效值。
3970
3940
  :type ConfigHeight: int
3971
3941
  :param _FrameDelta: 平均帧间隔
3972
- 注意:此字段可能返回 null,表示取不到有效值。
3973
3942
  :type FrameDelta: list of int
3974
3943
  :param _MaxFrameDelta: 最大帧间隔
3975
- 注意:此字段可能返回 null,表示取不到有效值。
3976
3944
  :type MaxFrameDelta: list of int
3977
3945
  :param _TotalBitrateEstimate: 总码率评估,单位:kbps
3978
- 注意:此字段可能返回 null,表示取不到有效值。
3979
3946
  :type TotalBitrateEstimate: list of int
3980
3947
  :param _Lag100Duration: 帧间隔大于100ms的卡顿时长
3981
- 注意:此字段可能返回 null,表示取不到有效值。
3982
3948
  :type Lag100Duration: list of int
3983
3949
  :param _Lag150Duration: 帧间隔大于150ms的卡顿时长
3984
- 注意:此字段可能返回 null,表示取不到有效值。
3985
3950
  :type Lag150Duration: list of int
3986
3951
  :param _MultiMode: 是否开启多网:0 单网,1 多网
3987
- 注意:此字段可能返回 null,表示取不到有效值。
3988
3952
  :type MultiMode: int
3989
3953
  :param _MultiNet: 多网卡信息
3990
- 注意:此字段可能返回 null,表示取不到有效值。
3991
3954
  :type MultiNet: list of MultiNet
3992
3955
  """
3993
3956
  self._DeviceType = None
@@ -4184,7 +4147,6 @@ class SessionDeviceDetail(AbstractModel):
4184
4147
  @property
4185
4148
  def Ver(self):
4186
4149
  """sdk版本
4187
- 注意:此字段可能返回 null,表示取不到有效值。
4188
4150
  :rtype: str
4189
4151
  """
4190
4152
  return self._Ver
@@ -4196,7 +4158,6 @@ class SessionDeviceDetail(AbstractModel):
4196
4158
  @property
4197
4159
  def SdkMode(self):
4198
4160
  """模式(p2p/server)
4199
- 注意:此字段可能返回 null,表示取不到有效值。
4200
4161
  :rtype: str
4201
4162
  """
4202
4163
  return self._SdkMode
@@ -4208,7 +4169,6 @@ class SessionDeviceDetail(AbstractModel):
4208
4169
  @property
4209
4170
  def DecodeCost(self):
4210
4171
  """解码耗时,单位:ms
4211
- 注意:此字段可能返回 null,表示取不到有效值。
4212
4172
  :rtype: list of int
4213
4173
  """
4214
4174
  return self._DecodeCost
@@ -4236,7 +4196,6 @@ class SessionDeviceDetail(AbstractModel):
4236
4196
  @property
4237
4197
  def K100(self):
4238
4198
  """卡顿k100
4239
- 注意:此字段可能返回 null,表示取不到有效值。
4240
4199
  :rtype: list of float
4241
4200
  """
4242
4201
  return self._K100
@@ -4248,7 +4207,6 @@ class SessionDeviceDetail(AbstractModel):
4248
4207
  @property
4249
4208
  def K150(self):
4250
4209
  """卡顿k150
4251
- 注意:此字段可能返回 null,表示取不到有效值。
4252
4210
  :rtype: list of float
4253
4211
  """
4254
4212
  return self._K150
@@ -4260,7 +4218,6 @@ class SessionDeviceDetail(AbstractModel):
4260
4218
  @property
4261
4219
  def NACK(self):
4262
4220
  """nack请求数
4263
- 注意:此字段可能返回 null,表示取不到有效值。
4264
4221
  :rtype: list of int
4265
4222
  """
4266
4223
  return self._NACK
@@ -4272,7 +4229,6 @@ class SessionDeviceDetail(AbstractModel):
4272
4229
  @property
4273
4230
  def BitRateEstimate(self):
4274
4231
  """服务端调控码率,单位:kbps
4275
- 注意:此字段可能返回 null,表示取不到有效值。
4276
4232
  :rtype: list of int
4277
4233
  """
4278
4234
  return self._BitRateEstimate
@@ -4284,7 +4240,6 @@ class SessionDeviceDetail(AbstractModel):
4284
4240
  @property
4285
4241
  def Width(self):
4286
4242
  """宽度
4287
- 注意:此字段可能返回 null,表示取不到有效值。
4288
4243
  :rtype: int
4289
4244
  """
4290
4245
  return self._Width
@@ -4296,7 +4251,6 @@ class SessionDeviceDetail(AbstractModel):
4296
4251
  @property
4297
4252
  def Height(self):
4298
4253
  """高度
4299
- 注意:此字段可能返回 null,表示取不到有效值。
4300
4254
  :rtype: int
4301
4255
  """
4302
4256
  return self._Height
@@ -4308,7 +4262,6 @@ class SessionDeviceDetail(AbstractModel):
4308
4262
  @property
4309
4263
  def EncodeCost(self):
4310
4264
  """编码耗时,单位:ms
4311
- 注意:此字段可能返回 null,表示取不到有效值。
4312
4265
  :rtype: list of int
4313
4266
  """
4314
4267
  return self._EncodeCost
@@ -4320,7 +4273,6 @@ class SessionDeviceDetail(AbstractModel):
4320
4273
  @property
4321
4274
  def CaptureCost(self):
4322
4275
  """采集耗时,单位:ms
4323
- 注意:此字段可能返回 null,表示取不到有效值。
4324
4276
  :rtype: list of int
4325
4277
  """
4326
4278
  return self._CaptureCost
@@ -4332,7 +4284,6 @@ class SessionDeviceDetail(AbstractModel):
4332
4284
  @property
4333
4285
  def RenderCost(self):
4334
4286
  """渲染耗时,单位:ms
4335
- 注意:此字段可能返回 null,表示取不到有效值。
4336
4287
  :rtype: list of int
4337
4288
  """
4338
4289
  return self._RenderCost
@@ -4344,7 +4295,6 @@ class SessionDeviceDetail(AbstractModel):
4344
4295
  @property
4345
4296
  def ConfigWidth(self):
4346
4297
  """配置宽度
4347
- 注意:此字段可能返回 null,表示取不到有效值。
4348
4298
  :rtype: int
4349
4299
  """
4350
4300
  return self._ConfigWidth
@@ -4356,7 +4306,6 @@ class SessionDeviceDetail(AbstractModel):
4356
4306
  @property
4357
4307
  def ConfigHeight(self):
4358
4308
  """配置高度
4359
- 注意:此字段可能返回 null,表示取不到有效值。
4360
4309
  :rtype: int
4361
4310
  """
4362
4311
  return self._ConfigHeight
@@ -4368,7 +4317,6 @@ class SessionDeviceDetail(AbstractModel):
4368
4317
  @property
4369
4318
  def FrameDelta(self):
4370
4319
  """平均帧间隔
4371
- 注意:此字段可能返回 null,表示取不到有效值。
4372
4320
  :rtype: list of int
4373
4321
  """
4374
4322
  return self._FrameDelta
@@ -4380,7 +4328,6 @@ class SessionDeviceDetail(AbstractModel):
4380
4328
  @property
4381
4329
  def MaxFrameDelta(self):
4382
4330
  """最大帧间隔
4383
- 注意:此字段可能返回 null,表示取不到有效值。
4384
4331
  :rtype: list of int
4385
4332
  """
4386
4333
  return self._MaxFrameDelta
@@ -4392,7 +4339,6 @@ class SessionDeviceDetail(AbstractModel):
4392
4339
  @property
4393
4340
  def TotalBitrateEstimate(self):
4394
4341
  """总码率评估,单位:kbps
4395
- 注意:此字段可能返回 null,表示取不到有效值。
4396
4342
  :rtype: list of int
4397
4343
  """
4398
4344
  return self._TotalBitrateEstimate
@@ -4404,7 +4350,6 @@ class SessionDeviceDetail(AbstractModel):
4404
4350
  @property
4405
4351
  def Lag100Duration(self):
4406
4352
  """帧间隔大于100ms的卡顿时长
4407
- 注意:此字段可能返回 null,表示取不到有效值。
4408
4353
  :rtype: list of int
4409
4354
  """
4410
4355
  return self._Lag100Duration
@@ -4416,7 +4361,6 @@ class SessionDeviceDetail(AbstractModel):
4416
4361
  @property
4417
4362
  def Lag150Duration(self):
4418
4363
  """帧间隔大于150ms的卡顿时长
4419
- 注意:此字段可能返回 null,表示取不到有效值。
4420
4364
  :rtype: list of int
4421
4365
  """
4422
4366
  return self._Lag150Duration
@@ -4428,7 +4372,6 @@ class SessionDeviceDetail(AbstractModel):
4428
4372
  @property
4429
4373
  def MultiMode(self):
4430
4374
  """是否开启多网:0 单网,1 多网
4431
- 注意:此字段可能返回 null,表示取不到有效值。
4432
4375
  :rtype: int
4433
4376
  """
4434
4377
  return self._MultiMode
@@ -4440,7 +4383,6 @@ class SessionDeviceDetail(AbstractModel):
4440
4383
  @property
4441
4384
  def MultiNet(self):
4442
4385
  """多网卡信息
4443
- 注意:此字段可能返回 null,表示取不到有效值。
4444
4386
  :rtype: list of MultiNet
4445
4387
  """
4446
4388
  return self._MultiNet
@@ -851,6 +851,9 @@ UNSUPPORTEDOPERATION_DCGATEWAYNATRULEEXISTS = 'UnsupportedOperation.DCGatewayNat
851
851
  # 指定的VPC未发现专线网关。
852
852
  UNSUPPORTEDOPERATION_DCGATEWAYSNOTFOUNDINVPC = 'UnsupportedOperation.DcGatewaysNotFoundInVpc'
853
853
 
854
+ # 当前专线网关有流日志,不支持删除。
855
+ UNSUPPORTEDOPERATION_DCGHASFLOWLOG = 'UnsupportedOperation.DcgHasFlowLog'
856
+
854
857
  # 禁止删除默认路由表。
855
858
  UNSUPPORTEDOPERATION_DELDEFAULTROUTE = 'UnsupportedOperation.DelDefaultRoute'
856
859
 
@@ -35466,12 +35466,7 @@ class DescribeVpnGatewaySslClientsRequest(AbstractModel):
35466
35466
 
35467
35467
  def __init__(self):
35468
35468
  r"""
35469
- :param _Filters: 过滤条件,参数不支持同时指定SslVpnClientIds和Filters
35470
- <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
35471
- <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
35472
- <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpns-1j2w6xpx。</li>
35473
- <li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpnc-3rlxp4nd。</li>
35474
- <li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li>
35469
+ :param _Filters: 过滤条件,参数不支持同时指定SslVpnClientIds和Filters。<li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li><li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li><li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpns-1j2w6xpx。</li><li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpnc-3rlxp4nd。</li><li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li><li>ssl-vpn-client-inner-ip - String - (过滤条件)SSL-VPN-CLIENT私网IP。</li>
35475
35470
  :type Filters: list of Filter
35476
35471
  :param _Offset: 偏移量,默认值0。
35477
35472
  :type Offset: int
@@ -35491,12 +35486,7 @@ vpns-1jww3xpx。每次请求的实例的上限为100。参数不支持同时指
35491
35486
 
35492
35487
  @property
35493
35488
  def Filters(self):
35494
- """过滤条件,参数不支持同时指定SslVpnClientIds和Filters
35495
- <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
35496
- <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
35497
- <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpns-1j2w6xpx。</li>
35498
- <li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpnc-3rlxp4nd。</li>
35499
- <li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li>
35489
+ """过滤条件,参数不支持同时指定SslVpnClientIds和Filters。<li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li><li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li><li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpns-1j2w6xpx。</li><li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpnc-3rlxp4nd。</li><li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li><li>ssl-vpn-client-inner-ip - String - (过滤条件)SSL-VPN-CLIENT私网IP。</li>
35500
35490
  :rtype: list of Filter
35501
35491
  """
35502
35492
  return self._Filters
@@ -42014,10 +42004,8 @@ class InquirePriceCreateDirectConnectGatewayResponse(AbstractModel):
42014
42004
  def __init__(self):
42015
42005
  r"""
42016
42006
  :param _TotalCost: 专线网关标准接入费用
42017
- 注意:此字段可能返回 null,表示取不到有效值。
42018
42007
  :type TotalCost: int
42019
42008
  :param _RealTotalCost: 专线网关真实接入费用
42020
- 注意:此字段可能返回 null,表示取不到有效值。
42021
42009
  :type RealTotalCost: int
42022
42010
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
42023
42011
  :type RequestId: str
@@ -42029,7 +42017,6 @@ class InquirePriceCreateDirectConnectGatewayResponse(AbstractModel):
42029
42017
  @property
42030
42018
  def TotalCost(self):
42031
42019
  """专线网关标准接入费用
42032
- 注意:此字段可能返回 null,表示取不到有效值。
42033
42020
  :rtype: int
42034
42021
  """
42035
42022
  return self._TotalCost
@@ -42041,7 +42028,6 @@ class InquirePriceCreateDirectConnectGatewayResponse(AbstractModel):
42041
42028
  @property
42042
42029
  def RealTotalCost(self):
42043
42030
  """专线网关真实接入费用
42044
- 注意:此字段可能返回 null,表示取不到有效值。
42045
42031
  :rtype: int
42046
42032
  """
42047
42033
  return self._RealTotalCost
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1300
3
+ Version: 3.0.1302
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud