tencentcloud-sdk-cfs 3.0.876 → 3.0.878
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190719/client.rb +2 -2
- data/lib/v20190719/models.rb +29 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ecfc183a3cc43557ffb03e0358bbb31079502878
|
4
|
+
data.tar.gz: 8d1005c878ef20939df09ff3299df610bf022256
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d0e29c0fa5cf386bd95bc6cbf8cbe17faeb6cb9e57deb7dc674000f93b1fb1eaf34bec8171b98d32b985da11aac78a3aa03064a81a9a90edaefd15495859b51
|
7
|
+
data.tar.gz: 801d6cdbcb0f54d2e8b6f9ed577d9e804637ef7ba29358ef1796e17baff2b77a7f19d6dd8499fbd7a3dffdb3270daf9647fbfc11cf3349cb484b8ad52fe66867
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.878
|
data/lib/v20190719/client.rb
CHANGED
@@ -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`
|
data/lib/v20190719/models.rb
CHANGED
@@ -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
|
|
@@ -3177,7 +3185,7 @@ module TencentCloud
|
|
3177
3185
|
|
3178
3186
|
# 文件系统配额信息
|
3179
3187
|
class UserQuota < TencentCloud::Common::AbstractModel
|
3180
|
-
# @param UserType: 指定配额类型,包括Uid、Gid
|
3188
|
+
# @param UserType: 指定配额类型,包括Uid、Gid、Dir
|
3181
3189
|
# @type UserType: String
|
3182
3190
|
# @param UserId: UID/GID信息
|
3183
3191
|
# @type UserId: String
|
@@ -3193,10 +3201,16 @@ module TencentCloud
|
|
3193
3201
|
# @param FileUsed: 文件使用个数,单位个
|
3194
3202
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3195
3203
|
# @type FileUsed: Integer
|
3204
|
+
# @param DirectoryPath: 目录配额的目录绝对路径
|
3205
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3206
|
+
# @type DirectoryPath: String
|
3207
|
+
# @param Status: 配置规则状态,inavailable---配置中,available --已生效,deleting--删除中,deleted 已删除,failed--配置失败
|
3208
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3209
|
+
# @type Status: String
|
3196
3210
|
|
3197
|
-
attr_accessor :UserType, :UserId, :CapacityHardLimit, :FileHardLimit, :FileSystemId, :CapacityUsed, :FileUsed
|
3211
|
+
attr_accessor :UserType, :UserId, :CapacityHardLimit, :FileHardLimit, :FileSystemId, :CapacityUsed, :FileUsed, :DirectoryPath, :Status
|
3198
3212
|
|
3199
|
-
def initialize(usertype=nil, userid=nil, capacityhardlimit=nil, filehardlimit=nil, filesystemid=nil, capacityused=nil, fileused=nil)
|
3213
|
+
def initialize(usertype=nil, userid=nil, capacityhardlimit=nil, filehardlimit=nil, filesystemid=nil, capacityused=nil, fileused=nil, directorypath=nil, status=nil)
|
3200
3214
|
@UserType = usertype
|
3201
3215
|
@UserId = userid
|
3202
3216
|
@CapacityHardLimit = capacityhardlimit
|
@@ -3204,6 +3218,8 @@ module TencentCloud
|
|
3204
3218
|
@FileSystemId = filesystemid
|
3205
3219
|
@CapacityUsed = capacityused
|
3206
3220
|
@FileUsed = fileused
|
3221
|
+
@DirectoryPath = directorypath
|
3222
|
+
@Status = status
|
3207
3223
|
end
|
3208
3224
|
|
3209
3225
|
def deserialize(params)
|
@@ -3214,6 +3230,8 @@ module TencentCloud
|
|
3214
3230
|
@FileSystemId = params['FileSystemId']
|
3215
3231
|
@CapacityUsed = params['CapacityUsed']
|
3216
3232
|
@FileUsed = params['FileUsed']
|
3233
|
+
@DirectoryPath = params['DirectoryPath']
|
3234
|
+
@Status = params['Status']
|
3217
3235
|
end
|
3218
3236
|
end
|
3219
3237
|
|
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.
|
4
|
+
version: 3.0.878
|
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-
|
11
|
+
date: 2024-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|