Class: HammerCLIForeman::IdOptionBuilder

Inherits:
SearchablesAbstractOptionBuilder show all
Defined in:
lib/hammer_cli_foreman/option_builders.rb

Overview

it adds id with description of the id param from resource’s show action

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(resource) ⇒ IdOptionBuilder

Returns a new instance of IdOptionBuilder.



331
332
333
# File 'lib/hammer_cli_foreman/option_builders.rb', line 331

def initialize(resource)
  @resource = resource
end

Instance Attribute Details

#resourceObject (readonly)

Returns the value of attribute resource.



335
336
337
# File 'lib/hammer_cli_foreman/option_builders.rb', line 335

def resource
  @resource
end

Instance Method Details

#build(builder_params = {}) ⇒ Object



337
338
339
340
341
# File 'lib/hammer_cli_foreman/option_builders.rb', line 337

def build(builder_params={})
  [
    option("--id", "ID", description("id", :show), :referenced_resource => @resource.singular_name)
  ]
end