tencentcloud-sdk-cfs 3.0.875 → 3.0.877

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef94ceec29b2c233732ed347d67e35c23ba95055
4
- data.tar.gz: 8e0a76b1de37f2df35f2b2620198ff394472984e
3
+ metadata.gz: d8f33b7055383fcf4d9f242731b885c716aa7786
4
+ data.tar.gz: 2841ad7fac65fa97d0eed66af10dce9403beced5
5
5
  SHA512:
6
- metadata.gz: f964f718fb21121e65a0953fac671964d32dd19898bf3f8b86b546fbc16588aaaeb782e9c08a57f458b708bbbc435dc1238d4159fc5b544c02793e181558d20b
7
- data.tar.gz: a1c70e21893fe33c0ee789bda1b899c8a99075e2dc593ef7774123ad10532fd4224f700e45cba8d0f743b74669046ab859d9d0694ce8895adbc26edd24347718
6
+ metadata.gz: 8d793b5c12c78665456f107d59fa0c5c3fbb752a3c05f2bbd364cf2e9557331d17bee3ef4683c468cb586803cddcc01ad3524e62be3f6d1ff770a87787eacc4d
7
+ data.tar.gz: 238ab44e9bcd0796f80eca078a40d33fe1fd2e6f41f8a4fc13d0fd25528ff45122bfba4ba3e29300501a61b80d9d107c2768ac9bd41c8dbf71a7c9f158fb50c5
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.875
1
+ 3.0.877
@@ -368,7 +368,7 @@ module TencentCloud
368
368
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
369
369
  end
370
370
 
371
- # 指定条件删除文件系统配额
371
+ # 指定条件删除文件系统配额(仅部分Turbo实例能使用,若需要调用请提交工单与我们联系)
372
372
 
373
373
  # @param request: Request instance for DeleteUserQuota.
374
374
  # @type request: :class:`Tencentcloud::cfs::V20190719::DeleteUserQuotaRequest`
@@ -778,7 +778,7 @@ module TencentCloud
778
778
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
779
779
  end
780
780
 
781
- # 设置文件系统配额,提供UID/GID的配额设置的接口
781
+ # 设置文件系统配额,提供UID/GID的配额设置的接口(仅部分Turbo实例能使用,若需要调用请提交工单与我们联系)
782
782
 
783
783
  # @param request: Request instance for SetUserQuota.
784
784
  # @type request: :class:`Tencentcloud::cfs::V20190719::SetUserQuotaRequest`
@@ -1022,23 +1022,27 @@ module TencentCloud
1022
1022
  class DeleteUserQuotaRequest < TencentCloud::Common::AbstractModel
1023
1023
  # @param FileSystemId: 文件系统 ID
1024
1024
  # @type FileSystemId: String
1025
- # @param UserType: 指定配额类型,包括Uid、Gid
1025
+ # @param UserType: 指定配额类型,包括Uid、Gid、Dir
1026
1026
  # @type UserType: String
1027
1027
  # @param UserId: UID/GID信息
1028
1028
  # @type UserId: String
1029
+ # @param DirectoryPath: 设置目录配额的目录的绝对路径
1030
+ # @type DirectoryPath: String
1029
1031
 
1030
- attr_accessor :FileSystemId, :UserType, :UserId
1032
+ attr_accessor :FileSystemId, :UserType, :UserId, :DirectoryPath
1031
1033
 
1032
- def initialize(filesystemid=nil, usertype=nil, userid=nil)
1034
+ def initialize(filesystemid=nil, usertype=nil, userid=nil, directorypath=nil)
1033
1035
  @FileSystemId = filesystemid
1034
1036
  @UserType = usertype
1035
1037
  @UserId = userid
1038
+ @DirectoryPath = directorypath
1036
1039
  end
1037
1040
 
1038
1041
  def deserialize(params)
1039
1042
  @FileSystemId = params['FileSystemId']
1040
1043
  @UserType = params['UserType']
1041
1044
  @UserId = params['UserId']
1045
+ @DirectoryPath = params['DirectoryPath']
1042
1046
  end
1043
1047
  end
1044
1048
 
@@ -2434,23 +2438,26 @@ module TencentCloud
2434
2438
  class SetUserQuotaRequest < TencentCloud::Common::AbstractModel
2435
2439
  # @param FileSystemId: 文件系统 ID
2436
2440
  # @type FileSystemId: String
2437
- # @param UserType: 指定配额类型,包括Uid、Gid
2441
+ # @param UserType: 指定配额类型,包括Uid、Gid,Dir,分别代表用户配额,用户组配额,目录配额
2438
2442
  # @type UserType: String
2439
2443
  # @param UserId: UID/GID信息
2440
2444
  # @type UserId: String
2441
- # @param CapacityHardLimit: 容量硬限制,单位GiB
2445
+ # @param CapacityHardLimit: 容量硬限制,单位GiB。设置范围10-10000000。
2442
2446
  # @type CapacityHardLimit: Integer
2443
- # @param FileHardLimit: 文件硬限制,单位个
2447
+ # @param FileHardLimit: 文件硬限制,单位个。设置范围1000-100000000
2444
2448
  # @type FileHardLimit: Integer
2449
+ # @param DirectoryPath: 需设置目录配额的目录绝对路径,不同目录不可存在包含关系
2450
+ # @type DirectoryPath: String
2445
2451
 
2446
- attr_accessor :FileSystemId, :UserType, :UserId, :CapacityHardLimit, :FileHardLimit
2452
+ attr_accessor :FileSystemId, :UserType, :UserId, :CapacityHardLimit, :FileHardLimit, :DirectoryPath
2447
2453
 
2448
- def initialize(filesystemid=nil, usertype=nil, userid=nil, capacityhardlimit=nil, filehardlimit=nil)
2454
+ def initialize(filesystemid=nil, usertype=nil, userid=nil, capacityhardlimit=nil, filehardlimit=nil, directorypath=nil)
2449
2455
  @FileSystemId = filesystemid
2450
2456
  @UserType = usertype
2451
2457
  @UserId = userid
2452
2458
  @CapacityHardLimit = capacityhardlimit
2453
2459
  @FileHardLimit = filehardlimit
2460
+ @DirectoryPath = directorypath
2454
2461
  end
2455
2462
 
2456
2463
  def deserialize(params)
@@ -2459,6 +2466,7 @@ module TencentCloud
2459
2466
  @UserId = params['UserId']
2460
2467
  @CapacityHardLimit = params['CapacityHardLimit']
2461
2468
  @FileHardLimit = params['FileHardLimit']
2469
+ @DirectoryPath = params['DirectoryPath']
2462
2470
  end
2463
2471
  end
2464
2472
 
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.875
4
+ version: 3.0.877
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-29 00:00:00.000000000 Z
11
+ date: 2024-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common