tencentcloud-sdk-vpc 3.0.1169 → 3.0.1170
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: e3630951b1c345d94f4df42ed612fa4573a86ef7
|
|
4
|
+
data.tar.gz: ec43142cd95898f0089a61b4ea35224ac9e5fc21
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9aa0a41b8419ae96d69683a3ac3e1d1363636d140a024b4361f41c331bb546270f5f1847b8262e1ced840358e1c4693c781a288ab9ff843d48aed742339180a1
|
|
7
|
+
data.tar.gz: 47aa73d409916398624c9432de8e193ffa972fd8d7eb2fb713758cef9d3bcb0465e1d43469ee7e06b745c49fafcbb41b23a0bfe575811162753cce46fa78c9da
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1170
|
data/lib/v20170312/models.rb
CHANGED
|
@@ -8543,15 +8543,19 @@ module TencentCloud
|
|
|
8543
8543
|
class DeletePrivateNatGatewayRequest < TencentCloud::Common::AbstractModel
|
|
8544
8544
|
# @param NatGatewayId: 私网网关唯一`ID`,形如"intranat-xxxxxxxx"。
|
|
8545
8545
|
# @type NatGatewayId: String
|
|
8546
|
+
# @param IgnoreOperationRisk: 忽略操作风险
|
|
8547
|
+
# @type IgnoreOperationRisk: Boolean
|
|
8546
8548
|
|
|
8547
|
-
attr_accessor :NatGatewayId
|
|
8549
|
+
attr_accessor :NatGatewayId, :IgnoreOperationRisk
|
|
8548
8550
|
|
|
8549
|
-
def initialize(natgatewayid=nil)
|
|
8551
|
+
def initialize(natgatewayid=nil, ignoreoperationrisk=nil)
|
|
8550
8552
|
@NatGatewayId = natgatewayid
|
|
8553
|
+
@IgnoreOperationRisk = ignoreoperationrisk
|
|
8551
8554
|
end
|
|
8552
8555
|
|
|
8553
8556
|
def deserialize(params)
|
|
8554
8557
|
@NatGatewayId = params['NatGatewayId']
|
|
8558
|
+
@IgnoreOperationRisk = params['IgnoreOperationRisk']
|
|
8555
8559
|
end
|
|
8556
8560
|
end
|
|
8557
8561
|
|