tencentcloud-sdk-python-cfw 3.1.111__tar.gz → 3.1.112__tar.gz

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 (17) hide show
  1. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/setup.py +1 -1
  3. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud/cfw/v20190904/models.py +235 -187
  5. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_cfw-3.1.112/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_cfw-3.1.111/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/README.rst +0 -0
  9. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud/cfw/__init__.py +0 -0
  11. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud/cfw/v20190904/__init__.py +0 -0
  12. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud/cfw/v20190904/cfw_client.py +0 -0
  13. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud/cfw/v20190904/cfw_client_async.py +0 -0
  14. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_cfw-3.1.111 → tencentcloud_sdk_python_cfw-3.1.112}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cfw
3
- Version: 3.1.111
3
+ Version: 3.1.112
4
4
  Summary: Tencent Cloud Cfw SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.111
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-cfw',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.111,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.112,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Cfw SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.111'
17
+ __version__ = '3.1.112'
@@ -6462,18 +6462,18 @@ class DeleteBlockIgnoreRuleNewRequest(AbstractModel):
6462
6462
  r"""
6463
6463
  :param _DeleteAll: 是否删除全部
6464
6464
  :type DeleteAll: int
6465
+ :param _ShowType: blocklist 封禁列表 whitelist 白名单列表
6466
+ :type ShowType: str
6465
6467
  :param _Rules: 规则列表
6466
6468
  :type Rules: list of BanAndAllowRuleDel
6467
6469
  :param _RuleType: 封禁:1,放通:100,
6468
6470
  主要用于全部删除时区分列表类型
6469
6471
  :type RuleType: int
6470
- :param _ShowType: blocklist 封禁列表 whitelist 白名单列表
6471
- :type ShowType: str
6472
6472
  """
6473
6473
  self._DeleteAll = None
6474
+ self._ShowType = None
6474
6475
  self._Rules = None
6475
6476
  self._RuleType = None
6476
- self._ShowType = None
6477
6477
 
6478
6478
  @property
6479
6479
  def DeleteAll(self):
@@ -6486,6 +6486,17 @@ class DeleteBlockIgnoreRuleNewRequest(AbstractModel):
6486
6486
  def DeleteAll(self, DeleteAll):
6487
6487
  self._DeleteAll = DeleteAll
6488
6488
 
6489
+ @property
6490
+ def ShowType(self):
6491
+ r"""blocklist 封禁列表 whitelist 白名单列表
6492
+ :rtype: str
6493
+ """
6494
+ return self._ShowType
6495
+
6496
+ @ShowType.setter
6497
+ def ShowType(self, ShowType):
6498
+ self._ShowType = ShowType
6499
+
6489
6500
  @property
6490
6501
  def Rules(self):
6491
6502
  r"""规则列表
@@ -6509,20 +6520,10 @@ class DeleteBlockIgnoreRuleNewRequest(AbstractModel):
6509
6520
  def RuleType(self, RuleType):
6510
6521
  self._RuleType = RuleType
6511
6522
 
6512
- @property
6513
- def ShowType(self):
6514
- r"""blocklist 封禁列表 whitelist 白名单列表
6515
- :rtype: str
6516
- """
6517
- return self._ShowType
6518
-
6519
- @ShowType.setter
6520
- def ShowType(self, ShowType):
6521
- self._ShowType = ShowType
6522
-
6523
6523
 
6524
6524
  def _deserialize(self, params):
6525
6525
  self._DeleteAll = params.get("DeleteAll")
6526
+ self._ShowType = params.get("ShowType")
6526
6527
  if params.get("Rules") is not None:
6527
6528
  self._Rules = []
6528
6529
  for item in params.get("Rules"):
@@ -6530,7 +6531,6 @@ class DeleteBlockIgnoreRuleNewRequest(AbstractModel):
6530
6531
  obj._deserialize(item)
6531
6532
  self._Rules.append(obj)
6532
6533
  self._RuleType = params.get("RuleType")
6533
- self._ShowType = params.get("ShowType")
6534
6534
  memeber_set = set(params.keys())
6535
6535
  for name, value in vars(self).items():
6536
6536
  property_name = name[1:]
@@ -11735,19 +11735,19 @@ class DescribeFwGroupInstanceInfoRequest(AbstractModel):
11735
11735
 
11736
11736
  def __init__(self):
11737
11737
  r"""
11738
- :param _Limit: 每页条数
11738
+ :param _Limit: <p>每页条数</p>
11739
11739
  :type Limit: int
11740
- :param _Offset: 偏移值
11740
+ :param _Offset: <p>偏移值</p>
11741
11741
  :type Offset: int
11742
- :param _Filters: 过滤条件组合
11742
+ :param _Filters: <p>过滤条件组合</p>
11743
11743
  :type Filters: list of CommonFilter
11744
- :param _StartTime: 检索的起始时间,可不传
11744
+ :param _StartTime: <p>检索的起始时间,可不传</p>
11745
11745
  :type StartTime: str
11746
- :param _EndTime: 检索的截止时间,可不传
11746
+ :param _EndTime: <p>检索的截止时间,可不传</p>
11747
11747
  :type EndTime: str
11748
- :param _Order: desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
11748
+ :param _Order: <p>desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值</p>
11749
11749
  :type Order: str
11750
- :param _By: 排序所用到的字段
11750
+ :param _By: <p>排序所用到的字段</p>
11751
11751
  :type By: str
11752
11752
  """
11753
11753
  self._Limit = None
@@ -11760,7 +11760,7 @@ class DescribeFwGroupInstanceInfoRequest(AbstractModel):
11760
11760
 
11761
11761
  @property
11762
11762
  def Limit(self):
11763
- r"""每页条数
11763
+ r"""<p>每页条数</p>
11764
11764
  :rtype: int
11765
11765
  """
11766
11766
  return self._Limit
@@ -11771,7 +11771,7 @@ class DescribeFwGroupInstanceInfoRequest(AbstractModel):
11771
11771
 
11772
11772
  @property
11773
11773
  def Offset(self):
11774
- r"""偏移值
11774
+ r"""<p>偏移值</p>
11775
11775
  :rtype: int
11776
11776
  """
11777
11777
  return self._Offset
@@ -11782,7 +11782,7 @@ class DescribeFwGroupInstanceInfoRequest(AbstractModel):
11782
11782
 
11783
11783
  @property
11784
11784
  def Filters(self):
11785
- r"""过滤条件组合
11785
+ r"""<p>过滤条件组合</p>
11786
11786
  :rtype: list of CommonFilter
11787
11787
  """
11788
11788
  return self._Filters
@@ -11793,7 +11793,7 @@ class DescribeFwGroupInstanceInfoRequest(AbstractModel):
11793
11793
 
11794
11794
  @property
11795
11795
  def StartTime(self):
11796
- r"""检索的起始时间,可不传
11796
+ r"""<p>检索的起始时间,可不传</p>
11797
11797
  :rtype: str
11798
11798
  """
11799
11799
  return self._StartTime
@@ -11804,7 +11804,7 @@ class DescribeFwGroupInstanceInfoRequest(AbstractModel):
11804
11804
 
11805
11805
  @property
11806
11806
  def EndTime(self):
11807
- r"""检索的截止时间,可不传
11807
+ r"""<p>检索的截止时间,可不传</p>
11808
11808
  :rtype: str
11809
11809
  """
11810
11810
  return self._EndTime
@@ -11815,7 +11815,7 @@ class DescribeFwGroupInstanceInfoRequest(AbstractModel):
11815
11815
 
11816
11816
  @property
11817
11817
  def Order(self):
11818
- r"""desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
11818
+ r"""<p>desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值</p>
11819
11819
  :rtype: str
