Class: Morpheus::Cli::BackupSettingsCommand
- Inherits:
-
Object
- Object
- Morpheus::Cli::BackupSettingsCommand
show all
- Includes:
- AccountsHelper, CliCommand
- Defined in:
- lib/morpheus/cli/commands/backup_settings_command.rb
Instance Attribute Summary
Attributes included from CliCommand
#no_prompt
Instance Method Summary
collapse
#account_column_definitions, #account_users_interface, #accounts_interface, #find_account_by_id, #find_account_by_name, #find_account_by_name_or_id, #find_account_from_options, #find_all_user_ids, #find_role_by_id, #find_role_by_name, #find_role_by_name_or_id, #find_user_by_id, #find_user_by_username, #find_user_by_username_or_id, #find_user_group_by_id, #find_user_group_by_name, #find_user_group_by_name_or_id, #format_access_string, #format_role_type, #format_user_role_names, #format_user_status, #get_access_color, #get_access_string, included, #list_account_column_definitions, #list_user_column_definitions, #list_user_group_column_definitions, #role_column_definitions, #roles_interface, #subtenant_role_column_definitions, #user_column_definitions, #user_group_column_definitions, #user_groups_interface
Methods included from CliCommand
#add_query_parameter, #apply_options, #build_common_options, #build_get_options, #build_list_options, #build_option_type_options, #build_standard_add_many_options, #build_standard_add_options, #build_standard_api_options, #build_standard_delete_options, #build_standard_get_options, #build_standard_list_options, #build_standard_post_options, #build_standard_put_options, #build_standard_remove_options, #build_standard_update_options, #command_description, #command_name, #confirm, #confirm!, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #execute_api, #execute_api_payload, #execute_api_request, #find_all, #find_all_json, #find_by_id, #find_by_name, #find_by_name_or_id, #find_record, #find_record_json, #full_command_usage, #get_interface, #get_list_key, #get_object_key, #get_subcommand_description, #handle_each_payload, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_array, #parse_bytes_param, #parse_get_options!, #parse_id_list, #parse_labels, #parse_list_options, #parse_list_options!, #parse_list_subtitles, #parse_options, #parse_parameter_as_resource_id!, #parse_passed_options, #parse_payload, #parse_query_options, #print, #print_error, #println, #prog_name, #puts, #puts_error, #raise_args_error, #raise_command_error, #render_response, #run_command_for_each_arg, #subcommand_aliases, #subcommand_description, #subcommand_usage, #subcommands, #usage, #validate_outfile, #verify_args!, #visible_subcommands
Instance Method Details
#connect(opts) ⇒ Object
12
13
14
15
16
17
|
# File 'lib/morpheus/cli/commands/backup_settings_command.rb', line 12
def connect(opts)
@api_client = establish_remote_appliance_connection(opts)
@backup_settings_interface = @api_client.backup_settings
@options_interface = @api_client.options
@storage_providers = @api_client.storage_providers
end
|
#get(args) ⇒ Object
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# File 'lib/morpheus/cli/commands/backup_settings_command.rb', line 23
def get(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage()
build_common_options(opts, options, [:query, :json, :yaml, :csv, :fields, :dry_run, :remote])
opts. = "Get backup settings."
end
optparse.parse!(args)
connect(options)
if args.count != 0
raise_command_error "wrong number of arguments, expected 0 and got (#{args.count}) #{args}\n#{optparse}"
return 1
end
begin
@backup_settings_interface.setopts(options)
if options[:dry_run]
print_dry_run @backup_settings_interface.dry.get(options)
return
end
json_response = @backup_settings_interface.get(options)
if options[:json]
puts as_json(json_response, options, "backupSettings")
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "backupSettings")
return 0
elsif options[:csv]
puts records_as_csv([json_response['backupSettings']], options)
return 0
end
backup_settings = json_response['backupSettings']
print_h1 "Backup Settings"
print cyan
description_cols = {
"Scheduled Backups" => lambda {|it| format_boolean(it['backupsEnabled']) },
"Create Backups" => lambda {|it| format_boolean(it['createBackups']) },
"Backup Appliance" => lambda {|it| format_boolean(it['backupAppliance']) },
"Default Backup Bucket" => lambda {|it| it['defaultStorageBucket'] ? it['defaultStorageBucket']['name'] : '' },
"Default Backup Schedule" => lambda {|it| it['defaultSchedule'] ? it['defaultSchedule']['name'] : ''},
"Backup Retention Count" => lambda {|it| it['retentionCount'] }
}
print_description_list(description_cols, backup_settings)
print reset, "\n"
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#handle(args) ⇒ Object
19
20
21
|
# File 'lib/morpheus/cli/commands/backup_settings_command.rb', line 19
def handle(args)
handle_subcommand(args)
end
|
#update(args) ⇒ Object
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
# File 'lib/morpheus/cli/commands/backup_settings_command.rb', line 77
def update(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = opts.banner = subcommand_usage()
opts.on('-a', '--active [on|off]', String, "Can be used to enable / disable the scheduled backups. Default is on") do |val|
params['backupsEnabled'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == ''
end
opts.on("--create-backups [on|off]", String, "Can be used to enable / disable create backups. Default is on") do |val|
params['createBackups'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == ''
end
opts.on("--backup-appliance [on|off]", ['on','off'], "Can be use to enable / disable backup appliance. Default is on") do |val|
params['backupAppliance'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == ''
end
opts.on("-b", "--bucket BUCKET", String, "Default storage bucket name or ID") do |val|
options[:storageBucket] = val
end
opts.on("--clear-bucket", "Use this flag to clear default backup bucket") do |val|
params['clearDefaultStorageBucket'] = true
end
opts.on("-u", "--update-existing", "Use this flag to update existing backups with new settings") do |val|
params['updateExisting'] = true
end
opts.on("-s", "--backup-schedule ID", String, "Backup schedule type ID") do |val|
options[:backupSchedule] = val
end
opts.on("--clear-schedule", "Use this flag to clear default backup schedule") do |val|
params['clearDefaultSchedule'] = true
end
opts.on("-R", "--retention NUMBER", Integer, "Maximum number of successful backups to retain") do |val|
params['retentionCount'] = val.to_i
end
build_common_options(opts, options, [:json, :payload, :dry_run, :quiet, :remote])
opts. = "Update your backup settings."
end
optparse.parse!(args)
connect(options)
if args.count != 0
raise_command_error "wrong number of arguments, expected 0 and got (#{args.count}) #{args}\n#{optparse}"
return 1
end
begin
payload = parse_payload(options)
if !payload
payload = {'backupSettings' => params}
if !options[:backupSchedule].nil?
backup_schedule = @options_interface.options_for_source('executeSchedules', {})['data'].find do |it|
it['name'] == options[:backupSchedule] || it['value'] == options[:backupSchedule].to_i
end
if backup_schedule.nil?
print_red_alert "Backup schedule type not found for #{options[:backupSchedule]}"
return 1
end
payload['backupSettings']['defaultSchedule'] = {'id' => backup_schedule['value'].to_i}
end
if !options[:storageBucket].nil?
storage_bucket = find_storage_bucket_by_name_or_id(options[:storageBucket])
if storage_bucket.nil?
print_red_alert "Storage bucket not found for #{options[:storageBucket]}"
return 1
end
payload['backupSettings']['defaultStorageBucket'] = {'id' => storage_bucket['id']}
end
end
if payload['backupSettings'].empty?
print_green_success "Nothing to update"
exit 1
end
@backup_settings_interface.setopts(options)
if options[:dry_run]
print_dry_run @backup_settings_interface.dry.update(payload)
return
end
json_response = @backup_settings_interface.update(payload)
if options[:json]
puts as_json(json_response, options)
elsif !options[:quiet]
if json_response['success']
print_green_success "Updated log settings"
get([] + (options[:remote] ? ["-r",options[:remote]] : []))
else
print_red_alert "Error updating log settings: #{json_response['msg'] || json_response['errors']}"
end
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|