Class: Etna::Clients::Metis::FindRequest

Inherits:
Struct
  • Object
show all
Includes:
JsonSerializableStruct
Defined in:
lib/etna/clients/metis/models.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from JsonSerializableStruct

#as_json, included, #to_json

Constructor Details

#initialize(**args) ⇒ FindRequest

Returns a new instance of FindRequest.



164
165
166
# File 'lib/etna/clients/metis/models.rb', line 164

def initialize(**args)
  super({params: [], hide_paths: false}.update(args))
end

Instance Attribute Details

#bucket_nameObject

Returns the value of attribute bucket_name

Returns:

  • (Object)

    the current value of bucket_name



161
162
163
# File 'lib/etna/clients/metis/models.rb', line 161

def bucket_name
  @bucket_name
end

#hide_pathsObject

Returns the value of attribute hide_paths

Returns:

  • (Object)

    the current value of hide_paths



161
162
163
# File 'lib/etna/clients/metis/models.rb', line 161

def hide_paths
  @hide_paths
end

#limitObject

Returns the value of attribute limit

Returns:

  • (Object)

    the current value of limit



161
162
163
# File 'lib/etna/clients/metis/models.rb', line 161

def limit
  @limit
end

#offsetObject

Returns the value of attribute offset

Returns:

  • (Object)

    the current value of offset



161
162
163
# File 'lib/etna/clients/metis/models.rb', line 161

def offset
  @offset
end

#paramsObject

Returns the value of attribute params

Returns:

  • (Object)

    the current value of params



161
162
163
# File 'lib/etna/clients/metis/models.rb', line 161

def params
  @params
end

#project_nameObject

Returns the value of attribute project_name

Returns:

  • (Object)

    the current value of project_name



161
162
163
# File 'lib/etna/clients/metis/models.rb', line 161

def project_name
  @project_name
end

Instance Method Details

#add_param(param) ⇒ Object



168
169
170
# File 'lib/etna/clients/metis/models.rb', line 168

def add_param(param)
  params << param
end

#cloneObject



178
179
180
181
182
183
184
185
186
187
# File 'lib/etna/clients/metis/models.rb', line 178

def clone
  FindRequest.new(
    project_name: self.project_name,
    bucket_name: self.bucket_name,
    limit: self.limit,
    offset: self.offset,
    params: self.params.dup,
    hide_paths: self.hide_paths
  )
end

#to_hObject



172
173
174
175
176
# File 'lib/etna/clients/metis/models.rb', line 172

def to_h
  # The nested :params values don't get converted correctly with transform_values, so it's
  #   easier to do from a JSON string
  JSON.parse(to_json, :symbolize_names => true)
end