11820
11820
  """
11821
11821
  return self._Order
@@ -11826,7 +11826,7 @@ class DescribeFwGroupInstanceInfoRequest(AbstractModel):
11826
11826
 
11827
11827
  @property
11828
11828
  def By(self):
11829
- r"""排序所用到的字段
11829
+ r"""<p>排序所用到的字段</p>
11830
11830
  :rtype: str
11831
11831
  """
11832
11832
  return self._By
@@ -11866,9 +11866,9 @@ class DescribeFwGroupInstanceInfoResponse(AbstractModel):
11866
11866
 
11867
11867
  def __init__(self):
11868
11868
  r"""
11869
- :param _VpcFwGroupLst: 防火墙(组)详细信息
11869
+ :param _VpcFwGroupLst: <p>防火墙(组)详细信息</p>
11870
11870
  :type VpcFwGroupLst: list of VpcFwGroupInfo
11871
- :param _Total: 防火墙(组)个数
11871
+ :param _Total: <p>防火墙(组)个数</p>
11872
11872
  :type Total: int
11873
11873
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11874
11874
  :type RequestId: str
@@ -11879,7 +11879,7 @@ class DescribeFwGroupInstanceInfoResponse(AbstractModel):
11879
11879
 
11880
11880
  @property
11881
11881
  def VpcFwGroupLst(self):
11882
- r"""防火墙(组)详细信息
11882
+ r"""<p>防火墙(组)详细信息</p>
11883
11883
  :rtype: list of VpcFwGroupInfo
11884
11884
  """
11885
11885
  return self._VpcFwGroupLst
@@ -11890,7 +11890,7 @@ class DescribeFwGroupInstanceInfoResponse(AbstractModel):
11890
11890
 
11891
11891
  @property
11892
11892
  def Total(self):
11893
- r"""防火墙(组)个数
11893
+ r"""<p>防火墙(组)个数</p>
11894
11894
  :rtype: int
11895
11895
  """
11896
11896
  return self._Total
@@ -18372,18 +18372,20 @@ class ExpandCfwVerticalRequest(AbstractModel):
18372
18372
 
18373
18373
  def __init__(self):
18374
18374
  r"""
18375
- :param _FwType: nat:nat防火墙,ew:东西向防火墙
18375
+ :param _FwType: <p>nat:nat防火墙,ew:东西向防火墙</p>
18376
18376
  :type FwType: str
18377
- :param _Width: 带宽值
18377
+ :param _Width: <p>带宽值</p>
18378
18378
  :type Width: int
18379
- :param _CfwInstance: 防火墙实例id
18379
+ :param _CfwInstance: <p>防火墙实例id</p>
18380
18380
  :type CfwInstance: str
18381
- :param _ElasticSwitch: 弹性开关 1打开 0 关闭
18381
+ :param _ElasticSwitch: <p>弹性开关 1打开 0 关闭</p>
18382
18382
  :type ElasticSwitch: int
18383
- :param _ElasticBandwidth: 弹性带宽上限,单位Mbps
18383
+ :param _ElasticBandwidth: <p>弹性带宽上限,单位Mbps</p>
18384
18384
  :type ElasticBandwidth: int
18385
- :param _Tags: 按量计费标签
18385
+ :param _Tags: <p>按量计费标签</p>
18386
18386
  :type Tags: list of TagInfo
18387
+ :param _ElasticTrafficSwitch: <p>按流量弹性开关</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
18388
+ :type ElasticTrafficSwitch: int
18387
18389
  """
18388
18390
  self._FwType = None
18389
18391
  self._Width = None
@@ -18391,10 +18393,11 @@ class ExpandCfwVerticalRequest(AbstractModel):
18391
18393
  self._ElasticSwitch = None
18392
18394
  self._ElasticBandwidth = None
18393
18395
  self._Tags = None
18396
+ self._ElasticTrafficSwitch = None
18394
18397
 
18395
18398
  @property
18396
18399
  def FwType(self):
18397
- r"""nat:nat防火墙,ew:东西向防火墙
18400
+ r"""<p>nat:nat防火墙,ew:东西向防火墙</p>
18398
18401
  :rtype: str
18399
18402
  """
18400
18403
  return self._FwType
@@ -18405,7 +18408,7 @@ class ExpandCfwVerticalRequest(AbstractModel):
18405
18408
 
18406
18409
  @property
18407
18410
  def Width(self):
18408
- r"""带宽值
18411
+ r"""<p>带宽值</p>
18409
18412
  :rtype: int
18410
18413
  """
18411
18414
  return self._Width
@@ -18416,7 +18419,7 @@ class ExpandCfwVerticalRequest(AbstractModel):
18416
18419
 
18417
18420
  @property
18418
18421
  def CfwInstance(self):
18419
- r"""防火墙实例id
18422
+ r"""<p>防火墙实例id</p>
18420
18423
  :rtype: str
18421
18424
  """
18422
18425
  return self._CfwInstance
@@ -18427,7 +18430,7 @@ class ExpandCfwVerticalRequest(AbstractModel):
18427
18430
 
18428
18431
  @property
18429
18432
  def ElasticSwitch(self):
18430
- r"""弹性开关 1打开 0 关闭
18433
+ r"""<p>弹性开关 1打开 0 关闭</p>
18431
18434
  :rtype: int
18432
18435
  """
18433
18436
  return self._ElasticSwitch
@@ -18438,7 +18441,7 @@ class ExpandCfwVerticalRequest(AbstractModel):
18438
18441
 
18439
18442
  @property
18440
18443
  def ElasticBandwidth(self):
18441
- r"""弹性带宽上限,单位Mbps
18444
+ r"""<p>弹性带宽上限,单位Mbps</p>
18442
18445
  :rtype: int
18443
18446
  """
18444
18447
  return self._ElasticBandwidth
@@ -18449,7 +18452,7 @@ class ExpandCfwVerticalRequest(AbstractModel):
18449
18452
 
18450
18453
  @property
18451
18454
  def Tags(self):
18452
- r"""按量计费标签
18455
+ r"""<p>按量计费标签</p>
18453
18456
  :rtype: list of TagInfo
18454
18457
  """
18455
18458
  return self._Tags
@@ -18458,6 +18461,17 @@ class ExpandCfwVerticalRequest(AbstractModel):
18458
18461
  def Tags(self, Tags):
18459
18462
  self._Tags = Tags
18460
18463
 
18464
+ @property
18465
+ def ElasticTrafficSwitch(self):
18466
+ r"""<p>按流量弹性开关</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
18467
+ :rtype: int
18468
+ """
18469
+ return self._ElasticTrafficSwitch
18470
+
18471
+ @ElasticTrafficSwitch.setter
18472
+ def ElasticTrafficSwitch(self, ElasticTrafficSwitch):
18473
+ self._ElasticTrafficSwitch = ElasticTrafficSwitch
18474
+
18461
18475
 
18462
18476
  def _deserialize(self, params):
18463
18477
  self._FwType = params.get("FwType")
@@ -18471,6 +18485,7 @@ class ExpandCfwVerticalRequest(AbstractModel):
18471
18485
  obj = TagInfo()
18472
18486
  obj._deserialize(item)
18473
18487
  self._Tags.append(obj)
18488
+ self._ElasticTrafficSwitch = params.get("ElasticTrafficSwitch")
18474
18489
  memeber_set = set(params.keys())
18475
18490
  for name, value in vars(self).items():
18476
18491
  property_name = name[1:]
@@ -25730,68 +25745,66 @@ class NatInstanceInfo(AbstractModel):
25730
25745
 
25731
25746
  def __init__(self):
25732
25747
  r"""
25733
- :param _NatinsId: nat实例id
25748
+ :param _NatinsId: <p>nat实例id</p>
25734
25749
  :type NatinsId: str
