Class: PlatformRest::Notebook
- Inherits:
-
Object
- Object
- PlatformRest::Notebook
- Defined in:
- lib/platform_rest/notebook.rb
Overview
Class containing all the actions for the Notebook Resource
Instance Method Summary collapse
-
#cancel_execution(params = {}) ⇒ Object
Marks a specific notebook execution for cancellation.
-
#delete(params = {}) ⇒ Object
Deletes a notebook.
-
#execute(params = {}) ⇒ Object
Triggers the execution of a notebook.
-
#get(params = {}) ⇒ Object
Retrieves information on a notebook.
-
#initialize(client) ⇒ Notebook
constructor
A new instance of Notebook.
-
#logs(params = {}) ⇒ Object
Retrieves information on notebook executions.
-
#notebook_minute_counts(params = {}) ⇒ Object
Returns notebook execution usage by day for the time range specified for this notebook.
-
#patch(params = {}) ⇒ Object
Updates information about a notebook.
-
#request_input_data_export(params = {}) ⇒ Object
Requests a combined zip file of the potential input data for a notebook execution.
Constructor Details
#initialize(client) ⇒ Notebook
Returns a new instance of Notebook.
30 31 32 |
# File 'lib/platform_rest/notebook.rb', line 30 def initialize(client) @client = client end |
Instance Method Details
#cancel_execution(params = {}) ⇒ Object
Marks a specific notebook execution for cancellation
Authentication: The client must be configured with a valid api access token to call this action. The token must include at least one of the following scopes: all.Application, all.Organization, all.User, notebook.*, or notebook.execute.
Parameters:
-
string applicationId - ID associated with the application
-
string notebookId - ID associated with the notebook
-
undefined executionId - The ID of the execution to cancel
-
string losantdomain - Domain scope of request (rarely needed)
-
boolean _actions - Return resource actions in response
-
boolean _links - Return resource link in response
-
boolean _embedded - Return embedded resources in response
Responses:
-
200 - If the execution was successfully marked for cancellation (api.losant.com/#/definitions/success)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if execution was not found (api.losant.com/#/definitions/error)
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/platform_rest/notebook.rb', line 57 def cancel_execution(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId) raise ArgumentError.new("notebookId is required") unless params.has_key?(:notebookId) raise ArgumentError.new("executionId is required") unless params.has_key?(:executionId) query_params[:executionId] = params[:executionId] if params.has_key?(:executionId) headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain) query_params[:_actions] = params[:_actions] if params.has_key?(:_actions) query_params[:_links] = params[:_links] if params.has_key?(:_links) query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded) path = "/applications/#{params[:applicationId]}/notebooks/#{params[:notebookId]}/cancelExecution" @client.request( method: :post, path: path, query: query_params, headers: headers, body: body) end |
#delete(params = {}) ⇒ Object
Deletes a notebook
Authentication: The client must be configured with a valid api access token to call this action. The token must include at least one of the following scopes: all.Application, all.Organization, all.User, notebook.*, or notebook.delete.
Parameters:
-
string applicationId - ID associated with the application
-
string notebookId - ID associated with the notebook
-
string losantdomain - Domain scope of request (rarely needed)
-
boolean _actions - Return resource actions in response
-
boolean _links - Return resource link in response
-
boolean _embedded - Return embedded resources in response
Responses:
-
200 - If notebook was successfully deleted (api.losant.com/#/definitions/success)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if notebook was not found (api.losant.com/#/definitions/error)
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/platform_rest/notebook.rb', line 105 def delete(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId) raise ArgumentError.new("notebookId is required") unless params.has_key?(:notebookId) headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain) query_params[:_actions] = params[:_actions] if params.has_key?(:_actions) query_params[:_links] = params[:_links] if params.has_key?(:_links) query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded) path = "/applications/#{params[:applicationId]}/notebooks/#{params[:notebookId]}" @client.request( method: :delete, path: path, query: query_params, headers: headers, body: body) end |
#execute(params = {}) ⇒ Object
Triggers the execution of a notebook
Authentication: The client must be configured with a valid api access token to call this action. The token must include at least one of the following scopes: all.Application, all.Organization, all.User, notebook.*, or notebook.execute.
Parameters:
-
string applicationId - ID associated with the application
-
string notebookId - ID associated with the notebook
-
hash executionOptions - The options for the execution (api.losant.com/#/definitions/notebookExecutionOptions)
-
string losantdomain - Domain scope of request (rarely needed)
-
boolean _actions - Return resource actions in response
-
boolean _links - Return resource link in response
-
boolean _embedded - Return embedded resources in response
Responses:
-
200 - If execution request was accepted and successfully queued (api.losant.com/#/definitions/successWithExecutionId)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if notebook was not found (api.losant.com/#/definitions/error)
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/platform_rest/notebook.rb', line 152 def execute(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId) raise ArgumentError.new("notebookId is required") unless params.has_key?(:notebookId) raise ArgumentError.new("executionOptions is required") unless params.has_key?(:executionOptions) body = params[:executionOptions] if params.has_key?(:executionOptions) headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain) query_params[:_actions] = params[:_actions] if params.has_key?(:_actions) query_params[:_links] = params[:_links] if params.has_key?(:_links) query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded) path = "/applications/#{params[:applicationId]}/notebooks/#{params[:notebookId]}/execute" @client.request( method: :post, path: path, query: query_params, headers: headers, body: body) end |
#get(params = {}) ⇒ Object
Retrieves information on a notebook
Authentication: The client must be configured with a valid api access token to call this action. The token must include at least one of the following scopes: all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, notebook.*, or notebook.get.
Parameters:
-
string applicationId - ID associated with the application
-
string notebookId - ID associated with the notebook
-
string losantdomain - Domain scope of request (rarely needed)
-
boolean _actions - Return resource actions in response
-
boolean _links - Return resource link in response
-
boolean _embedded - Return embedded resources in response
Responses:
-
200 - notebook information (api.losant.com/#/definitions/notebook)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if notebook was not found (api.losant.com/#/definitions/error)
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'lib/platform_rest/notebook.rb', line 200 def get(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId) raise ArgumentError.new("notebookId is required") unless params.has_key?(:notebookId) headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain) query_params[:_actions] = params[:_actions] if params.has_key?(:_actions) query_params[:_links] = params[:_links] if params.has_key?(:_links) query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded) path = "/applications/#{params[:applicationId]}/notebooks/#{params[:notebookId]}" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#logs(params = {}) ⇒ Object
Retrieves information on notebook executions
Authentication: The client must be configured with a valid api access token to call this action. The token must include at least one of the following scopes: all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, notebook.*, or notebook.logs.
Parameters:
-
string applicationId - ID associated with the application
-
string notebookId - ID associated with the notebook
-
string limit - Max log entries to return (ordered by time descending)
-
string since - Look for log entries since this time (ms since epoch)
-
string losantdomain - Domain scope of request (rarely needed)
-
boolean _actions - Return resource actions in response
-
boolean _links - Return resource link in response
-
boolean _embedded - Return embedded resources in response
Responses:
-
200 - notebook execution information (api.losant.com/#/definitions/notebookExecutionLogs)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if notebook was not found (api.losant.com/#/definitions/error)
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/platform_rest/notebook.rb', line 248 def logs(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId) raise ArgumentError.new("notebookId is required") unless params.has_key?(:notebookId) query_params[:limit] = params[:limit] if params.has_key?(:limit) query_params[:since] = params[:since] if params.has_key?(:since) headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain) query_params[:_actions] = params[:_actions] if params.has_key?(:_actions) query_params[:_links] = params[:_links] if params.has_key?(:_links) query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded) path = "/applications/#{params[:applicationId]}/notebooks/#{params[:notebookId]}/logs" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#notebook_minute_counts(params = {}) ⇒ Object
Returns notebook execution usage by day for the time range specified for this notebook
Authentication: The client must be configured with a valid api access token to call this action. The token must include at least one of the following scopes: all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, notebook.*, or notebook.notebookMinuteCounts.
Parameters:
-
string applicationId - ID associated with the application
-
string notebookId - ID associated with the notebook
-
string start - Start of range for notebook execution query (ms since epoch)
-
string end - End of range for notebook execution query (ms since epoch)
-
string losantdomain - Domain scope of request (rarely needed)
-
boolean _actions - Return resource actions in response
-
boolean _links - Return resource link in response
-
boolean _embedded - Return embedded resources in response
Responses:
-
200 - Notebook usage information (api.losant.com/#/definitions/notebookMinuteCounts)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if notebook was not found (api.losant.com/#/definitions/error)
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 |
# File 'lib/platform_rest/notebook.rb', line 298 def notebook_minute_counts(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId) raise ArgumentError.new("notebookId is required") unless params.has_key?(:notebookId) query_params[:start] = params[:start] if params.has_key?(:start) query_params[:end] = params[:end] if params.has_key?(:end) headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain) query_params[:_actions] = params[:_actions] if params.has_key?(:_actions) query_params[:_links] = params[:_links] if params.has_key?(:_links) query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded) path = "/applications/#{params[:applicationId]}/notebooks/#{params[:notebookId]}/notebookMinuteCounts" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#patch(params = {}) ⇒ Object
Updates information about a notebook
Authentication: The client must be configured with a valid api access token to call this action. The token must include at least one of the following scopes: all.Application, all.Organization, all.User, notebook.*, or notebook.patch.
Parameters:
-
string applicationId - ID associated with the application
-
string notebookId - ID associated with the notebook
-
hash notebook - Object containing new properties of the notebook (api.losant.com/#/definitions/notebookPatch)
-
string losantdomain - Domain scope of request (rarely needed)
-
boolean _actions - Return resource actions in response
-
boolean _links - Return resource link in response
-
boolean _embedded - Return embedded resources in response
Responses:
-
200 - Updated notebook information (api.losant.com/#/definitions/notebook)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if notebook was not found (api.losant.com/#/definitions/error)
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
# File 'lib/platform_rest/notebook.rb', line 347 def patch(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId) raise ArgumentError.new("notebookId is required") unless params.has_key?(:notebookId) raise ArgumentError.new("notebook is required") unless params.has_key?(:notebook) body = params[:notebook] if params.has_key?(:notebook) headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain) query_params[:_actions] = params[:_actions] if params.has_key?(:_actions) query_params[:_links] = params[:_links] if params.has_key?(:_links) query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded) path = "/applications/#{params[:applicationId]}/notebooks/#{params[:notebookId]}" @client.request( method: :patch, path: path, query: query_params, headers: headers, body: body) end |
#request_input_data_export(params = {}) ⇒ Object
Requests a combined zip file of the potential input data for a notebook execution
Authentication: The client must be configured with a valid api access token to call this action. The token must include at least one of the following scopes: all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, notebook.*, or notebook.requestInputDataExport.
Parameters:
-
string applicationId - ID associated with the application
-
string notebookId - ID associated with the notebook
-
hash exportOptions - The options for the export (api.losant.com/#/definitions/notebookDataExportOptions)
-
string losantdomain - Domain scope of request (rarely needed)
-
boolean _actions - Return resource actions in response
-
boolean _links - Return resource link in response
-
boolean _embedded - Return embedded resources in response
Responses:
-
202 - If export request was accepted and successfully queued (api.losant.com/#/definitions/jobEnqueuedResult)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if notebook was not found (api.losant.com/#/definitions/error)
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
# File 'lib/platform_rest/notebook.rb', line 396 def request_input_data_export(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("applicationId is required") unless params.has_key?(:applicationId) raise ArgumentError.new("notebookId is required") unless params.has_key?(:notebookId) raise ArgumentError.new("exportOptions is required") unless params.has_key?(:exportOptions) body = params[:exportOptions] if params.has_key?(:exportOptions) headers[:losantdomain] = params[:losantdomain] if params.has_key?(:losantdomain) query_params[:_actions] = params[:_actions] if params.has_key?(:_actions) query_params[:_links] = params[:_links] if params.has_key?(:_links) query_params[:_embedded] = params[:_embedded] if params.has_key?(:_embedded) path = "/applications/#{params[:applicationId]}/notebooks/#{params[:notebookId]}/requestInputDataExport" @client.request( method: :post, path: path, query: query_params, headers: headers, body: body) end |