Class: NexosisApi::Client
- Inherits:
-
Object
- Object
- NexosisApi::Client
- Defined in:
- lib/nexosis_api/client.rb,
lib/nexosis_api/client/views.rb,
lib/nexosis_api/client/models.rb,
lib/nexosis_api/client/contest.rb,
lib/nexosis_api/client/imports.rb,
lib/nexosis_api/client/datasets.rb,
lib/nexosis_api/client/sessions.rb
Overview
class to operate on views endpoint in Nexosis API
Defined Under Namespace
Modules: Contest, Datasets, Imports, Models, Sessions, Views
Instance Method Summary collapse
-
#api_key(value) ⇒ String
Provide access to read or modify the api key.
-
#get_account_quotas ⇒ Hash
Gets the quota stats for the account.
-
#initialize(options = {}) ⇒ Client
constructor
A new instance of Client.
Methods included from Contest
#get_contest_champion, #get_contestant_results, #get_contestants, #get_selection_metrics, #get_session_contest
Methods included from Models
#get_model, #list_models, #predict, #remove_model, #remove_models
Methods included from Views
#create_view, #create_view_by_def, #get_view, #list_views, #remove_view
Methods included from Imports
#import_from_azure, #import_from_s3, #import_from_url, #list_imports, #retrieve_import
Methods included from Datasets
#create_dataset_csv, #create_dataset_json, #get_dataset, #get_dataset_csv, #list_datasets, #remove_dataset
Methods included from Sessions
#create_forecast_session, #create_impact_session, #create_model, #get_confusion_matrix, #get_session, #get_session_results, #list_sessions, #remove_session, #remove_sessions
Constructor Details
#initialize(options = {}) ⇒ Client
Returns a new instance of Client.
50 51 52 53 54 55 56 57 |
# File 'lib/nexosis_api/client.rb', line 50 def initialize( = {}) raise ArgumentError, 'api_key was not defined' unless [:api_key].nil? == false @api_key = [:api_key] self.class.base_uri [:base_uri] unless [:base_uri].nil? @headers = { 'api-key' => @api_key, 'Content-Type' => 'application/json', 'User-Agent' => 'Nexosis-Ruby-API-Client/1.2' } @options = { headers: @headers, format: :json } end |
Instance Method Details
#api_key(value) ⇒ String
Provide access to read or modify the api key
71 72 73 74 75 |
# File 'lib/nexosis_api/client.rb', line 71 def api_key(value) @api_key = value unless value.nil? @headers['api-key'] = @api_key @api_key end |
#get_account_quotas ⇒ Hash
Gets the quota stats for the account
62 63 64 65 66 |
# File 'lib/nexosis_api/client.rb', line 62 def get_account_quotas() session_url = '/sessions?page=0&pageSize=1' response = self.class.get(session_url, @options) response.headers.select { |k, _v| k.to_s.start_with? 'nexosis-account' } end |