25735
- :param _NatinsName: nat实例名称
25750
+ :param _NatinsName: <p>nat实例名称</p>
25736
25751
  :type NatinsName: str
25737
- :param _Region: 实例所在地域
25752
+ :param _Region: <p>实例所在地域</p>
25738
25753
  :type Region: str
25739
- :param _FwMode: 0: 新增模式,1:接入模式
25754
+ :param _FwMode: <p>0: 新增模式,1:接入模式</p>
25740
25755
  :type FwMode: int
25741
- :param _BandWidth: 实例带宽大小 Mbps
25756
+ :param _BandWidth: <p>实例带宽大小 Mbps</p>
25742
25757
  :type BandWidth: int
25743
- :param _InFlowMax: 入向带宽峰值 bps
25758
+ :param _InFlowMax: <p>入向带宽峰值 bps</p>
25744
25759
  :type InFlowMax: int
25745
- :param _OutFlowMax: 出向带宽峰值 bps
25760
+ :param _OutFlowMax: <p>出向带宽峰值 bps</p>
25746
25761
  :type OutFlowMax: int
25747
- :param _RegionZh: 地域中文信息
25762
+ :param _RegionZh: <p>地域中文信息</p>
25748
25763
  :type RegionZh: str
25749
- :param _EipAddress: 公网ip数组
25764
+ :param _EipAddress: <p>公网ip数组</p>
25750
25765
  :type EipAddress: list of str
25751
- :param _VpcIp: 内外使用ip数组
25766
+ :param _VpcIp: <p>内外使用ip数组</p>
25752
25767
  :type VpcIp: list of str
25753
- :param _Subnets: 实例关联子网数组
25768
+ :param _Subnets: <p>实例关联子网数组</p>
25754
25769
  :type Subnets: list of str
25755
- :param _Status: 0 :正常 1:正在初始化
25770
+ :param _Status: <p>0 :正常 1:正在初始化</p>
25756
25771
  :type Status: int
25757
- :param _RegionDetail: 地域区域信息
25772
+ :param _RegionDetail: <p>地域区域信息</p>
25758
25773
  :type RegionDetail: str
25759
- :param _ZoneZh: 实例所在可用区
25774
+ :param _ZoneZh: <p>实例所在可用区</p>
25760
25775
  :type ZoneZh: str
25761
- :param _ZoneZhBak: 实例所在可用区
25776
+ :param _ZoneZhBak: <p>实例所在可用区</p>
25762
25777
  :type ZoneZhBak: str
25763
- :param _RuleUsed: 已使用规则数
25778
+ :param _RuleUsed: <p>已使用规则数</p>
25764
25779
  :type RuleUsed: int
25765
- :param _RuleMax: 实例的规则限制最大规格数
25780
+ :param _RuleMax: <p>实例的规则限制最大规格数</p>
25766
25781
  :type RuleMax: int
25767
- :param _EngineVersion: 实例引擎版本
25782
+ :param _EngineVersion: <p>实例引擎版本</p>
25768
25783
  :type EngineVersion: str
25769
- :param _UpdateEnable: 引擎是否可升级:0,不可升级;1,可升级
25784
+ :param _UpdateEnable: <p>引擎是否可升级:0,不可升级;1,可升级</p>
25770
25785
  :type UpdateEnable: int
25771
- :param _NeedProbeEngineUpdate: 是的需要升级引擎 支持 nat拨测 1需要 0不需要
25786
+ :param _NeedProbeEngineUpdate: <p>是的需要升级引擎 支持 nat拨测 1需要 0不需要</p>
25772
25787
  :type NeedProbeEngineUpdate: int
25773
- :param _TrafficMode: 引擎运行模式,Normal:正常, OnlyRoute:透明模式
25788
+ :param _TrafficMode: <p>引擎运行模式,Normal:正常, OnlyRoute:透明模式</p>
25774
25789
  :type TrafficMode: str
25775
- :param _Zone: 实例主所在可用区
25790
+ :param _Zone: <p>实例主所在可用区</p>
25776
25791
  :type Zone: str
25777
- :param _ZoneBak: 实例备所在可用区
25792
+ :param _ZoneBak: <p>实例备所在可用区</p>
25778
25793
  :type ZoneBak: str
25779
- :param _ReserveTime: 引擎预约升级时间
25794
+ :param _ReserveTime: <p>引擎预约升级时间</p>
25780
25795
  :type ReserveTime: str
25781
- :param _ReserveVersion: 引擎预约升级版本
25796
+ :param _ReserveVersion: <p>引擎预约升级版本</p>
25782
25797
  :type ReserveVersion: str
25783
- :param _ReserveVersionState: 引擎预约升级版本状态 stable:稳定版;previewed:预览版
25798
+ :param _ReserveVersionState: <p>引擎预约升级版本状态 stable:稳定版;previewed:预览版</p>
25784
25799
  :type ReserveVersionState: str
25785
- :param _ElasticSwitch: 弹性开关
25786
- 1 打开
25787
- 0 关闭
25800
+ :param _ElasticSwitch: <p>弹性开关<br>1 打开<br>0 关闭</p>
25788
25801
  :type ElasticSwitch: int
25789
- :param _ElasticBandwidth: 弹性带宽,单位Mbps
25802
+ :param _ElasticBandwidth: <p>弹性带宽,单位Mbps</p>
25790
25803
  :type ElasticBandwidth: int
25791
- :param _IsFirstAfterPay: 是否首次开通按量付费
25792
- 1 是
25793
- 0 不是
25804
+ :param _IsFirstAfterPay: <p>是否首次开通按量付费<br>1 是<br>0 不是</p>
25794
25805
  :type IsFirstAfterPay: int
25806
+ :param _ElasticTrafficSwitch: <p>按流量弹性开关</p><p>默认值:0</p>
25807
+ :type ElasticTrafficSwitch: int
25795
25808
  """
25796
25809
  self._NatinsId = None
25797
25810
  self._NatinsName = None
@@ -25822,10 +25835,11 @@ class NatInstanceInfo(AbstractModel):
25822
25835
  self._ElasticSwitch = None
25823
25836
  self._ElasticBandwidth = None
25824
25837
  self._IsFirstAfterPay = None
25838
+ self._ElasticTrafficSwitch = None
25825
25839
 
25826
25840
  @property
25827
25841
  def NatinsId(self):
25828
- r"""nat实例id
25842
+ r"""<p>nat实例id</p>
25829
25843
  :rtype: str
25830
25844
  """
25831
25845
  return self._NatinsId
@@ -25836,7 +25850,7 @@ class NatInstanceInfo(AbstractModel):
25836
25850
 
25837
25851
  @property
25838
25852
  def NatinsName(self):
25839
- r"""nat实例名称
25853
+ r"""<p>nat实例名称</p>
25840
25854
  :rtype: str
25841
25855
  """
25842
25856
  return self._NatinsName
@@ -25847,7 +25861,7 @@ class NatInstanceInfo(AbstractModel):
25847
25861
 
25848
25862
  @property
25849
25863
  def Region(self):
25850
- r"""实例所在地域
25864
+ r"""<p>实例所在地域</p>
25851
25865
  :rtype: str
25852
25866
  """
25853
25867
  return self._Region
@@ -25858,7 +25872,7 @@ class NatInstanceInfo(AbstractModel):
25858
25872
 
25859
25873
  @property
25860
25874
  def FwMode(self):
25861
- r"""0: 新增模式,1:接入模式
25875
+ r"""<p>0: 新增模式,1:接入模式</p>
25862
25876
  :rtype: int
25863
25877
  """
25864
25878
  return self._FwMode
@@ -25869,7 +25883,7 @@ class NatInstanceInfo(AbstractModel):
25869
25883
 
25870
25884
  @property
25871
25885
  def BandWidth(self):
25872
- r"""实例带宽大小 Mbps
25886
+ r"""<p>实例带宽大小 Mbps</p>
25873
25887
  :rtype: int
25874
25888
  """
