Class: TencentCloud::Wedata::V20250806::CreateResourceFolderRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20250806/models.rb

Overview

CreateResourceFolder请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(projectid = nil, parentfolderpath = nil, foldername = nil) ⇒ CreateResourceFolderRequest

Returns a new instance of CreateResourceFolderRequest.



1129
1130
1131
1132
1133
# File 'lib/v20250806/models.rb', line 1129

def initialize(projectid=nil, parentfolderpath=nil, foldername=nil)
  @ProjectId = projectid
  @ParentFolderPath = parentfolderpath
  @FolderName = foldername
end

Instance Attribute Details

#FolderNameObject

Parameters:

  • ProjectId:

    项目ID

  • ParentFolderPath:

    父文件夹绝对路径, 取值示例 /wedata/test, 根目录,请使用/即可

  • FolderName:

    文件夹名称



1127
1128
1129
# File 'lib/v20250806/models.rb', line 1127

def FolderName
  @FolderName
end

#ParentFolderPathObject

Parameters:

  • ProjectId:

    项目ID

  • ParentFolderPath:

    父文件夹绝对路径, 取值示例 /wedata/test, 根目录,请使用/即可

  • FolderName:

    文件夹名称



1127
1128
1129
# File 'lib/v20250806/models.rb', line 1127

def ParentFolderPath
  @ParentFolderPath
end

#ProjectIdObject

Parameters:

  • ProjectId:

    项目ID

  • ParentFolderPath:

    父文件夹绝对路径, 取值示例 /wedata/test, 根目录,请使用/即可

  • FolderName:

    文件夹名称



1127
1128
1129
# File 'lib/v20250806/models.rb', line 1127

def ProjectId
  @ProjectId
end

Instance Method Details

#deserialize(params) ⇒ Object



1135
1136
1137
1138
1139
# File 'lib/v20250806/models.rb', line 1135

def deserialize(params)
  @ProjectId = params['ProjectId']
  @ParentFolderPath = params['ParentFolderPath']
  @FolderName = params['FolderName']
end