tencentcloud-sdk-oceanus 3.0.567 → 3.0.569
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/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: d54be542d970e3a2354550ab16f1da88b47aeb0e
|
4
|
+
data.tar.gz: cbd092010e8af7f012c6ba5d4bd9c4d97bb62cc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bca228b8dea6976e1297bd0c4974f2ce7a7fe66dd2478292767cc482b884a2b9ee08d60093356f25b2324e2a98ed6f1b6d1835366455492c2d9007837f28ac5
|
7
|
+
data.tar.gz: 2d0283d1409cfaa11cad99fa81a53e6ca396e9d2f87047acfcce2b1bb9a585912062f2df8674dc2a566d8477735c71f4a65117bfa52bc3c4b1024159f5d20aa5
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.569
|
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.569
|
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-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|