25875
25889
  return self._BandWidth
@@ -25880,7 +25894,7 @@ class NatInstanceInfo(AbstractModel):
25880
25894
 
25881
25895
  @property
25882
25896
  def InFlowMax(self):
25883
- r"""入向带宽峰值 bps
25897
+ r"""<p>入向带宽峰值 bps</p>
25884
25898
  :rtype: int
25885
25899
  """
25886
25900
  return self._InFlowMax
@@ -25891,7 +25905,7 @@ class NatInstanceInfo(AbstractModel):
25891
25905
 
25892
25906
  @property
25893
25907
  def OutFlowMax(self):
25894
- r"""出向带宽峰值 bps
25908
+ r"""<p>出向带宽峰值 bps</p>
25895
25909
  :rtype: int
25896
25910
  """
25897
25911
  return self._OutFlowMax
@@ -25902,7 +25916,7 @@ class NatInstanceInfo(AbstractModel):
25902
25916
 
25903
25917
  @property
25904
25918
  def RegionZh(self):
25905
- r"""地域中文信息
25919
+ r"""<p>地域中文信息</p>
25906
25920
  :rtype: str
25907
25921
  """
25908
25922
  return self._RegionZh
@@ -25913,7 +25927,7 @@ class NatInstanceInfo(AbstractModel):
25913
25927
 
25914
25928
  @property
25915
25929
  def EipAddress(self):
25916
- r"""公网ip数组
25930
+ r"""<p>公网ip数组</p>
25917
25931
  :rtype: list of str
25918
25932
  """
25919
25933
  return self._EipAddress
@@ -25924,7 +25938,7 @@ class NatInstanceInfo(AbstractModel):
25924
25938
 
25925
25939
  @property
25926
25940
  def VpcIp(self):
25927
- r"""内外使用ip数组
25941
+ r"""<p>内外使用ip数组</p>
25928
25942
  :rtype: list of str
25929
25943
  """
25930
25944
  return self._VpcIp
@@ -25935,7 +25949,7 @@ class NatInstanceInfo(AbstractModel):
25935
25949
 
25936
25950
  @property
25937
25951
  def Subnets(self):
25938
- r"""实例关联子网数组
25952
+ r"""<p>实例关联子网数组</p>
25939
25953
  :rtype: list of str
25940
25954
  """
25941
25955
  return self._Subnets
@@ -25946,7 +25960,7 @@ class NatInstanceInfo(AbstractModel):
25946
25960
 
25947
25961
  @property
25948
25962
  def Status(self):
25949
- r"""0 :正常 1:正在初始化
25963
+ r"""<p>0 :正常 1:正在初始化</p>
25950
25964
  :rtype: int
25951
25965
  """
25952
25966
  return self._Status
@@ -25957,7 +25971,7 @@ class NatInstanceInfo(AbstractModel):
25957
25971
 
25958
25972
  @property
25959
25973
  def RegionDetail(self):
25960
- r"""地域区域信息
25974
+ r"""<p>地域区域信息</p>
25961
25975
  :rtype: str
25962
25976
  """
25963
25977
  return self._RegionDetail
@@ -25968,7 +25982,7 @@ class NatInstanceInfo(AbstractModel):
25968
25982
 
25969
25983
  @property
25970
25984
  def ZoneZh(self):
25971
- r"""实例所在可用区
25985
+ r"""<p>实例所在可用区</p>
25972
25986
  :rtype: str
25973
25987
  """
25974
25988
  return self._ZoneZh
@@ -25979,7 +25993,7 @@ class NatInstanceInfo(AbstractModel):
25979
25993
 
25980
25994
  @property
25981
25995
  def ZoneZhBak(self):
25982
- r"""实例所在可用区
25996
+ r"""<p>实例所在可用区</p>
25983
25997
  :rtype: str
25984
25998
  """
25985
25999
  return self._ZoneZhBak
@@ -25990,7 +26004,7 @@ class NatInstanceInfo(AbstractModel):
25990
26004
 
25991
26005
  @property
25992
26006
  def RuleUsed(self):
25993
- r"""已使用规则数
26007
+ r"""<p>已使用规则数</p>
25994
26008
  :rtype: int
25995
26009
  """
25996
26010
  return self._RuleUsed
@@ -26001,7 +26015,7 @@ class NatInstanceInfo(AbstractModel):
26001
26015
 
26002
26016
  @property
26003
26017
  def RuleMax(self):
26004
- r"""实例的规则限制最大规格数
26018
+ r"""<p>实例的规则限制最大规格数</p>
26005
26019
  :rtype: int
26006
26020
  """
26007
26021
  return self._RuleMax
@@ -26012,7 +26026,7 @@ class NatInstanceInfo(AbstractModel):
26012
26026
 
26013
26027
  @property
26014
26028
  def EngineVersion(self):
26015
- r"""实例引擎版本
26029
+ r"""<p>实例引擎版本</p>
26016
26030
  :rtype: str
26017
26031
  """
26018
26032
  return self._EngineVersion
@@ -26023,7 +26037,7 @@ class NatInstanceInfo(AbstractModel):
26023
26037
 
26024
26038
  @property
26025
26039
  def UpdateEnable(self):
26026
- r"""引擎是否可升级:0,不可升级;1,可升级
26040
+ r"""<p>引擎是否可升级:0,不可升级;1,可升级</p>
26027
26041
  :rtype: int
26028
26042
  """
26029
26043
  return self._UpdateEnable
@@ -26034,7 +26048,7 @@ class NatInstanceInfo(AbstractModel):
26034
26048
 
26035
26049
  @property
26036
26050
  def NeedProbeEngineUpdate(self):
26037
- r"""是的需要升级引擎 支持 nat拨测 1需要 0不需要
26051
+ r"""<p>是的需要升级引擎 支持 nat拨测 1需要 0不需要</p>
26038
26052
  :rtype: int
26039
26053
  """
26040
26054
  return self._NeedProbeEngineUpdate
@@ -26045,7 +26059,7 @@ class NatInstanceInfo(AbstractModel):
26045
26059
 
26046
26060
  @property
26047
26061
  def TrafficMode(self):
26048
- r"""引擎运行模式,Normal:正常, OnlyRoute:透明模式
26062
+ r"""<p>引擎运行模式,Normal:正常, OnlyRoute:透明模式</p>
26049
26063
  :rtype: str
26050
26064
  """
26051
26065
  return self._TrafficMode
@@ -26056,7 +26070,7 @@ class NatInstanceInfo(AbstractModel):
26056
26070
 
26057
26071
  @property
26058
26072
  def Zone(self):
26059
- r"""实例主所在可用区
26073
+ r"""<p>实例主所在可用区</p>
26060
26074
  :rtype: str
26061
26075
  """
26062
26076
  return self._Zone
@@ -26067,7 +26081,7 @@ class NatInstanceInfo(AbstractModel):
26067
26081
 
26068
26082
  @property
26069
26083
  def ZoneBak(self):
26070
- r"""实例备所在可用区
26084
+ r"""<p>实例备所在可用区</p>
26071
26085
  :rtype: str
26072
26086
  """
26073
26087
  return self._ZoneBak
@@ -26078,7 +26092,7 @@ class NatInstanceInfo(AbstractModel):
26078
26092
 
26079
26093
  @property
26080
26094
  def ReserveTime(self):
26081
- r"""引擎预约升级时间
26095
+ r"""<p>引擎预约升级时间</p>
26082
26096
  :rtype: str
