tencentcloud-sdk-tse 3.0.1083 → 3.0.1087
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/v20201207/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: 50d2b6c5a514ce47f929e5c07d5fd931125492d9
|
4
|
+
data.tar.gz: e7fb20a94002724197f4fbe2ae80e8723467e841
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bb193873361b520ad46ba0bf13f04e89a047c2fbc02da9a3ee8b92a77f5eb796bc46f3f0bc2a1b8a26b2bae2a19159fddd427f4d2c676e891514aa8920ca826
|
7
|
+
data.tar.gz: 481d337303ef6c7fdb161f9ba511ceab37bcdf1faa990514ad556735aceec258dd66f4a6bbe7d0d8a603fb1381799f524eb7e9a6bff26fa70ba32ce02ec9ca01
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1087
|
data/lib/v20201207/models.rb
CHANGED
@@ -4708,10 +4708,12 @@ module TencentCloud
|
|
4708
4708
|
# @type LoadBalancerType: String
|
4709
4709
|
# @param PublicIpAddresses: 公网IP地址列表
|
4710
4710
|
# @type PublicIpAddresses: Array
|
4711
|
+
# @param DeleteProtect: 是否开启删除保护
|
4712
|
+
# @type DeleteProtect: Boolean
|
4711
4713
|
|
4712
|
-
attr_accessor :GatewayId, :Status, :Name, :Type, :GatewayVersion, :NodeConfig, :VpcConfig, :Description, :CreateTime, :Tags, :EnableCls, :TradeType, :FeatureVersion, :InternetMaxBandwidthOut, :AutoRenewFlag, :CurDeadline, :IsolateTime, :EnableInternet, :EngineRegion, :IngressClassName, :InternetPayMode, :GatewayMinorVersion, :InstancePort, :LoadBalancerType, :PublicIpAddresses
|
4714
|
+
attr_accessor :GatewayId, :Status, :Name, :Type, :GatewayVersion, :NodeConfig, :VpcConfig, :Description, :CreateTime, :Tags, :EnableCls, :TradeType, :FeatureVersion, :InternetMaxBandwidthOut, :AutoRenewFlag, :CurDeadline, :IsolateTime, :EnableInternet, :EngineRegion, :IngressClassName, :InternetPayMode, :GatewayMinorVersion, :InstancePort, :LoadBalancerType, :PublicIpAddresses, :DeleteProtect
|
4713
4715
|
|
4714
|
-
def initialize(gatewayid=nil, status=nil, name=nil, type=nil, gatewayversion=nil, nodeconfig=nil, vpcconfig=nil, description=nil, createtime=nil, tags=nil, enablecls=nil, tradetype=nil, featureversion=nil, internetmaxbandwidthout=nil, autorenewflag=nil, curdeadline=nil, isolatetime=nil, enableinternet=nil, engineregion=nil, ingressclassname=nil, internetpaymode=nil, gatewayminorversion=nil, instanceport=nil, loadbalancertype=nil, publicipaddresses=nil)
|
4716
|
+
def initialize(gatewayid=nil, status=nil, name=nil, type=nil, gatewayversion=nil, nodeconfig=nil, vpcconfig=nil, description=nil, createtime=nil, tags=nil, enablecls=nil, tradetype=nil, featureversion=nil, internetmaxbandwidthout=nil, autorenewflag=nil, curdeadline=nil, isolatetime=nil, enableinternet=nil, engineregion=nil, ingressclassname=nil, internetpaymode=nil, gatewayminorversion=nil, instanceport=nil, loadbalancertype=nil, publicipaddresses=nil, deleteprotect=nil)
|
4715
4717
|
@GatewayId = gatewayid
|
4716
4718
|
@Status = status
|
4717
4719
|
@Name = name
|
@@ -4737,6 +4739,7 @@ module TencentCloud
|
|
4737
4739
|
@InstancePort = instanceport
|
4738
4740
|
@LoadBalancerType = loadbalancertype
|
4739
4741
|
@PublicIpAddresses = publicipaddresses
|
4742
|
+
@DeleteProtect = deleteprotect
|
4740
4743
|
end
|
4741
4744
|
|
4742
4745
|
def deserialize(params)
|
@@ -4781,6 +4784,7 @@ module TencentCloud
|
|
4781
4784
|
end
|
4782
4785
|
@LoadBalancerType = params['LoadBalancerType']
|
4783
4786
|
@PublicIpAddresses = params['PublicIpAddresses']
|
4787
|
+
@DeleteProtect = params['DeleteProtect']
|
4784
4788
|
end
|
4785
4789
|
end
|
4786
4790
|
|
@@ -9356,15 +9360,18 @@ module TencentCloud
|
|
9356
9360
|
# @type EnableCls: Boolean
|
9357
9361
|
# @param InternetPayMode: 公网计费模式。可选取值 BANDWIDTH | TRAFFIC ,表示按带宽和按流量计费。
|
9358
9362
|
# @type InternetPayMode: String
|
9363
|
+
# @param DeleteProtect: 是否开启实例删除保护,默认false
|
9364
|
+
# @type DeleteProtect: Boolean
|
9359
9365
|
|
9360
|
-
attr_accessor :GatewayId, :Name, :Description, :EnableCls, :InternetPayMode
|
9366
|
+
attr_accessor :GatewayId, :Name, :Description, :EnableCls, :InternetPayMode, :DeleteProtect
|
9361
9367
|
|
9362
|
-
def initialize(gatewayid=nil, name=nil, description=nil, enablecls=nil, internetpaymode=nil)
|
9368
|
+
def initialize(gatewayid=nil, name=nil, description=nil, enablecls=nil, internetpaymode=nil, deleteprotect=nil)
|
9363
9369
|
@GatewayId = gatewayid
|
9364
9370
|
@Name = name
|
9365
9371
|
@Description = description
|
9366
9372
|
@EnableCls = enablecls
|
9367
9373
|
@InternetPayMode = internetpaymode
|
9374
|
+
@DeleteProtect = deleteprotect
|
9368
9375
|
end
|
9369
9376
|
|
9370
9377
|
def deserialize(params)
|
@@ -9373,6 +9380,7 @@ module TencentCloud
|
|
9373
9380
|
@Description = params['Description']
|
9374
9381
|
@EnableCls = params['EnableCls']
|
9375
9382
|
@InternetPayMode = params['InternetPayMode']
|
9383
|
+
@DeleteProtect = params['DeleteProtect']
|
9376
9384
|
end
|
9377
9385
|
end
|
9378
9386
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1087
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|