Class: WavefrontCli::UserGroup
- Inherits:
-
Base
- Object
- Base
- WavefrontCli::UserGroup
show all
- Defined in:
- lib/wavefront-cli/usergroup.rb
Overview
CLI coverage for the v2 ‘usergroup’ 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 inherited from Base
#_sdk_class, #cannot_noop!, #check_response_blocks, #check_status, #cli_output_class, #conds_to_query, #descriptive_name, #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, #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
Instance Method Details
#do_add_role ⇒ Object
30
31
32
|
# File 'lib/wavefront-cli/usergroup.rb', line 30
def do_add_role
wf.add_roles_to_group(options[:'<id>'], options[:'<role>'])
end
|
#do_add_to ⇒ Object
22
23
24
|
# File 'lib/wavefront-cli/usergroup.rb', line 22
def do_add_to
wf.add_users_to_group(options[:'<id>'], options[:'<user>'])
end
|
#do_create ⇒ Object
18
19
20
|
# File 'lib/wavefront-cli/usergroup.rb', line 18
def do_create
wf.create(name: options[:'<name>'], roleIDs: options[:roleid])
end
|
#do_remove_from ⇒ Object
26
27
28
|
# File 'lib/wavefront-cli/usergroup.rb', line 26
def do_remove_from
wf.remove_users_from_group(options[:'<id>'], options[:'<user>'])
end
|
#do_remove_role ⇒ Object
34
35
36
|
# File 'lib/wavefront-cli/usergroup.rb', line 34
def do_remove_role
wf.remove_roles_from_group(options[:'<id>'], options[:'<role>'])
end
|
#import_to_create(raw) ⇒ Object
38
39
40
41
|
# File 'lib/wavefront-cli/usergroup.rb', line 38
def import_to_create(raw)
raw['emailAddress'] = raw['identifier']
raw.delete_if { |k, _v| %w[customer identifier].include?(k) }
end
|
#validator_exception ⇒ Object
10
11
12
|
# File 'lib/wavefront-cli/usergroup.rb', line 10
def validator_exception
Wavefront::Exception::InvalidUserGroupId
end
|