26083
26097
  """
26084
26098
  return self._ReserveTime
@@ -26089,7 +26103,7 @@ class NatInstanceInfo(AbstractModel):
26089
26103
 
26090
26104
  @property
26091
26105
  def ReserveVersion(self):
26092
- r"""引擎预约升级版本
26106
+ r"""<p>引擎预约升级版本</p>
26093
26107
  :rtype: str
26094
26108
  """
26095
26109
  return self._ReserveVersion
@@ -26100,7 +26114,7 @@ class NatInstanceInfo(AbstractModel):
26100
26114
 
26101
26115
  @property
26102
26116
  def ReserveVersionState(self):
26103
- r"""引擎预约升级版本状态 stable:稳定版;previewed:预览版
26117
+ r"""<p>引擎预约升级版本状态 stable:稳定版;previewed:预览版</p>
26104
26118
  :rtype: str
26105
26119
  """
26106
26120
  return self._ReserveVersionState
@@ -26111,9 +26125,7 @@ class NatInstanceInfo(AbstractModel):
26111
26125
 
26112
26126
  @property
26113
26127
  def ElasticSwitch(self):
26114
- r"""弹性开关
26115
- 1 打开
26116
- 0 关闭
26128
+ r"""<p>弹性开关<br>1 打开<br>0 关闭</p>
26117
26129
  :rtype: int
26118
26130
  """
26119
26131
  return self._ElasticSwitch
@@ -26124,7 +26136,7 @@ class NatInstanceInfo(AbstractModel):
26124
26136
 
26125
26137
  @property
26126
26138
  def ElasticBandwidth(self):
26127
- r"""弹性带宽,单位Mbps
26139
+ r"""<p>弹性带宽,单位Mbps</p>
26128
26140
  :rtype: int
26129
26141
  """
26130
26142
  return self._ElasticBandwidth
@@ -26135,9 +26147,7 @@ class NatInstanceInfo(AbstractModel):
26135
26147
 
26136
26148
  @property
26137
26149
  def IsFirstAfterPay(self):
26138
- r"""是否首次开通按量付费
26139
- 1 是
26140
- 0 不是
26150
+ r"""<p>是否首次开通按量付费<br>1 是<br>0 不是</p>
26141
26151
  :rtype: int
26142
26152
  """
26143
26153
  return self._IsFirstAfterPay
@@ -26146,6 +26156,17 @@ class NatInstanceInfo(AbstractModel):
26146
26156
  def IsFirstAfterPay(self, IsFirstAfterPay):
26147
26157
  self._IsFirstAfterPay = IsFirstAfterPay
26148
26158
 
26159
+ @property
26160
+ def ElasticTrafficSwitch(self):
26161
+ r"""<p>按流量弹性开关</p><p>默认值:0</p>
26162
+ :rtype: int
26163
+ """
26164
+ return self._ElasticTrafficSwitch
26165
+
26166
+ @ElasticTrafficSwitch.setter
26167
+ def ElasticTrafficSwitch(self, ElasticTrafficSwitch):
26168
+ self._ElasticTrafficSwitch = ElasticTrafficSwitch
26169
+
26149
26170
 
26150
26171
  def _deserialize(self, params):
26151
26172
  self._NatinsId = params.get("NatinsId")
@@ -26177,6 +26198,7 @@ class NatInstanceInfo(AbstractModel):
26177
26198
  self._ElasticSwitch = params.get("ElasticSwitch")
26178
26199
  self._ElasticBandwidth = params.get("ElasticBandwidth")
26179
26200
  self._IsFirstAfterPay = params.get("IsFirstAfterPay")
26201
+ self._ElasticTrafficSwitch = params.get("ElasticTrafficSwitch")
26180
26202
  memeber_set = set(params.keys())
26181
26203
  for name, value in vars(self).items():
26182
26204
  property_name = name[1:]
@@ -30144,22 +30166,24 @@ class SerialRegionInfo(AbstractModel):
30144
30166
 
30145
30167
  def __init__(self):
30146
30168
  r"""
30147
- :param _Region: 地域
30169
+ :param _Region: <p>地域</p>
30148
30170
  注意:此字段可能返回 null,表示取不到有效值。
30149
30171
  :type Region: str
30150
- :param _Width: 分配带宽值 单位Mbps
30172
+ :param _Width: <p>分配带宽值 单位Mbps</p>
30151
30173
  注意:此字段可能返回 null,表示取不到有效值。
30152
30174
  :type Width: int
30153
- :param _ElasticSwitch: 弹性开关
30175
+ :param _ElasticSwitch: <p>弹性开关</p>
30154
30176
  注意:此字段可能返回 null,表示取不到有效值。
30155
30177
  :type ElasticSwitch: int
30156
- :param _ElasticBandwidth: 弹性带宽上限,单位Mbps
30178
+ :param _ElasticBandwidth: <p>弹性带宽上限,单位Mbps</p>
30157
30179
  注意:此字段可能返回 null,表示取不到有效值。
30158
30180
  :type ElasticBandwidth: int
30159
- :param _InFlowMax: 七天入向峰值带宽,单位bps
30181
+ :param _InFlowMax: <p>七天入向峰值带宽,单位bps</p>
30160
30182
  :type InFlowMax: int
30161
- :param _OutFlowMax: 七天出向峰值带宽,单位bps
30183
+ :param _OutFlowMax: <p>七天出向峰值带宽,单位bps</p>
30162
30184
  :type OutFlowMax: int
30185
+ :param _ElasticTrafficSwitch: <p>边界按流量弹性开关</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
30186
+ :type ElasticTrafficSwitch: int
30163
30187
  """
30164
30188
  self._Region = None
30165
30189
  self._Width = None
@@ -30167,10 +30191,11 @@ class SerialRegionInfo(AbstractModel):
30167
30191
  self._ElasticBandwidth = None
30168
30192
  self._InFlowMax = None
30169
30193
  self._OutFlowMax = None
30194
+ self._ElasticTrafficSwitch = None
30170
30195
 
30171
30196
  @property
30172
30197
  def Region(self):
30173
- r"""地域
30198
+ r"""<p>地域</p>
30174
30199
  注意:此字段可能返回 null,表示取不到有效值。
30175
30200
  :rtype: str
30176
30201
  """
@@ -30182,7 +30207,7 @@ class SerialRegionInfo(AbstractModel):
30182
30207
 
30183
30208
  @property
30184
30209
  def Width(self):
30185
- r"""分配带宽值 单位Mbps
30210
+ r"""<p>分配带宽值 单位Mbps</p>
30186
30211
  注意:此字段可能返回 null,表示取不到有效值。
30187
30212
  :rtype: int
30188
30213
  """
@@ -30194,7 +30219,7 @@ class SerialRegionInfo(AbstractModel):
30194
30219
 
30195
30220
  @property
30196
30221
  def ElasticSwitch(self):
30197
- r"""弹性开关
30222
+ r"""<p>弹性开关</p>
30198
30223
  注意:此字段可能返回 null,表示取不到有效值。
30199
30224
  :rtype: int
30200
30225
  """
@@ -30206,7 +30231,7 @@ class SerialRegionInfo(AbstractModel):
30206
30231
 
30207
30232
  @property
30208
30233
  def ElasticBandwidth(self):
30209
- r"""弹性带宽上限,单位Mbps
30234
+ r"""<p>弹性带宽上限,单位Mbps</p>
30210
30235
  注意:此字段可能返回 null,表示取不到有效值。
30211
30236
  :rtype: int
30212
30237
  """
@@ -30218,7 +30243,7 @@ class SerialRegionInfo(AbstractModel):
30218
30243
 
30219
30244
  @property
30220
30245
  def InFlowMax(self):
30221
- r"""七天入向峰值带宽,单位bps
30246
+ r"""<p>七天入向峰值带宽,单位bps</p>
30222
30247
  :rtype: int
30223
30248
  """
30224
30249
  return self._InFlowMax
@@ -30229,7 +30254,7 @@ class SerialRegionInfo(AbstractModel):
30229
30254
 
30230
30255
  @property
30231
30256
  def OutFlowMax(self):
30232
- r"""七天出向峰值带宽,单位bps
30257
+ r"""<p>七天出向峰值带宽,单位bps</p>
30233
30258
  :rtype: int
30234
30259
  """
30235
30260
  return self._OutFlowMax
@@ -30238,6 +30263,17 @@ class SerialRegionInfo(AbstractModel):
30238
30263
  def OutFlowMax(self, OutFlowMax):
30239
30264
  self._OutFlowMax = OutFlowMax
30240
30265
 
30266
+ @property
30267
+ def ElasticTrafficSwitch(self):
30268
+ r"""<p>边界按流量弹性开关</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
30269
+ :rtype: int
30270
+ """
30271
+ return self._ElasticTrafficSwitch
30272
+
30273
+ @ElasticTrafficSwitch.setter
30274
+ def ElasticTrafficSwitch(self, ElasticTrafficSwitch):
30275
+ self._ElasticTrafficSwitch = ElasticTrafficSwitch
30276
+
30241
30277
 
30242
30278
  def _deserialize(self, params):
30243
30279
  self._Region = params.get("Region")
@@ -30246,6 +30282,7 @@ class SerialRegionInfo(AbstractModel):
30246
30282
  self._ElasticBandwidth = params.get("ElasticBandwidth")
30247
30283
  self._InFlowMax = params.get("InFlowMax")
30248
30284
  self._OutFlowMax = params.get("OutFlowMax")
30285
+ self._ElasticTrafficSwitch = params.get("ElasticTrafficSwitch")
30249
30286
  memeber_set = set(params.keys())
30250
30287
  for name, value in vars(self).items():
30251
30288
  property_name = name[1:]
@@ -32721,68 +32758,68 @@ class VpcFwInstanceInfo(AbstractModel):
32721
32758
 
32722
32759
  def __init__(self):
32723
32760
  r"""
32724
- :param _FwInsName: VPC防火墙实例名称
32761
+ :param _FwInsName: <p>VPC防火墙实例名称</p>
32725
32762
  :type FwInsName: str
32726
- :param _FwInsId: VPC防火墙实例ID
32763
+ :param _FwInsId: <p>VPC防火墙实例ID</p>
32727
32764
  :type FwInsId: str
32728
- :param _FwMode: VPC防火墙实例模式 0: 旧VPC模式防火墙 1: CCN模式防火墙
32765
+ :param _FwMode: <p>VPC防火墙实例模式 0: 旧VPC模式防火墙 1: CCN模式防火墙</p>
32729
32766
  :type FwMode: int
32730
- :param _JoinInsNum: VPC防火墙接入网络实例个数
32767
+ :param _JoinInsNum: <p>VPC防火墙接入网络实例个数</p>
32731
32768
  :type JoinInsNum: int
32732
- :param _FwSwitchNum: VPC防火墙开关个数
32769
+ :param _FwSwitchNum: <p>VPC防火墙开关个数</p>
32733
32770
  :type FwSwitchNum: int
32734
- :param _Status: VPC防火墙状态 0:正常 , 1:创建中 2: 变更中
32771
+ :param _Status: <p>VPC防火墙状态 0:正常 , 1:创建中 2: 变更中</p>
32735
32772
  :type Status: int
32736
- :param _Time: VPC防火墙创建时间
32773
+ :param _Time: <p>VPC防火墙创建时间</p>
32737
32774
  :type Time: str
32738
- :param _CcnId: VPC 相关云联网ID列表
32775
+ :param _CcnId: <p>VPC 相关云联网ID列表</p>
32739
32776
  :type CcnId: list of str
32740
- :param _CcnName: VPC 相关云联网名称列表
32777
+ :param _CcnName: <p>VPC 相关云联网名称列表</p>
32741
32778
  :type CcnName: list of str
32742
- :param _PeerConnectionId: VPC 相关对等连接ID列表
32779
+ :param _PeerConnectionId: <p>VPC 相关对等连接ID列表</p>
32743
32780
  :type PeerConnectionId: list of str
32744
- :param _PeerConnectionName: VPC 相关对等连接名称列表
32781
+ :param _PeerConnectionName: <p>VPC 相关对等连接名称列表</p>
32745
32782
  :type PeerConnectionName: list of str
32746
- :param _FwCvmLst: VPC防火墙CVM的列表
32783
+ :param _FwCvmLst: <p>VPC防火墙CVM的列表</p>
32747
32784
  :type FwCvmLst: list of VpcFwCvmInsInfo
32748
- :param _JoinInsLst: VPC防火墙接入网络实例类型列表
32785
+ :param _JoinInsLst: <p>VPC防火墙接入网络实例类型列表</p>
32749
32786
  :type JoinInsLst: list of VpcFwJoinInstanceType
32750
- :param _FwGateway: 防火墙网关信息
32787
+ :param _FwGateway: <p>防火墙网关信息</p>
32751
32788
  :type FwGateway: list of FwGateway
32752
- :param _FwGroupId: 防火墙(组)ID
32789
+ :param _FwGroupId: <p>防火墙(组)ID</p>
32753
32790
  :type FwGroupId: str
32754
- :param _RuleUsed: 已使用规则数
32791
+ :param _RuleUsed: <p>已使用规则数</p>
32755
32792
  :type RuleUsed: int
32756
- :param _RuleMax: 最大规则数
32793
+ :param _RuleMax: <p>最大规则数</p>
32757
32794
  :type RuleMax: int
32758
- :param _Width: 防火墙实例带宽
32795
+ :param _Width: <p>防火墙实例带宽</p>
32759
32796
  :type Width: int
32760
- :param _UserVpcWidth: 用户VPC墙总带宽
32797
+ :param _UserVpcWidth: <p>用户VPC墙总带宽</p>
32761
32798
  :type UserVpcWidth: int
32762
- :param _JoinInsIdLst: 接入的vpc列表
32799
+ :param _JoinInsIdLst: <p>接入的vpc列表</p>
32763
32800
  :type JoinInsIdLst: list of str
32764
- :param _FlowMax: 内网间峰值带宽 (单位 bps )
32801
+ :param _FlowMax: <p>内网间峰值带宽 (单位 bps )</p>
32765
32802
  :type FlowMax: int
32766
- :param _EngineVersion: 实例引擎版本
32803
+ :param _EngineVersion: <p>实例引擎版本</p>
32767
32804
  :type EngineVersion: str
32768
- :param _UpdateEnable: 引擎是否可升级:0,不可升级;1,可升级
32805
+ :param _UpdateEnable: <p>引擎是否可升级:0,不可升级;1,可升级</p>
32769
32806
  :type UpdateEnable: int
32770
- :param _TrafficMode: 引擎运行模式,Normal:正常, OnlyRoute:透明模式
32807
+ :param _TrafficMode: <p>引擎运行模式,Normal:正常, OnlyRoute:透明模式</p>
32771
32808
  :type TrafficMode: str
32772
- :param _ReserveTime: 引擎预约升级时间
32809
+ :param _ReserveTime: <p>引擎预约升级时间</p>
32773
32810
  :type ReserveTime: str
32774
- :param _ReserveVersion: 预约引擎升级版本
32811
+ :param _ReserveVersion: <p>预约引擎升级版本</p>
32775
32812
  :type ReserveVersion: str
32776
- :param _ReserveVersionState: 引擎预约升级版本状态
32813
+ :param _ReserveVersionState: <p>引擎预约升级版本状态</p>
32777
32814
  :type ReserveVersionState: str
32778
- :param _ElasticSwitch: 弹性开关 1打开 0关闭
32815
+ :param _ElasticSwitch: <p>弹性开关 1打开 0关闭</p>
32779
32816
  :type ElasticSwitch: int
32780
- :param _ElasticBandwidth: 弹性带宽,单位Mbps
32817
+ :param _ElasticBandwidth: <p>弹性带宽,单位Mbps</p>
32781
32818
  :type ElasticBandwidth: int
32782
- :param _IsFirstAfterPay: 是否首次开通按量付费
32783
- 1 是
32784
- 0 不是
32819
+ :param _IsFirstAfterPay: <p>是否首次开通按量付费<br>1 是<br>0 不是</p>
32785
32820
  :type IsFirstAfterPay: int
32821
+ :param _ElasticTrafficSwitch: <p>按流量弹性开关</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
32822
+ :type ElasticTrafficSwitch: int
32786
32823
  """
