tencentcloud-sdk-oceanus 3.0.523 → 3.0.525
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 +73 -7
- 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: 0a9a593e30770705798d661e60a939109f88ba9f
|
4
|
+
data.tar.gz: 7d322579ffaa67be6e4a444f8d0ea1b3b55ecfef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd55cf51a9477d7027bf8bbedb746125d463f1441bdc5b09a121dd4a7ee61cea4ff063f88711d1fa04eafe151fdd07ca05af1e0623084241f8fb6fbdbdf7a00f
|
7
|
+
data.tar.gz: a99c4518e127d6b21ac98c5502d6894535af7cec7ed31c1472c8a147724a77b92cca433bb16768b186212fc21d16db553e24b02b4a22e38e6449c42d2b1e5fe9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.525
|
data/lib/v20190422/models.rb
CHANGED
@@ -2043,6 +2043,28 @@ module TencentCloud
|
|
2043
2043
|
end
|
2044
2044
|
end
|
2045
2045
|
|
2046
|
+
# 依赖作业分状态计数信息
|
2047
|
+
class RefJobStatusCountItem < TencentCloud::Common::AbstractModel
|
2048
|
+
# @param JobStatus: 作业状态
|
2049
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2050
|
+
# @type JobStatus: Integer
|
2051
|
+
# @param Count: 作业数量
|
2052
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2053
|
+
# @type Count: Integer
|
2054
|
+
|
2055
|
+
attr_accessor :JobStatus, :Count
|
2056
|
+
|
2057
|
+
def initialize(jobstatus=nil, count=nil)
|
2058
|
+
@JobStatus = jobstatus
|
2059
|
+
@Count = count
|
2060
|
+
end
|
2061
|
+
|
2062
|
+
def deserialize(params)
|
2063
|
+
@JobStatus = params['JobStatus']
|
2064
|
+
@Count = params['Count']
|
2065
|
+
end
|
2066
|
+
end
|
2067
|
+
|
2046
2068
|
# 描述资源配置的返回参数
|
2047
2069
|
class ResourceConfigItem < TencentCloud::Common::AbstractModel
|
2048
2070
|
# @param ResourceId: 资源ID
|
@@ -2071,10 +2093,13 @@ module TencentCloud
|
|
2071
2093
|
# @param RefJobCount: 关联作业个数
|
2072
2094
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2073
2095
|
# @type RefJobCount: Integer
|
2096
|
+
# @param RefJobStatusCountSet: 分状态统计关联作业数
|
2097
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2098
|
+
# @type RefJobStatusCountSet: Array
|
2074
2099
|
|
2075
|
-
attr_accessor :ResourceId, :ResourceType, :Region, :AppId, :OwnerUin, :CreatorUin, :ResourceLoc, :CreateTime, :Version, :Remark, :Status, :RefJobCount
|
2100
|
+
attr_accessor :ResourceId, :ResourceType, :Region, :AppId, :OwnerUin, :CreatorUin, :ResourceLoc, :CreateTime, :Version, :Remark, :Status, :RefJobCount, :RefJobStatusCountSet
|
2076
2101
|
|
2077
|
-
def initialize(resourceid=nil, resourcetype=nil, region=nil, appid=nil, owneruin=nil, creatoruin=nil, resourceloc=nil, createtime=nil, version=nil, remark=nil, status=nil, refjobcount=nil)
|
2102
|
+
def initialize(resourceid=nil, resourcetype=nil, region=nil, appid=nil, owneruin=nil, creatoruin=nil, resourceloc=nil, createtime=nil, version=nil, remark=nil, status=nil, refjobcount=nil, refjobstatuscountset=nil)
|
2078
2103
|
@ResourceId = resourceid
|
2079
2104
|
@ResourceType = resourcetype
|
2080
2105
|
@Region = region
|
@@ -2087,6 +2112,7 @@ module TencentCloud
|
|
2087
2112
|
@Remark = remark
|
2088
2113
|
@Status = status
|
2089
2114
|
@RefJobCount = refjobcount
|
2115
|
+
@RefJobStatusCountSet = refjobstatuscountset
|
2090
2116
|
end
|
2091
2117
|
|
2092
2118
|
def deserialize(params)
|
@@ -2105,6 +2131,14 @@ module TencentCloud
|
|
2105
2131
|
@Remark = params['Remark']
|
2106
2132
|
@Status = params['Status']
|
2107
2133
|
@RefJobCount = params['RefJobCount']
|
2134
|
+
unless params['RefJobStatusCountSet'].nil?
|
2135
|
+
@RefJobStatusCountSet = []
|
2136
|
+
params['RefJobStatusCountSet'].each do |i|
|
2137
|
+
refjobstatuscountitem_tmp = RefJobStatusCountItem.new
|
2138
|
+
refjobstatuscountitem_tmp.deserialize(i)
|
2139
|
+
@RefJobStatusCountSet << refjobstatuscountitem_tmp
|
2140
|
+
end
|
2141
|
+
end
|
2108
2142
|
end
|
2109
2143
|
end
|
2110
2144
|
|
@@ -2141,10 +2175,22 @@ module TencentCloud
|
|
2141
2175
|
# @param RefJobCount: 关联作业数
|
2142
2176
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2143
2177
|
# @type RefJobCount: Integer
|
2178
|
+
# @param IsJobRun: 作业运行状态
|
2179
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2180
|
+
# @type IsJobRun: Integer
|
2181
|
+
# @param FileName: 文件名
|
2182
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2183
|
+
# @type FileName: String
|
2184
|
+
# @param WorkSpaceId: 工作空间ID
|
2185
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2186
|
+
# @type WorkSpaceId: Integer
|
2187
|
+
# @param RefJobStatusCountSet: 分状态统计关联作业数
|
2188
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2189
|
+
# @type RefJobStatusCountSet: Array
|
2144
2190
|
|
2145
|
-
attr_accessor :ResourceId, :Name, :ResourceType, :ResourceLoc, :Region, :AppId, :OwnerUin, :CreatorUin, :CreateTime, :UpdateTime, :LatestResourceConfigVersion, :Remark, :VersionCount, :RefJobCount
|
2191
|
+
attr_accessor :ResourceId, :Name, :ResourceType, :ResourceLoc, :Region, :AppId, :OwnerUin, :CreatorUin, :CreateTime, :UpdateTime, :LatestResourceConfigVersion, :Remark, :VersionCount, :RefJobCount, :IsJobRun, :FileName, :WorkSpaceId, :RefJobStatusCountSet
|
2146
2192
|
|
2147
|
-
def initialize(resourceid=nil, name=nil, resourcetype=nil, resourceloc=nil, region=nil, appid=nil, owneruin=nil, creatoruin=nil, createtime=nil, updatetime=nil, latestresourceconfigversion=nil, remark=nil, versioncount=nil, refjobcount=nil)
|
2193
|
+
def initialize(resourceid=nil, name=nil, resourcetype=nil, resourceloc=nil, region=nil, appid=nil, owneruin=nil, creatoruin=nil, createtime=nil, updatetime=nil, latestresourceconfigversion=nil, remark=nil, versioncount=nil, refjobcount=nil, isjobrun=nil, filename=nil, workspaceid=nil, refjobstatuscountset=nil)
|
2148
2194
|
@ResourceId = resourceid
|
2149
2195
|
@Name = name
|
2150
2196
|
@ResourceType = resourcetype
|
@@ -2159,6 +2205,10 @@ module TencentCloud
|
|
2159
2205
|
@Remark = remark
|
2160
2206
|
@VersionCount = versioncount
|
2161
2207
|
@RefJobCount = refjobcount
|
2208
|
+
@IsJobRun = isjobrun
|
2209
|
+
@FileName = filename
|
2210
|
+
@WorkSpaceId = workspaceid
|
2211
|
+
@RefJobStatusCountSet = refjobstatuscountset
|
2162
2212
|
end
|
2163
2213
|
|
2164
2214
|
def deserialize(params)
|
@@ -2179,6 +2229,17 @@ module TencentCloud
|
|
2179
2229
|
@Remark = params['Remark']
|
2180
2230
|
@VersionCount = params['VersionCount']
|
2181
2231
|
@RefJobCount = params['RefJobCount']
|
2232
|
+
@IsJobRun = params['IsJobRun']
|
2233
|
+
@FileName = params['FileName']
|
2234
|
+
@WorkSpaceId = params['WorkSpaceId']
|
2235
|
+
unless params['RefJobStatusCountSet'].nil?
|
2236
|
+
@RefJobStatusCountSet = []
|
2237
|
+
params['RefJobStatusCountSet'].each do |i|
|
2238
|
+
refjobstatuscountitem_tmp = RefJobStatusCountItem.new
|
2239
|
+
refjobstatuscountitem_tmp.deserialize(i)
|
2240
|
+
@RefJobStatusCountSet << refjobstatuscountitem_tmp
|
2241
|
+
end
|
2242
|
+
end
|
2182
2243
|
end
|
2183
2244
|
end
|
2184
2245
|
|
@@ -2316,7 +2377,7 @@ module TencentCloud
|
|
2316
2377
|
# @type JobId: String
|
2317
2378
|
# @param RunType: 运行类型,1:启动,2:恢复
|
2318
2379
|
# @type RunType: Integer
|
2319
|
-
# @param StartMode:
|
2380
|
+
# @param StartMode: 兼容旧版 SQL 类型作业启动参数:指定数据源消费起始时间点(例:T1557394288000)
|
2320
2381
|
# @type StartMode: String
|
2321
2382
|
# @param JobConfigVersion: 当前作业的某个版本
|
2322
2383
|
# @type JobConfigVersion: Integer
|
@@ -2324,16 +2385,20 @@ module TencentCloud
|
|
2324
2385
|
# @type SavepointPath: String
|
2325
2386
|
# @param SavepointId: Savepoint的Id
|
2326
2387
|
# @type SavepointId: String
|
2388
|
+
# @param UseOldSystemConnector: 使用历史版本系统依赖
|
2389
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2390
|
+
# @type UseOldSystemConnector: Boolean
|
2327
2391
|
|
2328
|
-
attr_accessor :JobId, :RunType, :StartMode, :JobConfigVersion, :SavepointPath, :SavepointId
|
2392
|
+
attr_accessor :JobId, :RunType, :StartMode, :JobConfigVersion, :SavepointPath, :SavepointId, :UseOldSystemConnector
|
2329
2393
|
|
2330
|
-
def initialize(jobid=nil, runtype=nil, startmode=nil, jobconfigversion=nil, savepointpath=nil, savepointid=nil)
|
2394
|
+
def initialize(jobid=nil, runtype=nil, startmode=nil, jobconfigversion=nil, savepointpath=nil, savepointid=nil, useoldsystemconnector=nil)
|
2331
2395
|
@JobId = jobid
|
2332
2396
|
@RunType = runtype
|
2333
2397
|
@StartMode = startmode
|
2334
2398
|
@JobConfigVersion = jobconfigversion
|
2335
2399
|
@SavepointPath = savepointpath
|
2336
2400
|
@SavepointId = savepointid
|
2401
|
+
@UseOldSystemConnector = useoldsystemconnector
|
2337
2402
|
end
|
2338
2403
|
|
2339
2404
|
def deserialize(params)
|
@@ -2343,6 +2408,7 @@ module TencentCloud
|
|
2343
2408
|
@JobConfigVersion = params['JobConfigVersion']
|
2344
2409
|
@SavepointPath = params['SavepointPath']
|
2345
2410
|
@SavepointId = params['SavepointId']
|
2411
|
+
@UseOldSystemConnector = params['UseOldSystemConnector']
|
2346
2412
|
end
|
2347
2413
|
end
|
2348
2414
|
|
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.525
|
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-03-
|
11
|
+
date: 2023-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|