tencentcloud-sdk-vpc 3.0.949 → 3.0.950
Sign up to get free protection for your applications and to get access to all the features.
- 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: eb01a7b617f6d177b5ca67df02805fbc7705451d
|
4
|
+
data.tar.gz: 15496299eb91e392aab621b67ca6b8ea03a8038d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2c3bef27f3c74268a9689da471999f05a7ba660dcdcd3ebae661891f84ba79cec8e4cc1cdfd958c6b776a6e5930f8d9cf2ac3c973db348c4df45bc1877464a4
|
7
|
+
data.tar.gz: 3b2d64e935c21f95046feca2018b0840823466bea6452615bb5385c83978a2a41e00cb45c596516d2cd7458bafcc37532b91a1354e75c11af617e1b946e0e67d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.950
|
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.950
|
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-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|