tencentcloud-sdk-tsf 1.0.245 → 1.0.246
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/v20180326/models.rb +28 -8
- 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: 35aa4a9e25cd7aeb9ff64069c0680bc8822fa781
|
4
|
+
data.tar.gz: 650f2d55ad7f2b9be6ceaf1b153a9bb25343cad2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4338430a2f2216540d392973762dae45799bc906b9dea0e0e627ad6c13c92c62f18fe1cb045260dd61fd3d42b4945dbcc3056a4c5c39c1a76fba6ef57e9d920
|
7
|
+
data.tar.gz: 3537976c9d12c4716b6b61a5615c60ba5f8a6f709d8d80f8e9aec8880c2d101c26a29c7cbc0c4453d3063dab28f8b88fe373ba85f7a08e90b07c442100b01e77
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.246
|
data/lib/v20180326/models.rb
CHANGED
@@ -3323,14 +3323,17 @@ module TencentCloud
|
|
3323
3323
|
# @type FlowEdges: Array
|
3324
3324
|
# @param TimeOut: 工作流执行超时时间
|
3325
3325
|
# @type TimeOut: Integer
|
3326
|
+
# @param ProgramIdList: 无
|
3327
|
+
# @type ProgramIdList: Array
|
3326
3328
|
|
3327
|
-
attr_accessor :FlowName, :TriggerRule, :FlowEdges, :TimeOut
|
3329
|
+
attr_accessor :FlowName, :TriggerRule, :FlowEdges, :TimeOut, :ProgramIdList
|
3328
3330
|
|
3329
|
-
def initialize(flowname=nil, triggerrule=nil, flowedges=nil, timeout=nil)
|
3331
|
+
def initialize(flowname=nil, triggerrule=nil, flowedges=nil, timeout=nil, programidlist=nil)
|
3330
3332
|
@FlowName = flowname
|
3331
3333
|
@TriggerRule = triggerrule
|
3332
3334
|
@FlowEdges = flowedges
|
3333
3335
|
@TimeOut = timeout
|
3336
|
+
@ProgramIdList = programidlist
|
3334
3337
|
end
|
3335
3338
|
|
3336
3339
|
def deserialize(params)
|
@@ -3348,12 +3351,14 @@ module TencentCloud
|
|
3348
3351
|
end
|
3349
3352
|
end
|
3350
3353
|
@TimeOut = params['TimeOut']
|
3354
|
+
@ProgramIdList = params['ProgramIdList']
|
3351
3355
|
end
|
3352
3356
|
end
|
3353
3357
|
|
3354
3358
|
# CreateTaskFlow返回参数结构体
|
3355
3359
|
class CreateTaskFlowResponse < TencentCloud::Common::AbstractModel
|
3356
3360
|
# @param Result: 工作流 ID
|
3361
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3357
3362
|
# @type Result: String
|
3358
3363
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3359
3364
|
# @type RequestId: String
|
@@ -3403,10 +3408,12 @@ module TencentCloud
|
|
3403
3408
|
# @type AdvanceSettings: :class:`Tencentcloud::Tsf.v20180326.models.AdvanceSettings`
|
3404
3409
|
# @param TaskArgument: 任务参数,长度限制10000个字符
|
3405
3410
|
# @type TaskArgument: String
|
3411
|
+
# @param ProgramIdList: 无
|
3412
|
+
# @type ProgramIdList: Array
|
3406
3413
|
|
3407
|
-
attr_accessor :TaskName, :TaskContent, :ExecuteType, :TaskType, :TimeOut, :GroupId, :TaskRule, :RetryCount, :RetryInterval, :ShardCount, :ShardArguments, :SuccessOperator, :SuccessRatio, :AdvanceSettings, :TaskArgument
|
3414
|
+
attr_accessor :TaskName, :TaskContent, :ExecuteType, :TaskType, :TimeOut, :GroupId, :TaskRule, :RetryCount, :RetryInterval, :ShardCount, :ShardArguments, :SuccessOperator, :SuccessRatio, :AdvanceSettings, :TaskArgument, :ProgramIdList
|
3408
3415
|
|
3409
|
-
def initialize(taskname=nil, taskcontent=nil, executetype=nil, tasktype=nil, timeout=nil, groupid=nil, taskrule=nil, retrycount=nil, retryinterval=nil, shardcount=nil, shardarguments=nil, successoperator=nil, successratio=nil, advancesettings=nil, taskargument=nil)
|
3416
|
+
def initialize(taskname=nil, taskcontent=nil, executetype=nil, tasktype=nil, timeout=nil, groupid=nil, taskrule=nil, retrycount=nil, retryinterval=nil, shardcount=nil, shardarguments=nil, successoperator=nil, successratio=nil, advancesettings=nil, taskargument=nil, programidlist=nil)
|
3410
3417
|
@TaskName = taskname
|
3411
3418
|
@TaskContent = taskcontent
|
3412
3419
|
@ExecuteType = executetype
|
@@ -3422,6 +3429,7 @@ module TencentCloud
|
|
3422
3429
|
@SuccessRatio = successratio
|
3423
3430
|
@AdvanceSettings = advancesettings
|
3424
3431
|
@TaskArgument = taskargument
|
3432
|
+
@ProgramIdList = programidlist
|
3425
3433
|
end
|
3426
3434
|
|
3427
3435
|
def deserialize(params)
|
@@ -3453,12 +3461,14 @@ module TencentCloud
|
|
3453
3461
|
@AdvanceSettings.deserialize(params['AdvanceSettings'])
|
3454
3462
|
end
|
3455
3463
|
@TaskArgument = params['TaskArgument']
|
3464
|
+
@ProgramIdList = params['ProgramIdList']
|
3456
3465
|
end
|
3457
3466
|
end
|
3458
3467
|
|
3459
3468
|
# CreateTask返回参数结构体
|
3460
3469
|
class CreateTaskResponse < TencentCloud::Common::AbstractModel
|
3461
3470
|
# @param Result: 任务ID
|
3471
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3462
3472
|
# @type Result: String
|
3463
3473
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3464
3474
|
# @type RequestId: String
|
@@ -8102,10 +8112,12 @@ module TencentCloud
|
|
8102
8112
|
# @type TaskType: String
|
8103
8113
|
# @param ExecuteType: 任务触发类型,UNICAST、BROADCAST。
|
8104
8114
|
# @type ExecuteType: String
|
8115
|
+
# @param Ids: 无
|
8116
|
+
# @type Ids: Array
|
8105
8117
|
|
8106
|
-
attr_accessor :Offset, :Limit, :SearchWord, :TaskState, :GroupId, :TaskType, :ExecuteType
|
8118
|
+
attr_accessor :Offset, :Limit, :SearchWord, :TaskState, :GroupId, :TaskType, :ExecuteType, :Ids
|
8107
8119
|
|
8108
|
-
def initialize(offset=nil, limit=nil, searchword=nil, taskstate=nil, groupid=nil, tasktype=nil, executetype=nil)
|
8120
|
+
def initialize(offset=nil, limit=nil, searchword=nil, taskstate=nil, groupid=nil, tasktype=nil, executetype=nil, ids=nil)
|
8109
8121
|
@Offset = offset
|
8110
8122
|
@Limit = limit
|
8111
8123
|
@SearchWord = searchword
|
@@ -8113,6 +8125,7 @@ module TencentCloud
|
|
8113
8125
|
@GroupId = groupid
|
8114
8126
|
@TaskType = tasktype
|
8115
8127
|
@ExecuteType = executetype
|
8128
|
+
@Ids = ids
|
8116
8129
|
end
|
8117
8130
|
|
8118
8131
|
def deserialize(params)
|
@@ -8123,12 +8136,14 @@ module TencentCloud
|
|
8123
8136
|
@GroupId = params['GroupId']
|
8124
8137
|
@TaskType = params['TaskType']
|
8125
8138
|
@ExecuteType = params['ExecuteType']
|
8139
|
+
@Ids = params['Ids']
|
8126
8140
|
end
|
8127
8141
|
end
|
8128
8142
|
|
8129
8143
|
# DescribeTaskRecords返回参数结构体
|
8130
8144
|
class DescribeTaskRecordsResponse < TencentCloud::Common::AbstractModel
|
8131
8145
|
# @param Result: 任务记录列表
|
8146
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8132
8147
|
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.TaskRecordPage`
|
8133
8148
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
8134
8149
|
# @type RequestId: String
|
@@ -11145,10 +11160,12 @@ module TencentCloud
|
|
11145
11160
|
# @type RetryInterval: Integer
|
11146
11161
|
# @param TaskArgument: 任务参数,长度限制10000个字符
|
11147
11162
|
# @type TaskArgument: String
|
11163
|
+
# @param ProgramIdList: 无
|
11164
|
+
# @type ProgramIdList: Array
|
11148
11165
|
|
11149
|
-
attr_accessor :TaskId, :TaskName, :TaskType, :TaskContent, :ExecuteType, :TaskRule, :TimeOut, :GroupId, :ShardCount, :ShardArguments, :AdvanceSettings, :SuccessOperator, :SuccessRatio, :RetryCount, :RetryInterval, :TaskArgument
|
11166
|
+
attr_accessor :TaskId, :TaskName, :TaskType, :TaskContent, :ExecuteType, :TaskRule, :TimeOut, :GroupId, :ShardCount, :ShardArguments, :AdvanceSettings, :SuccessOperator, :SuccessRatio, :RetryCount, :RetryInterval, :TaskArgument, :ProgramIdList
|
11150
11167
|
|
11151
|
-
def initialize(taskid=nil, taskname=nil, tasktype=nil, taskcontent=nil, executetype=nil, taskrule=nil, timeout=nil, groupid=nil, shardcount=nil, shardarguments=nil, advancesettings=nil, successoperator=nil, successratio=nil, retrycount=nil, retryinterval=nil, taskargument=nil)
|
11168
|
+
def initialize(taskid=nil, taskname=nil, tasktype=nil, taskcontent=nil, executetype=nil, taskrule=nil, timeout=nil, groupid=nil, shardcount=nil, shardarguments=nil, advancesettings=nil, successoperator=nil, successratio=nil, retrycount=nil, retryinterval=nil, taskargument=nil, programidlist=nil)
|
11152
11169
|
@TaskId = taskid
|
11153
11170
|
@TaskName = taskname
|
11154
11171
|
@TaskType = tasktype
|
@@ -11165,6 +11182,7 @@ module TencentCloud
|
|
11165
11182
|
@RetryCount = retrycount
|
11166
11183
|
@RetryInterval = retryinterval
|
11167
11184
|
@TaskArgument = taskargument
|
11185
|
+
@ProgramIdList = programidlist
|
11168
11186
|
end
|
11169
11187
|
|
11170
11188
|
def deserialize(params)
|
@@ -11197,12 +11215,14 @@ module TencentCloud
|
|
11197
11215
|
@RetryCount = params['RetryCount']
|
11198
11216
|
@RetryInterval = params['RetryInterval']
|
11199
11217
|
@TaskArgument = params['TaskArgument']
|
11218
|
+
@ProgramIdList = params['ProgramIdList']
|
11200
11219
|
end
|
11201
11220
|
end
|
11202
11221
|
|
11203
11222
|
# ModifyTask返回参数结构体
|
11204
11223
|
class ModifyTaskResponse < TencentCloud::Common::AbstractModel
|
11205
11224
|
# @param Result: 更新是否成功
|
11225
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11206
11226
|
# @type Result: Boolean
|
11207
11227
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
11208
11228
|
# @type RequestId: String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tsf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.246
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|