Show / Hide Table of Contents

Class SearchChangeHistoryEventsRequest

Request message for SearchChangeHistoryEvents RPC.

Inheritance
object
SearchChangeHistoryEventsRequest
Implements
IMessage<SearchChangeHistoryEventsRequest>
IEquatable<SearchChangeHistoryEventsRequest>
IDeepCloneable<SearchChangeHistoryEventsRequest>
IBufferMessage
IMessage
IPageRequest
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Analytics.Admin.V1Beta
Assembly: Google.Analytics.Admin.V1Beta.dll
Syntax
public sealed class SearchChangeHistoryEventsRequest : IMessage<SearchChangeHistoryEventsRequest>, IEquatable<SearchChangeHistoryEventsRequest>, IDeepCloneable<SearchChangeHistoryEventsRequest>, IBufferMessage, IMessage, IPageRequest

Constructors

SearchChangeHistoryEventsRequest()

Declaration
public SearchChangeHistoryEventsRequest()

SearchChangeHistoryEventsRequest(SearchChangeHistoryEventsRequest)

Declaration
public SearchChangeHistoryEventsRequest(SearchChangeHistoryEventsRequest other)
Parameters
Type Name Description
SearchChangeHistoryEventsRequest other

Properties

Account

Required. The account resource for which to return change history resources. Format: accounts/{account}

Example: accounts/100

Declaration
public string Account { get; set; }
Property Value
Type Description
string

AccountAsAccountName

AccountName-typed view over the Account resource name property.

Declaration
public AccountName AccountAsAccountName { get; set; }
Property Value
Type Description
AccountName

Action

Optional. If set, only return changes that match one or more of these types of actions.

Declaration
public RepeatedField<ActionType> Action { get; }
Property Value
Type Description
RepeatedField<ActionType>

ActorEmail

Optional. If set, only return changes if they are made by a user in this list.

Declaration
public RepeatedField<string> ActorEmail { get; }
Property Value
Type Description
RepeatedField<string>

EarliestChangeTime

Optional. If set, only return changes made after this time (inclusive).

Declaration
public Timestamp EarliestChangeTime { get; set; }
Property Value
Type Description
Timestamp

LatestChangeTime

Optional. If set, only return changes made before this time (inclusive).

Declaration
public Timestamp LatestChangeTime { get; set; }
Property Value
Type Description
Timestamp

PageSize

Optional. The maximum number of ChangeHistoryEvent items to return. If unspecified, at most 50 items will be returned. The maximum value is 200 (higher values will be coerced to the maximum).

Note that the service may return a page with fewer items than this value specifies (potentially even zero), and that there still may be additional pages. If you want a particular number of items, you'll need to continue requesting additional pages using page_token until you get the needed number.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
int
Implements
IPageRequest.PageSize

PageToken

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.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
string
Implements
IPageRequest.PageToken

Property

Optional. Resource name for a child property. If set, only return changes made to this property or its child resources. Format: properties/{propertyId}

Example: properties/100

Declaration
public string Property { get; set; }
Property Value
Type Description
string

PropertyAsPropertyName

PropertyName-typed view over the Property resource name property.

Declaration
public PropertyName PropertyAsPropertyName { get; set; }
Property Value
Type Description
PropertyName

ResourceType

Optional. If set, only return changes if they are for a resource that matches at least one of these types.

Declaration
public RepeatedField<ChangeHistoryResourceType> ResourceType { get; }
Property Value
Type Description
RepeatedField<ChangeHistoryResourceType>
In this article
Back to top Generated by DocFX