Class: TencentCloud::Cfs::V20190719::DoDirectoryOperationRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfs::V20190719::DoDirectoryOperationRequest
- Defined in:
- lib/v20190719/models.rb
Overview
DoDirectoryOperation请求参数结构体
Instance Attribute Summary collapse
-
#DestPath ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。.
-
#DirectoryPath ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。.
-
#FileSystemId ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。.
-
#Mode ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。.
-
#OpetationType ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filesystemid = nil, opetationtype = nil, directorypath = nil, mode = nil, destpath = nil) ⇒ DoDirectoryOperationRequest
constructor
A new instance of DoDirectoryOperationRequest.
Constructor Details
#initialize(filesystemid = nil, opetationtype = nil, directorypath = nil, mode = nil, destpath = nil) ⇒ DoDirectoryOperationRequest
Returns a new instance of DoDirectoryOperationRequest.
2590 2591 2592 2593 2594 2595 2596 |
# File 'lib/v20190719/models.rb', line 2590 def initialize(filesystemid=nil, opetationtype=nil, directorypath=nil, mode=nil, destpath=nil) @FileSystemId = filesystemid @OpetationType = opetationtype @DirectoryPath = directorypath @Mode = mode @DestPath = destpath end |
Instance Attribute Details
#DestPath ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。
2588 2589 2590 |
# File 'lib/v20190719/models.rb', line 2588 def DestPath @DestPath end |
#DirectoryPath ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。
2588 2589 2590 |
# File 'lib/v20190719/models.rb', line 2588 def DirectoryPath @DirectoryPath end |
#FileSystemId ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。
2588 2589 2590 |
# File 'lib/v20190719/models.rb', line 2588 def FileSystemId @FileSystemId end |
#Mode ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。
2588 2589 2590 |
# File 'lib/v20190719/models.rb', line 2588 def Mode @Mode end |
#OpetationType ⇒ Object
check:确认目录是否存在,等同于stat。 move:对文件/目录进行重命名,等同于mv。
2588 2589 2590 |
# File 'lib/v20190719/models.rb', line 2588 def OpetationType @OpetationType end |
Instance Method Details
#deserialize(params) ⇒ Object
2598 2599 2600 2601 2602 2603 2604 |
# File 'lib/v20190719/models.rb', line 2598 def deserialize(params) @FileSystemId = params['FileSystemId'] @OpetationType = params['OpetationType'] @DirectoryPath = params['DirectoryPath'] @Mode = params['Mode'] @DestPath = params['DestPath'] end |