tencentcloud-sdk-wedata 3.0.1089 → 3.0.1090

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6105cdd6ee288da617674f876091bb4f57442871
4
- data.tar.gz: 2c5377ff2510bb31543bf58cf33e5ed79031349d
3
+ metadata.gz: 6af36c1ae6dc7f7cf39ac24d7f276bffce29358e
4
+ data.tar.gz: 8c55c46b4290d092f2b034cd38bcdf147af3ec2d
5
5
  SHA512:
6
- metadata.gz: 0d4d9c263bf7d17693f6677fdeaab229f1893b6904b98797090a582a38c0695dd54b4bf86e3eebdf4e3be612f8d53a7e95c8b1913344e530bee1b534d9b669df
7
- data.tar.gz: a5fd1b2e4cb2a551083daafb0a60c09ab5287bb4688c376b703509dec716e77c0ba30839fd55bb78beb6109576ead1103fcf0feeebee48deaed660d9c1dffcd5
6
+ metadata.gz: 2c7eeda829b5f14a2f4526859c01ae49f6f49390e5676077bf40f1a918028e4eb15e595348654afc9e11b0248cfcf9ed9292fadf9c3b455e56bf56e4bb3c0a2d
7
+ data.tar.gz: 3bcb334ad4d339be01bca97eac0f7a7563e452a15b0161157452427156295a1f921d153688ffb509c27aaf05d6b4c31799ce4bdc7198d433205f36defa317338
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1089
1
+ 3.0.1090
@@ -5270,6 +5270,30 @@ module TencentCloud
5270
5270
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5271
5271
  end
5272
5272
 
5273
+ # 获取带分页的任务脚本
5274
+
5275
+ # @param request: Request instance for GetPaginationTaskScript.
5276
+ # @type request: :class:`Tencentcloud::wedata::V20210820::GetPaginationTaskScriptRequest`
5277
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::GetPaginationTaskScriptResponse`
5278
+ def GetPaginationTaskScript(request)
5279
+ body = send_request('GetPaginationTaskScript', request.serialize)
5280
+ response = JSON.parse(body)
5281
+ if response['Response'].key?('Error') == false
5282
+ model = GetPaginationTaskScriptResponse.new
5283
+ model.deserialize(response['Response'])
5284
+ model
5285
+ else
5286
+ code = response['Response']['Error']['Code']
5287
+ message = response['Response']['Error']['Message']
5288
+ reqid = response['Response']['RequestId']
5289
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
5290
+ end
5291
+ rescue TencentCloud::Common::TencentCloudSDKException => e
5292
+ raise e
5293
+ rescue StandardError => e
5294
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
5295
+ end
5296
+
5273
5297
  # 获取实例列表
5274
5298
 
5275
5299
  # @param request: Request instance for GetTaskInstance.
@@ -20890,6 +20890,100 @@ module TencentCloud
20890
20890
  end
20891
20891
  end
20892
20892
 
20893
+ # GetPaginationTaskScript请求参数结构体
20894
+ class GetPaginationTaskScriptRequest < TencentCloud::Common::AbstractModel
20895
+ # @param ProjectId: 项目编号
20896
+ # @type ProjectId: String
20897
+ # @param TaskId: 任务编号
20898
+ # @type TaskId: String
20899
+ # @param PageNum: 页码(从1开始)
20900
+ # @type PageNum: Integer
20901
+
20902
+ attr_accessor :ProjectId, :TaskId, :PageNum
20903
+
20904
+ def initialize(projectid=nil, taskid=nil, pagenum=nil)
20905
+ @ProjectId = projectid
20906
+ @TaskId = taskid
20907
+ @PageNum = pagenum
20908
+ end
20909
+
20910
+ def deserialize(params)
20911
+ @ProjectId = params['ProjectId']
20912
+ @TaskId = params['TaskId']
20913
+ @PageNum = params['PageNum']
20914
+ end
20915
+ end
20916
+
20917
+ # GetPaginationTaskScript返回参数结构体
20918
+ class GetPaginationTaskScriptResponse < TencentCloud::Common::AbstractModel
20919
+ # @param Data: 返回数据
20920
+ # 注意:此字段可能返回 null,表示取不到有效值。
20921
+ # @type Data: Array
20922
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20923
+ # @type RequestId: String
20924
+
20925
+ attr_accessor :Data, :RequestId
20926
+
20927
+ def initialize(data=nil, requestid=nil)
20928
+ @Data = data
20929
+ @RequestId = requestid
20930
+ end
20931
+
20932
+ def deserialize(params)
20933
+ unless params['Data'].nil?
20934
+ @Data = []
20935
+ params['Data'].each do |i|
20936
+ getpaginationtaskscriptresponseinfo_tmp = GetPaginationTaskScriptResponseInfo.new
20937
+ getpaginationtaskscriptresponseinfo_tmp.deserialize(i)
20938
+ @Data << getpaginationtaskscriptresponseinfo_tmp
20939
+ end
20940
+ end
20941
+ @RequestId = params['RequestId']
20942
+ end
20943
+ end
20944
+
20945
+ # 获取任务脚本内容返回体
20946
+ class GetPaginationTaskScriptResponseInfo < TencentCloud::Common::AbstractModel
20947
+ # @param ProjectId: 项目编号
20948
+ # 注意:此字段可能返回 null,表示取不到有效值。
20949
+ # @type ProjectId: String
20950
+ # @param TaskId: 任务编号
20951
+ # 注意:此字段可能返回 null,表示取不到有效值。
20952
+ # @type TaskId: String
20953
+ # @param PageSize: 页内尺寸
20954
+ # 注意:此字段可能返回 null,表示取不到有效值。
20955
+ # @type PageSize: Integer
20956
+ # @param PageNum: 页码
20957
+ # 注意:此字段可能返回 null,表示取不到有效值。
20958
+ # @type PageNum: Integer
20959
+ # @param PageTotal: 总页数
20960
+ # 注意:此字段可能返回 null,表示取不到有效值。
20961
+ # @type PageTotal: Integer
20962
+ # @param Base64ScriptContent: 分页内容
20963
+ # 注意:此字段可能返回 null,表示取不到有效值。
20964
+ # @type Base64ScriptContent: String
20965
+
20966
+ attr_accessor :ProjectId, :TaskId, :PageSize, :PageNum, :PageTotal, :Base64ScriptContent
20967
+
20968
+ def initialize(projectid=nil, taskid=nil, pagesize=nil, pagenum=nil, pagetotal=nil, base64scriptcontent=nil)
20969
+ @ProjectId = projectid
20970
+ @TaskId = taskid
20971
+ @PageSize = pagesize
20972
+ @PageNum = pagenum
20973
+ @PageTotal = pagetotal
20974
+ @Base64ScriptContent = base64scriptcontent
20975
+ end
20976
+
20977
+ def deserialize(params)
20978
+ @ProjectId = params['ProjectId']
20979
+ @TaskId = params['TaskId']
20980
+ @PageSize = params['PageSize']
20981
+ @PageNum = params['PageNum']
20982
+ @PageTotal = params['PageTotal']
20983
+ @Base64ScriptContent = params['Base64ScriptContent']
20984
+ end
20985
+ end
20986
+
20893
20987
  # GetTaskInstance请求参数结构体
20894
20988
  class GetTaskInstanceRequest < TencentCloud::Common::AbstractModel
20895
20989
  # @param ProjectId: **项目ID**
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-wedata
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1089
4
+ version: 3.0.1090
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-25 00:00:00.000000000 Z
11
+ date: 2025-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common