Class: WavefrontCli::MonitoredCluster

Inherits:
Base
  • Object
show all
Includes:
WavefrontCli::Mixin::Tag
Defined in:
lib/wavefront-cli/monitoredcluster.rb

Overview

CLI coverage for the v2 ‘maintenancewindow’ API.

Constant Summary

Constants included from Constants

Constants::ALL_PAGE_SIZE, Constants::DEFAULT_CONFIG, Constants::DEFAULT_OPTS, Constants::EVENT_STATE_DIR, Constants::HUMAN_TIME_FORMAT, Constants::HUMAN_TIME_FORMAT_MS, Constants::SEARCH_SPLIT

Instance Attribute Summary

Attributes inherited from Base

#klass, #klass_word, #options, #wf

Instance Method Summary collapse

Methods included from WavefrontCli::Mixin::Tag

#do_tag_add, #do_tag_clear, #do_tag_delete, #do_tag_pathsearch, #do_tag_set, #do_tags

Methods inherited from Base

#_sdk_class, #cannot_noop!, #check_response_blocks, #check_status, #cli_output_class, #conds_to_query, #dispatch, #display, #display_api_error, #display_class, #display_no_api_response, #do_delete, #do_describe, #do_dump, #do_import, #do_list, #do_search, #do_set, #do_undelete, #dump_json, #dump_yaml, #extract_values, #failed_validation_message, #format_var, #handle_error, #handle_response, #hcl_fields, #import_to_create, #initialize, #item_dump_call, #load_display_class, #matching_method, #method_word_list, #mk_creds, #mk_opts, #name_of_do_method, #no_api_response, #ok_exit, #one_or_all, #options_and_exit, #parseable_output, #range_hash, #require_sdk_class, #run, #search_key, #smart_delete, #smart_delete_message, #status_error_handler, #unsupported_format_message, #validate_id, #validate_input, #validate_opts, #validate_tags, #validator_method, #warning_message

Constructor Details

This class inherits a constructor from WavefrontCli::Base

Instance Method Details

#descriptive_nameObject



31
32
33
# File 'lib/wavefront-cli/monitoredcluster.rb', line 31

def descriptive_name
  'monitored cluster'
end

#do_createObject



13
14
15
16
17
18
19
20
21
# File 'lib/wavefront-cli/monitoredcluster.rb', line 13

def do_create
  body = { version: options[:version],
           name: options[:'<name>'],
           platform: options[:'<platform>'],
           id: options[:'<id>'],
           additionalTags: {},
           tags: [] }
  wf.create(body)
end

#do_mergeObject



23
24
25
# File 'lib/wavefront-cli/monitoredcluster.rb', line 23

def do_merge
  wf.merge(options[:'<id_to>'], options[:'<id_from>'])
end

#extra_validationObject



35
36
37
38
39
40
# File 'lib/wavefront-cli/monitoredcluster.rb', line 35

def extra_validation
  return unless options[:merge]

  validate_merge_id(options[:'<id_to>'])
  validate_merge_id(options[:'<id_from>'])
end

#validator_exceptionObject



27
28
29
# File 'lib/wavefront-cli/monitoredcluster.rb', line 27

def validator_exception
  Wavefront::Exception::InvalidMonitoredClusterId
end