tencentcloud-sdk-cfs 3.0.1084 → 3.0.1087

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 +11 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 11be4665c03aa3bf358d292e053f829785a16eae
4
- data.tar.gz: 47bdc6e7c847e38c2c0c46493faef5ec9c54940a
3
+ metadata.gz: 273ac6166354416ee4c4898682e4330d9d973f94
4
+ data.tar.gz: b8e6aa60f060470b298df72be4a1a0d97d47d38e
5
5
  SHA512:
6
- metadata.gz: 3e9eac61b4f2f3c38578aeec6943a2f8a81426bc93f3b94f57b8146278a0402600399bd34cc8c34d64719818bf9e38ff634906299dab48582cd363fd881511f2
7
- data.tar.gz: a8dbf48343ce5096b3fc044132cb988dbe4daa495c5c1031a43a8f0f276f1b09ad92aab15e3f09f167017b5de2e6c440e24a35917090b1009eac147671f90912
6
+ metadata.gz: 194b9d8752fbf1dc14737e53c304d2b1bb1a2140476674a58bfafa60b468e0a77a7e0bd31dfcb4cbf3be41874d1c21c9b9a64b6514adf8f6c14b6a949641d172
7
+ data.tar.gz: 3d5b3dd09cc790dd327b7a4c9ed51819c0466f10c8bd74a504fc54062dc5853a6770ecabe220d4f4e995dddec3f13782dcfd8683b65fcada1c023da69e9e2e81
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1084
1
+ 3.0.1087
@@ -23,7 +23,7 @@ module TencentCloud
23
23
  # @type Status: String
24
24
  # @param ScaleThreshold: 集群用量占比,到达这个值后开始扩容,范围[10-90]
25
25
  # @type ScaleThreshold: Integer
26
- # @param TargetThreshold: 扩容后使用量跟集群总量比例,范围[1-90]
26
+ # @param TargetThreshold: 扩容后使用量跟集群总量比例,范围[10-90]
27
27
  # @type TargetThreshold: Integer
28
28
 
29
29
  attr_accessor :Status, :ScaleThreshold, :TargetThreshold
@@ -453,10 +453,14 @@ module TencentCloud
453
453
  # v3.1:创建增强版的通用文件系统
454
454
  # 说明:增强版的通用系统需要开通白名单才能使用,如有需要请提交工单与我们联系。
455
455
  # @type CfsVersion: String
456
+ # @param MetaType: turbo文件系统元数据属性
457
+ # basic:创建标准型的元数据
458
+ # enhanced:创建增强型的元数据
459
+ # @type MetaType: String
456
460
 
457
- attr_accessor :Zone, :NetInterface, :PGroupId, :Protocol, :StorageType, :VpcId, :SubnetId, :MountIP, :FsName, :ResourceTags, :ClientToken, :CcnId, :CidrBlock, :Capacity, :SnapshotId, :AutoSnapshotPolicyId, :EnableAutoScaleUp, :CfsVersion
461
+ attr_accessor :Zone, :NetInterface, :PGroupId, :Protocol, :StorageType, :VpcId, :SubnetId, :MountIP, :FsName, :ResourceTags, :ClientToken, :CcnId, :CidrBlock, :Capacity, :SnapshotId, :AutoSnapshotPolicyId, :EnableAutoScaleUp, :CfsVersion, :MetaType
458
462
 
459
- 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, cfsversion=nil)
463
+ 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, cfsversion=nil, metatype=nil)
460
464
  @Zone = zone
461
465
  @NetInterface = netinterface
462
466
  @PGroupId = pgroupid
@@ -475,6 +479,7 @@ module TencentCloud
475
479
  @AutoSnapshotPolicyId = autosnapshotpolicyid
476
480
  @EnableAutoScaleUp = enableautoscaleup
477
481
  @CfsVersion = cfsversion
482
+ @MetaType = metatype
478
483
  end
479
484
 
480
485
  def deserialize(params)
@@ -503,6 +508,7 @@ module TencentCloud
503
508
  @AutoSnapshotPolicyId = params['AutoSnapshotPolicyId']
504
509
  @EnableAutoScaleUp = params['EnableAutoScaleUp']
505
510
  @CfsVersion = params['CfsVersion']
511
+ @MetaType = params['MetaType']
506
512
  end
507
513
  end
508
514
 
@@ -2258,7 +2264,7 @@ module TencentCloud
2258
2264
  # @type FileSystemId: String
2259
2265
  # @param ScaleUpThreshold: 扩容阈值,范围[10-90]
2260
2266
  # @type ScaleUpThreshold: Integer
2261
- # @param TargetThreshold: 扩容后目标阈值,范围[1-90],该值要小于 ScaleUpThreshold
2267
+ # @param TargetThreshold: 扩容后目标阈值,范围[10-90],该值要小于 ScaleUpThreshold
2262
2268
  # @type TargetThreshold: Integer
2263
2269
  # @param Status: 规则状态 0:关闭,1:开启;不传保留原状态
2264
2270
  # @type Status: Integer
@@ -2288,7 +2294,7 @@ module TencentCloud
2288
2294
  # @type Status: Integer
2289
2295
  # @param ScaleUpThreshold: 扩容阈值,范围[10-90]
2290
2296
  # @type ScaleUpThreshold: Integer
2291
- # @param TargetThreshold: 扩容后达到阈值,范围[1-90]
2297
+ # @param TargetThreshold: 扩容后达到阈值,范围[10-90]
2292
2298
  # @type TargetThreshold: Integer
2293
2299
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2294
2300
  # @type RequestId: String
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.1084
4
+ version: 3.0.1087
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-18 00:00:00.000000000 Z
11
+ date: 2025-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common