tencentcloud-sdk-clb 3.0.503 → 3.0.504
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/v20180317/models.rb +14 -2
- 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: 4f880d2cc1bedd557237ffb50bc4b21e048e091c
|
|
4
|
+
data.tar.gz: da9d27dce3bb25864a5218e2d3d578d3d4441532
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac9fb9512abd0a76c62a696444302f466f5ccdde3d08206acb936201274ffce141100b1e3a2b04c9d36dcc25fd24c0db12f506b06630ada423d15a4f5cea25ce
|
|
7
|
+
data.tar.gz: ad998e0dea96b44453939f919e54608ae2013caac1269070f6e1015e276048465dc2127a849225ea82dce6202fb7183f379485ab748501e45fb541c201dd3cf0
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.504
|
data/lib/v20180317/models.rb
CHANGED
|
@@ -6816,14 +6816,18 @@ module TencentCloud
|
|
|
6816
6816
|
# @param Targets: 后端服务的信息
|
|
6817
6817
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6818
6818
|
# @type Targets: Array
|
|
6819
|
+
# @param FunctionTargets: 后端云函数的信息
|
|
6820
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6821
|
+
# @type FunctionTargets: Array
|
|
6819
6822
|
|
|
6820
|
-
attr_accessor :LocationId, :Domain, :Url, :Targets
|
|
6823
|
+
attr_accessor :LocationId, :Domain, :Url, :Targets, :FunctionTargets
|
|
6821
6824
|
|
|
6822
|
-
def initialize(locationid=nil, domain=nil, url=nil, targets=nil)
|
|
6825
|
+
def initialize(locationid=nil, domain=nil, url=nil, targets=nil, functiontargets=nil)
|
|
6823
6826
|
@LocationId = locationid
|
|
6824
6827
|
@Domain = domain
|
|
6825
6828
|
@Url = url
|
|
6826
6829
|
@Targets = targets
|
|
6830
|
+
@FunctionTargets = functiontargets
|
|
6827
6831
|
end
|
|
6828
6832
|
|
|
6829
6833
|
def deserialize(params)
|
|
@@ -6838,6 +6842,14 @@ module TencentCloud
|
|
|
6838
6842
|
@Targets << backend_tmp
|
|
6839
6843
|
end
|
|
6840
6844
|
end
|
|
6845
|
+
unless params['FunctionTargets'].nil?
|
|
6846
|
+
@FunctionTargets = []
|
|
6847
|
+
params['FunctionTargets'].each do |i|
|
|
6848
|
+
functiontarget_tmp = FunctionTarget.new
|
|
6849
|
+
functiontarget_tmp.deserialize(i)
|
|
6850
|
+
@FunctionTargets << functiontarget_tmp
|
|
6851
|
+
end
|
|
6852
|
+
end
|
|
6841
6853
|
end
|
|
6842
6854
|
end
|
|
6843
6855
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-clb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.504
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-02-
|
|
11
|
+
date: 2023-02-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|