tencentcloud-sdk-oceanus 3.0.674 → 3.0.675

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190422/models.rb +117 -2
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 66aa76557bcd6ab8f672a71cf93fb8ab5023b3f0
4
- data.tar.gz: 3d5c18cc3db3cf0998fc5f677646176445f1ea42
3
+ metadata.gz: d6d184e8f4069017ba0903f275585f73e7ab2f1a
4
+ data.tar.gz: 217d93f8d30ab96036a49f64b82aebecc304192f
5
5
  SHA512:
6
- metadata.gz: a743fe70ed94c12d3800292b237a29a4196b3f58dfc134485aa57aa0cd44f8bb2dc6863a36c66f0455dcda7820db0efc0cb6780c2d10a89852f3106cb79380fa
7
- data.tar.gz: fe03d8cb1a69d49eeef3b315af8decf695696a6dc584d61d99db08243094b178cc1f7e661b03ac3110ae0ff66a3d9948d4e4fca74e5693a7948082d8810dff9d
6
+ metadata.gz: 68a8367f73f4af90f3a6dec8ddf33ae84e56c5c2d472963e864de69a29cd7a362f96809b173ba994c20e33cbedd7d57de5169ee5327b51ab7c1effd88beaff34
7
+ data.tar.gz: b0220039a177a9a0fdf2c64236bcdeae54042878ed6012bfde08b999029f0a8db8608b0e5909f85ce70175f06443bd531c2e3fd1bed3984cbe808815a99c1a35
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.674
1
+ 3.0.675
@@ -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.674
4
+ version: 3.0.675
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 00:00:00.000000000 Z
11
+ date: 2023-10-12 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: