tencentcloud-sdk-wedata 3.0.431 → 3.0.432

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: 46a0a4805f40c8fecd885da6c93dda8a890c09c2
4
- data.tar.gz: a15ed992eb6713de5fa0831c6a89b54db10d5cbe
3
+ metadata.gz: 897cf09d1fb07a7bfb782b3d3bce2f33a970b7b5
4
+ data.tar.gz: 45367e667d915fca9c477ac3a8000aca7cf4f329
5
5
  SHA512:
6
- metadata.gz: 4ab9601187482e5875c04f2e6e99c7cd2c6aba9f4d3c023d2f1cebe757b37d31b3be7ab013dc878181ca571bcc5e173d1bd29a9080a9a3b455449864658fada1
7
- data.tar.gz: c75123f0b1c189476c939fa3a8321491598f5fc4d19cb32a268377744d1bbb1c6e985971c5816507e4c99390a8f9559f5d5f7ff7d1d8cfde229b7aaba9cf3a12
6
+ metadata.gz: 066e873dae1af8074f0d15374713ba477cedd4c7f9db7c79a696da94d645e80c9c42bdefd7d1c564e331c0106450b5b58108e6b61747cd6133ccf7940032660b
7
+ data.tar.gz: c766983035086fcb15ab12f334871edba2917fbc5b56c1fe145fa2f4a6006c81622afdb79ce6f6d17eb03f63c756804c460f5133244d346af1fe12a03fab7058
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.431
1
+ 3.0.432
@@ -178,6 +178,30 @@ module TencentCloud
178
178
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
179
179
  end
180
180
 
181
+ # 资源管理需要先将资源上传到cos中,然后调用该接口,将cos资源绑定到wedata
182
+
183
+ # @param request: Request instance for CreateOrUpdateResource.
184
+ # @type request: :class:`Tencentcloud::wedata::V20210820::CreateOrUpdateResourceRequest`
185
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::CreateOrUpdateResourceResponse`
186
+ def CreateOrUpdateResource(request)
187
+ body = send_request('CreateOrUpdateResource', request.serialize)
188
+ response = JSON.parse(body)
189
+ if response['Response'].key?('Error') == false
190
+ model = CreateOrUpdateResourceResponse.new
191
+ model.deserialize(response['Response'])
192
+ model
193
+ else
194
+ code = response['Response']['Error']['Code']
195
+ message = response['Response']['Error']['Message']
196
+ reqid = response['Response']['RequestId']
197
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
198
+ end
199
+ rescue TencentCloud::Common::TencentCloudSDKException => e
200
+ raise e
201
+ rescue StandardError => e
202
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
203
+ end
204
+
181
205
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
182
206
  # 创建任务
183
207
 
@@ -302,6 +326,30 @@ module TencentCloud
302
326
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
303
327
  end
304
328
 
329
+ # 资源管理删除资源
330
+
331
+ # @param request: Request instance for DeleteResource.
332
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DeleteResourceRequest`
333
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DeleteResourceResponse`
334
+ def DeleteResource(request)
335
+ body = send_request('DeleteResource', request.serialize)
336
+ response = JSON.parse(body)
337
+ if response['Response'].key?('Error') == false
338
+ model = DeleteResourceResponse.new
339
+ model.deserialize(response['Response'])
340
+ model
341
+ else
342
+ code = response['Response']['Error']['Code']
343
+ message = response['Response']['Error']['Message']
344
+ reqid = response['Response']['RequestId']
345
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
346
+ end
347
+ rescue TencentCloud::Common::TencentCloudSDKException => e
348
+ raise e
349
+ rescue StandardError => e
350
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
351
+ end
352
+
305
353
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
306
354
  # 删除工作流
307
355
 
@@ -622,6 +670,30 @@ module TencentCloud
622
670
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
623
671
  end
624
672
 
673
+ # 获取资源管理目录树
674
+
675
+ # @param request: Request instance for DescribeResourceManagePathTrees.
676
+ # @type request: :class:`Tencentcloud::wedata::V20210820::DescribeResourceManagePathTreesRequest`
677
+ # @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeResourceManagePathTreesResponse`
678
+ def DescribeResourceManagePathTrees(request)
679
+ body = send_request('DescribeResourceManagePathTrees', request.serialize)
680
+ response = JSON.parse(body)
681
+ if response['Response'].key?('Error') == false
682
+ model = DescribeResourceManagePathTreesResponse.new
683
+ model.deserialize(response['Response'])
684
+ model
685
+ else
686
+ code = response['Response']['Error']['Code']
687
+ message = response['Response']['Error']['Message']
688
+ reqid = response['Response']['RequestId']
689
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
690
+ end
691
+ rescue TencentCloud::Common::TencentCloudSDKException => e
692
+ raise e
693
+ rescue StandardError => e
694
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
695
+ end
696
+
625
697
  # <p style="color:red;">[注意:该Beta版本只满足广州区部分白名单客户使用]</p>
