Class: PlatformRest::Flow
- Inherits:
-
Object
- Object
- PlatformRest::Flow
- Defined in:
- lib/platform_rest/flow.rb
Overview
Class containing all the actions for the Flow Resource
Instance Method Summary collapse
-
#clear_storage_entries(params = {}) ⇒ Object
Clear all storage entries.
-
#delete(params = {}) ⇒ Object
Deletes a flow.
-
#errors(params = {}) ⇒ Object
Get information about errors that occurred during runs of this workflow.
-
#get(params = {}) ⇒ Object
Retrieves information on a flow.
-
#get_log_entries(params = {}) ⇒ Object
Retrieve the recent log entries about runs of this workflow.
-
#get_storage_entries(params = {}) ⇒ Object
Gets the current values in persistent storage.
-
#get_storage_entries_metadata(params = {}) ⇒ Object
Gets metadata about storage for this flow.
-
#initialize(client) ⇒ Flow
constructor
A new instance of Flow.
-
#patch(params = {}) ⇒ Object
Updates information about a flow.
-
#press_virtual_button(params = {}) ⇒ Object
Presses the specified virtual button on the flow.
-
#set_storage_entry(params = {}) ⇒ Object
Sets a storage value.
-
#stats(params = {}) ⇒ Object
Get statistics about workflow runs for this workflow.
Constructor Details
#initialize(client) ⇒ Flow
Returns a new instance of Flow.
30 31 32 |
# File 'lib/platform_rest/flow.rb', line 30 def initialize(client) @client = client end |
Instance Method Details
#clear_storage_entries(params = {}) ⇒ Object
Clear all storage entries
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, flow.*, or flow.clearStorageEntries.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
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 - The current storage entries (api.losant.com/#/definitions/flowStorageEntries)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/platform_rest/flow.rb', line 56 def clear_storage_entries(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("flowId is required") unless params.has_key?(:flowId) 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]}/flows/#{params[:flowId]}/storage" @client.request( method: :delete, path: path, query: query_params, headers: headers, body: body) end |
#delete(params = {}) ⇒ Object
Deletes a flow
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, flow.*, or flow.delete.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
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 flow was successfully deleted (api.losant.com/#/definitions/success)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/platform_rest/flow.rb', line 102 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("flowId is required") unless params.has_key?(:flowId) 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]}/flows/#{params[:flowId]}" @client.request( method: :delete, path: path, query: query_params, headers: headers, body: body) end |
#errors(params = {}) ⇒ Object
Get information about errors that occurred during runs of this workflow
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, flow.*, or flow.errors.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
string duration - Duration of time range in milliseconds
-
string end - End of time range in milliseconds since epoch
-
string limit - Maximum number of errors to return
-
string sortDirection - Direction to sort the results by. Accepted values are: asc, desc
-
string flowVersion - Flow version name or ID. When not included, will be errors for all versions. Pass develop for just the develop version.
-
string deviceId - For edge or embedded workflows, the Device ID for which to return workflow errors. When not included, will be errors for all device IDs.
-
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 - Workflow error information (api.losant.com/#/definitions/flowErrors)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow 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 179 180 181 182 |
# File 'lib/platform_rest/flow.rb', line 154 def errors(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("flowId is required") unless params.has_key?(:flowId) query_params[:duration] = params[:duration] if params.has_key?(:duration) query_params[:end] = params[:end] if params.has_key?(:end) query_params[:limit] = params[:limit] if params.has_key?(:limit) query_params[:sortDirection] = params[:sortDirection] if params.has_key?(:sortDirection) query_params[:flowVersion] = params[:flowVersion] if params.has_key?(:flowVersion) query_params[:deviceId] = params[:deviceId] if params.has_key?(:deviceId) 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]}/flows/#{params[:flowId]}/errors" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#get(params = {}) ⇒ Object
Retrieves information on a flow
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, flow.*, or flow.get.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
string includeCustomNodes - If the result of the request should also include the details of any custom nodes referenced by the returned workflows
-
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 - Flow information (api.losant.com/#/definitions/flow)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'lib/platform_rest/flow.rb', line 207 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("flowId is required") unless params.has_key?(:flowId) query_params[:includeCustomNodes] = params[:includeCustomNodes] if params.has_key?(:includeCustomNodes) 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]}/flows/#{params[:flowId]}" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#get_log_entries(params = {}) ⇒ Object
Retrieve the recent log entries about runs of this workflow
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, flow.*, or flow.log.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
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 - Recent log entries (api.losant.com/#/definitions/flowLog)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
# File 'lib/platform_rest/flow.rb', line 256 def get_log_entries(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("flowId is required") unless params.has_key?(:flowId) 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]}/flows/#{params[:flowId]}/logs" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#get_storage_entries(params = {}) ⇒ Object
Gets the current values in persistent storage
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, flow.*, or flow.getStorageEntries.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
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 - The current storage entries (api.losant.com/#/definitions/flowStorageEntries)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
# File 'lib/platform_rest/flow.rb', line 304 def get_storage_entries(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("flowId is required") unless params.has_key?(:flowId) 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]}/flows/#{params[:flowId]}/storage" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#get_storage_entries_metadata(params = {}) ⇒ Object
Gets metadata about storage for this flow
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, flow.*, or flow.getStorageEntriesMetadata.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
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 - The meta data for the current storage entries (api.losant.com/#/definitions/flowStorageMetadata)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
# File 'lib/platform_rest/flow.rb', line 350 def (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("flowId is required") unless params.has_key?(:flowId) 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]}/flows/#{params[:flowId]}/storage-metadata" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |
#patch(params = {}) ⇒ Object
Updates information about a flow
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, flow.*, or flow.patch.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
string includeCustomNodes - If the result of the request should also include the details of any custom nodes referenced by the returned workflows
-
hash flow - Object containing new properties of the flow (api.losant.com/#/definitions/flowPatch)
-
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 flow information (api.losant.com/#/definitions/flow)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow is not found (api.losant.com/#/definitions/error)
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 |
# File 'lib/platform_rest/flow.rb', line 398 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("flowId is required") unless params.has_key?(:flowId) raise ArgumentError.new("flow is required") unless params.has_key?(:flow) query_params[:includeCustomNodes] = params[:includeCustomNodes] if params.has_key?(:includeCustomNodes) body = params[:flow] if params.has_key?(:flow) 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]}/flows/#{params[:flowId]}" @client.request( method: :patch, path: path, query: query_params, headers: headers, body: body) end |
#press_virtual_button(params = {}) ⇒ Object
Presses the specified virtual button on the flow
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, flow.*, or flow.pressVirtualButton.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
hash button - Object containing button key and payload (api.losant.com/#/definitions/virtualButtonPress)
-
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 - Virtual button was pressed (api.losant.com/#/definitions/success)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
# File 'lib/platform_rest/flow.rb', line 448 def (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("flowId is required") unless params.has_key?(:flowId) raise ArgumentError.new("button is required") unless params.has_key?(:button) body = params[:button] if params.has_key?(:button) 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]}/flows/#{params[:flowId]}/virtualButton" @client.request( method: :post, path: path, query: query_params, headers: headers, body: body) end |
#set_storage_entry(params = {}) ⇒ Object
Sets a storage value
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, flow.*, or flow.setStorageEntry.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
hash entry - Object containing storage entry (api.losant.com/#/definitions/flowStorageEntry)
-
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 - Value was successfully stored (api.losant.com/#/definitions/success)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
# File 'lib/platform_rest/flow.rb', line 497 def set_storage_entry(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("flowId is required") unless params.has_key?(:flowId) raise ArgumentError.new("entry is required") unless params.has_key?(:entry) body = params[:entry] if params.has_key?(:entry) 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]}/flows/#{params[:flowId]}/storage" @client.request( method: :patch, path: path, query: query_params, headers: headers, body: body) end |
#stats(params = {}) ⇒ Object
Get statistics about workflow runs for this workflow
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, flow.*, or flow.stats.
Parameters:
-
string applicationId - ID associated with the application
-
string flowId - ID associated with the flow
-
string duration - Duration of time range in milliseconds
-
string end - End of time range in milliseconds since epoch
-
string resolution - Resolution in milliseconds
-
string flowVersion - Flow version name or ID. When not included, will be aggregate for all versions. Pass develop for just the develop version.
-
string deviceId - For edge or embedded workflows, the device ID to return workflow stats for. When not included, will be aggregate for all device IDs.
-
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 - Statistics for workflow runs (api.losant.com/#/definitions/flowStats)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if flow was not found (api.losant.com/#/definitions/error)
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
# File 'lib/platform_rest/flow.rb', line 550 def stats(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("flowId is required") unless params.has_key?(:flowId) query_params[:duration] = params[:duration] if params.has_key?(:duration) query_params[:end] = params[:end] if params.has_key?(:end) query_params[:resolution] = params[:resolution] if params.has_key?(:resolution) query_params[:flowVersion] = params[:flowVersion] if params.has_key?(:flowVersion) query_params[:deviceId] = params[:deviceId] if params.has_key?(:deviceId) 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]}/flows/#{params[:flowId]}/stats" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |