Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb

Overview

Request message for SearchChangeHistoryEvents RPC.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest

Returns a new instance of GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest.



3413
3414
3415
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3413

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#actionArray<String>

Optional. If set, only return changes that match one or more of these types of actions. Corresponds to the JSON property action

Returns:

  • (Array<String>)


3368
3369
3370
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3368

def action
  @action
end

#actor_emailArray<String>

Optional. If set, only return changes if they are made by a user in this list. Corresponds to the JSON property actorEmail

Returns:

  • (Array<String>)


3373
3374
3375
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3373

def actor_email
  @actor_email
end

#earliest_change_timeString

Optional. If set, only return changes made after this time (inclusive). Corresponds to the JSON property earliestChangeTime

Returns:

  • (String)


3378
3379
3380
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3378

def earliest_change_time
  @earliest_change_time
end

#latest_change_timeString

Optional. If set, only return changes made before this time (inclusive). Corresponds to the JSON property latestChangeTime

Returns:

  • (String)


3383
3384
3385
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3383

def latest_change_time
  @latest_change_time
end

#page_sizeFixnum

Optional. The maximum number of ChangeHistoryEvent items to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 items will be returned. The maximum value is 200 ( higher values will be coerced to the maximum). Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


3391
3392
3393
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3391

def page_size
  @page_size
end

#page_tokenString

Optional. A page token, received from a previous SearchChangeHistoryEvents call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to SearchChangeHistoryEvents must match the call that provided the page token. Corresponds to the JSON property pageToken

Returns:

  • (String)


3399
3400
3401
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3399

def page_token
  @page_token
end

#propertyString

Optional. Resource name for a child property. If set, only return changes made to this property or its child resources. Corresponds to the JSON property property

Returns:

  • (String)


3405
3406
3407
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3405

def property
  @property
end

#resource_typeArray<String>

Optional. If set, only return changes if they are for a resource that matches at least one of these types. Corresponds to the JSON property resourceType

Returns:

  • (Array<String>)


3411
3412
3413
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3411

def resource_type
  @resource_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3418

def update!(**args)
  @action = args[:action] if args.key?(:action)
  @actor_email = args[:actor_email] if args.key?(:actor_email)
  @earliest_change_time = args[:earliest_change_time] if args.key?(:earliest_change_time)
  @latest_change_time = args[:latest_change_time] if args.key?(:latest_change_time)
  @page_size = args[:page_size] if args.key?(:page_size)
  @page_token = args[:page_token] if args.key?(:page_token)
  @property = args[:property] if args.key?(:property)
  @resource_type = args[:resource_type] if args.key?(:resource_type)
end