Class: TencentCloud::Wedata::V20210820::CreateResourcePathRequest

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

Overview

CreateResourcePath请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, filepath = nil, projectid = nil) ⇒ CreateResourcePathRequest

Returns a new instance of CreateResourcePathRequest.



5289
5290
5291
5292
5293
# File 'lib/v20210820/models.rb', line 5289

def initialize(name=nil, filepath=nil, projectid=nil)
  @Name = name
  @FilePath = filepath
  @ProjectId = projectid
end

Instance Attribute Details

#FilePathObject

Parameters:

  • Name:

    文件夹名称,如 aaa

  • FilePath:

    文件夹所属父目录,请注意,根目录为 /datastudio/resource

  • ProjectId:

    项目ID



5287
5288
5289
# File 'lib/v20210820/models.rb', line 5287

def FilePath
  @FilePath
end

#NameObject

Parameters:

  • Name:

    文件夹名称,如 aaa

  • FilePath:

    文件夹所属父目录,请注意,根目录为 /datastudio/resource

  • ProjectId:

    项目ID



5287
5288
5289
# File 'lib/v20210820/models.rb', line 5287

def Name
  @Name
end

#ProjectIdObject

Parameters:

  • Name:

    文件夹名称,如 aaa

  • FilePath:

    文件夹所属父目录,请注意,根目录为 /datastudio/resource

  • ProjectId:

    项目ID



5287
5288
5289
# File 'lib/v20210820/models.rb', line 5287

def ProjectId
  @ProjectId
end

Instance Method Details

#deserialize(params) ⇒ Object



5295
5296
5297
5298
5299
# File 'lib/v20210820/models.rb', line 5295

def deserialize(params)
  @Name = params['Name']
  @FilePath = params['FilePath']
  @ProjectId = params['ProjectId']
end