Class: PlatformRest::ResourceJob
- Inherits:
-
Object
- Object
- PlatformRest::ResourceJob
- Defined in:
- lib/platform_rest/resource_job.rb
Overview
Class containing all the actions for the Resource Job Resource
Instance Method Summary collapse
-
#cancel_execution(params = {}) ⇒ Object
Marks a specific resource job execution for cancellation.
-
#delete(params = {}) ⇒ Object
Deletes a resource job.
-
#execute(params = {}) ⇒ Object
Queues the execution of a resource job.
-
#get(params = {}) ⇒ Object
Returns a resource job.
-
#initialize(client) ⇒ ResourceJob
constructor
A new instance of ResourceJob.
-
#logs(params = {}) ⇒ Object
Retrieves information on resource job executions.
-
#patch(params = {}) ⇒ Object
Update a resource job.
Constructor Details
#initialize(client) ⇒ ResourceJob
Returns a new instance of ResourceJob.
30 31 32 |
# File 'lib/platform_rest/resource_job.rb', line 30 def initialize(client) @client = client end |
Instance Method Details
#cancel_execution(params = {}) ⇒ Object
Marks a specific resource job 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, resourceJob.*, or resourceJob.cancelExecution.
Parameters:
-
string applicationId - ID associated with the application
-
string resourceJobId - ID associated with the resource job
-
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/resource_job.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("resourceJobId is required") unless params.has_key?(:resourceJobId) 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]}/resource-jobs/#{params[:resourceJobId]}/cancelExecution" @client.request( method: :post, path: path, query: query_params, headers: headers, body: body) end |
#delete(params = {}) ⇒ Object
Deletes a resource job
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, resourceJob.*, or resourceJob.delete.
Parameters:
-
string applicationId - ID associated with the application
-
string resourceJobId - ID associated with the resource job
-
string includeWorkflows - If the workflows that trigger from this resource job should also be deleted.
-
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 resource job was successfully deleted (api.losant.com/#/definitions/success)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if resource job was not found (api.losant.com/#/definitions/error)
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/platform_rest/resource_job.rb', line 106 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("resourceJobId is required") unless params.has_key?(:resourceJobId) query_params[:includeWorkflows] = params[:includeWorkflows] if params.has_key?(:includeWorkflows) 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]}/resource-jobs/#{params[:resourceJobId]}" @client.request( method: :delete, path: path, query: query_params, headers: headers, body: body) end |
#execute(params = {}) ⇒ Object
Queues the execution of a resource job
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, resourceJob.*, or resourceJob.execute.
Parameters:
-
string applicationId - ID associated with the application
-
string resourceJobId - ID associated with the resource job
-
hash executionOptions - The options for the execution (api.losant.com/#/definitions/resourceJobExecutionOptions)
-
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 job was successfully queued (api.losant.com/#/definitions/successWithExecutionId)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if resource job was not found (api.losant.com/#/definitions/error)
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/platform_rest/resource_job.rb', line 154 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("resourceJobId is required") unless params.has_key?(:resourceJobId) 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]}/resource-jobs/#{params[:resourceJobId]}/execute" @client.request( method: :post, path: path, query: query_params, headers: headers, body: body) end |
#get(params = {}) ⇒ Object
Returns a resource job
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, resourceJob.*, or resourceJob.get.
Parameters:
-
string applicationId - ID associated with the application
-
string resourceJobId - ID associated with the resource job
-
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 - A single resource job (api.losant.com/#/definitions/resourceJob)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if application was not found (api.losant.com/#/definitions/error)
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# File 'lib/platform_rest/resource_job.rb', line 202 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("resourceJobId is required") unless params.has_key?(:resourceJobId) 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]}/resource-jobs/#{params[:resourceJobId]}" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#logs(params = {}) ⇒ Object
Retrieves information on resource job 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, resourceJob.*, or resourceJob.logs.
Parameters:
-
string applicationId - ID associated with the application
-
string resourceJobId - ID associated with the resource job
-
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 - Resource job execution information (api.losant.com/#/definitions/resourceJobExecutionLogs)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if resource job was not found (api.losant.com/#/definitions/error)
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/platform_rest/resource_job.rb', line 250 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("resourceJobId is required") unless params.has_key?(:resourceJobId) 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]}/resource-jobs/#{params[:resourceJobId]}/logs" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#patch(params = {}) ⇒ Object
Update a resource job
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, resourceJob.*, or resourceJob.patch.
Parameters:
-
string applicationId - ID associated with the application
-
string resourceJobId - ID associated with the resource job
-
hash resourceJob - The new resource job configuration (api.losant.com/#/definitions/resourceJobPatch)
-
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:
-
201 - Successfully updated resource job (api.losant.com/#/definitions/resourceJob)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if resource job was not found (api.losant.com/#/definitions/error)
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
# File 'lib/platform_rest/resource_job.rb', line 299 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("resourceJobId is required") unless params.has_key?(:resourceJobId) raise ArgumentError.new("resourceJob is required") unless params.has_key?(:resourceJob) body = params[:resourceJob] if params.has_key?(:resourceJob) 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]}/resource-jobs/#{params[:resourceJobId]}" @client.request( method: :patch, path: path, query: query_params, headers: headers, body: body) end |