tencentcloud-sdk-oceanus 3.0.934 → 3.0.936
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 +82 -6
- 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: 195134dffc911dd3f910ec1981d47fe7ad828b41
|
4
|
+
data.tar.gz: 8360de4a19424c8ab75c0a3aed6c2641b47065ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d9695a74833f0251d681ad7518dbfc52607547b0581be433c6ff54f50a89b5296f4b17e03b3c69b88f2cf516adc0c24619af398c258c137963ff34525aadb1e
|
7
|
+
data.tar.gz: a6c9e7cb3eeb01215cfb1c8c37056c2f20bd11f4b01979772f7c7b5f817e0a7244480b61ea6e2568c407c51589799de115316827533c69204f837ecd444c4d16
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.936
|
data/lib/v20190422/models.rb
CHANGED
@@ -526,6 +526,9 @@ module TencentCloud
|
|
526
526
|
# @param Properties: session集群高级参数
|
527
527
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
528
528
|
# @type Properties: Array
|
529
|
+
# @param ResourceRefs: 引用资源
|
530
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
531
|
+
# @type ResourceRefs: Array
|
529
532
|
# @param JobManagerCuSpec: JobManager的规格
|
530
533
|
# @type JobManagerCuSpec: Float
|
531
534
|
# @param TaskManagerCuSpec: TaskManager的规格
|
@@ -536,10 +539,18 @@ module TencentCloud
|
|
536
539
|
# @type CreateTime: String
|
537
540
|
# @param UpdateTime: 更新时间
|
538
541
|
# @type UpdateTime: String
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
542
|
+
# @param JobManagerCpu: JobManagerCpu
|
543
|
+
# @type JobManagerCpu: Float
|
544
|
+
# @param JobManagerMem: JobManagerMem
|
545
|
+
# @type JobManagerMem: Float
|
546
|
+
# @param TaskManagerCpu: TaskManagerCpu
|
547
|
+
# @type TaskManagerCpu: Float
|
548
|
+
# @param TaskManagerMem: TaskManagerMem
|
549
|
+
# @type TaskManagerMem: Float
|
550
|
+
|
551
|
+
attr_accessor :ClusterGroupSerialId, :AppId, :OwnerUin, :CreatorUin, :Region, :Zone, :Status, :CuNum, :FlinkVersion, :WebUIUrl, :Properties, :ResourceRefs, :JobManagerCuSpec, :TaskManagerCuSpec, :TaskManagerNum, :CreateTime, :UpdateTime, :JobManagerCpu, :JobManagerMem, :TaskManagerCpu, :TaskManagerMem
|
552
|
+
|
553
|
+
def initialize(clustergroupserialid=nil, appid=nil, owneruin=nil, creatoruin=nil, region=nil, zone=nil, status=nil, cunum=nil, flinkversion=nil, webuiurl=nil, properties=nil, resourcerefs=nil, jobmanagercuspec=nil, taskmanagercuspec=nil, taskmanagernum=nil, createtime=nil, updatetime=nil, jobmanagercpu=nil, jobmanagermem=nil, taskmanagercpu=nil, taskmanagermem=nil)
|
543
554
|
@ClusterGroupSerialId = clustergroupserialid
|
544
555
|
@AppId = appid
|
545
556
|
@OwnerUin = owneruin
|
@@ -551,11 +562,16 @@ module TencentCloud
|
|
551
562
|
@FlinkVersion = flinkversion
|
552
563
|
@WebUIUrl = webuiurl
|
553
564
|
@Properties = properties
|
565
|
+
@ResourceRefs = resourcerefs
|
554
566
|
@JobManagerCuSpec = jobmanagercuspec
|
555
567
|
@TaskManagerCuSpec = taskmanagercuspec
|
556
568
|
@TaskManagerNum = taskmanagernum
|
557
569
|
@CreateTime = createtime
|
558
570
|
@UpdateTime = updatetime
|
571
|
+
@JobManagerCpu = jobmanagercpu
|
572
|
+
@JobManagerMem = jobmanagermem
|
573
|
+
@TaskManagerCpu = taskmanagercpu
|
574
|
+
@TaskManagerMem = taskmanagermem
|
559
575
|
end
|
560
576
|
|
561
577
|
def deserialize(params)
|
@@ -577,11 +593,23 @@ module TencentCloud
|
|
577
593
|
@Properties << property_tmp
|
578
594
|
end
|
579
595
|
end
|
596
|
+
unless params['ResourceRefs'].nil?
|
597
|
+
@ResourceRefs = []
|
598
|
+
params['ResourceRefs'].each do |i|
|
599
|
+
sessionclusterrefitem_tmp = SessionClusterRefItem.new
|
600
|
+
sessionclusterrefitem_tmp.deserialize(i)
|
601
|
+
@ResourceRefs << sessionclusterrefitem_tmp
|
602
|
+
end
|
603
|
+
end
|
580
604
|
@JobManagerCuSpec = params['JobManagerCuSpec']
|
581
605
|
@TaskManagerCuSpec = params['TaskManagerCuSpec']
|
582
606
|
@TaskManagerNum = params['TaskManagerNum']
|
583
607
|
@CreateTime = params['CreateTime']
|
584
608
|
@UpdateTime = params['UpdateTime']
|
609
|
+
@JobManagerCpu = params['JobManagerCpu']
|
610
|
+
@JobManagerMem = params['JobManagerMem']
|
611
|
+
@TaskManagerCpu = params['TaskManagerCpu']
|
612
|
+
@TaskManagerMem = params['TaskManagerMem']
|
585
613
|
end
|
586
614
|
end
|
587
615
|
|
@@ -3505,10 +3533,20 @@ module TencentCloud
|
|
3505
3533
|
# @param Description: 描述信息
|
3506
3534
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3507
3535
|
# @type Description: String
|
3536
|
+
# @param ScalingType: 0:代表没开启调优任务,1:开启智能调优,2:代表定时调优
|
3508
3537
|
|
3509
|
-
|
3538
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3539
|
+
# @type ScalingType: Integer
|
3540
|
+
# @param RunningCpu: 使用CPU数目
|
3541
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3542
|
+
# @type RunningCpu: Float
|
3543
|
+
# @param RunningMem: 使用内存数量
|
3544
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3545
|
+
# @type RunningMem: Float
|
3546
|
+
|
3547
|
+
attr_accessor :JobId, :Region, :Zone, :AppId, :OwnerUin, :CreatorUin, :Name, :JobType, :Status, :CreateTime, :StartTime, :StopTime, :UpdateTime, :TotalRunMillis, :Remark, :LastOpResult, :ClusterName, :LatestJobConfigVersion, :PublishedJobConfigVersion, :RunningCuNum, :CuMem, :StatusDesc, :CurrentRunMillis, :ClusterId, :WebUIUrl, :SchedulerType, :ClusterStatus, :RunningCu, :FlinkVersion, :WorkSpaceId, :WorkSpaceName, :Tags, :EventInfo, :Description, :ScalingType, :RunningCpu, :RunningMem
|
3510
3548
|
|
3511
|
-
def initialize(jobid=nil, region=nil, zone=nil, appid=nil, owneruin=nil, creatoruin=nil, name=nil, jobtype=nil, status=nil, createtime=nil, starttime=nil, stoptime=nil, updatetime=nil, totalrunmillis=nil, remark=nil, lastopresult=nil, clustername=nil, latestjobconfigversion=nil, publishedjobconfigversion=nil, runningcunum=nil, cumem=nil, statusdesc=nil, currentrunmillis=nil, clusterid=nil, webuiurl=nil, schedulertype=nil, clusterstatus=nil, runningcu=nil, flinkversion=nil, workspaceid=nil, workspacename=nil, tags=nil, eventinfo=nil, description=nil)
|
3549
|
+
def initialize(jobid=nil, region=nil, zone=nil, appid=nil, owneruin=nil, creatoruin=nil, name=nil, jobtype=nil, status=nil, createtime=nil, starttime=nil, stoptime=nil, updatetime=nil, totalrunmillis=nil, remark=nil, lastopresult=nil, clustername=nil, latestjobconfigversion=nil, publishedjobconfigversion=nil, runningcunum=nil, cumem=nil, statusdesc=nil, currentrunmillis=nil, clusterid=nil, webuiurl=nil, schedulertype=nil, clusterstatus=nil, runningcu=nil, flinkversion=nil, workspaceid=nil, workspacename=nil, tags=nil, eventinfo=nil, description=nil, scalingtype=nil, runningcpu=nil, runningmem=nil)
|
3512
3550
|
@JobId = jobid
|
3513
3551
|
@Region = region
|
3514
3552
|
@Zone = zone
|
@@ -3543,6 +3581,9 @@ module TencentCloud
|
|
3543
3581
|
@Tags = tags
|
3544
3582
|
@EventInfo = eventinfo
|
3545
3583
|
@Description = description
|
3584
|
+
@ScalingType = scalingtype
|
3585
|
+
@RunningCpu = runningcpu
|
3586
|
+
@RunningMem = runningmem
|
3546
3587
|
end
|
3547
3588
|
|
3548
3589
|
def deserialize(params)
|
@@ -3590,6 +3631,9 @@ module TencentCloud
|
|
3590
3631
|
@EventInfo.deserialize(params['EventInfo'])
|
3591
3632
|
end
|
3592
3633
|
@Description = params['Description']
|
3634
|
+
@ScalingType = params['ScalingType']
|
3635
|
+
@RunningCpu = params['RunningCpu']
|
3636
|
+
@RunningMem = params['RunningMem']
|
3593
3637
|
end
|
3594
3638
|
end
|
3595
3639
|
|
@@ -4572,6 +4616,38 @@ module TencentCloud
|
|
4572
4616
|
end
|
4573
4617
|
end
|
4574
4618
|
|
4619
|
+
# session集群引用资源信息
|
4620
|
+
class SessionClusterRefItem < TencentCloud::Common::AbstractModel
|
4621
|
+
# @param WorkspaceId: 空间唯一标识
|
4622
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4623
|
+
# @type WorkspaceId: String
|
4624
|
+
# @param ResourceId: 资源唯一标识
|
4625
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4626
|
+
# @type ResourceId: String
|
4627
|
+
# @param Version: 版本号
|
4628
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4629
|
+
# @type Version: Integer
|
4630
|
+
# @param Type: 引用类型,0:用户资源
|
4631
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
4632
|
+
# @type Type: Integer
|
4633
|
+
|
4634
|
+
attr_accessor :WorkspaceId, :ResourceId, :Version, :Type
|
4635
|
+
|
4636
|
+
def initialize(workspaceid=nil, resourceid=nil, version=nil, type=nil)
|
4637
|
+
@WorkspaceId = workspaceid
|
4638
|
+
@ResourceId = resourceid
|
4639
|
+
@Version = version
|
4640
|
+
@Type = type
|
4641
|
+
end
|
4642
|
+
|
4643
|
+
def deserialize(params)
|
4644
|
+
@WorkspaceId = params['WorkspaceId']
|
4645
|
+
@ResourceId = params['ResourceId']
|
4646
|
+
@Version = params['Version']
|
4647
|
+
@Type = params['Type']
|
4648
|
+
end
|
4649
|
+
end
|
4650
|
+
|
4575
4651
|
# SlotSharingGroup 描述
|
4576
4652
|
class SlotSharingGroup < TencentCloud::Common::AbstractModel
|
4577
4653
|
# @param Name: SlotSharingGroup的名字
|
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.936
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|