Class: Chef::Knife::OciAdList

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

Overview

List availability domains

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



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/chef/knife/oci_ad_list.rb', line 20

def run
  options = {}
  columns = []

  list_for_display, last_response = get_display_results(options) do |client_options|
    response = identity_client.list_availability_domains(compartment_id, client_options)

    items = response_to_list(response) do |item|
      [item.name]
    end
    [response, items]
  end

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