tencentcloud-sdk-oceanus 3.0.567 → 3.0.568
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190422/models.rb +25 -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: 91d62631700cf91bd5b4f64b8a94cf53c7109cd8
|
4
|
+
data.tar.gz: 7fa08e9ec93d58131ec1733864511d87ed01306b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c84c6f8b7b2f5089dbb0006e3da24931304e3d47eb4dc0a0c42cf7501bc0f794ddcefb16e7f7e12aff037f1653f15b7a52851edbf817a22520335e863692c73c
|
7
|
+
data.tar.gz: d62b5a98cef8539eb92775065f5260a5f589d323a42ee177912bd0be44eefe770b21b5ee373ee1c2c6f3ab0c7b25dbdcd7beae7860011c03f5b09857d81576a6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.568
|
data/lib/v20190422/models.rb
CHANGED
@@ -187,10 +187,13 @@ module TencentCloud
|
|
187
187
|
# @param IsNeedManageNode: 前端区分 集群是否需要2CU逻辑 因为历史集群 变配不需要, default 1 新集群都需要
|
188
188
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
189
189
|
# @type IsNeedManageNode: Integer
|
190
|
+
# @param ClusterSessions: session集群信息
|
191
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
192
|
+
# @type ClusterSessions: Array
|
190
193
|
|
191
|
-
attr_accessor :ClusterId, :Name, :Region, :AppId, :OwnerUin, :CreatorUin, :Status, :Remark, :CreateTime, :UpdateTime, :CuNum, :CuMem, :Zone, :StatusDesc, :CCNs, :NetEnvironmentType, :FreeCuNum, :Tags, :IsolatedTime, :ExpireTime, :SecondsUntilExpiry, :AutoRenewFlag, :DefaultCOSBucket, :CLSLogSet, :CLSTopicId, :CLSLogName, :CLSTopicName, :Version, :FreeCu, :DefaultLogCollectConf, :CustomizedDNSEnabled, :Correlations, :RunningCu, :PayMode, :IsNeedManageNode
|
194
|
+
attr_accessor :ClusterId, :Name, :Region, :AppId, :OwnerUin, :CreatorUin, :Status, :Remark, :CreateTime, :UpdateTime, :CuNum, :CuMem, :Zone, :StatusDesc, :CCNs, :NetEnvironmentType, :FreeCuNum, :Tags, :IsolatedTime, :ExpireTime, :SecondsUntilExpiry, :AutoRenewFlag, :DefaultCOSBucket, :CLSLogSet, :CLSTopicId, :CLSLogName, :CLSTopicName, :Version, :FreeCu, :DefaultLogCollectConf, :CustomizedDNSEnabled, :Correlations, :RunningCu, :PayMode, :IsNeedManageNode, :ClusterSessions
|
192
195
|
|
193
|
-
def initialize(clusterid=nil, name=nil, region=nil, appid=nil, owneruin=nil, creatoruin=nil, status=nil, remark=nil, createtime=nil, updatetime=nil, cunum=nil, cumem=nil, zone=nil, statusdesc=nil, ccns=nil, netenvironmenttype=nil, freecunum=nil, tags=nil, isolatedtime=nil, expiretime=nil, secondsuntilexpiry=nil, autorenewflag=nil, defaultcosbucket=nil, clslogset=nil, clstopicid=nil, clslogname=nil, clstopicname=nil, version=nil, freecu=nil, defaultlogcollectconf=nil, customizeddnsenabled=nil, correlations=nil, runningcu=nil, paymode=nil, isneedmanagenode=nil)
|
196
|
+
def initialize(clusterid=nil, name=nil, region=nil, appid=nil, owneruin=nil, creatoruin=nil, status=nil, remark=nil, createtime=nil, updatetime=nil, cunum=nil, cumem=nil, zone=nil, statusdesc=nil, ccns=nil, netenvironmenttype=nil, freecunum=nil, tags=nil, isolatedtime=nil, expiretime=nil, secondsuntilexpiry=nil, autorenewflag=nil, defaultcosbucket=nil, clslogset=nil, clstopicid=nil, clslogname=nil, clstopicname=nil, version=nil, freecu=nil, defaultlogcollectconf=nil, customizeddnsenabled=nil, correlations=nil, runningcu=nil, paymode=nil, isneedmanagenode=nil, clustersessions=nil)
|
194
197
|
@ClusterId = clusterid
|
195
198
|
@Name = name
|
196
199
|
@Region = region
|
@@ -226,6 +229,7 @@ module TencentCloud
|
|
226
229
|
@RunningCu = runningcu
|
227
230
|
@PayMode = paymode
|
228
231
|
@IsNeedManageNode = isneedmanagenode
|
232
|
+
@ClusterSessions = clustersessions
|
229
233
|
end
|
230
234
|
|
231
235
|
def deserialize(params)
|
@@ -288,6 +292,25 @@ module TencentCloud
|
|
288
292
|
@RunningCu = params['RunningCu']
|
289
293
|
@PayMode = params['PayMode']
|
290
294
|
@IsNeedManageNode = params['IsNeedManageNode']
|
295
|
+
unless params['ClusterSessions'].nil?
|
296
|
+
@ClusterSessions = []
|
297
|
+
params['ClusterSessions'].each do |i|
|
298
|
+
clustersession_tmp = ClusterSession.new
|
299
|
+
clustersession_tmp.deserialize(i)
|
300
|
+
@ClusterSessions << clustersession_tmp
|
301
|
+
end
|
302
|
+
end
|
303
|
+
end
|
304
|
+
end
|
305
|
+
|
306
|
+
# session集群信息
|
307
|
+
class ClusterSession < TencentCloud::Common::AbstractModel
|
308
|
+
|
309
|
+
|
310
|
+
def initialize()
|
311
|
+
end
|
312
|
+
|
313
|
+
def deserialize(params)
|
291
314
|
end
|
292
315
|
end
|
293
316
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-oceanus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.568
|
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-05-
|
11
|
+
date: 2023-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|