32787
32824
  self._FwInsName = None
32788
32825
  self._FwInsId = None
@@ -32814,10 +32851,11 @@ class VpcFwInstanceInfo(AbstractModel):
32814
32851
  self._ElasticSwitch = None
32815
32852
  self._ElasticBandwidth = None
32816
32853
  self._IsFirstAfterPay = None
32854
+ self._ElasticTrafficSwitch = None
32817
32855
 
32818
32856
  @property
32819
32857
  def FwInsName(self):
32820
- r"""VPC防火墙实例名称
32858
+ r"""<p>VPC防火墙实例名称</p>
32821
32859
  :rtype: str
32822
32860
  """
32823
32861
  return self._FwInsName
@@ -32828,7 +32866,7 @@ class VpcFwInstanceInfo(AbstractModel):
32828
32866
 
32829
32867
  @property
32830
32868
  def FwInsId(self):
32831
- r"""VPC防火墙实例ID
32869
+ r"""<p>VPC防火墙实例ID</p>
32832
32870
  :rtype: str
32833
32871
  """
32834
32872
  return self._FwInsId
@@ -32839,7 +32877,7 @@ class VpcFwInstanceInfo(AbstractModel):
32839
32877
 
32840
32878
  @property
32841
32879
  def FwMode(self):
32842
- r"""VPC防火墙实例模式 0: 旧VPC模式防火墙 1: CCN模式防火墙
32880
+ r"""<p>VPC防火墙实例模式 0: 旧VPC模式防火墙 1: CCN模式防火墙</p>
32843
32881
  :rtype: int
32844
32882
  """
32845
32883
  return self._FwMode
@@ -32850,7 +32888,7 @@ class VpcFwInstanceInfo(AbstractModel):
32850
32888
 
32851
32889
  @property
32852
32890
  def JoinInsNum(self):
32853
- r"""VPC防火墙接入网络实例个数
32891
+ r"""<p>VPC防火墙接入网络实例个数</p>
32854
32892
  :rtype: int
32855
32893
  """
32856
32894
  return self._JoinInsNum
@@ -32861,7 +32899,7 @@ class VpcFwInstanceInfo(AbstractModel):
32861
32899
 
32862
32900
  @property
32863
32901
  def FwSwitchNum(self):
32864
- r"""VPC防火墙开关个数
32902
+ r"""<p>VPC防火墙开关个数</p>
32865
32903
  :rtype: int
32866
32904
  """
32867
32905
  return self._FwSwitchNum
@@ -32872,7 +32910,7 @@ class VpcFwInstanceInfo(AbstractModel):
32872
32910
 
32873
32911
  @property
32874
32912
  def Status(self):
32875
- r"""VPC防火墙状态 0:正常 , 1:创建中 2: 变更中
32913
+ r"""<p>VPC防火墙状态 0:正常 , 1:创建中 2: 变更中</p>
32876
32914
  :rtype: int
32877
32915
  """
32878
32916
  return self._Status
@@ -32883,7 +32921,7 @@ class VpcFwInstanceInfo(AbstractModel):
32883
32921
 
32884
32922
  @property
32885
32923
  def Time(self):
32886
- r"""VPC防火墙创建时间
32924
+ r"""<p>VPC防火墙创建时间</p>
32887
32925
  :rtype: str
32888
32926
  """
32889
32927
  return self._Time
@@ -32894,7 +32932,7 @@ class VpcFwInstanceInfo(AbstractModel):
32894
32932
 
32895
32933
  @property
32896
32934
  def CcnId(self):
32897
- r"""VPC 相关云联网ID列表
32935
+ r"""<p>VPC 相关云联网ID列表</p>
32898
32936
  :rtype: list of str
32899
32937
  """
32900
32938
  return self._CcnId
@@ -32905,7 +32943,7 @@ class VpcFwInstanceInfo(AbstractModel):
32905
32943
 
32906
32944
  @property
32907
32945
  def CcnName(self):
32908
- r"""VPC 相关云联网名称列表
32946
+ r"""<p>VPC 相关云联网名称列表</p>
32909
32947
  :rtype: list of str
32910
32948
  """
32911
32949
  return self._CcnName
@@ -32916,7 +32954,7 @@ class VpcFwInstanceInfo(AbstractModel):
32916
32954
 
32917
32955
  @property
32918
32956
  def PeerConnectionId(self):
32919
- r"""VPC 相关对等连接ID列表
32957
+ r"""<p>VPC 相关对等连接ID列表</p>
32920
32958
  :rtype: list of str
32921
32959
  """
32922
32960
  return self._PeerConnectionId
@@ -32927,7 +32965,7 @@ class VpcFwInstanceInfo(AbstractModel):
32927
32965
 
32928
32966
  @property
32929
32967
  def PeerConnectionName(self):
32930
- r"""VPC 相关对等连接名称列表
32968
+ r"""<p>VPC 相关对等连接名称列表</p>
32931
32969
  :rtype: list of str
32932
32970
  """
32933
32971
  return self._PeerConnectionName
@@ -32938,7 +32976,7 @@ class VpcFwInstanceInfo(AbstractModel):
32938
32976
 
32939
32977
  @property
32940
32978
  def FwCvmLst(self):
32941
- r"""VPC防火墙CVM的列表
32979
+ r"""<p>VPC防火墙CVM的列表</p>
32942
32980
  :rtype: list of VpcFwCvmInsInfo
32943
32981
  """
32944
32982
  return self._FwCvmLst
@@ -32949,7 +32987,7 @@ class VpcFwInstanceInfo(AbstractModel):
32949
32987
 
32950
32988
  @property
32951
32989
  def JoinInsLst(self):
32952
- r"""VPC防火墙接入网络实例类型列表
32990
+ r"""<p>VPC防火墙接入网络实例类型列表</p>
32953
32991
  :rtype: list of VpcFwJoinInstanceType
32954
32992
  """
32955
32993
  return self._JoinInsLst
@@ -32960,7 +32998,7 @@ class VpcFwInstanceInfo(AbstractModel):
32960
32998
 
32961
32999
  @property
32962
33000
  def FwGateway(self):
32963
- r"""防火墙网关信息
33001
+ r"""<p>防火墙网关信息</p>
32964
33002
  :rtype: list of FwGateway
32965
33003
  """
32966
33004
  return self._FwGateway
@@ -32971,7 +33009,7 @@ class VpcFwInstanceInfo(AbstractModel):
32971
33009
 
32972
33010
  @property
32973
33011
  def FwGroupId(self):
32974
- r"""防火墙(组)ID
33012
+ r"""<p>防火墙(组)ID</p>
32975
33013
  :rtype: str
32976
33014
  """
32977
33015
  return self._FwGroupId
@@ -32982,7 +33020,7 @@ class VpcFwInstanceInfo(AbstractModel):
32982
33020
 
32983
33021
  @property
32984
33022
  def RuleUsed(self):
32985
- r"""已使用规则数
33023
+ r"""<p>已使用规则数</p>
32986
33024
  :rtype: int
32987
33025
  """