626
698
  # 查询任务具体详情
627
699
 
@@ -569,6 +569,74 @@ module TencentCloud
569
569
  end
570
570
  end
571
571
 
572
+ # CreateOrUpdateResource请求参数结构体
573
+ class CreateOrUpdateResourceRequest < TencentCloud::Common::AbstractModel
574
+ # @param ProjectId: 项目ID
575
+ # @type ProjectId: String
576
+ # @param Files: 文件名
577
+ # @type Files: Array
578
+ # @param FilePath: 文件所属路径,资源管理根路径为 /datastudio/resouce
579
+ # @type FilePath: String
580
+ # @param CosBucketName: cos存储桶名字
581
+ # @type CosBucketName: String
582
+ # @param CosRegion: cos所属地域
583
+ # @type CosRegion: String
584
+ # @param NewFile: 是否为新文件,新增为 true,更新为 false
585
+ # @type NewFile: Boolean
586
+ # @param FilesSize: 文件大小
587
+ # @type FilesSize: Array
588
+
589
+ attr_accessor :ProjectId, :Files, :FilePath, :CosBucketName, :CosRegion, :NewFile, :FilesSize
590
+
591
+ def initialize(projectid=nil, files=nil, filepath=nil, cosbucketname=nil, cosregion=nil, newfile=nil, filessize=nil)
592
+ @ProjectId = projectid
593
+ @Files = files
594
+ @FilePath = filepath
595
+ @CosBucketName = cosbucketname
596
+ @CosRegion = cosregion
597
+ @NewFile = newfile
598
+ @FilesSize = filessize
599
+ end
600
+
601
+ def deserialize(params)
602
+ @ProjectId = params['ProjectId']
603
+ @Files = params['Files']
604
+ @FilePath = params['FilePath']
605
+ @CosBucketName = params['CosBucketName']
606
+ @CosRegion = params['CosRegion']
607
+ @NewFile = params['NewFile']
608
+ @FilesSize = params['FilesSize']
609
+ end
610
+ end
611
+
612
+ # CreateOrUpdateResource返回参数结构体
613
+ class CreateOrUpdateResourceResponse < TencentCloud::Common::AbstractModel
614
+ # @param Data: 响应数据
615
+ # 注意:此字段可能返回 null,表示取不到有效值。
616
+ # @type Data: Array
617
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
618
+ # @type RequestId: String
619
+
620
+ attr_accessor :Data, :RequestId
621
+
622
+ def initialize(data=nil, requestid=nil)
623
+ @Data = data
624
+ @RequestId = requestid
625
+ end
626
+
627
+ def deserialize(params)
628
+ unless params['Data'].nil?
629
+ @Data = []
630
+ params['Data'].each do |i|
631
+ userfiledto_tmp = UserFileDTO.new
632
+ userfiledto_tmp.deserialize(i)
633
+ @Data << userfiledto_tmp
634
+ end
635
+ end
636
+ @RequestId = params['RequestId']
637
+ end
638
+ end
639
+
572
640
  # CreateTask请求参数结构体
573
641
  class CreateTaskRequest < TencentCloud::Common::AbstractModel
574
642
  # @param ProjectId: 项目Id
@@ -1004,6 +1072,47 @@ module TencentCloud
1004
1072
  end
1005
1073
  end
1006
1074
 
1075
+ # DeleteResource请求参数结构体
1076
+ class DeleteResourceRequest < TencentCloud::Common::AbstractModel
1077
+ # @param ProjectId: 项目ID
1078
+ # @type ProjectId: String
1079
+ # @param ResourceId: 资源ID
1080
+ # @type ResourceId: String
1081
+
1082
+ attr_accessor :ProjectId, :ResourceId
1083
+
1084
+ def initialize(projectid=nil, resourceid=nil)
1085
+ @ProjectId = projectid
1086
+ @ResourceId = resourceid
1087
+ end
1088
+
1089
+ def deserialize(params)
1090
+ @ProjectId = params['ProjectId']
1091
+ @ResourceId = params['ResourceId']
1092
+ end
1093
+ end
1094
+
1095
+ # DeleteResource返回参数结构体
1096
+ class DeleteResourceResponse < TencentCloud::Common::AbstractModel
1097
+ # @param Data: 是否成功
1098
+ # 注意:此字段可能返回 null,表示取不到有效值。
1099
+ # @type Data: Boolean
1100
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1101
+ # @type RequestId: String
1102
+
1103
+ attr_accessor :Data, :RequestId
1104
+
1105
+ def initialize(data=nil, requestid=nil)
1106
+ @Data = data
1107
+ @RequestId = requestid
1108
+ end
1109
+
1110
+ def deserialize(params)
1111
+ @Data = params['Data']
1112
+ @RequestId = params['RequestId']
1113
+ end
1114
+ end
1115
+
1007
1116
  # DeleteWorkflowNew请求参数结构体
1008
1117
  class DeleteWorkflowNewRequest < TencentCloud::Common::AbstractModel
1009
1118
  # @param WorkFlowId: 工作流id
@@ -1819,6 +1928,66 @@ module TencentCloud
1819
1928
  end
1820
1929
  end
1821
1930
 
1931
+ # DescribeResourceManagePathTrees请求参数结构体
1932
+ class DescribeResourceManagePathTreesRequest < TencentCloud::Common::AbstractModel
1933
+ # @param ProjectId: 项目ID
1934
+ # @type ProjectId: String
1935
+ # @param Name: 名字,供搜索
1936
+ # @type Name: String
1937
+ # @param FileType: 文件类型
1938
+ # @type FileType: String
1939
+ # @param FilePath: 文件路径
1940
+ # @type FilePath: String
1941
+ # @param DirType: 文件夹类型
1942
+ # @type DirType: String
1943
+
1944
+ attr_accessor :ProjectId, :Name, :FileType, :FilePath, :DirType
1945
+
1946
+ def initialize(projectid=nil, name=nil, filetype=nil, filepath=nil, dirtype=nil)
1947
+ @ProjectId = projectid
1948
+ @Name = name
1949
+ @FileType = filetype
1950
+ @FilePath = filepath
1951
+ @DirType = dirtype
1952
+ end
1953
+
1954
+ def deserialize(params)
1955
+ @ProjectId = params['ProjectId']
1956
+ @Name = params['Name']
1957
+ @FileType = params['FileType']
1958
+ @FilePath = params['FilePath']
1959
+ @DirType = params['DirType']
1960
+ end
1961
+ end
1962
+
1963
+ # DescribeResourceManagePathTrees返回参数结构体
1964
+ class DescribeResourceManagePathTreesResponse < TencentCloud::Common::AbstractModel
1965
+ # @param Data: 响应数据
1966
+ # 注意:此字段可能返回 null,表示取不到有效值。
1967
+ # @type Data: Array
1968
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1969
+ # @type RequestId: String
1970
+
1971
+ attr_accessor :Data, :RequestId
1972
+
1973
+ def initialize(data=nil, requestid=nil)
1974
+ @Data = data
1975
+ @RequestId = requestid
1976
+ end
1977
+
1978
+ def deserialize(params)
1979
+ unless params['Data'].nil?
1980
+ @Data = []
1981
+ params['Data'].each do |i|
1982
+ resourcepathtree_tmp = ResourcePathTree.new
1983
+ resourcepathtree_tmp.deserialize(i)
1984
+ @Data << resourcepathtree_tmp
1985
+ end
1986
+ end
1987
+ @RequestId = params['RequestId']
1988
+ end
1989
+ end
1990
+
1822
1991
  # DescribeTaskDetail请求参数结构体
