tencentcloud-sdk-oceanus 1.0.362 → 1.0.363

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: 840d4d91adf9a00412b17bd8adce36d4a99ba205
4
- data.tar.gz: e174c9d275e50453e20e1070ff45d9ddf7680ca1
3
+ metadata.gz: ef29056f906cab9f5592e7686d7d6b6f73a85cd4
4
+ data.tar.gz: 906c33146b0cf6f78b57d95552d0ebaf46642351
5
5
  SHA512:
6
- metadata.gz: c1fc0cdb4287d0d0cdc92a11da8bf2ec07db63337ba28e481c1246f58002e9da4aead528faebb6346f2f43b992400d02fe1348db6451652c58f87f0e24055842
7
- data.tar.gz: d75af086b31a68c7f950b7be8c0d3331761a4d53f9eed3ed6bd38261baa970c9ed7b8b3e313bf0839a21d86e268ee47f7e56a9f5c2ffdf738986809fbbeb2588
6
+ metadata.gz: af3b2eb7b6c0be3da6b1c50740f134282b4bb5d72e9d2e997bf1c53994f328d150ae979a66b4dde1063b95ffa6788d630f613a62c4a539677acdfe1966655c0b
7
+ data.tar.gz: b308c2b6c8b3eed109d569541e9b8951b0b2071fea54e53b10c825ffd5c9b636e4bf9f435c96503a2bd44fd9edba77586e60b41f51e0afc526fd99fe683a04ec
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.362
1
+ 1.0.363
@@ -54,7 +54,6 @@ module TencentCloud
54
54
  end
55
55
 
56
56
  # 单条和批量复制作业
57
- # https://iwiki.woa.com/pages/viewpage.action?pageId=1288112774
58
57
 
59
58
  # @param request: Request instance for CopyJobs.
60
59
  # @type request: :class:`Tencentcloud::oceanus::V20190422::CopyJobsRequest`
@@ -308,48 +308,116 @@ module TencentCloud
308
308
  end
309
309
  end
310
310
 
311
+ # 复制作业单条明细
312
+ class CopyJobItem < TencentCloud::Common::AbstractModel
313
+
314
+
315
+ def initialize()
316
+ end
317
+
318
+ def deserialize(params)
319
+ end
320
+ end
321
+
322
+ # 复制作业单条明细结果
323
+ class CopyJobResult < TencentCloud::Common::AbstractModel
324
+
325
+
326
+ def initialize()
327
+ end
328
+
329
+ def deserialize(params)
330
+ end
331
+ end
332
+
311
333
  # CopyJobs请求参数结构体
312
334
  class CopyJobsRequest < TencentCloud::Common::AbstractModel
335
+ # @param JobItems: 复制明细列表
336
+ # @type JobItems: Array
337
+ # @param WorkSpaceId: 工作空间 SerialId
338
+ # @type WorkSpaceId: String
313
339
 
340
+ attr_accessor :JobItems, :WorkSpaceId
314
341
 
315
- def initialize()
342
+ def initialize(jobitems=nil, workspaceid=nil)
343
+ @JobItems = jobitems
344
+ @WorkSpaceId = workspaceid
316
345
  end
317
346
 
318
347
  def deserialize(params)
348
+ unless params['JobItems'].nil?
349
+ @JobItems = []
350
+ params['JobItems'].each do |i|
351
+ copyjobitem_tmp = CopyJobItem.new
352
+ copyjobitem_tmp.deserialize(i)
353
+ @JobItems << copyjobitem_tmp
354
+ end
355
+ end
356
+ @WorkSpaceId = params['WorkSpaceId']
319
357
  end
320
358
  end
321
359
 
322
360
  # CopyJobs返回参数结构体
323
361
  class CopyJobsResponse < TencentCloud::Common::AbstractModel
