class Google::Apis::AppsactivityV1::AppsactivityService

Google Apps Activity API

Provides a historical view of activity.

@example

require 'google/apis/appsactivity_v1'

Appsactivity = Google::Apis::AppsactivityV1 # Alias the module
service = Appsactivity::AppsactivityService.new

@see developers.google.com/google-apps/activity/

Attributes

key[RW]

@return [String]

API key. Your API key identifies your project and provides you with API access,
quota, and reports. Required unless you provide an OAuth 2.0 token.
quota_user[RW]

@return [String]

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.
Overrides userIp if both are provided.
user_ip[RW]

@return [String]

IP address of the site where the request originates. Use this if you want to
enforce per-user limits.

Public Class Methods

new() click to toggle source
Calls superclass method Google::Apis::Core::BaseService.new
# File generated/google/apis/appsactivity_v1/service.rb, line 51
def initialize
  super('https://www.googleapis.com/', 'appsactivity/v1/')
end

Public Instance Methods

list_activities(drive_ancestor_id: nil, drive_file_id: nil, grouping_strategy: nil, page_size: nil, page_token: nil, source: nil, user_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block) click to toggle source

Returns a list of activities visible to the current logged in user. Visible activities are determined by the visiblity settings of the object that was acted on, e.g. Drive files a user can see. An activity is a record of past events. Multiple events may be merged if they are similar. A request is scoped to activities from a given Google service using the source parameter. @param [String] drive_ancestor_id

Identifies the Drive folder containing the items for which to return
activities.

@param [String] drive_file_id

Identifies the Drive item to return activities for.

@param [String] grouping_strategy

Indicates the strategy to use when grouping singleEvents items in the
associated combinedEvent object.

@param [Fixnum] page_size

The maximum number of events to return on a page. The response includes a
continuation token if there are more events.

@param [String] page_token

A token to retrieve a specific page of results.

@param [String] source

The Google service from which to return activities. Possible values of source
are:
- drive.google.com

@param [String] user_id

Indicates the user to return activity for. Use the special value me to
indicate the currently authenticated user.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] #quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.
Overrides userIp if both are provided.

@param [String] #user_ip

IP address of the site where the request originates. Use this if you want to
enforce per-user limits.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::AppsactivityV1::ListActivitiesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::AppsactivityV1::ListActivitiesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File generated/google/apis/appsactivity_v1/service.rb, line 101
def list_activities(drive_ancestor_id: nil, drive_file_id: nil, grouping_strategy: nil, page_size: nil, page_token: nil, source: nil, user_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
  command =  make_simple_command(:get, 'activities', options)
  command.response_representation = Google::Apis::AppsactivityV1::ListActivitiesResponse::Representation
  command.response_class = Google::Apis::AppsactivityV1::ListActivitiesResponse
  command.query['drive.ancestorId'] = drive_ancestor_id unless drive_ancestor_id.nil?
  command.query['drive.fileId'] = drive_file_id unless drive_file_id.nil?
  command.query['groupingStrategy'] = grouping_strategy unless grouping_strategy.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['source'] = source unless source.nil?
  command.query['userId'] = user_id unless user_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
  execute_or_queue_command(command, &block)
end

Protected Instance Methods

apply_command_defaults(command) click to toggle source
# File generated/google/apis/appsactivity_v1/service.rb, line 120
def apply_command_defaults(command)
  command.query['key'] = key unless key.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  command.query['userIp'] = user_ip unless user_ip.nil?
end