1823
1992
  class DescribeTaskDetailRequest < TencentCloud::Common::AbstractModel
1824
1993
  # @param ProjectId: 项目Id
@@ -3870,6 +4039,98 @@ module TencentCloud
3870
4039
  end
3871
4040
  end
3872
4041
 
4042
+ # 资源管理目录树节点
4043
+ class ResourcePathTree < TencentCloud::Common::AbstractModel
4044
+ # @param Name: 资源名字
4045
+ # 注意:此字段可能返回 null,表示取不到有效值。
4046
+ # @type Name: String
4047
+ # @param IsLeaf: 是否为叶子节点
4048
+ # 注意:此字段可能返回 null,表示取不到有效值。
4049
+ # @type IsLeaf: Boolean
4050
+ # @param ResourceId: 资源ID
4051
+ # 注意:此字段可能返回 null,表示取不到有效值。
4052
+ # @type ResourceId: String
4053
+ # @param LocalPath: 本地路径
4054
+ # 注意:此字段可能返回 null,表示取不到有效值。
4055
+ # @type LocalPath: String
4056
+ # @param RemotePath: 远程路径
4057
+ # 注意:此字段可能返回 null,表示取不到有效值。
4058
+ # @type RemotePath: String
4059
+ # @param FileExtensionType: 文件类型
4060
+ # 注意:此字段可能返回 null,表示取不到有效值。
4061
+ # @type FileExtensionType: String
4062
+ # @param Size: 文件大小
4063
+ # 注意:此字段可能返回 null,表示取不到有效值。
4064
+ # @type Size: Integer
4065
+ # @param Md5Value: 文件MD5值
4066
+ # 注意:此字段可能返回 null,表示取不到有效值。
4067
+ # @type Md5Value: String
4068
+ # @param OwnerName: 文件拥有者名字
4069
+ # 注意:此字段可能返回 null,表示取不到有效值。
4070
+ # @type OwnerName: String
4071
+ # @param UpdateUser: 更新人
4072
+ # 注意:此字段可能返回 null,表示取不到有效值。
4073
+ # @type UpdateUser: String
4074
+ # @param UpdateUserId: 文件更新人uin
4075
+ # 注意:此字段可能返回 null,表示取不到有效值。
4076
+ # @type UpdateUserId: String
4077
+ # @param CreateTime: 创建时间
4078
+ # 注意:此字段可能返回 null,表示取不到有效值。
4079
+ # @type CreateTime: Integer
4080
+ # @param UpdateTime: 更新时间
4081
+ # 注意:此字段可能返回 null,表示取不到有效值。
4082
+ # @type UpdateTime: Integer
4083
+ # @param CosBucket: Cos存储桶名
4084
+ # 注意:此字段可能返回 null,表示取不到有效值。
4085
+ # @type CosBucket: String
4086
+ # @param CosRegion: Cos地域
4087
+ # 注意:此字段可能返回 null,表示取不到有效值。
4088
+ # @type CosRegion: String
4089
+ # @param ExtraInfo: 额外信息
4090
+ # 注意:此字段可能返回 null,表示取不到有效值。
4091
+ # @type ExtraInfo: String
4092
+
4093
+ attr_accessor :Name, :IsLeaf, :ResourceId, :LocalPath, :RemotePath, :FileExtensionType, :Size, :Md5Value, :OwnerName, :UpdateUser, :UpdateUserId, :CreateTime, :UpdateTime, :CosBucket, :CosRegion, :ExtraInfo
4094
+
4095
+ def initialize(name=nil, isleaf=nil, resourceid=nil, localpath=nil, remotepath=nil, fileextensiontype=nil, size=nil, md5value=nil, ownername=nil, updateuser=nil, updateuserid=nil, createtime=nil, updatetime=nil, cosbucket=nil, cosregion=nil, extrainfo=nil)
4096
+ @Name = name
4097
+ @IsLeaf = isleaf
4098
+ @ResourceId = resourceid
4099
+ @LocalPath = localpath
4100
+ @RemotePath = remotepath
4101
+ @FileExtensionType = fileextensiontype
4102
+ @Size = size
4103
+ @Md5Value = md5value
4104
+ @OwnerName = ownername
4105
+ @UpdateUser = updateuser
4106
+ @UpdateUserId = updateuserid
4107
+ @CreateTime = createtime
4108
+ @UpdateTime = updatetime
4109
+ @CosBucket = cosbucket
4110
+ @CosRegion = cosregion
4111
+ @ExtraInfo = extrainfo
4112
+ end
4113
+
4114
+ def deserialize(params)
4115
+ @Name = params['Name']
4116
+ @IsLeaf = params['IsLeaf']
4117
+ @ResourceId = params['ResourceId']
4118
+ @LocalPath = params['LocalPath']
4119
+ @RemotePath = params['RemotePath']
4120
+ @FileExtensionType = params['FileExtensionType']
4121
+ @Size = params['Size']
4122
+ @Md5Value = params['Md5Value']
4123
+ @OwnerName = params['OwnerName']
4124
+ @UpdateUser = params['UpdateUser']
4125
+ @UpdateUserId = params['UpdateUserId']
4126
+ @CreateTime = params['CreateTime']
4127
+ @UpdateTime = params['UpdateTime']
4128
+ @CosBucket = params['CosBucket']
4129
+ @CosRegion = params['CosRegion']
4130
+ @ExtraInfo = params['ExtraInfo']
4131
+ end
4132
+ end
4133
+
3873
4134
  # RunTask请求参数结构体
3874
4135
  class RunTaskRequest < TencentCloud::Common::AbstractModel
3875
4136
  # @param ProjectId: 项目Id
@@ -5047,6 +5308,113 @@ module TencentCloud
5047
5308
  end
5048
5309
  end
5049
5310
 
5311
+ # 用户文件信息
5312
+ class UserFileDTO < TencentCloud::Common::AbstractModel
5313
+ # @param ResourceId: 资源ID
5314
+ # 注意:此字段可能返回 null,表示取不到有效值。
5315
+ # @type ResourceId: String
5316
+ # @param FileName: 文件名
5317
+ # 注意:此字段可能返回 null,表示取不到有效值。
5318
+ # @type FileName: String
5319
+ # @param FileExtensionType: 文件类型,如 jar zip 等
5320
+ # 注意:此字段可能返回 null,表示取不到有效值。
5321
+ # @type FileExtensionType: String
5322
+ # @param FileUploadType: 文件上传类型,资源管理为 resource
5323
+ # 注意:此字段可能返回 null,表示取不到有效值。
5324
+ # @type FileUploadType: String
5325
+ # @param Md5Value: 文件MD5值
5326
+ # 注意:此字段可能返回 null,表示取不到有效值。
5327
+ # @type Md5Value: String
5328
+ # @param CreateTime: 创建时间,秒级别的时间戳
5329
+ # 注意:此字段可能返回 null,表示取不到有效值。
5330
+ # @type CreateTime: Integer
5331
+ # @param UpdateTime: 更新时间,秒级别的时间戳
5332
+ # 注意:此字段可能返回 null,表示取不到有效值。
5333
+ # @type UpdateTime: Integer
5334
+ # @param Size: 文件大小,单位为字节
5335
+ # 注意:此字段可能返回 null,表示取不到有效值。
5336
+ # @type Size: Integer
5337
+ # @param LocalPath: 本地路径
5338
+ # 注意:此字段可能返回 null,表示取不到有效值。
5339
+ # @type LocalPath: String
5340
+ # @param LocalTmpPath: 本地临时路径
5341
+ # 注意:此字段可能返回 null,表示取不到有效值。
5342
+ # @type LocalTmpPath: String
5343
+ # @param RemotePath: 远程路径
5344
+ # 注意:此字段可能返回 null,表示取不到有效值。
5345
+ # @type RemotePath: String
5346
+ # @param OwnerName: 文件拥有者名字
5347
+ # 注意:此字段可能返回 null,表示取不到有效值。
5348
+ # @type OwnerName: String
5349
+ # @param Owner: 文件拥有者uin
5350
+ # 注意:此字段可能返回 null,表示取不到有效值。
5351
+ # @type Owner: String
5352
+ # @param PathDepth: 文件深度
5353
+ # 注意:此字段可能返回 null,表示取不到有效值。
5354
+ # @type PathDepth: String
5355
+ # @param ProjectId: 项目ID
5356
+ # 注意:此字段可能返回 null,表示取不到有效值。
5357
+ # @type ProjectId: String
5358
+ # @param ExtraInfo: 附加信息
5359
+ # 注意:此字段可能返回 null,表示取不到有效值。
5360
+ # @type ExtraInfo: String
5361
+ # @param ZipPath: 本地临时压缩文件绝对路径
5362
+ # 注意:此字段可能返回 null,表示取不到有效值。
5363
+ # @type ZipPath: String
5364
+ # @param Bucket: 文件所属存储桶
5365
+ # 注意:此字段可能返回 null,表示取不到有效值。
5366
+ # @type Bucket: String
5367
+ # @param Region: 文件所属存储桶的地域
5368
+ # 注意:此字段可能返回 null,表示取不到有效值。
5369
+ # @type Region: String
5370
+
5371
+ attr_accessor :ResourceId, :FileName, :FileExtensionType, :FileUploadType, :Md5Value, :CreateTime, :UpdateTime, :Size, :LocalPath, :LocalTmpPath, :RemotePath, :OwnerName, :Owner, :PathDepth, :ProjectId, :ExtraInfo, :ZipPath, :Bucket, :Region
5372
+
5373
+ def initialize(resourceid=nil, filename=nil, fileextensiontype=nil, fileuploadtype=nil, md5value=nil, createtime=nil, updatetime=nil, size=nil, localpath=nil, localtmppath=nil, remotepath=nil, ownername=nil, owner=nil, pathdepth=nil, projectid=nil, extrainfo=nil, zippath=nil, bucket=nil, region=nil)
5374
+ @ResourceId = resourceid
5375
+ @FileName = filename
5376
+ @FileExtensionType = fileextensiontype
5377
+ @FileUploadType = fileuploadtype
5378
+ @Md5Value = md5value
5379
+ @CreateTime = createtime
5380
+ @UpdateTime = updatetime
5381
+ @Size = size
5382
+ @LocalPath = localpath
5383
+ @LocalTmpPath = localtmppath
5384
+ @RemotePath = remotepath
5385
+ @OwnerName = ownername
5386
+ @Owner = owner
5387
+ @PathDepth = pathdepth
5388
+ @ProjectId = projectid
5389
+ @ExtraInfo = extrainfo
5390
+ @ZipPath = zippath
5391
+ @Bucket = bucket
5392
+ @Region = region
5393
+ end
5394
+
5395
+ def deserialize(params)
5396
+ @ResourceId = params['ResourceId']
5397
+ @FileName = params['FileName']
5398
+ @FileExtensionType = params['FileExtensionType']
5399
+ @FileUploadType = params['FileUploadType']
5400
+ @Md5Value = params['Md5Value']
5401
+ @CreateTime = params['CreateTime']
5402
+ @UpdateTime = params['UpdateTime']
5403
+ @Size = params['Size']
5404
+ @LocalPath = params['LocalPath']
5405
+ @LocalTmpPath = params['LocalTmpPath']
5406
+ @RemotePath = params['RemotePath']
5407
+ @OwnerName = params['OwnerName']
5408
+ @Owner = params['Owner']
5409
+ @PathDepth = params['PathDepth']
5410
+ @ProjectId = params['ProjectId']
5411
+ @ExtraInfo = params['ExtraInfo']
5412
+ @ZipPath = params['ZipPath']
5413
+ @Bucket = params['Bucket']
5414
+ @Region = params['Region']
5415
+ end
5416
+ end
5417
+
5050
5418
  # 工作流信息
5051
5419
  class Workflow < TencentCloud::Common::AbstractModel
5052
5420
  # @param WorkflowId: 工作流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.431
4
+ version: 3.0.432
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-10-19 00:00:00.000000000 Z
11
+ date: 2022-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common