tencentcloud-sdk-gwlb 3.0.1012 → 3.0.1013
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/v20240906/models.rb +14 -5
- 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: ab7a2d9690d837deddb68e569c7c1972f8156281
|
4
|
+
data.tar.gz: 2ac0669a014c57f90d4cc1eb444794db3529f136
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a76f476786622076c1b9f46bfa75e25bb120c89d484e7ab3412a93920fa8b7cac1a4ff97ce9c1a9fdb648e834a3920204cf7bb7e975dfdf8f110d4e1c949c45
|
7
|
+
data.tar.gz: 501ed183e59dc0a706551a8e8e4362893b591de09d3e5a1b2bb7b3a3dcc66c6a42a7606ea547349bfb5bb4d16f97df4bd0bde30f26fbf742c2b23409a7e6304e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1013
|
data/lib/v20240906/models.rb
CHANGED
@@ -342,6 +342,7 @@ module TencentCloud
|
|
342
342
|
# Filter.Name和Filter.Values皆为必填项。详细的过滤条件如下:
|
343
343
|
# - VpcId - String - 是否必填:否 - (过滤条件)按照网关负载均衡实例所属的私有网络过滤,如“vpc-bhqk****”。
|
344
344
|
# - Vips - String - 是否必填:否 - (过滤条件)按照网关负载均衡实例所属的私有网络过滤,如“10.1.1.1”
|
345
|
+
# - tag:tag-key - String - 是否必填:否 - (过滤条件)按照GWLB标签键值对进行过滤,tag-key使用具体的标签键进行替换。
|
345
346
|
# @type Filters: Array
|
346
347
|
# @param SearchKey: 搜索字段,模糊匹配名称、VIP。
|
347
348
|
# @type SearchKey: String
|
@@ -790,12 +791,14 @@ module TencentCloud
|
|
790
791
|
# @type ChargeType: String
|
791
792
|
# @param Isolation: 0:表示未被隔离,1:表示被隔离。
|
792
793
|
# @type Isolation: Integer
|
793
|
-
# @param IsolatedTime:
|
794
|
+
# @param IsolatedTime: 网关负载均衡实例被隔离的时间
|
794
795
|
# @type IsolatedTime: String
|
796
|
+
# @param OperateProtect: 是否开启配置修改保护功能。
|
797
|
+
# @type OperateProtect: Boolean
|
795
798
|
|
796
|
-
attr_accessor :LoadBalancerId, :LoadBalancerName, :VpcId, :SubnetId, :Vips, :Status, :TargetGroupId, :DeleteProtect, :Tags, :CreateTime, :ChargeType, :Isolation, :IsolatedTime
|
799
|
+
attr_accessor :LoadBalancerId, :LoadBalancerName, :VpcId, :SubnetId, :Vips, :Status, :TargetGroupId, :DeleteProtect, :Tags, :CreateTime, :ChargeType, :Isolation, :IsolatedTime, :OperateProtect
|
797
800
|
|
798
|
-
def initialize(loadbalancerid=nil, loadbalancername=nil, vpcid=nil, subnetid=nil, vips=nil, status=nil, targetgroupid=nil, deleteprotect=nil, tags=nil, createtime=nil, chargetype=nil, isolation=nil, isolatedtime=nil)
|
801
|
+
def initialize(loadbalancerid=nil, loadbalancername=nil, vpcid=nil, subnetid=nil, vips=nil, status=nil, targetgroupid=nil, deleteprotect=nil, tags=nil, createtime=nil, chargetype=nil, isolation=nil, isolatedtime=nil, operateprotect=nil)
|
799
802
|
@LoadBalancerId = loadbalancerid
|
800
803
|
@LoadBalancerName = loadbalancername
|
801
804
|
@VpcId = vpcid
|
@@ -809,6 +812,7 @@ module TencentCloud
|
|
809
812
|
@ChargeType = chargetype
|
810
813
|
@Isolation = isolation
|
811
814
|
@IsolatedTime = isolatedtime
|
815
|
+
@OperateProtect = operateprotect
|
812
816
|
end
|
813
817
|
|
814
818
|
def deserialize(params)
|
@@ -832,6 +836,7 @@ module TencentCloud
|
|
832
836
|
@ChargeType = params['ChargeType']
|
833
837
|
@Isolation = params['Isolation']
|
834
838
|
@IsolatedTime = params['IsolatedTime']
|
839
|
+
@OperateProtect = params['OperateProtect']
|
835
840
|
end
|
836
841
|
end
|
837
842
|
|
@@ -922,17 +927,21 @@ module TencentCloud
|
|
922
927
|
# @type LoadBalancerId: String
|
923
928
|
# @param LoadBalancerName: 网关负载均衡实例名称。可支持输入1-60个字符。
|
924
929
|
# @type LoadBalancerName: String
|
930
|
+
# @param DeleteProtect: 是否开启删除保护。
|
931
|
+
# @type DeleteProtect: Boolean
|
925
932
|
|
926
|
-
attr_accessor :LoadBalancerId, :LoadBalancerName
|
933
|
+
attr_accessor :LoadBalancerId, :LoadBalancerName, :DeleteProtect
|
927
934
|
|
928
|
-
def initialize(loadbalancerid=nil, loadbalancername=nil)
|
935
|
+
def initialize(loadbalancerid=nil, loadbalancername=nil, deleteprotect=nil)
|
929
936
|
@LoadBalancerId = loadbalancerid
|
930
937
|
@LoadBalancerName = loadbalancername
|
938
|
+
@DeleteProtect = deleteprotect
|
931
939
|
end
|
932
940
|
|
933
941
|
def deserialize(params)
|
934
942
|
@LoadBalancerId = params['LoadBalancerId']
|
935
943
|
@LoadBalancerName = params['LoadBalancerName']
|
944
|
+
@DeleteProtect = params['DeleteProtect']
|
936
945
|
end
|
937
946
|
end
|
938
947
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-gwlb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1013
|
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-03-
|
11
|
+
date: 2025-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|