tencentcloud-sdk-cfw 3.0.804 → 3.0.806
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.
- checksums.yaml +4 -4
 - data/lib/VERSION +1 -1
 - data/lib/v20190904/models.rb +111 -6
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 81b3407142589b1c5711dd5e95266fbf52733f81
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 7a2533f3980a8abc8c708ece888f8936dfb6e0ad
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 7731f61fbf3dc83aac700a72c606405e84a09779407753f891a2d415b7b92fab75a84c611345f1d445446f6eb62327a0289e50f7c014733c342706a4cd950db8
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 50244732ea0e88aa7178a6ba7c439fe9ccf2de6cbb1219ead4554f4f477e3d10530c7932720abb26fd3903dd5e5d6eea03e98669910514de8208939fbd43bfd3
         
     | 
    
        data/lib/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            3.0. 
     | 
| 
      
 1 
     | 
    
         
            +
            3.0.806
         
     | 
    
        data/lib/v20190904/models.rb
    CHANGED
    
    | 
         @@ -5318,19 +5318,38 @@ module TencentCloud 
     | 
|
| 
       5318 
5318 
     | 
    
         
             
                    # @type Width: Integer
         
     | 
| 
       5319 
5319 
     | 
    
         
             
                    # @param CfwInstance: 防火墙实例id
         
     | 
| 
       5320 
5320 
     | 
    
         
             
                    # @type CfwInstance: String
         
     | 
| 
      
 5321 
     | 
    
         
            +
                    # @param ElasticSwitch: 弹性开关 1打开 0 关闭
         
     | 
| 
      
 5322 
     | 
    
         
            +
                    # @type ElasticSwitch: Integer
         
     | 
| 
      
 5323 
     | 
    
         
            +
                    # @param ElasticBandwidth: 弹性带宽上限,单位Mbps
         
     | 
| 
      
 5324 
     | 
    
         
            +
                    # @type ElasticBandwidth: Integer
         
     | 
| 
      
 5325 
     | 
    
         
            +
                    # @param Tags: 按量计费标签
         
     | 
| 
      
 5326 
     | 
    
         
            +
                    # @type Tags: Array
         
     | 
| 
       5321 
5327 
     | 
    
         | 
| 
       5322 
     | 
    
         
            -
                    attr_accessor :FwType, :Width, :CfwInstance
         
     | 
| 
      
 5328 
     | 
    
         
            +
                    attr_accessor :FwType, :Width, :CfwInstance, :ElasticSwitch, :ElasticBandwidth, :Tags
         
     | 
| 
       5323 
5329 
     | 
    
         | 
| 
       5324 
     | 
    
         
            -
                    def initialize(fwtype=nil, width=nil, cfwinstance=nil)
         
     | 
| 
      
 5330 
     | 
    
         
            +
                    def initialize(fwtype=nil, width=nil, cfwinstance=nil, elasticswitch=nil, elasticbandwidth=nil, tags=nil)
         
     | 
| 
       5325 
5331 
     | 
    
         
             
                      @FwType = fwtype
         
     | 
| 
       5326 
5332 
     | 
    
         
             
                      @Width = width
         
     | 
| 
       5327 
5333 
     | 
    
         
             
                      @CfwInstance = cfwinstance
         
     | 
| 
      
 5334 
     | 
    
         
            +
                      @ElasticSwitch = elasticswitch
         
     | 
| 
      
 5335 
     | 
    
         
            +
                      @ElasticBandwidth = elasticbandwidth
         
     | 
| 
      
 5336 
     | 
    
         
            +
                      @Tags = tags
         
     | 
| 
       5328 
5337 
     | 
    
         
             
                    end
         
     | 
| 
       5329 
5338 
     | 
    
         | 
| 
       5330 
5339 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
       5331 
5340 
     | 
    
         
             
                      @FwType = params['FwType']
         
     | 
| 
       5332 
5341 
     | 
    
         
             
                      @Width = params['Width']
         
     | 
| 
       5333 
5342 
     | 
    
         
             
                      @CfwInstance = params['CfwInstance']
         
     | 
| 
      
 5343 
     | 
    
         
            +
                      @ElasticSwitch = params['ElasticSwitch']
         
     | 
| 
      
 5344 
     | 
    
         
            +
                      @ElasticBandwidth = params['ElasticBandwidth']
         
     | 
| 
      
 5345 
     | 
    
         
            +
                      unless params['Tags'].nil?
         
     | 
| 
      
 5346 
     | 
    
         
            +
                        @Tags = []
         
     | 
| 
      
 5347 
     | 
    
         
            +
                        params['Tags'].each do |i|
         
     | 
| 
      
 5348 
     | 
    
         
            +
                          taginfo_tmp = TagInfo.new
         
     | 
| 
      
 5349 
     | 
    
         
            +
                          taginfo_tmp.deserialize(i)
         
     | 
| 
      
 5350 
     | 
    
         
            +
                          @Tags << taginfo_tmp
         
     | 
| 
      
 5351 
     | 
    
         
            +
                        end
         
     | 
| 
      
 5352 
     | 
    
         
            +
                      end
         
     | 
| 
       5334 
5353 
     | 
    
         
             
                    end
         
     | 
| 
       5335 
5354 
     | 
    
         
             
                  end
         
     | 
| 
       5336 
5355 
     | 
    
         | 
| 
         @@ -7653,10 +7672,32 @@ module TencentCloud 
     | 
|
| 
       7653 
7672 
     | 
    
         
             
                    # @param ZoneBak: 实例备所在可用区
         
     | 
| 
       7654 
7673 
     | 
    
         
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       7655 
7674 
     | 
    
         
             
                    # @type ZoneBak: String
         
     | 
| 
      
 7675 
     | 
    
         
            +
                    # @param ReserveTime: 引擎预约升级时间
         
     | 
| 
      
 7676 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 7677 
     | 
    
         
            +
                    # @type ReserveTime: String
         
     | 
| 
      
 7678 
     | 
    
         
            +
                    # @param ReserveVersion: 引擎预约升级版本
         
     | 
| 
      
 7679 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 7680 
     | 
    
         
            +
                    # @type ReserveVersion: String
         
     | 
| 
      
 7681 
     | 
    
         
            +
                    # @param ReserveVersionState: 引擎预约升级版本状态
         
     | 
| 
      
 7682 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 7683 
     | 
    
         
            +
                    # @type ReserveVersionState: String
         
     | 
| 
      
 7684 
     | 
    
         
            +
                    # @param ElasticSwitch: 弹性开关
         
     | 
| 
      
 7685 
     | 
    
         
            +
                    # 1 打开
         
     | 
| 
      
 7686 
     | 
    
         
            +
                    # 0 关闭
         
     | 
| 
      
 7687 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 7688 
     | 
    
         
            +
                    # @type ElasticSwitch: Integer
         
     | 
| 
      
 7689 
     | 
    
         
            +
                    # @param ElasticBandwidth: 弹性带宽,单位Mbps
         
     | 
| 
      
 7690 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 7691 
     | 
    
         
            +
                    # @type ElasticBandwidth: Integer
         
     | 
| 
      
 7692 
     | 
    
         
            +
                    # @param IsFirstAfterPay: 是否首次开通按量付费
         
     | 
| 
      
 7693 
     | 
    
         
            +
                    # 1 是
         
     | 
| 
      
 7694 
     | 
    
         
            +
                    # 0 不是
         
     | 
| 
      
 7695 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 7696 
     | 
    
         
            +
                    # @type IsFirstAfterPay: Integer
         
     | 
| 
       7656 
7697 
     | 
    
         | 
| 
       7657 
     | 
    
         
            -
                    attr_accessor :NatinsId, :NatinsName, :Region, :FwMode, :BandWidth, :InFlowMax, :OutFlowMax, :RegionZh, :EipAddress, :VpcIp, :Subnets, :Status, :RegionDetail, :ZoneZh, :ZoneZhBak, :RuleUsed, :RuleMax, :EngineVersion, :UpdateEnable, :NeedProbeEngineUpdate, :TrafficMode, :Zone, :ZoneBak
         
     | 
| 
      
 7698 
     | 
    
         
            +
                    attr_accessor :NatinsId, :NatinsName, :Region, :FwMode, :BandWidth, :InFlowMax, :OutFlowMax, :RegionZh, :EipAddress, :VpcIp, :Subnets, :Status, :RegionDetail, :ZoneZh, :ZoneZhBak, :RuleUsed, :RuleMax, :EngineVersion, :UpdateEnable, :NeedProbeEngineUpdate, :TrafficMode, :Zone, :ZoneBak, :ReserveTime, :ReserveVersion, :ReserveVersionState, :ElasticSwitch, :ElasticBandwidth, :IsFirstAfterPay
         
     | 
| 
       7658 
7699 
     | 
    
         | 
| 
       7659 
     | 
    
         
            -
                    def initialize(natinsid=nil, natinsname=nil, region=nil, fwmode=nil, bandwidth=nil, inflowmax=nil, outflowmax=nil, regionzh=nil, eipaddress=nil, vpcip=nil, subnets=nil, status=nil, regiondetail=nil, zonezh=nil, zonezhbak=nil, ruleused=nil, rulemax=nil, engineversion=nil, updateenable=nil, needprobeengineupdate=nil, trafficmode=nil, zone=nil, zonebak=nil)
         
     | 
| 
      
 7700 
     | 
    
         
            +
                    def initialize(natinsid=nil, natinsname=nil, region=nil, fwmode=nil, bandwidth=nil, inflowmax=nil, outflowmax=nil, regionzh=nil, eipaddress=nil, vpcip=nil, subnets=nil, status=nil, regiondetail=nil, zonezh=nil, zonezhbak=nil, ruleused=nil, rulemax=nil, engineversion=nil, updateenable=nil, needprobeengineupdate=nil, trafficmode=nil, zone=nil, zonebak=nil, reservetime=nil, reserveversion=nil, reserveversionstate=nil, elasticswitch=nil, elasticbandwidth=nil, isfirstafterpay=nil)
         
     | 
| 
       7660 
7701 
     | 
    
         
             
                      @NatinsId = natinsid
         
     | 
| 
       7661 
7702 
     | 
    
         
             
                      @NatinsName = natinsname
         
     | 
| 
       7662 
7703 
     | 
    
         
             
                      @Region = region
         
     | 
| 
         @@ -7680,6 +7721,12 @@ module TencentCloud 
     | 
|
| 
       7680 
7721 
     | 
    
         
             
                      @TrafficMode = trafficmode
         
     | 
| 
       7681 
7722 
     | 
    
         
             
                      @Zone = zone
         
     | 
| 
       7682 
7723 
     | 
    
         
             
                      @ZoneBak = zonebak
         
     | 
| 
      
 7724 
     | 
    
         
            +
                      @ReserveTime = reservetime
         
     | 
| 
      
 7725 
     | 
    
         
            +
                      @ReserveVersion = reserveversion
         
     | 
| 
      
 7726 
     | 
    
         
            +
                      @ReserveVersionState = reserveversionstate
         
     | 
| 
      
 7727 
     | 
    
         
            +
                      @ElasticSwitch = elasticswitch
         
     | 
| 
      
 7728 
     | 
    
         
            +
                      @ElasticBandwidth = elasticbandwidth
         
     | 
| 
      
 7729 
     | 
    
         
            +
                      @IsFirstAfterPay = isfirstafterpay
         
     | 
| 
       7683 
7730 
     | 
    
         
             
                    end
         
     | 
| 
       7684 
7731 
     | 
    
         | 
| 
       7685 
7732 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
         @@ -7706,6 +7753,12 @@ module TencentCloud 
     | 
|
| 
       7706 
7753 
     | 
    
         
             
                      @TrafficMode = params['TrafficMode']
         
     | 
| 
       7707 
7754 
     | 
    
         
             
                      @Zone = params['Zone']
         
     | 
| 
       7708 
7755 
     | 
    
         
             
                      @ZoneBak = params['ZoneBak']
         
     | 
| 
      
 7756 
     | 
    
         
            +
                      @ReserveTime = params['ReserveTime']
         
     | 
| 
      
 7757 
     | 
    
         
            +
                      @ReserveVersion = params['ReserveVersion']
         
     | 
| 
      
 7758 
     | 
    
         
            +
                      @ReserveVersionState = params['ReserveVersionState']
         
     | 
| 
      
 7759 
     | 
    
         
            +
                      @ElasticSwitch = params['ElasticSwitch']
         
     | 
| 
      
 7760 
     | 
    
         
            +
                      @ElasticBandwidth = params['ElasticBandwidth']
         
     | 
| 
      
 7761 
     | 
    
         
            +
                      @IsFirstAfterPay = params['IsFirstAfterPay']
         
     | 
| 
       7709 
7762 
     | 
    
         
             
                    end
         
     | 
| 
       7710 
7763 
     | 
    
         
             
                  end
         
     | 
| 
       7711 
7764 
     | 
    
         | 
| 
         @@ -9020,6 +9073,26 @@ module TencentCloud 
     | 
|
| 
       9020 
9073 
     | 
    
         
             
                    end
         
     | 
| 
       9021 
9074 
     | 
    
         
             
                  end
         
     | 
| 
       9022 
9075 
     | 
    
         | 
| 
      
 9076 
     | 
    
         
            +
                  # 标签信息
         
     | 
| 
      
 9077 
     | 
    
         
            +
                  class TagInfo < TencentCloud::Common::AbstractModel
         
     | 
| 
      
 9078 
     | 
    
         
            +
                    # @param TagKey: 目标key
         
     | 
| 
      
 9079 
     | 
    
         
            +
                    # @type TagKey: String
         
     | 
| 
      
 9080 
     | 
    
         
            +
                    # @param TagValue: 目标值
         
     | 
| 
      
 9081 
     | 
    
         
            +
                    # @type TagValue: String
         
     | 
| 
      
 9082 
     | 
    
         
            +
             
     | 
| 
      
 9083 
     | 
    
         
            +
                    attr_accessor :TagKey, :TagValue
         
     | 
| 
      
 9084 
     | 
    
         
            +
             
     | 
| 
      
 9085 
     | 
    
         
            +
                    def initialize(tagkey=nil, tagvalue=nil)
         
     | 
| 
      
 9086 
     | 
    
         
            +
                      @TagKey = tagkey
         
     | 
| 
      
 9087 
     | 
    
         
            +
                      @TagValue = tagvalue
         
     | 
| 
      
 9088 
     | 
    
         
            +
                    end
         
     | 
| 
      
 9089 
     | 
    
         
            +
             
     | 
| 
      
 9090 
     | 
    
         
            +
                    def deserialize(params)
         
     | 
| 
      
 9091 
     | 
    
         
            +
                      @TagKey = params['TagKey']
         
     | 
| 
      
 9092 
     | 
    
         
            +
                      @TagValue = params['TagValue']
         
     | 
| 
      
 9093 
     | 
    
         
            +
                    end
         
     | 
| 
      
 9094 
     | 
    
         
            +
                  end
         
     | 
| 
      
 9095 
     | 
    
         
            +
             
     | 
| 
       9023 
9096 
     | 
    
         
             
                  # 地址模板列表数据
         
     | 
| 
       9024 
9097 
     | 
    
         
             
                  class TemplateListInfo < TencentCloud::Common::AbstractModel
         
     | 
| 
       9025 
9098 
     | 
    
         
             
                    # @param Uuid: 模板ID
         
     | 
| 
         @@ -9443,10 +9516,30 @@ module TencentCloud 
     | 
|
| 
       9443 
9516 
     | 
    
         
             
                    # @param TrafficMode: 引擎运行模式,Normal:正常, OnlyRoute:透明模式
         
     | 
| 
       9444 
9517 
     | 
    
         
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
       9445 
9518 
     | 
    
         
             
                    # @type TrafficMode: String
         
     | 
| 
      
 9519 
     | 
    
         
            +
                    # @param ReserveTime: 引擎预约升级时间
         
     | 
| 
      
 9520 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 9521 
     | 
    
         
            +
                    # @type ReserveTime: String
         
     | 
| 
      
 9522 
     | 
    
         
            +
                    # @param ReserveVersion: 预约引擎升级版本
         
     | 
| 
      
 9523 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 9524 
     | 
    
         
            +
                    # @type ReserveVersion: String
         
     | 
| 
      
 9525 
     | 
    
         
            +
                    # @param ReserveVersionState: 引擎预约升级版本状态
         
     | 
| 
      
 9526 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 9527 
     | 
    
         
            +
                    # @type ReserveVersionState: String
         
     | 
| 
      
 9528 
     | 
    
         
            +
                    # @param ElasticSwitch: 弹性开关 1打开 0关闭
         
     | 
| 
      
 9529 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 9530 
     | 
    
         
            +
                    # @type ElasticSwitch: Integer
         
     | 
| 
      
 9531 
     | 
    
         
            +
                    # @param ElasticBandwidth: 弹性带宽,单位Mbps
         
     | 
| 
      
 9532 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 9533 
     | 
    
         
            +
                    # @type ElasticBandwidth: Integer
         
     | 
| 
      
 9534 
     | 
    
         
            +
                    # @param IsFirstAfterPay: 是否首次开通按量付费
         
     | 
| 
      
 9535 
     | 
    
         
            +
                    # 1 是
         
     | 
| 
      
 9536 
     | 
    
         
            +
                    # 0 不是
         
     | 
| 
      
 9537 
     | 
    
         
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         
     | 
| 
      
 9538 
     | 
    
         
            +
                    # @type IsFirstAfterPay: Integer
         
     | 
| 
       9446 
9539 
     | 
    
         | 
| 
       9447 
     | 
    
         
            -
                    attr_accessor :FwInsName, :FwInsId, :FwMode, :JoinInsNum, :FwSwitchNum, :Status, :Time, :CcnId, :CcnName, :PeerConnectionId, :PeerConnectionName, :FwCvmLst, :JoinInsLst, :FwGateway, :FwGroupId, :RuleUsed, :RuleMax, :Width, :UserVpcWidth, :JoinInsIdLst, :FlowMax, :EngineVersion, :UpdateEnable, :TrafficMode
         
     | 
| 
      
 9540 
     | 
    
         
            +
                    attr_accessor :FwInsName, :FwInsId, :FwMode, :JoinInsNum, :FwSwitchNum, :Status, :Time, :CcnId, :CcnName, :PeerConnectionId, :PeerConnectionName, :FwCvmLst, :JoinInsLst, :FwGateway, :FwGroupId, :RuleUsed, :RuleMax, :Width, :UserVpcWidth, :JoinInsIdLst, :FlowMax, :EngineVersion, :UpdateEnable, :TrafficMode, :ReserveTime, :ReserveVersion, :ReserveVersionState, :ElasticSwitch, :ElasticBandwidth, :IsFirstAfterPay
         
     | 
| 
       9448 
9541 
     | 
    
         | 
| 
       9449 
     | 
    
         
            -
                    def initialize(fwinsname=nil, fwinsid=nil, fwmode=nil, joininsnum=nil, fwswitchnum=nil, status=nil, time=nil, ccnid=nil, ccnname=nil, peerconnectionid=nil, peerconnectionname=nil, fwcvmlst=nil, joininslst=nil, fwgateway=nil, fwgroupid=nil, ruleused=nil, rulemax=nil, width=nil, uservpcwidth=nil, joininsidlst=nil, flowmax=nil, engineversion=nil, updateenable=nil, trafficmode=nil)
         
     | 
| 
      
 9542 
     | 
    
         
            +
                    def initialize(fwinsname=nil, fwinsid=nil, fwmode=nil, joininsnum=nil, fwswitchnum=nil, status=nil, time=nil, ccnid=nil, ccnname=nil, peerconnectionid=nil, peerconnectionname=nil, fwcvmlst=nil, joininslst=nil, fwgateway=nil, fwgroupid=nil, ruleused=nil, rulemax=nil, width=nil, uservpcwidth=nil, joininsidlst=nil, flowmax=nil, engineversion=nil, updateenable=nil, trafficmode=nil, reservetime=nil, reserveversion=nil, reserveversionstate=nil, elasticswitch=nil, elasticbandwidth=nil, isfirstafterpay=nil)
         
     | 
| 
       9450 
9543 
     | 
    
         
             
                      @FwInsName = fwinsname
         
     | 
| 
       9451 
9544 
     | 
    
         
             
                      @FwInsId = fwinsid
         
     | 
| 
       9452 
9545 
     | 
    
         
             
                      @FwMode = fwmode
         
     | 
| 
         @@ -9471,6 +9564,12 @@ module TencentCloud 
     | 
|
| 
       9471 
9564 
     | 
    
         
             
                      @EngineVersion = engineversion
         
     | 
| 
       9472 
9565 
     | 
    
         
             
                      @UpdateEnable = updateenable
         
     | 
| 
       9473 
9566 
     | 
    
         
             
                      @TrafficMode = trafficmode
         
     | 
| 
      
 9567 
     | 
    
         
            +
                      @ReserveTime = reservetime
         
     | 
| 
      
 9568 
     | 
    
         
            +
                      @ReserveVersion = reserveversion
         
     | 
| 
      
 9569 
     | 
    
         
            +
                      @ReserveVersionState = reserveversionstate
         
     | 
| 
      
 9570 
     | 
    
         
            +
                      @ElasticSwitch = elasticswitch
         
     | 
| 
      
 9571 
     | 
    
         
            +
                      @ElasticBandwidth = elasticbandwidth
         
     | 
| 
      
 9572 
     | 
    
         
            +
                      @IsFirstAfterPay = isfirstafterpay
         
     | 
| 
       9474 
9573 
     | 
    
         
             
                    end
         
     | 
| 
       9475 
9574 
     | 
    
         | 
| 
       9476 
9575 
     | 
    
         
             
                    def deserialize(params)
         
     | 
| 
         @@ -9519,6 +9618,12 @@ module TencentCloud 
     | 
|
| 
       9519 
9618 
     | 
    
         
             
                      @EngineVersion = params['EngineVersion']
         
     | 
| 
       9520 
9619 
     | 
    
         
             
                      @UpdateEnable = params['UpdateEnable']
         
     | 
| 
       9521 
9620 
     | 
    
         
             
                      @TrafficMode = params['TrafficMode']
         
     | 
| 
      
 9621 
     | 
    
         
            +
                      @ReserveTime = params['ReserveTime']
         
     | 
| 
      
 9622 
     | 
    
         
            +
                      @ReserveVersion = params['ReserveVersion']
         
     | 
| 
      
 9623 
     | 
    
         
            +
                      @ReserveVersionState = params['ReserveVersionState']
         
     | 
| 
      
 9624 
     | 
    
         
            +
                      @ElasticSwitch = params['ElasticSwitch']
         
     | 
| 
      
 9625 
     | 
    
         
            +
                      @ElasticBandwidth = params['ElasticBandwidth']
         
     | 
| 
      
 9626 
     | 
    
         
            +
                      @IsFirstAfterPay = params['IsFirstAfterPay']
         
     | 
| 
       9522 
9627 
     | 
    
         
             
                    end
         
     | 
| 
       9523 
9628 
     | 
    
         
             
                  end
         
     | 
| 
       9524 
9629 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: tencentcloud-sdk-cfw
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 3.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 3.0.806
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Tencent Cloud
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2024-04- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-04-18 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: tencentcloud-sdk-common
         
     |