tencentcloud-sdk-vpc 3.0.1179 → 3.0.1180
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/v20170312/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63c50a61227e397c43653b578f425891bad2066d
|
|
4
|
+
data.tar.gz: 3f575a944c30659ddcadcc15161e38a8389a0bfa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0136e0ae2437f720297c84e32572a392d210d3c17993d49810da3706ecc43e0b23560af6c7acbdb09b5b429a057e8876309c9a920354fe3b93e9206847e27532
|
|
7
|
+
data.tar.gz: d5ac8565841a7def56f5bd612dccc0f02919071f4a0545697ddea0878433783966939dec3cb66cdd2a9e5965d23e7debe9f72834d8908c4b89da6ee794189b50
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1180
|
data/lib/v20170312/models.rb
CHANGED
|
@@ -27605,10 +27605,12 @@ module TencentCloud
|
|
|
27605
27605
|
# @type PolicyDescription: String
|
|
27606
27606
|
# @param ModifyTime: 安全组最近修改时间。
|
|
27607
27607
|
# @type ModifyTime: String
|
|
27608
|
+
# @param Priority: 安全组规则优先级,值会随着安全组规则的变更动态变化。使用Priority时,请先调用`DescribeSecurityGroupPolicies`获取到规则的Priority,并且结合返回值中的Version一起使用处理规则。
|
|
27609
|
+
# @type Priority: Integer
|
|
27608
27610
|
|
|
27609
|
-
attr_accessor :PolicyIndex, :Protocol, :Port, :ServiceTemplate, :CidrBlock, :Ipv6CidrBlock, :SecurityGroupId, :AddressTemplate, :Action, :PolicyDescription, :ModifyTime
|
|
27611
|
+
attr_accessor :PolicyIndex, :Protocol, :Port, :ServiceTemplate, :CidrBlock, :Ipv6CidrBlock, :SecurityGroupId, :AddressTemplate, :Action, :PolicyDescription, :ModifyTime, :Priority
|
|
27610
27612
|
|
|
27611
|
-
def initialize(policyindex=nil, protocol=nil, port=nil, servicetemplate=nil, cidrblock=nil, ipv6cidrblock=nil, securitygroupid=nil, addresstemplate=nil, action=nil, policydescription=nil, modifytime=nil)
|
|
27613
|
+
def initialize(policyindex=nil, protocol=nil, port=nil, servicetemplate=nil, cidrblock=nil, ipv6cidrblock=nil, securitygroupid=nil, addresstemplate=nil, action=nil, policydescription=nil, modifytime=nil, priority=nil)
|
|
27612
27614
|
@PolicyIndex = policyindex
|
|
27613
27615
|
@Protocol = protocol
|
|
27614
27616
|
@Port = port
|
|
@@ -27620,6 +27622,7 @@ module TencentCloud
|
|
|
27620
27622
|
@Action = action
|
|
27621
27623
|
@PolicyDescription = policydescription
|
|
27622
27624
|
@ModifyTime = modifytime
|
|
27625
|
+
@Priority = priority
|
|
27623
27626
|
end
|
|
27624
27627
|
|
|
27625
27628
|
def deserialize(params)
|
|
@@ -27640,6 +27643,7 @@ module TencentCloud
|
|
|
27640
27643
|
@Action = params['Action']
|
|
27641
27644
|
@PolicyDescription = params['PolicyDescription']
|
|
27642
27645
|
@ModifyTime = params['ModifyTime']
|
|
27646
|
+
@Priority = params['Priority']
|
|
27643
27647
|
end
|
|
27644
27648
|
end
|
|
27645
27649
|
|