class TencentCloud::Cfs::V20190719::CreateCfsSnapshotRequest

CreateCfsSnapshot请求参数结构体

def deserialize(params)

def deserialize(params)
  @FileSystemId = params['FileSystemId']
  @SnapshotName = params['SnapshotName']
  unless params['ResourceTags'].nil?
    @ResourceTags = []
    params['ResourceTags'].each do |i|
      taginfo_tmp = TagInfo.new
      taginfo_tmp.deserialize(i)
      @ResourceTags << taginfo_tmp
    end
  end
end

def initialize(filesystemid=nil, snapshotname=nil, resourcetags=nil)

def initialize(filesystemid=nil, snapshotname=nil, resourcetags=nil)
  @FileSystemId = filesystemid
  @SnapshotName = snapshotname
  @ResourceTags = resourcetags
end