tencentcloud-sdk-cfs 3.0.1120 → 3.0.1127
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/models.rb +9 -3
- 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: 675519705a47d38af27354ef50b71099ea2db327
|
4
|
+
data.tar.gz: c00b1f1fafa610827e9080d62f22f05d25236177
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d679f3d2185b074ea0353e1ce0905de597047c06c5d6c02d1a0b704f4f2cd334eca9a9531d43ab229556de9243c112c06a52d2d3b93822185409c592ee23ae90
|
7
|
+
data.tar.gz: a37d3890b236b44fec76b835496d5b850efb016d4e57ea5c3c23b7aa4c4f5798085d7f7adf226a7e39d1af0afd2a3a24f1e3c06281d1d3a64dd050afbfaf8cf0
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1127
|
data/lib/v20190719/models.rb
CHANGED
@@ -2532,20 +2532,25 @@ module TencentCloud
|
|
2532
2532
|
class DoDirectoryOperationRequest < TencentCloud::Common::AbstractModel
|
2533
2533
|
# @param FileSystemId: 文件系统Id
|
2534
2534
|
# @type FileSystemId: String
|
2535
|
-
# @param OpetationType: create
|
2535
|
+
# @param OpetationType: create:创建目录,等同于mkdir。
|
2536
|
+
# check:确认目录是否存在,等同于stat。
|
2537
|
+
# move:对文件/目录进行重命名,等同于mv。
|
2536
2538
|
# @type OpetationType: String
|
2537
2539
|
# @param DirectoryPath: 目录的绝对路径 默认递归创建(即如果目录中有子目录不存在,则先创建出对应子目录)
|
2538
2540
|
# @type DirectoryPath: String
|
2539
2541
|
# @param Mode: 创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义
|
2540
2542
|
# @type Mode: String
|
2543
|
+
# @param DestPath: mv操作的目标目录名称;如果是turbo文件系统必须以/cfs/开头
|
2544
|
+
# @type DestPath: String
|
2541
2545
|
|
2542
|
-
attr_accessor :FileSystemId, :OpetationType, :DirectoryPath, :Mode
|
2546
|
+
attr_accessor :FileSystemId, :OpetationType, :DirectoryPath, :Mode, :DestPath
|
2543
2547
|
|
2544
|
-
def initialize(filesystemid=nil, opetationtype=nil, directorypath=nil, mode=nil)
|
2548
|
+
def initialize(filesystemid=nil, opetationtype=nil, directorypath=nil, mode=nil, destpath=nil)
|
2545
2549
|
@FileSystemId = filesystemid
|
2546
2550
|
@OpetationType = opetationtype
|
2547
2551
|
@DirectoryPath = directorypath
|
2548
2552
|
@Mode = mode
|
2553
|
+
@DestPath = destpath
|
2549
2554
|
end
|
2550
2555
|
|
2551
2556
|
def deserialize(params)
|
@@ -2553,6 +2558,7 @@ module TencentCloud
|
|
2553
2558
|
@OpetationType = params['OpetationType']
|
2554
2559
|
@DirectoryPath = params['DirectoryPath']
|
2555
2560
|
@Mode = params['Mode']
|
2561
|
+
@DestPath = params['DestPath']
|
2556
2562
|
end
|
2557
2563
|
end
|
2558
2564
|
|
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.1127
|
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-08-
|
11
|
+
date: 2025-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|