Class: Morpheus::Cli::LibrarySpecTemplatesCommand

Inherits:
Object
  • Object
show all
Includes:
CliCommand, LibraryHelper
Defined in:
lib/morpheus/cli/library_spec_templates_command.rb

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from LibraryHelper

#api_client, #find_container_type_by_id, #find_container_type_by_name, #find_container_type_by_name_or_id, #find_instance_type_by_id, #find_instance_type_by_name, #find_instance_type_by_name_or_id, #find_option_type_by_id, #find_option_type_by_name, #find_option_type_by_name_or_id, #find_option_type_list_by_id, #find_option_type_list_by_name, #find_option_type_list_by_name_or_id, #find_spec_template_by_id, #find_spec_template_by_name, #find_spec_template_by_name_or_id, #find_spec_template_type_by_id, #find_spec_template_type_by_name_or_code, #find_spec_template_type_by_name_or_code_id, #format_container_type_technology, #format_instance_type_technology, #get_all_spec_template_types, included, #load_balance_protocols_dropdown, #print_container_types_table, #print_instance_types_table, #print_resource_specs_table, #prompt_exposed_ports, #prompt_for_container_types, #prompt_for_option_types, #prompt_for_spec_templates

Methods included from CliCommand

#apply_options, #build_common_options, #build_option_type_options, #build_standard_add_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, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #full_command_usage, #get_subcommand_description, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_bytes_param, #parse_id_list, #parse_list_options, #parse_list_subtitles, #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

#_get(id, options) ⇒ Object



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
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 94

def _get(id, options)

  begin
    resource_spec = find_spec_template_by_name_or_id(id)
    if resource_spec.nil?
      return 1
    end
    @spec_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @spec_templates_interface.dry.get(resource_spec['id'])
      return
    end
    json_response = @spec_templates_interface.get(resource_spec['id'])
    resource_spec = json_response['specTemplate']
    instances = json_response['instances'] || []
    servers = json_response['servers'] || []
    if options[:json]
      puts as_json(json_response, options, 'specTemplate')
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options, 'specTemplate')
      return 0
    elsif options[:csv]
      puts records_as_csv([json_response['specTemplate']], options)
      return 0
    end

    print_h1 "Spec Template Details"
    print cyan
    description_cols = {
      "ID" => lambda {|it| it['id'] },
      "Name" => lambda {|it| it['name'] },
      "Type" => lambda {|it| it['type']['name'] rescue '' },
      "Source" => lambda {|it| it['file']['sourceType'] rescue '' },
      #"Owner" => lambda {|it| it['account'] ? it['account']['name'] : '' },
      "Created" => lambda {|it| format_local_dt(it['dateCreated']) },
      "Created By" => lambda {|it| it['createdBy'] },
      "Updated" => lambda {|it| format_local_dt(it['lastUpdated']) },
      "Updated By" => lambda {|it| it['updatedBy'] },
      # "Created" => lambda {|it| format_local_dt(it['dateCreated']) + " by #{it['createdBy']}" },
      # "Updated" => lambda {|it| format_local_dt(it['lastUpdated']) + " by #{it['updatedBy'] || it['createdBy']}" },
    }
    template_type = resource_spec['type']['code'] rescue nil
    if template_type.to_s.downcase == 'cloudformation'
      cloudformation_description_cols = {
        "CAPABILITY_IAM" => lambda {|it| format_boolean(it['config']['cloudformation']['IAM']) rescue '' },
        "CAPABILITY_NAMED_IAM" => lambda {|it| format_boolean(it['config']['cloudformation']['CAPABILITY_NAMED_IAM']) rescue '' },
        "CAPABILITY_AUTO_EXPAND" => lambda {|it| format_boolean(it['config']['cloudformation']['CAPABILITY_AUTO_EXPAND']) rescue '' },
      }
      description_cols.merge!(cloudformation_description_cols)
    end
    print_description_list(description_cols, resource_spec)

    unless options[:no_content]
      file_content = resource_spec['file']
      print_h2 "Content"
      if file_content
        if file_content['sourceType'] == 'local'
          puts file_content['content']
        elsif file_content['sourceType'] == 'url'
          puts "URL: #{file_content['contentPath']}"
        elsif file_content['sourceType'] == 'repository'
          puts "Repository: #{file_content['repository']['name'] rescue 'n/a'}"
          puts "Path: #{file_content['contentPath']}"
          if file_content['contentRef']
            puts "Ref: #{file_content['contentRef']}"
          end
        else
          puts "Source: #{file_content['sourceType']}"
          puts "Path: #{file_content['contentPath']}"
        end
      else
        print cyan,"No file content.",reset,"\n"
      end
    end

    print reset,"\n"
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#add(args) ⇒ Object



178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 178

def add(args)
  options = {}
  params = {}
  file_params = {}
  template_type = nil
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    opts.on('--name VALUE', String, "Name") do |val|
      params['name'] = val
    end
    opts.on('-t', '--type TYPE', "Spec Template Type. i.e. arm, cloudFormation, helm, kubernetes, oneview, terraform, ucs") do |val|
      template_type = val.to_s
    end
    opts.on('--source VALUE', String, "Source Type. local, repository, url") do |val|
      file_params['sourceType'] = val
    end
    opts.on('--content TEXT', String, "Contents of the template. This implies source is local.") do |val|
      file_params['sourceType'] = 'local' if file_params['sourceType'].nil?
      file_params['content'] = val
    end
    opts.on('--file FILE', "File containing the template. This can be used instead of --content" ) do |filename|
      file_params['sourceType'] = 'local' if file_params['sourceType'].nil?
      full_filename = File.expand_path(filename)
      if File.exists?(full_filename)
        file_params['content'] = File.read(full_filename)
      else
        print_red_alert "File not found: #{full_filename}"
        exit 1
      end
      # use the filename as the name by default.
      if !params['name']
        params['name'] = File.basename(full_filename)
      end
    end
    opts.on('--url VALUE', String, "URL, for use when source is url") do |val|
      file_params['contentPath'] = val
    end
    opts.on('--content-path VALUE', String, "Content Path, for use when source is repository or url") do |val|
      file_params['contentPath'] = val
    end
    opts.on('--content-ref VALUE', String, "Content Ref (Version Ref), for use when source is repository") do |val|
      file_params['contentRef'] = val
    end
    # opts.on('--enabled [on|off]', String, "Can be used to disable it") do |val|
    #   options['enabled'] = !(val.to_s == 'off' || val.to_s == 'false')
    # end
    build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote, :quiet])
    opts.footer = "Create a new spec template."
  end
  optparse.parse!(args)
  # support [name] as first argument
  if args[0]
    params['name'] = args[0]
  end
  connect(options)
  begin
    # construct payload
    payload = nil
    passed_options = options[:options].reject {|k,v| k.is_a?(Symbol) }
    if options[:payload]
      payload = options[:payload]
      # merge -O options into normally parsed options
      params['file'] = file_params unless file_params.empty?
      unless params.empty?
        payload.deep_merge!({'specTemplate' => params })
      end
    else
      # merge -O options into normally parsed options
      params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
      # prompt
      if params['name'].nil?
        params['name'] = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'name', 'fieldLabel' => 'Name', 'type' => 'text', 'required' => true}], options[:options], @api_client,{})['name']
      end
      if template_type.nil?
        # use code instead of id
        #template_type = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'type', 'fieldLabel' => 'Type', 'type' => 'select', 'optionSource' => 'resourceSpecType', 'required' => true}], options[:options], @api_client,{})['type']
        #params['type'] = {'id' => template_type}
        spec_type_dropdown = get_all_spec_template_types.collect { |it| {'value' => it['code'], 'name' => it['name']} }
        template_type = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'type', 'fieldLabel' => 'Type', 'type' => 'select', 'selectOptions' => spec_type_dropdown, 'required' => true}], options[:options], @api_client,{})['type']
        params['type'] = {'code' => template_type}
      else
        # gotta look up id
        template_type_obj = find_spec_template_type_by_name_or_code_id(template_type)
        return 1 if template_type_obj.nil?
        template_type = template_type_obj['code']
        params['type'] = {'code' => template_type}
      end
      
      # file content
      options[:options]['file'] ||= {}
      options[:options]['file'].merge!(file_params)
      file_params = Morpheus::Cli::OptionTypes.file_content_prompt({'fieldName' => 'file', 'fieldLabel' => 'File Content', 'type' => 'file-content', 'required' => true}, options[:options], @api_client, {})

      # if source_type.nil?
      #   source_type = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'source', 'fieldLabel' => 'Source', 'type' => 'select', 'optionSource' => 'fileContentSource', 'required' => true, 'defaultValue' => 'local'}], options[:options], @api_client,{})['source']
      #   file_params['sourceType'] = source_type
      # end
      # # source type options
      # if source_type == "local"
      #   # prompt for content
      #   if file_params['content'].nil?
      #     file_params['content'] = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'content', 'type' => 'code-editor', 'fieldLabel' => 'Content', 'required' => true, 'description' => 'The file content'}], options[:options])['content']
      #   end
      # elsif source_type == "url"
      #   if file_params['contentPath'].nil?
      #     file_params['contentPath'] = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'url', 'fieldLabel' => 'URL', 'type' => 'text', 'required' => true}], options[:options], @api_client,{})['url']
      #   end
      # elsif source_type == "repository"
      #   if file_params['repository'].nil?
      #     repository_id = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'repositoryId', 'fieldLabel' => 'Repository', 'type' => 'select', 'optionSource' => 'codeRepositories', 'required' => true}], options[:options], @api_client,{})['repositoryId']
      #     file_params['repository'] = {'id' => repository_id}
      #   end
      #   if file_params['contentPath'].nil?
      #     file_params['contentPath'] = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'path', 'fieldLabel' => 'File Path', 'type' => 'text', 'required' => true}], options[:options], @api_client,{})['path']
      #   end
      #   if file_params['contentRef'].nil?
      #     file_params['contentRef'] = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'ref', 'fieldLabel' => 'Version Ref', 'type' => 'text'}], options[:options], @api_client,{})['ref']
      #   end
      # end
      # config
      if template_type.to_s.downcase == "cloudformation"
        # JD: the field names the UI uses are inconsistent, should fix in api...
        cloud_formation_option_types = [
          {'fieldContext' => 'config', 'fieldName' => 'cloudformation.IAM', 'fieldLabel' => 'CAPABILITY_IAM', 'type' => 'checkbox'},
          {'fieldContext' => 'config', 'fieldName' => 'cloudformation.CAPABILITY_NAMED_IAM', 'fieldLabel' => 'CAPABILITY_NAMED_IAM', 'type' => 'checkbox'},
          {'fieldContext' => 'config', 'fieldName' => 'cloudformation.CAPABILITY_AUTO_EXPAND', 'fieldLabel' => 'CAPABILITY_AUTO_EXPAND', 'type' => 'checkbox'}
        ]
        v_prompt = Morpheus::Cli::OptionTypes.prompt(cloud_formation_option_types, options[:options], @api_client,{})
        params.deep_merge!(v_prompt)
      end
      params['file'] = file_params
      payload = {'specTemplate' => params}
    end
    @spec_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @spec_templates_interface.dry.create(payload)
      return
    end
    json_response = @spec_templates_interface.create(payload)
    if options[:json]
      puts as_json(json_response, options)
    elsif !options[:quiet]
      resource_spec = json_response['specTemplate']
      print_green_success "Added spec template #{resource_spec['name']}"
      _get(resource_spec['id'], {})
    end
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#connect(opts) ⇒ Object



10
11
12
13
14
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 10

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @spec_templates_interface = @api_client.library_spec_templates
  @spec_template_types_interface = @api_client.library_spec_template_types
end

#get(args) ⇒ Object



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 73

def get(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    opts.on('--no-content', "Do not display content." ) do
      options[:no_content] = true
    end
    build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    return 1
  end
  connect(options)
  id_list = parse_id_list(args)
  return run_command_for_each_arg(id_list) do |arg|
    _get(arg, options)
  end
end

#handle(args) ⇒ Object



16
17
18
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 16

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



20
21
22
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
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 20

def list(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "List spec templates."
  end
  optparse.parse!(args)
  connect(options)
  if args.count > 0
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 0 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  begin
    # construct payload
    params.merge!(parse_list_options(options))
    @spec_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @spec_templates_interface.dry.list(params)
      return
    end
    # do it
    json_response = @spec_templates_interface.list(params)
    render_result = render_with_format(json_response, options, 'specTemplates')
    return 0 if render_result
    resource_specs = json_response['specTemplates']
    title = "Morpheus Library - Spec Templates"
    subtitles = []
    subtitles += parse_list_subtitles(options)
    print_h1 title, subtitles
    if resource_specs.empty?
      print cyan,"No spec templates found.",reset,"\n"
    else
      # print_resource_specs_table(resource_specs, options)
      columns = [
        {"ID" => lambda {|resource_spec| resource_spec['id'] } },
        {"NAME" => lambda {|resource_spec| resource_spec['name'] } },
        {"TYPE" => lambda {|resource_spec| resource_spec['type']['name'] rescue '' } },
        {"SOURCE" => lambda {|resource_spec| resource_spec['file']['sourceType'] rescue '' } },
        {"CREATED" => lambda {|resource_spec| format_local_dt(resource_spec['dateCreated']) } },
      ]
      print as_pretty_table(resource_specs, columns, options)
      print_results_pagination(json_response)
    end
    print reset,"\n"
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#list_types(args) ⇒ Object



478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 478

def list_types(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "List spec template types."
  end
  optparse.parse!(args)
  connect(options)
  begin
    params = {}
    params.merge!(parse_list_options(options))
    @spec_template_types_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @spec_template_types_interface.dry.list(params)
      return
    end
    json_response = @spec_template_types_interface.list(params)
    
    render_result = render_with_format(json_response, options, 'specTemplateTypes')
    return 0 if render_result

    spec_template_types = json_response['specTemplateTypes']

    title = "Morpheus Spec Template Types"
    subtitles = []
    subtitles += parse_list_subtitles(options)
    print_h1 title, subtitles
    if spec_template_types.empty?
      print cyan,"No spec template types found.",reset,"\n"
    else
      rows = spec_template_types.collect do |spec_template_type|
        {
          id: spec_template_type['id'],
          code: spec_template_type['code'],
          name: spec_template_type['name']
        }
      end
      columns = [:id, :name, :code]
      print cyan
      print as_pretty_table(rows, columns, options)
      print reset
      print_results_pagination(json_response)
    end
    print reset,"\n"
    return 0

  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#remove(args) ⇒ Object



430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 430

def remove(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    build_common_options(opts, options, [:json, :dry_run, :quiet, :auto_confirm])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    return 127
  end
  connect(options)

  begin
    resource_spec = find_spec_template_by_name_or_id(args[0])
    if resource_spec.nil?
      return 1
    end

    unless options[:yes] || ::Morpheus::Cli::OptionTypes::confirm("Are you sure you would like to delete spec template '#{resource_spec['name']}'?", options)
      return false
    end

    # payload = {
    #   'specTemplate' => {id: resource_spec["id"]}
    # }
    # payload['specTemplate'].merge!(resource_spec)
    payload = params
    @spec_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @spec_templates_interface.dry.destroy(resource_spec["id"])
      return
    end

    json_response = @spec_templates_interface.destroy(resource_spec["id"])
    if options[:json]
      puts as_json(json_response, options)
    elsif !options[:quiet]
      print_green_success "Deleted spec template #{resource_spec['name']}"
    end
    return 0, nil
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#update(args) ⇒ Object



331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
# File 'lib/morpheus/cli/library_spec_templates_command.rb', line 331

def update(args)
  options = {}
  params = {}
  file_params = {}
  template_type = nil
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    opts.on('--name VALUE', String, "Name") do |val|
      params['name'] = val
    end
    opts.on('-t', '--type TYPE', "Spec Template Type. kubernetes, helm, terraform, cloudFormation") do |val|
      template_type = val.to_s
    end
    opts.on('--source VALUE', String, "Source Type. local, repository, url") do |val|
      file_params['sourceType'] = val
    end
    opts.on('--content TEXT', String, "Contents of the template. This implies source is local.") do |val|
      # file_params['sourceType'] = 'local' if file_params['sourceType'].nil?
      file_params['content'] = val
    end
    opts.on('--file FILE', "File containing the template. This can be used instead of --content" ) do |filename|
      file_params['sourceType'] = 'local' if file_params['sourceType'].nil?
      full_filename = File.expand_path(filename)
      if File.exists?(full_filename)
        file_params['content'] = File.read(full_filename)
      else
        print_red_alert "File not found: #{full_filename}"
        exit 1
      end
    end
    opts.on('--url VALUE', String, "File URL, for use when source is url") do |val|
      file_params['contentPath'] = val
    end
    opts.on('--content-path VALUE', String, "Content Path, for use when source is repository or url") do |val|
      file_params['contentPath'] = val
    end
    opts.on('--content-ref VALUE', String, "Content Ref (Version Ref), for use when source is repository") do |val|
      file_params['contentRef'] = val
    end
    build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote, :quiet])
    opts.footer = "Update a spec template." + "\n" +
                  "[name] is required. This is the name or id of a spec template."
  end
  optparse.parse!(args)
  if args.count != 1
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 1 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  connect(options)
  begin
    resource_spec = find_spec_template_by_name_or_id(args[0])
    if resource_spec.nil?
      return 1
    end
    # construct payload
    payload = nil
    if options[:payload]
      payload = options[:payload]
    else
      # merge -O options into normally parsed options
      params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
      if params.empty? && file_params.empty?
        print_red_alert "Specify at least one option to update"
        puts optparse
        return 1
      end
      # massage special params
      if !template_type.nil?
        # gotta look up id
        template_type_obj = find_spec_template_type_by_name_or_code_id(template_type)
        return 1 if template_type_obj.nil?
        template_type = template_type_obj['code']
        params['type'] = {'code' => template_type}
      end
      if !file_params.empty?
        params['file'] = file_params
      end
      payload = {'specTemplate' => params}
    end
    @spec_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @spec_templates_interface.dry.update(resource_spec["id"], payload)
      return
    end
    json_response = @spec_templates_interface.update(resource_spec["id"], payload)
    if options[:json]
      puts as_json(json_response, options)
    elsif !options[:quiet]
      print_green_success "Updated spec template #{resource_spec['name']}"
      _get(resource_spec['id'], {})
    end
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end