Skip to content

Commit

Permalink
Merge pull request #119 from Asana/openapi-sync
Browse files Browse the repository at this point in the history
Generated from OpenAPI
  • Loading branch information
aw-asana committed Oct 20, 2021
2 parents b40a67e + eae6f7b commit 7cf589f
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.8
0.10.9
37 changes: 37 additions & 0 deletions lib/asana/resources/gen/audit_log_api_base.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
### WARNING: This file is auto-generated by our OpenAPI spec. Do not
### edit it manually.

require_relative '../../resource_includes/response_helper'

module Asana
module Resources
class AuditLogAPIBase < Resource

def self.inherited(base)
Registry.register(base)
end

class << self
# Get audit log events
#
# workspace_gid - [str] (required) Globally unique identifier for the workspace or organization.
# start_at - [datetime] Filter to events created after this time (inclusive).
# end_at - [datetime] Filter to events created before this time (exclusive).
# event_type - [str] Filter to events of this type. Refer to the [Supported AuditLogEvents](/docs/supported-auditlogevents) for a full list of values.
# actor_type - [str] Filter to events with an actor of this type. This only needs to be included if querying for actor types without an ID. If `actor_gid` is included, this should be excluded.
# actor_gid - [str] Filter to events triggered by the actor with this ID.
# resource_gid - [str] Filter to events with this resource ID.
# options - [Hash] the request I/O options
# > offset - [str] Offset token. An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will return the first page of results. 'Note: You can only pass in an offset that was returned to you via a previously paginated request.'
# > limit - [int] Results per page. The number of objects to return per page. The value must be between 1 and 100.
def get_audit_log_events(client, workspace_gid: required("workspace_gid"), start_at: nil, end_at: nil, event_type: nil, actor_type: nil, actor_gid: nil, resource_gid: nil, options: {})
path = "/workspaces/{workspace_gid}/audit_log_events"
path["{workspace_gid}"] = workspace_gid
params = { start_at: start_at, end_at: end_at, event_type: event_type, actor_type: actor_type, actor_gid: actor_gid, resource_gid: resource_gid }.reject { |_,v| v.nil? || Array(v).empty? }
Collection.new(parse(client.get(path, params: params, options: options)), type: Resource, client: client)
end

end
end
end
end
2 changes: 1 addition & 1 deletion lib/asana/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#:nodoc:
module Asana
# Public: Version of the gem.
VERSION = '0.10.8'
VERSION = '0.10.9'
end
11 changes: 11 additions & 0 deletions samples/audit_log_api_sample.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
auditlogapi:
get_audit_log_events: >-
require 'asana'
client = Asana::Client.new do |c|
c.authentication :access_token, 'PERSONAL_ACCESS_TOKEN'
end
result = client.audit_log_api.get_audit_log_events(workspace_gid: 'workspace_gid', param: "value", param: "value", options: {pretty: true})

0 comments on commit 7cf589f

Please sign in to comment.