tencentcloud-sdk-vpc 3.0.949 → 3.0.951
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 +12 -4
- 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: d50b97b04c4174bc3e59d527386cb9e9c858958a
|
|
4
|
+
data.tar.gz: 614ba8d904d43ad6847951d31edb02e03b204890
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2df77022ee993dbab1a873d1f81a49002fc56668b51a8b19d606f8cdb9ef419c890124fcabd6961c807b5e0354f3d2662944843e647e91c1bfcdbcf73433f41
|
|
7
|
+
data.tar.gz: b6450e261250f2c33b3e43d7d79aeeb3b258e8e418b17adc198e58cfcec2935bf4d26509845e1df89455364de6c6c25a9ea7289073ef783844f43f6545051877
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.951
|
data/lib/v20170312/models.rb
CHANGED
|
@@ -12072,10 +12072,12 @@ module TencentCloud
|
|
|
12072
12072
|
# @type Offset: Integer
|
|
12073
12073
|
# @param Limit: 返回数目,默认值为20。
|
|
12074
12074
|
# @type Limit: Integer
|
|
12075
|
+
# @param Description: ACL规则描述
|
|
12076
|
+
# @type Description: String
|
|
12075
12077
|
|
|
12076
|
-
attr_accessor :NatGatewayId, :TranslationDirection, :TranslationType, :TranslationIp, :OriginalIp, :Offset, :Limit
|
|
12078
|
+
attr_accessor :NatGatewayId, :TranslationDirection, :TranslationType, :TranslationIp, :OriginalIp, :Offset, :Limit, :Description
|
|
12077
12079
|
|
|
12078
|
-
def initialize(natgatewayid=nil, translationdirection=nil, translationtype=nil, translationip=nil, originalip=nil, offset=nil, limit=nil)
|
|
12080
|
+
def initialize(natgatewayid=nil, translationdirection=nil, translationtype=nil, translationip=nil, originalip=nil, offset=nil, limit=nil, description=nil)
|
|
12079
12081
|
@NatGatewayId = natgatewayid
|
|
12080
12082
|
@TranslationDirection = translationdirection
|
|
12081
12083
|
@TranslationType = translationtype
|
|
@@ -12083,6 +12085,7 @@ module TencentCloud
|
|
|
12083
12085
|
@OriginalIp = originalip
|
|
12084
12086
|
@Offset = offset
|
|
12085
12087
|
@Limit = limit
|
|
12088
|
+
@Description = description
|
|
12086
12089
|
end
|
|
12087
12090
|
|
|
12088
12091
|
def deserialize(params)
|
|
@@ -12093,6 +12096,7 @@ module TencentCloud
|
|
|
12093
12096
|
@OriginalIp = params['OriginalIp']
|
|
12094
12097
|
@Offset = params['Offset']
|
|
12095
12098
|
@Limit = params['Limit']
|
|
12099
|
+
@Description = params['Description']
|
|
12096
12100
|
end
|
|
12097
12101
|
end
|
|
12098
12102
|
|
|
@@ -25401,10 +25405,12 @@ module TencentCloud
|
|
|
25401
25405
|
# @type AclRuleId: Integer
|
|
25402
25406
|
# @param Action: 是否匹配。
|
|
25403
25407
|
# @type Action: Integer
|
|
25408
|
+
# @param Description: ACL规则描述
|
|
25409
|
+
# @type Description: String
|
|
25404
25410
|
|
|
25405
|
-
attr_accessor :Protocol, :SourcePort, :SourceCidr, :DestinationPort, :DestinationCidr, :AclRuleId, :Action
|
|
25411
|
+
attr_accessor :Protocol, :SourcePort, :SourceCidr, :DestinationPort, :DestinationCidr, :AclRuleId, :Action, :Description
|
|
25406
25412
|
|
|
25407
|
-
def initialize(protocol=nil, sourceport=nil, sourcecidr=nil, destinationport=nil, destinationcidr=nil, aclruleid=nil, action=nil)
|
|
25413
|
+
def initialize(protocol=nil, sourceport=nil, sourcecidr=nil, destinationport=nil, destinationcidr=nil, aclruleid=nil, action=nil, description=nil)
|
|
25408
25414
|
@Protocol = protocol
|
|
25409
25415
|
@SourcePort = sourceport
|
|
25410
25416
|
@SourceCidr = sourcecidr
|
|
@@ -25412,6 +25418,7 @@ module TencentCloud
|
|
|
25412
25418
|
@DestinationCidr = destinationcidr
|
|
25413
25419
|
@AclRuleId = aclruleid
|
|
25414
25420
|
@Action = action
|
|
25421
|
+
@Description = description
|
|
25415
25422
|
end
|
|
25416
25423
|
|
|
25417
25424
|
def deserialize(params)
|
|
@@ -25422,6 +25429,7 @@ module TencentCloud
|
|
|
25422
25429
|
@DestinationCidr = params['DestinationCidr']
|
|
25423
25430
|
@AclRuleId = params['AclRuleId']
|
|
25424
25431
|
@Action = params['Action']
|
|
25432
|
+
@Description = params['Description']
|
|
25425
25433
|
end
|
|
25426
25434
|
end
|
|
25427
25435
|
|
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: 3.0.
|
|
4
|
+
version: 3.0.951
|
|
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-11-
|
|
11
|
+
date: 2024-11-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|