Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
- 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
-
#action ⇒ Array<String>
Optional.
-
#actor_email ⇒ Array<String>
Optional.
-
#earliest_change_time ⇒ String
Optional.
-
#latest_change_time ⇒ String
Optional.
-
#page_size ⇒ Fixnum
Optional.
-
#page_token ⇒ String
Optional.
-
#property ⇒ String
Optional.
-
#resource_type ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
constructor
A new instance of GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
Returns a new instance of GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest.
4099 4100 4101 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4099 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ Array<String>
Optional. If set, only return changes that match one or more of these types of
actions.
Corresponds to the JSON property action
4054 4055 4056 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4054 def action @action end |
#actor_email ⇒ Array<String>
Optional. If set, only return changes if they are made by a user in this list.
Corresponds to the JSON property actorEmail
4059 4060 4061 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4059 def actor_email @actor_email end |
#earliest_change_time ⇒ String
Optional. If set, only return changes made after this time (inclusive).
Corresponds to the JSON property earliestChangeTime
4064 4065 4066 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4064 def earliest_change_time @earliest_change_time end |
#latest_change_time ⇒ String
Optional. If set, only return changes made before this time (inclusive).
Corresponds to the JSON property latestChangeTime
4069 4070 4071 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4069 def latest_change_time @latest_change_time end |
#page_size ⇒ Fixnum
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
4077 4078 4079 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4077 def page_size @page_size end |
#page_token ⇒ String
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
4085 4086 4087 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4085 def page_token @page_token end |
#property ⇒ String
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
4091 4092 4093 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4091 def property @property end |
#resource_type ⇒ Array<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
4097 4098 4099 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4097 def resource_type @resource_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4104 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 |