tencentcloud-sdk-vpc 1.0.222 → 1.0.226

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +72 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5c04b101e82f463d85d59e2714e5e319c615d6c
4
- data.tar.gz: c845653ca73c4650e468f5a130e3383e09657b05
3
+ metadata.gz: 29a6725b69fd749772a6430a3eb5d4ed1316f40e
4
+ data.tar.gz: a161cb021b2d56b870f151c721195bf186624679
5
5
  SHA512:
6
- metadata.gz: c67dbbcb727f827d0b05300bffad71fcc1ac0f0bec9b005af74b90055f19a0dfad8620f9a4509cce9991951af40b7d7ab53afecc48c3c09a7277d3709fab3d4f
7
- data.tar.gz: 1b3d931358359f81521adedb02ae29b377e6266928096f93ef13ac1add69fb888a37b572f14fd5205a7e0e8e58583f94a722f95c35b17181f809587b768abc47
6
+ metadata.gz: 6e1e84666b2ad143260272a1a482aecf046e1379db7e5bfb7a6fa36cf228e92ef4a0a978a7824b69b2327d301dc596586d423412d27919fdb640342e46b49cdf
7
+ data.tar.gz: 1abb778b392609a99e346a53803df4b327c8f73a58761b64ec5d4ddf2a8942e5c875c96a347f555d899fe1ba2d07079e6ee2289728840d450e4ff1254a84d621
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.222
1
+ 1.0.226
@@ -2657,16 +2657,19 @@ module TencentCloud
2657
2657
  # @type ModeType: String
2658
2658
  # @param Zone: 专线网关可用区
2659
2659
  # @type Zone: String
2660
+ # @param HaZoneGroupId: 专线网关高可用区容灾组ID
2661
+ # @type HaZoneGroupId: String
2660
2662
 
2661
- attr_accessor :DirectConnectGatewayName, :NetworkType, :NetworkInstanceId, :GatewayType, :ModeType, :Zone
2663
+ attr_accessor :DirectConnectGatewayName, :NetworkType, :NetworkInstanceId, :GatewayType, :ModeType, :Zone, :HaZoneGroupId
2662
2664
 
2663
- def initialize(directconnectgatewayname=nil, networktype=nil, networkinstanceid=nil, gatewaytype=nil, modetype=nil, zone=nil)
2665
+ def initialize(directconnectgatewayname=nil, networktype=nil, networkinstanceid=nil, gatewaytype=nil, modetype=nil, zone=nil, hazonegroupid=nil)
2664
2666
  @DirectConnectGatewayName = directconnectgatewayname
2665
2667
  @NetworkType = networktype
2666
2668
  @NetworkInstanceId = networkinstanceid
2667
2669
  @GatewayType = gatewaytype
2668
2670
  @ModeType = modetype
2669
2671
  @Zone = zone
2672
+ @HaZoneGroupId = hazonegroupid
2670
2673
  end
2671
2674
 
2672
2675
  def deserialize(params)
@@ -2676,6 +2679,7 @@ module TencentCloud
2676
2679
  @GatewayType = params['GatewayType']
2677
2680
  @ModeType = params['ModeType']
2678
2681
  @Zone = params['Zone']
2682
+ @HaZoneGroupId = params['HaZoneGroupId']
2679
2683
  end
2680
2684
  end
2681
2685
 
@@ -8565,15 +8569,35 @@ module TencentCloud
8565
8569
  class DescribeSecurityGroupPoliciesRequest < TencentCloud::Common::AbstractModel
8566
8570
  # @param SecurityGroupId: 安全组实例ID,例如:sg-33ocnj9n,可通过DescribeSecurityGroups获取。
8567
8571
  # @type SecurityGroupId: String
8572
+ # @param Filters: 过滤条件,不支持同时指定SecurityGroupId和Filters参数。
8573
+ # <li>security-group-id - String - 安全组ID。</li>
8574
+ # <li>ip - String - IP,支持IPV4和IPV6模糊匹配。</li>
8575
+ # <li>address-module - String - IP地址模板或IP地址组模板ID。</li>
8576
+ # <li>service-module - String - 协议端口模板或协议端口组模板ID。</li>
8577
+ # <li>protocol-type - String - 安全组策略支持的协议,可选值:`TCP`, `UDP`, `ICMP`, `ICMPV6`, `GRE`, `ALL`。</li>
8578
+ # <li>port - String - 是否必填:否 -协议端口,支持模糊匹配,值为`ALL`时,查询所有的端口。</li>
8579
+ # <li>poly - String - 协议策略,可选值:`ALL`,所有策略;`ACCEPT`,允许;`DROP`,拒绝。</li>
8580
+ # <li>direction - String - 协议规则,可选值:`ALL`,所有策略;`INBOUND`,入站规则;`OUTBOUND`,出站规则。</li>
8581
+ # <li>description - String - 协议描述,该过滤条件支持模糊匹配。</li>
8582
+ # @type Filters: Array
8568
8583
 
8569
- attr_accessor :SecurityGroupId
8584
+ attr_accessor :SecurityGroupId, :Filters
8570
8585
 
8571
- def initialize(securitygroupid=nil)
8586
+ def initialize(securitygroupid=nil, filters=nil)
8572
8587
  @SecurityGroupId = securitygroupid
8588
+ @Filters = filters
8573
8589
  end
8574
8590
 
8575
8591
  def deserialize(params)
8576
8592
  @SecurityGroupId = params['SecurityGroupId']
8593
+ unless params['Filters'].nil?
8594
+ @Filters = []
8595
+ params['Filters'].each do |i|
8596
+ filter_tmp = Filter.new
8597
+ filter_tmp.deserialize(i)
8598
+ @Filters << filter_tmp
8599
+ end
8600
+ end
8577
8601
  end
8578
8602
  end
8579
8603
 
@@ -10089,10 +10113,32 @@ module TencentCloud
10089
10113
  # @param Zone: 专线网关所在可用区
10090
10114
  # 注意:此字段可能返回 null,表示取不到有效值。
10091
10115
  # @type Zone: String
10116
+ # @param EnableFlowDetails: 网关流控明细启用状态:
10117
+ # 0:关闭
10118
+ # 1:开启
10119
+ # 注意:此字段可能返回 null,表示取不到有效值。
10120
+ # @type EnableFlowDetails: Integer
10121
+ # @param FlowDetailsUpdateTime: 开启、关闭网关流控明细时间
10122
+ # 注意:此字段可能返回 null,表示取不到有效值。
10123
+ # @type FlowDetailsUpdateTime: String
10124
+ # @param NewAfc: 是否支持开启网关流控明细
10125
+ # 0:不支持
10126
+ # 1:支持
10127
+ # 注意:此字段可能返回 null,表示取不到有效值。
10128
+ # @type NewAfc: Integer
10129
+ # @param AccessNetworkType: 专线网关接入网络类型:
10130
+ # <li>`VXLAN` - VXLAN类型。</li>
10131
+ # <li>`MPLS` - MPLS类型。</li>
10132
+ # <li>`Hybrid` - Hybrid类型。</li>
10133
+ # 注意:此字段可能返回 null,表示取不到有效值。
10134
+ # @type AccessNetworkType: String
10135
+ # @param HaZoneList: 跨可用区容灾专线网关的可用区列表
10136
+ # 注意:此字段可能返回 null,表示取不到有效值。
10137
+ # @type HaZoneList: Array
10092
10138
 
10093
- attr_accessor :DirectConnectGatewayId, :DirectConnectGatewayName, :VpcId, :NetworkType, :NetworkInstanceId, :GatewayType, :CreateTime, :DirectConnectGatewayIp, :CcnId, :CcnRouteType, :EnableBGP, :EnableBGPCommunity, :NatGatewayId, :VXLANSupport, :ModeType, :LocalZone, :Zone
10139
+ attr_accessor :DirectConnectGatewayId, :DirectConnectGatewayName, :VpcId, :NetworkType, :NetworkInstanceId, :GatewayType, :CreateTime, :DirectConnectGatewayIp, :CcnId, :CcnRouteType, :EnableBGP, :EnableBGPCommunity, :NatGatewayId, :VXLANSupport, :ModeType, :LocalZone, :Zone, :EnableFlowDetails, :FlowDetailsUpdateTime, :NewAfc, :AccessNetworkType, :HaZoneList
10094
10140
 
10095
- def initialize(directconnectgatewayid=nil, directconnectgatewayname=nil, vpcid=nil, networktype=nil, networkinstanceid=nil, gatewaytype=nil, createtime=nil, directconnectgatewayip=nil, ccnid=nil, ccnroutetype=nil, enablebgp=nil, enablebgpcommunity=nil, natgatewayid=nil, vxlansupport=nil, modetype=nil, localzone=nil, zone=nil)
10141
+ def initialize(directconnectgatewayid=nil, directconnectgatewayname=nil, vpcid=nil, networktype=nil, networkinstanceid=nil, gatewaytype=nil, createtime=nil, directconnectgatewayip=nil, ccnid=nil, ccnroutetype=nil, enablebgp=nil, enablebgpcommunity=nil, natgatewayid=nil, vxlansupport=nil, modetype=nil, localzone=nil, zone=nil, enableflowdetails=nil, flowdetailsupdatetime=nil, newafc=nil, accessnetworktype=nil, hazonelist=nil)
10096
10142
  @DirectConnectGatewayId = directconnectgatewayid
10097
10143
  @DirectConnectGatewayName = directconnectgatewayname
10098
10144
  @VpcId = vpcid
@@ -10110,6 +10156,11 @@ module TencentCloud
10110
10156
  @ModeType = modetype
10111
10157
  @LocalZone = localzone
10112
10158
  @Zone = zone
10159
+ @EnableFlowDetails = enableflowdetails
10160
+ @FlowDetailsUpdateTime = flowdetailsupdatetime
10161
+ @NewAfc = newafc
10162
+ @AccessNetworkType = accessnetworktype
10163
+ @HaZoneList = hazonelist
10113
10164
  end
10114
10165
 
10115
10166
  def deserialize(params)
@@ -10130,6 +10181,11 @@ module TencentCloud
10130
10181
  @ModeType = params['ModeType']
10131
10182
  @LocalZone = params['LocalZone']
10132
10183
  @Zone = params['Zone']
10184
+ @EnableFlowDetails = params['EnableFlowDetails']
10185
+ @FlowDetailsUpdateTime = params['FlowDetailsUpdateTime']
10186
+ @NewAfc = params['NewAfc']
10187
+ @AccessNetworkType = params['AccessNetworkType']
10188
+ @HaZoneList = params['HaZoneList']
10133
10189
  end
10134
10190
  end
10135
10191
 
@@ -10141,19 +10197,27 @@ module TencentCloud
10141
10197
  # @type DestinationCidrBlock: String
10142
10198
  # @param ASPath: `BGP`的`AS-Path`属性。
10143
10199
  # @type ASPath: Array
10200
+ # @param Description: 备注
10201
+ # @type Description: String
10202
+ # @param UpdateTime: 最后更新时间
10203
+ # @type UpdateTime: String
10144
10204
 
10145
- attr_accessor :RouteId, :DestinationCidrBlock, :ASPath
10205
+ attr_accessor :RouteId, :DestinationCidrBlock, :ASPath, :Description, :UpdateTime
10146
10206
 
10147
- def initialize(routeid=nil, destinationcidrblock=nil, aspath=nil)
10207
+ def initialize(routeid=nil, destinationcidrblock=nil, aspath=nil, description=nil, updatetime=nil)
10148
10208
  @RouteId = routeid
10149
10209
  @DestinationCidrBlock = destinationcidrblock
10150
10210
  @ASPath = aspath
10211
+ @Description = description
10212
+ @UpdateTime = updatetime
10151
10213
  end
10152
10214
 
10153
10215
  def deserialize(params)
10154
10216
  @RouteId = params['RouteId']
10155
10217
  @DestinationCidrBlock = params['DestinationCidrBlock']
10156
10218
  @ASPath = params['ASPath']
10219
+ @Description = params['Description']
10220
+ @UpdateTime = params['UpdateTime']
10157
10221
  end
10158
10222
  end
10159
10223
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-vpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.222
4
+ version: 1.0.226
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-13 00:00:00.000000000 Z
11
+ date: 2021-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common