Class: PlatformRest::InstanceAuditLog
- Inherits:
-
Object
- Object
- PlatformRest::InstanceAuditLog
- Defined in:
- lib/platform_rest/instance_audit_log.rb
Overview
Class containing all the actions for the Instance Audit Log Resource
Instance Method Summary collapse
-
#get(params = {}) ⇒ Object
Retrieves information on an instance audit log.
-
#initialize(client) ⇒ InstanceAuditLog
constructor
A new instance of InstanceAuditLog.
Constructor Details
#initialize(client) ⇒ InstanceAuditLog
Returns a new instance of InstanceAuditLog.
30 31 32 |
# File 'lib/platform_rest/instance_audit_log.rb', line 30 def initialize(client) @client = client end |
Instance Method Details
#get(params = {}) ⇒ Object
Retrieves information on an instance audit log
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.Instance, all.Instance.read, all.User, all.User.read, instanceAuditLog.*, or instanceAuditLog.get.
Parameters:
-
string instanceId - ID associated with the instance
-
string instanceAuditLogId - ID associated with the instance audit log
-
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 - Instance audit log information (api.losant.com/#/definitions/instanceAuditLog)
Errors:
-
400 - Error if malformed request (api.losant.com/#/definitions/error)
-
404 - Error if instance audit log 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/instance_audit_log.rb', line 56 def get(params = {}) params = Utils.symbolize_hash_keys(params) query_params = { _actions: false, _links: true, _embedded: true } headers = {} body = nil raise ArgumentError.new("instanceId is required") unless params.has_key?(:instanceId) raise ArgumentError.new("instanceAuditLogId is required") unless params.has_key?(:instanceAuditLogId) 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 = "/instance/#{params[:instanceId]}/audit-logs/#{params[:instanceAuditLogId]}" @client.request( method: :get, path: path, query: query_params, headers: headers, body: body) end |