tencentcloud-sdk-oceanus 3.0.674 → 3.0.676
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 +117 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d228691abffd895930e7c717ac5e3793e2ec83e6
|
4
|
+
data.tar.gz: 5496b4022d2c0785d0585a7dc2e3f16cd4e14f58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e34a2a70d438a7629eca5df3278a89b003ba82acac3d6956e83be7c46c3d947d7cce42dc80630d7d703a7c262132d31d84c7ab4846ed16b0876337b0098f55da
|
7
|
+
data.tar.gz: 25e5d006db32fa3aa2fde0e5f1c83df52dcca45b5597367681835b21f09f9e35c0c0a7614387b471f341ef2c4a3442c236ffdb3776fdc7a4bfb5cc6ef5d922d7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.676
|
data/lib/v20190422/models.rb
CHANGED
@@ -224,10 +224,13 @@ module TencentCloud
|
|
224
224
|
# @param Orders: 订单信息
|
225
225
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
226
226
|
# @type Orders: Array
|
227
|
+
# @param SqlGateways: Gateway信息
|
228
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
229
|
+
# @type SqlGateways: Array
|
227
230
|
|
228
|
-
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, :ArchGeneration, :ClusterType, :Orders
|
231
|
+
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, :ArchGeneration, :ClusterType, :Orders, :SqlGateways
|
229
232
|
|
230
|
-
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, archgeneration=nil, clustertype=nil, orders=nil)
|
233
|
+
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, archgeneration=nil, clustertype=nil, orders=nil, sqlgateways=nil)
|
231
234
|
@ClusterId = clusterid
|
232
235
|
@Name = name
|
233
236
|
@Region = region
|
@@ -267,6 +270,7 @@ module TencentCloud
|
|
267
270
|
@ArchGeneration = archgeneration
|
268
271
|
@ClusterType = clustertype
|
269
272
|
@Orders = orders
|
273
|
+
@SqlGateways = sqlgateways
|
270
274
|
end
|
271
275
|
|
272
276
|
def deserialize(params)
|
@@ -347,6 +351,14 @@ module TencentCloud
|
|
347
351
|
@Orders << order_tmp
|
348
352
|
end
|
349
353
|
end
|
354
|
+
unless params['SqlGateways'].nil?
|
355
|
+
@SqlGateways = []
|
356
|
+
params['SqlGateways'].each do |i|
|
357
|
+
sqlgatewayitem_tmp = SqlGatewayItem.new
|
358
|
+
sqlgatewayitem_tmp.deserialize(i)
|
359
|
+
@SqlGateways << sqlgatewayitem_tmp
|
360
|
+
end
|
361
|
+
end
|
350
362
|
end
|
351
363
|
end
|
352
364
|
|
@@ -2155,6 +2167,38 @@ module TencentCloud
|
|
2155
2167
|
end
|
2156
2168
|
end
|
2157
2169
|
|
2170
|
+
# Gateway引用资源信息
|
2171
|
+
class GatewayRefItem < TencentCloud::Common::AbstractModel
|
2172
|
+
# @param WorkspaceId: 空间唯一标识
|
2173
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2174
|
+
# @type WorkspaceId: String
|
2175
|
+
# @param ResourceId: 资源唯一标识
|
2176
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2177
|
+
# @type ResourceId: String
|
2178
|
+
# @param Version: 版本号
|
2179
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2180
|
+
# @type Version: Integer
|
2181
|
+
# @param Type: 引用类型,0:用户资源
|
2182
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2183
|
+
# @type Type: Integer
|
2184
|
+
|
2185
|
+
attr_accessor :WorkspaceId, :ResourceId, :Version, :Type
|
2186
|
+
|
2187
|
+
def initialize(workspaceid=nil, resourceid=nil, version=nil, type=nil)
|
2188
|
+
@WorkspaceId = workspaceid
|
2189
|
+
@ResourceId = resourceid
|
2190
|
+
@Version = version
|
2191
|
+
@Type = type
|
2192
|
+
end
|
2193
|
+
|
2194
|
+
def deserialize(params)
|
2195
|
+
@WorkspaceId = params['WorkspaceId']
|
2196
|
+
@ResourceId = params['ResourceId']
|
2197
|
+
@Version = params['Version']
|
2198
|
+
@Type = params['Type']
|
2199
|
+
end
|
2200
|
+
end
|
2201
|
+
|
2158
2202
|
# 作业配置详情
|
2159
2203
|
class JobConfig < TencentCloud::Common::AbstractModel
|
2160
2204
|
# @param JobId: 作业Id
|
@@ -3410,6 +3454,77 @@ module TencentCloud
|
|
3410
3454
|
end
|
3411
3455
|
end
|
3412
3456
|
|
3457
|
+
# SqlGateway配置信息
|
3458
|
+
class SqlGatewayItem < TencentCloud::Common::AbstractModel
|
3459
|
+
# @param SerialId: 唯一标识
|
3460
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3461
|
+
# @type SerialId: String
|
3462
|
+
# @param FlinkVersion: Flink内核版本
|
3463
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3464
|
+
# @type FlinkVersion: String
|
3465
|
+
# @param Status: 状态,1.停止 2. 开启中 3. 开启 4. 开启失败 5. 停止中
|
3466
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3467
|
+
# @type Status: Integer
|
3468
|
+
# @param CreatorUin: 创建人
|
3469
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3470
|
+
# @type CreatorUin: String
|
3471
|
+
# @param ResourceRefs: 引用资源
|
3472
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3473
|
+
# @type ResourceRefs: Array
|
3474
|
+
# @param CuSpec: Cu规格
|
3475
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3476
|
+
# @type CuSpec: Float
|
3477
|
+
# @param CreateTime: 创建时间
|
3478
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3479
|
+
# @type CreateTime: String
|
3480
|
+
# @param UpdateTime: 更新时间
|
3481
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3482
|
+
# @type UpdateTime: String
|
3483
|
+
# @param Properties: 配置参数
|
3484
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3485
|
+
# @type Properties: Array
|
3486
|
+
|
3487
|
+
attr_accessor :SerialId, :FlinkVersion, :Status, :CreatorUin, :ResourceRefs, :CuSpec, :CreateTime, :UpdateTime, :Properties
|
3488
|
+
|
3489
|
+
def initialize(serialid=nil, flinkversion=nil, status=nil, creatoruin=nil, resourcerefs=nil, cuspec=nil, createtime=nil, updatetime=nil, properties=nil)
|
3490
|
+
@SerialId = serialid
|
3491
|
+
@FlinkVersion = flinkversion
|
3492
|
+
@Status = status
|
3493
|
+
@CreatorUin = creatoruin
|
3494
|
+
@ResourceRefs = resourcerefs
|
3495
|
+
@CuSpec = cuspec
|
3496
|
+
@CreateTime = createtime
|
3497
|
+
@UpdateTime = updatetime
|
3498
|
+
@Properties = properties
|
3499
|
+
end
|
3500
|
+
|
3501
|
+
def deserialize(params)
|
3502
|
+
@SerialId = params['SerialId']
|
3503
|
+
@FlinkVersion = params['FlinkVersion']
|
3504
|
+
@Status = params['Status']
|
3505
|
+
@CreatorUin = params['CreatorUin']
|
3506
|
+
unless params['ResourceRefs'].nil?
|
3507
|
+
@ResourceRefs = []
|
3508
|
+
params['ResourceRefs'].each do |i|
|
3509
|
+
gatewayrefitem_tmp = GatewayRefItem.new
|
3510
|
+
gatewayrefitem_tmp.deserialize(i)
|
3511
|
+
@ResourceRefs << gatewayrefitem_tmp
|
3512
|
+
end
|
3513
|
+
end
|
3514
|
+
@CuSpec = params['CuSpec']
|
3515
|
+
@CreateTime = params['CreateTime']
|
3516
|
+
@UpdateTime = params['UpdateTime']
|
3517
|
+
unless params['Properties'].nil?
|
3518
|
+
@Properties = []
|
3519
|
+
params['Properties'].each do |i|
|
3520
|
+
property_tmp = Property.new
|
3521
|
+
property_tmp.deserialize(i)
|
3522
|
+
@Properties << property_tmp
|
3523
|
+
end
|
3524
|
+
end
|
3525
|
+
end
|
3526
|
+
end
|
3527
|
+
|
3413
3528
|
# 停止作业的描述信息
|
3414
3529
|
class StopJobDescription < TencentCloud::Common::AbstractModel
|
3415
3530
|
# @param JobId: 作业Id
|
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.676
|
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-10-
|
11
|
+
date: 2023-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20190422/models.rb
|
37
|
-
- lib/v20190422/client.rb
|
38
36
|
- lib/tencentcloud-sdk-oceanus.rb
|
37
|
+
- lib/v20190422/client.rb
|
38
|
+
- lib/v20190422/models.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|