tencentcloud-sdk-cfs 3.0.609 → 3.0.611

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190719/models.rb +22 -5
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 127e3df9554895651f6da52a84472b7055baaa7b
4
- data.tar.gz: 08c818071f1941671cfade810376d5e0d2b7851b
3
+ metadata.gz: e2f6de04f5904c6e2a21478be8cf0e384f947f72
4
+ data.tar.gz: dca8e43897093903a7113891d12b6b98430aa8e1
5
5
  SHA512:
6
- metadata.gz: e2c9d5300d3bd0a3561ef0778244f021760356036dc1f409623fc9085a46b17fedcd07c8f2bf4e269cdb34b08b292116265f992458fa6ae8f743e66fb926340c
7
- data.tar.gz: 9f8f51b7a7de4ccff7791aca96ca83539159d27c195133aed521daa0d6896fad348d52f89c650bcfa678427cb2a1d3485cf4f2c9d07dad925799f418e5fa5721
6
+ metadata.gz: 862391728423e40f67abedb8f0a9f4619ac0d71d4e56fc0b8c8a6883337dcce3d212af39814a5ac2469082a6f5bdebaeef241674ba590c5bfe4d3bb3e5aab0d2
7
+ data.tar.gz: f3bac2bc68ee3a1ba642bdf408928936d2d3a8c5e6b645e6856d0bcc1d406a6f99f071f048e6f0d27699583e436db3cb1db563c95e7dee20772fbcf8909b92b5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.609
1
+ 3.0.611
@@ -378,10 +378,16 @@ module TencentCloud
378
378
  # @type CidrBlock: String
379
379
  # @param Capacity: 文件系统容量,turbo系列必填,单位为GiB。 turbo标准型单位GB,起售40TiB,即40960 GiB;扩容步长20TiB,即20480 GiB。turbo性能型起售20TiB,即20480 GiB;扩容步长10TiB,10240 GiB。
380
380
  # @type Capacity: Integer
381
+ # @param SnapshotId: 文件系统快照ID
382
+ # @type SnapshotId: String
383
+ # @param AutoSnapshotPolicyId: 定期快照策略ID
384
+ # @type AutoSnapshotPolicyId: String
385
+ # @param EnableAutoScaleUp: 是否开启默认扩容,仅Turbo类型文件存储支持
386
+ # @type EnableAutoScaleUp: Boolean
381
387
 
382
- attr_accessor :Zone, :NetInterface, :PGroupId, :Protocol, :StorageType, :VpcId, :SubnetId, :MountIP, :FsName, :ResourceTags, :ClientToken, :CcnId, :CidrBlock, :Capacity
388
+ attr_accessor :Zone, :NetInterface, :PGroupId, :Protocol, :StorageType, :VpcId, :SubnetId, :MountIP, :FsName, :ResourceTags, :ClientToken, :CcnId, :CidrBlock, :Capacity, :SnapshotId, :AutoSnapshotPolicyId, :EnableAutoScaleUp
383
389
 
384
- def initialize(zone=nil, netinterface=nil, pgroupid=nil, protocol=nil, storagetype=nil, vpcid=nil, subnetid=nil, mountip=nil, fsname=nil, resourcetags=nil, clienttoken=nil, ccnid=nil, cidrblock=nil, capacity=nil)
390
+ def initialize(zone=nil, netinterface=nil, pgroupid=nil, protocol=nil, storagetype=nil, vpcid=nil, subnetid=nil, mountip=nil, fsname=nil, resourcetags=nil, clienttoken=nil, ccnid=nil, cidrblock=nil, capacity=nil, snapshotid=nil, autosnapshotpolicyid=nil, enableautoscaleup=nil)
385
391
  @Zone = zone
386
392
  @NetInterface = netinterface
387
393
  @PGroupId = pgroupid
@@ -396,6 +402,9 @@ module TencentCloud
396
402
  @CcnId = ccnid
397
403
  @CidrBlock = cidrblock
398
404
  @Capacity = capacity
405
+ @SnapshotId = snapshotid
406
+ @AutoSnapshotPolicyId = autosnapshotpolicyid
407
+ @EnableAutoScaleUp = enableautoscaleup
399
408
  end
400
409
 
401
410
  def deserialize(params)
@@ -420,6 +429,9 @@ module TencentCloud
420
429
  @CcnId = params['CcnId']
421
430
  @CidrBlock = params['CidrBlock']
422
431
  @Capacity = params['Capacity']
432
+ @SnapshotId = params['SnapshotId']
433
+ @AutoSnapshotPolicyId = params['AutoSnapshotPolicyId']
434
+ @EnableAutoScaleUp = params['EnableAutoScaleUp']
423
435
  end
424
436
  end
425
437
 
@@ -2487,10 +2499,13 @@ module TencentCloud
2487
2499
  # @param SnapshotType: 快照类型
2488
2500
  # 注意:此字段可能返回 null,表示取不到有效值。
2489
2501
  # @type SnapshotType: String
2502
+ # @param SnapshotTime: 实际快照时间,这里主要是为了标识跨地域复制快照的时间快照时间
2503
+ # 注意:此字段可能返回 null,表示取不到有效值。
2504
+ # @type SnapshotTime: String
2490
2505
 
2491
- attr_accessor :CreationTime, :SnapshotName, :SnapshotId, :Status, :RegionName, :FileSystemId, :Size, :AliveDay, :Percent, :AppId, :DeleteTime, :FsName, :Tags, :SnapshotType
2506
+ attr_accessor :CreationTime, :SnapshotName, :SnapshotId, :Status, :RegionName, :FileSystemId, :Size, :AliveDay, :Percent, :AppId, :DeleteTime, :FsName, :Tags, :SnapshotType, :SnapshotTime
2492
2507
 
2493
- def initialize(creationtime=nil, snapshotname=nil, snapshotid=nil, status=nil, regionname=nil, filesystemid=nil, size=nil, aliveday=nil, percent=nil, appid=nil, deletetime=nil, fsname=nil, tags=nil, snapshottype=nil)
2508
+ def initialize(creationtime=nil, snapshotname=nil, snapshotid=nil, status=nil, regionname=nil, filesystemid=nil, size=nil, aliveday=nil, percent=nil, appid=nil, deletetime=nil, fsname=nil, tags=nil, snapshottype=nil, snapshottime=nil)
2494
2509
  @CreationTime = creationtime
2495
2510
  @SnapshotName = snapshotname
2496
2511
  @SnapshotId = snapshotid
@@ -2505,6 +2520,7 @@ module TencentCloud
2505
2520
  @FsName = fsname
2506
2521
  @Tags = tags
2507
2522
  @SnapshotType = snapshottype
2523
+ @SnapshotTime = snapshottime
2508
2524
  end
2509
2525
 
2510
2526
  def deserialize(params)
@@ -2529,6 +2545,7 @@ module TencentCloud
2529
2545
  end
2530
2546
  end
2531
2547
  @SnapshotType = params['SnapshotType']
2548
+ @SnapshotTime = params['SnapshotTime']
2532
2549
  end
2533
2550
  end
2534
2551
 
@@ -2903,7 +2920,7 @@ module TencentCloud
2903
2920
  # @type PGroupId: String
2904
2921
  # @param Name: 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
2905
2922
  # @type Name: String
2906
- # @param DescInfo: 权限组描述信息,1-255个字符
2923
+ # @param DescInfo: 权限组描述信息,1-255个字符。 Name和Descinfo不能同时为空
2907
2924
  # @type DescInfo: String
2908
2925
 
2909
2926
  attr_accessor :PGroupId, :Name, :DescInfo
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cfs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.609
4
+ version: 3.0.611
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-07-10 00:00:00.000000000 Z
11
+ date: 2023-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -34,8 +34,8 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
36
  - lib/tencentcloud-sdk-cfs.rb
37
- - lib/v20190719/client.rb
38
37
  - lib/v20190719/models.rb
38
+ - lib/v20190719/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: