Class: Chef::Knife::OciCompartmentList

Inherits:
Chef::Knife show all
Includes:
OciCommonOptions, OciHelper
Defined in:
lib/chef/knife/oci_compartment_list.rb

Overview

List OCI compartments

Instance Method Summary collapse

Methods included from OciCommonOptions

included

Methods included from OciHelper

#_non_summary_list, #_summary_list, #bold, #check_can_access_instance, #compartment_id, #compute_client, #config_file_location, #config_file_profile, #confirm, #display_list_from_array, #error_and_exit, #get_display_results, #identity_client, #network_client, #next_page_token, #oci_config, #response_to_list, #validate_required_params, #warn_if_page_is_truncated

Instance Method Details

#runObject



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/chef/knife/oci_compartment_list.rb', line 24

def run
  options = {}
  options[:limit] = config[:limit] if config[:limit]

  columns = ['Display Name', 'ID']

  list_for_display = config[:format] == 'summary' ? bold(columns) : []
  list_data, last_response = get_display_results(options) do |client_options|
    response = identity_client.list_compartments(oci_config.tenancy, client_options)

    items = response_to_list(response) do |item|
      [item.name, item.id]
    end
    [response, items]
  end
  list_for_display += list_data

  display_list_from_array(list_for_display, columns.length)
  warn_if_page_is_truncated(last_response)
end