tencentcloud-sdk-oceanus 3.0.738 → 3.0.739
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 +33 -4
- 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: ead6b0461292d194ee0378521878c52524f05a97
|
4
|
+
data.tar.gz: ebc24294f29eb6a4428048c15859ecf62bf0aa88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4995c55b06bf7eea73a9ba155b473e0038028e236bbc76949b0314b2850fc81731e08a4a869666a94ae2664fa9ff7f3cc053e9248ab684f1a98f6d61d1c18c5
|
7
|
+
data.tar.gz: 54d63e126dd8954a210993adb13a3073da3cde00412dd516c4fccd9a2533d9b3e52b17c083c6330e690bf275cc5b73a4402c9c60af28ebfc15a4507cd4ab8a80
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.739
|
data/lib/v20190422/models.rb
CHANGED
@@ -1951,15 +1951,18 @@ module TencentCloud
|
|
1951
1951
|
# @type Limit: Integer
|
1952
1952
|
# @param WorkSpaceId: 工作空间 SerialId
|
1953
1953
|
# @type WorkSpaceId: String
|
1954
|
+
# @param ExtraResult: 查询额外的作业信息,例如 JobEventInfo
|
1955
|
+
# @type ExtraResult: Array
|
1954
1956
|
|
1955
|
-
attr_accessor :JobIds, :Filters, :Offset, :Limit, :WorkSpaceId
|
1957
|
+
attr_accessor :JobIds, :Filters, :Offset, :Limit, :WorkSpaceId, :ExtraResult
|
1956
1958
|
|
1957
|
-
def initialize(jobids=nil, filters=nil, offset=nil, limit=nil, workspaceid=nil)
|
1959
|
+
def initialize(jobids=nil, filters=nil, offset=nil, limit=nil, workspaceid=nil, extraresult=nil)
|
1958
1960
|
@JobIds = jobids
|
1959
1961
|
@Filters = filters
|
1960
1962
|
@Offset = offset
|
1961
1963
|
@Limit = limit
|
1962
1964
|
@WorkSpaceId = workspaceid
|
1965
|
+
@ExtraResult = extraresult
|
1963
1966
|
end
|
1964
1967
|
|
1965
1968
|
def deserialize(params)
|
@@ -1975,6 +1978,7 @@ module TencentCloud
|
|
1975
1978
|
@Offset = params['Offset']
|
1976
1979
|
@Limit = params['Limit']
|
1977
1980
|
@WorkSpaceId = params['WorkSpaceId']
|
1981
|
+
@ExtraResult = params['ExtraResult']
|
1978
1982
|
end
|
1979
1983
|
end
|
1980
1984
|
|
@@ -3116,6 +3120,23 @@ module TencentCloud
|
|
3116
3120
|
end
|
3117
3121
|
end
|
3118
3122
|
|
3123
|
+
# 事件信息
|
3124
|
+
class JobEventInfo < TencentCloud::Common::AbstractModel
|
3125
|
+
# @param ErrorEventTotal: 异常事件总数
|
3126
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3127
|
+
# @type ErrorEventTotal: Integer
|
3128
|
+
|
3129
|
+
attr_accessor :ErrorEventTotal
|
3130
|
+
|
3131
|
+
def initialize(erroreventtotal=nil)
|
3132
|
+
@ErrorEventTotal = erroreventtotal
|
3133
|
+
end
|
3134
|
+
|
3135
|
+
def deserialize(params)
|
3136
|
+
@ErrorEventTotal = params['ErrorEventTotal']
|
3137
|
+
end
|
3138
|
+
end
|
3139
|
+
|
3119
3140
|
# 作业运行图
|
3120
3141
|
class JobGraph < TencentCloud::Common::AbstractModel
|
3121
3142
|
# @param Nodes: 运行图的点集合
|
@@ -3328,10 +3349,13 @@ module TencentCloud
|
|
3328
3349
|
# @param Tags: 作业标签
|
3329
3350
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3330
3351
|
# @type Tags: Array
|
3352
|
+
# @param EventInfo: 作业异常事件信息
|
3353
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3354
|
+
# @type EventInfo: :class:`Tencentcloud::Oceanus.v20190422.models.JobEventInfo`
|
3331
3355
|
|
3332
|
-
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
|
3356
|
+
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
|
3333
3357
|
|
3334
|
-
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)
|
3358
|
+
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)
|
3335
3359
|
@JobId = jobid
|
3336
3360
|
@Region = region
|
3337
3361
|
@Zone = zone
|
@@ -3364,6 +3388,7 @@ module TencentCloud
|
|
3364
3388
|
@WorkSpaceId = workspaceid
|
3365
3389
|
@WorkSpaceName = workspacename
|
3366
3390
|
@Tags = tags
|
3391
|
+
@EventInfo = eventinfo
|
3367
3392
|
end
|
3368
3393
|
|
3369
3394
|
def deserialize(params)
|
@@ -3406,6 +3431,10 @@ module TencentCloud
|
|
3406
3431
|
@Tags << tag_tmp
|
3407
3432
|
end
|
3408
3433
|
end
|
3434
|
+
unless params['EventInfo'].nil?
|
3435
|
+
@EventInfo = JobEventInfo.new
|
3436
|
+
@EventInfo.deserialize(params['EventInfo'])
|
3437
|
+
end
|
3409
3438
|
end
|
3410
3439
|
end
|
3411
3440
|
|
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.739
|
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-12-
|
11
|
+
date: 2023-12-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|