32988
33026
  return self._RuleUsed
@@ -32993,7 +33031,7 @@ class VpcFwInstanceInfo(AbstractModel):
32993
33031
 
32994
33032
  @property
32995
33033
  def RuleMax(self):
32996
- r"""最大规则数
33034
+ r"""<p>最大规则数</p>
32997
33035
  :rtype: int
32998
33036
  """
32999
33037
  return self._RuleMax
@@ -33004,7 +33042,7 @@ class VpcFwInstanceInfo(AbstractModel):
33004
33042
 
33005
33043
  @property
33006
33044
  def Width(self):
33007
- r"""防火墙实例带宽
33045
+ r"""<p>防火墙实例带宽</p>
33008
33046
  :rtype: int
33009
33047
  """
33010
33048
  return self._Width
@@ -33015,7 +33053,7 @@ class VpcFwInstanceInfo(AbstractModel):
33015
33053
 
33016
33054
  @property
33017
33055
  def UserVpcWidth(self):
33018
- r"""用户VPC墙总带宽
33056
+ r"""<p>用户VPC墙总带宽</p>
33019
33057
  :rtype: int
33020
33058
  """
33021
33059
  return self._UserVpcWidth
@@ -33026,7 +33064,7 @@ class VpcFwInstanceInfo(AbstractModel):
33026
33064
 
33027
33065
  @property
33028
33066
  def JoinInsIdLst(self):
33029
- r"""接入的vpc列表
33067
+ r"""<p>接入的vpc列表</p>
33030
33068
  :rtype: list of str
33031
33069
  """
33032
33070
  return self._JoinInsIdLst
@@ -33037,7 +33075,7 @@ class VpcFwInstanceInfo(AbstractModel):
33037
33075
 
33038
33076
  @property
33039
33077
  def FlowMax(self):
33040
- r"""内网间峰值带宽 (单位 bps )
33078
+ r"""<p>内网间峰值带宽 (单位 bps )</p>
33041
33079
  :rtype: int
33042
33080
  """
33043
33081
  return self._FlowMax
@@ -33048,7 +33086,7 @@ class VpcFwInstanceInfo(AbstractModel):
33048
33086
 
33049
33087
  @property
33050
33088
  def EngineVersion(self):
33051
- r"""实例引擎版本
33089
+ r"""<p>实例引擎版本</p>
33052
33090
  :rtype: str
33053
33091
  """
33054
33092
  return self._EngineVersion
@@ -33059,7 +33097,7 @@ class VpcFwInstanceInfo(AbstractModel):
33059
33097
 
33060
33098
  @property
33061
33099
  def UpdateEnable(self):
33062
- r"""引擎是否可升级:0,不可升级;1,可升级
33100
+ r"""<p>引擎是否可升级:0,不可升级;1,可升级</p>
33063
33101
  :rtype: int
33064
33102
  """
33065
33103
  return self._UpdateEnable
@@ -33070,7 +33108,7 @@ class VpcFwInstanceInfo(AbstractModel):
33070
33108
 
33071
33109
  @property
33072
33110
  def TrafficMode(self):
33073
- r"""引擎运行模式,Normal:正常, OnlyRoute:透明模式
33111
+ r"""<p>引擎运行模式,Normal:正常, OnlyRoute:透明模式</p>
33074
33112
  :rtype: str
33075
33113
  """
33076
33114
  return self._TrafficMode
@@ -33081,7 +33119,7 @@ class VpcFwInstanceInfo(AbstractModel):
33081
33119
 
33082
33120
  @property
33083
33121
  def ReserveTime(self):
33084
- r"""引擎预约升级时间
33122
+ r"""<p>引擎预约升级时间</p>
33085
33123
  :rtype: str
33086
33124
  """
33087
33125
  return self._ReserveTime
@@ -33092,7 +33130,7 @@ class VpcFwInstanceInfo(AbstractModel):
33092
33130
 
33093
33131
  @property
33094
33132
  def ReserveVersion(self):
33095
- r"""预约引擎升级版本
33133
+ r"""<p>预约引擎升级版本</p>
33096
33134
  :rtype: str
33097
33135
  """
33098
33136
  return self._ReserveVersion
@@ -33103,7 +33141,7 @@ class VpcFwInstanceInfo(AbstractModel):
33103
33141
 
33104
33142
  @property
33105
33143
  def ReserveVersionState(self):
33106
- r"""引擎预约升级版本状态
33144
+ r"""<p>引擎预约升级版本状态</p>
33107
33145
  :rtype: str
33108
33146
  """
33109
33147
  return self._ReserveVersionState
@@ -33114,7 +33152,7 @@ class VpcFwInstanceInfo(AbstractModel):
33114
33152
 
33115
33153
  @property
33116
33154
  def ElasticSwitch(self):
33117
- r"""弹性开关 1打开 0关闭
33155
+ r"""<p>弹性开关 1打开 0关闭</p>
33118
33156
  :rtype: int
33119
33157
  """
33120
33158
  return self._ElasticSwitch
@@ -33125,7 +33163,7 @@ class VpcFwInstanceInfo(AbstractModel):
33125
33163
 
33126
33164
  @property
33127
33165
  def ElasticBandwidth(self):
33128
- r"""弹性带宽,单位Mbps
33166
+ r"""<p>弹性带宽,单位Mbps</p>
33129
33167
  :rtype: int
33130
33168
  """
33131
33169
  return self._ElasticBandwidth
@@ -33136,9 +33174,7 @@ class VpcFwInstanceInfo(AbstractModel):
33136
33174
 
33137
33175
  @property
33138
33176
  def IsFirstAfterPay(self):
33139
- r"""是否首次开通按量付费
33140
- 1 是
33141
- 0 不是
33177
+ r"""<p>是否首次开通按量付费<br>1 是<br>0 不是</p>
33142
33178
  :rtype: int
33143
33179
  """
33144
33180
  return self._IsFirstAfterPay
@@ -33147,6 +33183,17 @@ class VpcFwInstanceInfo(AbstractModel):
33147
33183
  def IsFirstAfterPay(self, IsFirstAfterPay):
33148
33184
  self._IsFirstAfterPay = IsFirstAfterPay
33149
33185
 
33186
+ @property
33187
+ def ElasticTrafficSwitch(self):
33188
+ r"""<p>按流量弹性开关</p><p>取值范围:[0, 1]</p><p>默认值:0</p>
33189
+ :rtype: int
33190
+ """
33191
+ return self._ElasticTrafficSwitch
33192
+
33193
+ @ElasticTrafficSwitch.setter
33194
+ def ElasticTrafficSwitch(self, ElasticTrafficSwitch):
33195
+ self._ElasticTrafficSwitch = ElasticTrafficSwitch
33196
+
33150
33197
 
33151
33198
  def _deserialize(self, params):
33152
33199
  self._FwInsName = params.get("FwInsName")
@@ -33194,6 +33241,7 @@ class VpcFwInstanceInfo(AbstractModel):
33194
33241
  self._ElasticSwitch = params.get("ElasticSwitch")
33195
33242
  self._ElasticBandwidth = params.get("ElasticBandwidth")
33196
33243
  self._IsFirstAfterPay = params.get("IsFirstAfterPay")
33244
+ self._ElasticTrafficSwitch = params.get("ElasticTrafficSwitch")
33197
33245
  memeber_set = set(params.keys())
33198
33246
  for name, value in vars(self).items():
33199
33247
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cfw
3
- Version: 3.1.111
3
+ Version: 3.1.112
4
4
  Summary: Tencent Cloud Cfw SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.111
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.112
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.111