class SwaggerClient::NetworkControllerApi
Attributes
Public Class Methods
# File lib/swagger_client/api/network_controller_api.rb, line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end
Public Instance Methods
Retrieve a list of networks for a given cloud provider @param cloud_provider cloudProvider @param [Hash] opts the optional parameters @option opts [String] :x_rate_limit_app X-RateLimit-App @return [Array<Object>]
# File lib/swagger_client/api/network_controller_api.rb, line 27 def all_by_cloud_provider_using_get(cloud_provider, opts = {}) data, _status_code, _headers = all_by_cloud_provider_using_get_with_http_info(cloud_provider, opts) data end
Retrieve a list of networks for a given cloud provider @param cloud_provider cloudProvider @param [Hash] opts the optional parameters @option opts [String] :x_rate_limit_app X-RateLimit-App @return [Array<(Array<Object>, Fixnum, Hash)>] Array<Object> data, response status code and response headers
# File lib/swagger_client/api/network_controller_api.rb, line 37 def all_by_cloud_provider_using_get_with_http_info(cloud_provider, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: NetworkControllerApi.all_by_cloud_provider_using_get ...' end # verify the required parameter 'cloud_provider' is set if @api_client.config.client_side_validation && cloud_provider.nil? fail ArgumentError, "Missing the required parameter 'cloud_provider' when calling NetworkControllerApi.all_by_cloud_provider_using_get" end # resource path local_var_path = '/networks/{cloudProvider}'.sub('{' + 'cloudProvider' + '}', cloud_provider.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['*/*']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) header_params[:'X-RateLimit-App'] = opts[:'x_rate_limit_app'] if !opts[:'x_rate_limit_app'].nil? # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Array<Object>') if @api_client.config.debugging @api_client.config.logger.debug "API called: NetworkControllerApi#all_by_cloud_provider_using_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
Retrieve a list of networks, grouped by cloud provider @param [Hash] opts the optional parameters @option opts [String] :x_rate_limit_app X-RateLimit-App @return [Hash<String, Object>]
# File lib/swagger_client/api/network_controller_api.rb, line 81 def all_using_get2(opts = {}) data, _status_code, _headers = all_using_get2_with_http_info(opts) data end
Retrieve a list of networks, grouped by cloud provider @param [Hash] opts the optional parameters @option opts [String] :x_rate_limit_app X-RateLimit-App @return [Array<(Hash<String, Object>, Fixnum, Hash)>] Hash<String, Object> data, response status code and response headers
# File lib/swagger_client/api/network_controller_api.rb, line 90 def all_using_get2_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: NetworkControllerApi.all_using_get2 ...' end # resource path local_var_path = '/networks' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['*/*']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) header_params[:'X-RateLimit-App'] = opts[:'x_rate_limit_app'] if !opts[:'x_rate_limit_app'].nil? # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Hash<String, Object>') if @api_client.config.debugging @api_client.config.logger.debug "API called: NetworkControllerApi#all_using_get2\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end