362
+ # @param SuccessCount: 成功条数
363
+ # 注意:此字段可能返回 null,表示取不到有效值。
364
+ # @type SuccessCount: Integer
365
+ # @param FailCount: 失败条数
366
+ # 注意:此字段可能返回 null,表示取不到有效值。
367
+ # @type FailCount: Integer
368
+ # @param CopyJobsResults: 结果列表
369
+ # 注意:此字段可能返回 null,表示取不到有效值。
370
+ # @type CopyJobsResults: Array
324
371
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
325
372
  # @type RequestId: String
326
373
 
327
- attr_accessor :RequestId
374
+ attr_accessor :SuccessCount, :FailCount, :CopyJobsResults, :RequestId
328
375
 
329
- def initialize(requestid=nil)
376
+ def initialize(successcount=nil, failcount=nil, copyjobsresults=nil, requestid=nil)
377
+ @SuccessCount = successcount
378
+ @FailCount = failcount
379
+ @CopyJobsResults = copyjobsresults
330
380
  @RequestId = requestid
331
381
  end
332
382
 
333
383
  def deserialize(params)
384
+ @SuccessCount = params['SuccessCount']
385
+ @FailCount = params['FailCount']
386
+ unless params['CopyJobsResults'].nil?
387
+ @CopyJobsResults = []
388
+ params['CopyJobsResults'].each do |i|
389
+ copyjobresult_tmp = CopyJobResult.new
390
+ copyjobresult_tmp.deserialize(i)
391
+ @CopyJobsResults << copyjobresult_tmp
392
+ end
393
+ end
334
394
  @RequestId = params['RequestId']
335
395
  end
336
396
  end
337
397
 
338
398
  # CreateFolder请求参数结构体
339
399
  class CreateFolderRequest < TencentCloud::Common::AbstractModel
400
+ # @param FolderName: 新建文件夹名
401
+ # @type FolderName: String
402
+ # @param ParentId: 新建文件夹的父目录ID
403
+ # @type ParentId: String
340
404
  # @param FolderType: 文件夹类型,0是任务文件夹,1是依赖文件夹
341
405
  # @type FolderType: Integer
342
406
  # @param WorkSpaceId: 工作空间 SerialId
343
407
  # @type WorkSpaceId: String
344
408
 
345
- attr_accessor :FolderType, :WorkSpaceId
409
+ attr_accessor :FolderName, :ParentId, :FolderType, :WorkSpaceId
346
410
 
347
- def initialize(foldertype=nil, workspaceid=nil)
411
+ def initialize(foldername=nil, parentid=nil, foldertype=nil, workspaceid=nil)
412
+ @FolderName = foldername
413
+ @ParentId = parentid
348
414
  @FolderType = foldertype
349
415
  @WorkSpaceId = workspaceid
350
416
  end
351
417
 
352
418
  def deserialize(params)
419
+ @FolderName = params['FolderName']
420
+ @ParentId = params['ParentId']
353
421
  @FolderType = params['FolderType']
354
422
  @WorkSpaceId = params['WorkSpaceId']
355
423
  end
@@ -357,16 +425,20 @@ module TencentCloud
357
425
 
358
426
  # CreateFolder返回参数结构体
359
427
  class CreateFolderResponse < TencentCloud::Common::AbstractModel
428
+ # @param FolderId: 新建文件夹的唯一ID
429
+ # @type FolderId: String
360
430
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
361
431
  # @type RequestId: String
362
432
 
363
- attr_accessor :RequestId
433
+ attr_accessor :FolderId, :RequestId
364
434
 
365
- def initialize(requestid=nil)
435
+ def initialize(folderid=nil, requestid=nil)
436
+ @FolderId = folderid
366
437
  @RequestId = requestid
367
438
  end
368
439
 
369
440
  def deserialize(params)
441
+ @FolderId = params['FolderId']
370
442
  @RequestId = params['RequestId']
371
443
  end
372
444
  end
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: 1.0.362
4
+ version: 1.0.363
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-07-24 00:00:00.000000000 Z
11
+ date: 2022-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common