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::HUMAN_TIME_FORMAT, Constants::HUMAN_TIME_FORMAT_MS
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_status, #conds_to_query, #dispatch, #display, #display_api_error, #display_no_api_response, #do_delete, #do_describe, #do_import, #do_list, #do_search, #do_undelete, #do_update, #extract_values, #failed_validation_message, #format_var, #handle_error, #handle_response, #hcl_fields, #initialize, #load_display_class, #load_file, #load_from_stdin, #mk_creds, #mk_opts, #no_api_response, #ok_exit, #one_or_all, #options_and_exit, #parseable_output, #range_hash, #run, #search_key, #smart_delete, #smart_delete_message, #validate_id, #validate_input, #validate_opts, #validate_tags, #validator_method
Instance Method Details
#do_add_user ⇒ Object
20
21
22
|
# File 'lib/wavefront-cli/usergroup.rb', line 20
def do_add_user
wf.add_users_to_group(options[:'<id>'], options[:'<user>'])
end
|
#do_create ⇒ Object
15
16
17
18
|
# File 'lib/wavefront-cli/usergroup.rb', line 15
def do_create
wf.create(name: options[:'<name>'],
permissions: options[:permission])
end
|
#do_grant ⇒ Object
28
29
30
|
# File 'lib/wavefront-cli/usergroup.rb', line 28
def do_grant
wf.grant(options[:'<permission>'], Array(options[:'<id>']))
end
|
#do_remove_user ⇒ Object
24
25
26
|
# File 'lib/wavefront-cli/usergroup.rb', line 24
def do_remove_user
wf.remove_users_from_group(options[:'<id>'], options[:'<user>'])
end
|
#do_revoke ⇒ Object
32
33
34
|
# File 'lib/wavefront-cli/usergroup.rb', line 32
def do_revoke
wf.revoke(options[:'<permission>'], Array(options[:'<id>']))
end
|
#import_to_create(raw) ⇒ Object
36
37
38
39
|
# File 'lib/wavefront-cli/usergroup.rb', line 36
def import_to_create(raw)
raw['emailAddress'] = raw['identifier']
raw.delete_if { |k, _v| k == 'customer' || k == 'identifier' }
end
|
#validator_exception ⇒ Object
8
9
10
|
# File 'lib/wavefront-cli/usergroup.rb', line 8
def validator_exception
Wavefront::Exception::InvalidUserGroupId
end
|