Class: ESIClient::SovereigntyApi
- Inherits:
-
Object
- Object
- ESIClient::SovereigntyApi
- Defined in:
- lib/esi_client/api/sovereignty_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_sovereignty_campaigns(opts = {}) ⇒ Array<GetSovereigntyCampaigns200Ok>
List sovereignty campaigns Shows sovereignty data for campaigns.
-
#get_sovereignty_campaigns_with_http_info(opts = {}) ⇒ Array<(Array<GetSovereigntyCampaigns200Ok>, Fixnum, Hash)>
List sovereignty campaigns Shows sovereignty data for campaigns.
-
#get_sovereignty_map(opts = {}) ⇒ Array<GetSovereigntyMap200Ok>
List sovereignty of systems Shows sovereignty information for solar systems — This route is cached for up to 3600 seconds.
-
#get_sovereignty_map_with_http_info(opts = {}) ⇒ Array<(Array<GetSovereigntyMap200Ok>, Fixnum, Hash)>
List sovereignty of systems Shows sovereignty information for solar systems — This route is cached for up to 3600 seconds.
-
#get_sovereignty_structures(opts = {}) ⇒ Array<GetSovereigntyStructures200Ok>
List sovereignty structures Shows sovereignty data for structures.
-
#get_sovereignty_structures_with_http_info(opts = {}) ⇒ Array<(Array<GetSovereigntyStructures200Ok>, Fixnum, Hash)>
List sovereignty structures Shows sovereignty data for structures.
-
#initialize(api_client = ApiClient.default) ⇒ SovereigntyApi
constructor
A new instance of SovereigntyApi.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ SovereigntyApi
Returns a new instance of SovereigntyApi.
19 20 21 |
# File 'lib/esi_client/api/sovereignty_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/esi_client/api/sovereignty_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#get_sovereignty_campaigns(opts = {}) ⇒ Array<GetSovereigntyCampaigns200Ok>
List sovereignty campaigns Shows sovereignty data for campaigns. — This route is cached for up to 5 seconds
29 30 31 32 |
# File 'lib/esi_client/api/sovereignty_api.rb', line 29 def get_sovereignty_campaigns(opts = {}) data, _status_code, _headers = get_sovereignty_campaigns_with_http_info(opts) data end |
#get_sovereignty_campaigns_with_http_info(opts = {}) ⇒ Array<(Array<GetSovereigntyCampaigns200Ok>, Fixnum, Hash)>
List sovereignty campaigns Shows sovereignty data for campaigns. — This route is cached for up to 5 seconds
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 72 73 74 75 76 77 78 79 |
# File 'lib/esi_client/api/sovereignty_api.rb', line 41 def get_sovereignty_campaigns_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SovereigntyApi.get_sovereignty_campaigns ...' end if @api_client.config.client_side_validation && opts[:'datasource'] && !['tranquility', 'singularity'].include?(opts[:'datasource']) fail ArgumentError, 'invalid value for "datasource", must be one of tranquility, singularity' end # resource path local_var_path = '/v1/sovereignty/campaigns/' # query parameters query_params = {} query_params[:'datasource'] = opts[:'datasource'] if !opts[:'datasource'].nil? query_params[:'user_agent'] = opts[:'user_agent'] if !opts[:'user_agent'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'X-User-Agent'] = opts[:'x_user_agent'] if !opts[:'x_user_agent'].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<GetSovereigntyCampaigns200Ok>') if @api_client.config.debugging @api_client.config.logger.debug "API called: SovereigntyApi#get_sovereignty_campaigns\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_sovereignty_map(opts = {}) ⇒ Array<GetSovereigntyMap200Ok>
List sovereignty of systems Shows sovereignty information for solar systems — This route is cached for up to 3600 seconds
87 88 89 90 |
# File 'lib/esi_client/api/sovereignty_api.rb', line 87 def get_sovereignty_map(opts = {}) data, _status_code, _headers = get_sovereignty_map_with_http_info(opts) data end |
#get_sovereignty_map_with_http_info(opts = {}) ⇒ Array<(Array<GetSovereigntyMap200Ok>, Fixnum, Hash)>
List sovereignty of systems Shows sovereignty information for solar systems — This route is cached for up to 3600 seconds
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 |
# File 'lib/esi_client/api/sovereignty_api.rb', line 99 def get_sovereignty_map_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SovereigntyApi.get_sovereignty_map ...' end if @api_client.config.client_side_validation && opts[:'datasource'] && !['tranquility', 'singularity'].include?(opts[:'datasource']) fail ArgumentError, 'invalid value for "datasource", must be one of tranquility, singularity' end # resource path local_var_path = '/v1/sovereignty/map/' # query parameters query_params = {} query_params[:'datasource'] = opts[:'datasource'] if !opts[:'datasource'].nil? query_params[:'user_agent'] = opts[:'user_agent'] if !opts[:'user_agent'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'X-User-Agent'] = opts[:'x_user_agent'] if !opts[:'x_user_agent'].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<GetSovereigntyMap200Ok>') if @api_client.config.debugging @api_client.config.logger.debug "API called: SovereigntyApi#get_sovereignty_map\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_sovereignty_structures(opts = {}) ⇒ Array<GetSovereigntyStructures200Ok>
List sovereignty structures Shows sovereignty data for structures. — This route is cached for up to 120 seconds
145 146 147 148 |
# File 'lib/esi_client/api/sovereignty_api.rb', line 145 def get_sovereignty_structures(opts = {}) data, _status_code, _headers = get_sovereignty_structures_with_http_info(opts) data end |
#get_sovereignty_structures_with_http_info(opts = {}) ⇒ Array<(Array<GetSovereigntyStructures200Ok>, Fixnum, Hash)>
List sovereignty structures Shows sovereignty data for structures. — This route is cached for up to 120 seconds
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/esi_client/api/sovereignty_api.rb', line 157 def get_sovereignty_structures_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SovereigntyApi.get_sovereignty_structures ...' end if @api_client.config.client_side_validation && opts[:'datasource'] && !['tranquility', 'singularity'].include?(opts[:'datasource']) fail ArgumentError, 'invalid value for "datasource", must be one of tranquility, singularity' end # resource path local_var_path = '/v1/sovereignty/structures/' # query parameters query_params = {} query_params[:'datasource'] = opts[:'datasource'] if !opts[:'datasource'].nil? query_params[:'user_agent'] = opts[:'user_agent'] if !opts[:'user_agent'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) header_params[:'X-User-Agent'] = opts[:'x_user_agent'] if !opts[:'x_user_agent'].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<GetSovereigntyStructures200Ok>') if @api_client.config.debugging @api_client.config.logger.debug "API called: SovereigntyApi#get_sovereignty_structures\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |