Class: WavefrontCli::Integration
- Inherits:
-
Base
- Object
- Base
- WavefrontCli::Integration
show all
- Defined in:
- lib/wavefront-cli/integration.rb
Overview
CLI coverage for the v2 ‘integration’ API.
Instance Attribute Summary
Attributes inherited from Base
#klass, #klass_word, #options, #wf
Instance Method Summary
collapse
Methods inherited from Base
#check_status, #dispatch, #display, #do_delete, #do_describe, #do_import, #do_list, #do_search, #do_tag_add, #do_tag_clear, #do_tag_delete, #do_tag_set, #do_tags, #do_undelete, #do_update, #format_var, #handle_error, #handle_response, #import_to_create, #initialize, #load_display_class, #load_file, #mk_creds, #mk_opts, #run, #validate_id, #validate_input, #validate_opts, #validate_tags, #validator_exception, #validator_method
Instance Method Details
#do_install ⇒ Object
17
18
19
|
# File 'lib/wavefront-cli/integration.rb', line 17
def do_install
wf.install(options[:'<id>'])
end
|
#do_manifests ⇒ Object
13
14
15
|
# File 'lib/wavefront-cli/integration.rb', line 13
def do_manifests
wf.manifests
end
|
#do_status ⇒ Object
9
10
11
|
# File 'lib/wavefront-cli/integration.rb', line 9
def do_status
wf.status(options[:'<id>'])
end
|
#do_statuses ⇒ Object
25
26
27
|
# File 'lib/wavefront-cli/integration.rb', line 25
def do_statuses
wf.statuses
end
|
#do_uninstall ⇒ Object
21
22
23
|
# File 'lib/wavefront-cli/integration.rb', line 21
def do_uninstall
wf.uninstall(options[:'<id>'])
end
|