tencentcloud-sdk-tsf 3.0.737 → 3.0.738
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/v20180326/models.rb +9 -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: 5a840ca2ea9fff10f42f0a2ad042eb71ab9cba3a
|
|
4
|
+
data.tar.gz: fc40330aaeedbb6ac794087974a57f2ed62e4d3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e7bfccd2e8d12e8d5dd0efd16dd209275319ddda7d701fdc9d2d374b6bcf3284fc8cdd7fa79a81e6a0f5d4f4bced53a4850c8453c294c1ccbb86c0f3cdf1706
|
|
7
|
+
data.tar.gz: f7138693cab5cf48da1cbdc5a6273438360bfd06ffb4ceaeee1cb11242b8aa4742b3038a2039d7db98ada9665c18ff31ccf8839430a0f9043afcc9713aef1ed2
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.738
|
data/lib/v20180326/models.rb
CHANGED
|
@@ -2720,13 +2720,15 @@ module TencentCloud
|
|
|
2720
2720
|
# @type InstanceNum: Integer
|
|
2721
2721
|
# @param CurrentNum: 已启动实例总数
|
|
2722
2722
|
# @type CurrentNum: Integer
|
|
2723
|
+
# @param LbDns: 负载均衡DNS地址
|
|
2724
|
+
# @type LbDns: String
|
|
2723
2725
|
# @param LbIp: 负载均衡ip
|
|
2724
2726
|
# @type LbIp: String
|
|
2725
2727
|
# @param ClusterIp: Service ip
|
|
2726
2728
|
# @type ClusterIp: String
|
|
2727
|
-
# @param Status:
|
|
2729
|
+
# @param Status: 服务状态,请参考后面的状态定义
|
|
2728
2730
|
# @type Status: String
|
|
2729
|
-
# @param Message:
|
|
2731
|
+
# @param Message: 服务状态,请参考后面的状态定义
|
|
2730
2732
|
# @type Message: String
|
|
2731
2733
|
# @param Envs: 环境变量
|
|
2732
2734
|
# @type Envs: Array
|
|
@@ -2743,11 +2745,12 @@ module TencentCloud
|
|
|
2743
2745
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2744
2746
|
# @type IsNotEqualServiceConfig: Boolean
|
|
2745
2747
|
|
|
2746
|
-
attr_accessor :InstanceNum, :CurrentNum, :LbIp, :ClusterIp, :Status, :Message, :Envs, :NodePort, :SubnetId, :HealthCheckSettings, :IsNotEqualServiceConfig
|
|
2748
|
+
attr_accessor :InstanceNum, :CurrentNum, :LbDns, :LbIp, :ClusterIp, :Status, :Message, :Envs, :NodePort, :SubnetId, :HealthCheckSettings, :IsNotEqualServiceConfig
|
|
2747
2749
|
|
|
2748
|
-
def initialize(instancenum=nil, currentnum=nil, lbip=nil, clusterip=nil, status=nil, message=nil, envs=nil, nodeport=nil, subnetid=nil, healthchecksettings=nil, isnotequalserviceconfig=nil)
|
|
2750
|
+
def initialize(instancenum=nil, currentnum=nil, lbdns=nil, lbip=nil, clusterip=nil, status=nil, message=nil, envs=nil, nodeport=nil, subnetid=nil, healthchecksettings=nil, isnotequalserviceconfig=nil)
|
|
2749
2751
|
@InstanceNum = instancenum
|
|
2750
2752
|
@CurrentNum = currentnum
|
|
2753
|
+
@LbDns = lbdns
|
|
2751
2754
|
@LbIp = lbip
|
|
2752
2755
|
@ClusterIp = clusterip
|
|
2753
2756
|
@Status = status
|
|
@@ -2762,6 +2765,7 @@ module TencentCloud
|
|
|
2762
2765
|
def deserialize(params)
|
|
2763
2766
|
@InstanceNum = params['InstanceNum']
|
|
2764
2767
|
@CurrentNum = params['CurrentNum']
|
|
2768
|
+
@LbDns = params['LbDns']
|
|
2765
2769
|
@LbIp = params['LbIp']
|
|
2766
2770
|
@ClusterIp = params['ClusterIp']
|
|
2767
2771
|
@Status = params['Status']
|
|
@@ -2820,7 +2824,7 @@ module TencentCloud
|
|
|
2820
2824
|
end
|
|
2821
2825
|
end
|
|
2822
2826
|
|
|
2823
|
-
# cos
|
|
2827
|
+
# cos临时账号信息
|
|
2824
2828
|
class CosCredentials < TencentCloud::Common::AbstractModel
|
|
2825
2829
|
# @param SessionToken: 会话Token
|
|
2826
2830
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tsf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.738
|
|
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-12-
|
|
11
|
+
date: 2023-12-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|