=begin #LaunchDarkly REST API #Build custom integrations with the LaunchDarkly REST API OpenAPI spec version: 2.0.3 Contact: support@launchdarkly.com Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.3.1 =end require "uri" module LaunchDarklyApi class RootApi attr_accessor :api_client def initialize(api_client = ApiClient.default) @api_client = api_client end # # You can issue a GET request to the root resource to find all of the resource categories supported by the API. # @param [Hash] opts the optional parameters # @return [Links] def get_root(opts = {}) data, _status_code, _headers = get_root_with_http_info(opts) return data end # # You can issue a GET request to the root resource to find all of the resource categories supported by the API. # @param [Hash] opts the optional parameters # @return [Array<(Links, Fixnum, Hash)>] Links data, response status code and response headers def get_root_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: RootApi.get_root ..." end # resource path local_var_path = "/" # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['Token'] 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 => 'Links') if @api_client.config.debugging @api_client.config.logger.debug "API called: RootApi#get_root\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end end end