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.



390
391
392
# File 'lib/hammer_cli_foreman/option_builders.rb', line 390

def initialize(resource)
  @resource = resource
end

Instance Attribute Details

#resourceObject (readonly)

Returns the value of attribute resource.



394
395
396
# File 'lib/hammer_cli_foreman/option_builders.rb', line 394

def resource
  @resource
end

Instance Method Details

#build(builder_params = {}) ⇒ Object



396
397
398
399
400
# File 'lib/hammer_cli_foreman/option_builders.rb', line 396

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