Show / Hide Table of Contents

Class SearchChangeHistoryEventsRequest

Request message for SearchChangeHistoryEvents RPC.

Inheritance
System.Object
SearchChangeHistoryEventsRequest
Implements
Google.Protobuf.IMessage<SearchChangeHistoryEventsRequest>
System.IEquatable<SearchChangeHistoryEventsRequest>
Google.Protobuf.IDeepCloneable<SearchChangeHistoryEventsRequest>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Google.Api.Gax.Grpc.IPageRequest
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.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.

Declaration
public string Account { get; set; }
Property Value
Type Description
System.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
Google.Protobuf.Collections.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
Google.Protobuf.Collections.RepeatedField<System.String>

EarliestChangeTime

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

Declaration
public Timestamp EarliestChangeTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp

LatestChangeTime

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

Declaration
public Timestamp LatestChangeTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp

PageSize

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).

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
Google.Api.Gax.Grpc.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
System.String
Implements
Google.Api.Gax.Grpc.IPageRequest.PageToken

Property

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

Declaration
public string Property { get; set; }
Property Value
Type Description
System.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
Google.Protobuf.Collections.RepeatedField<ChangeHistoryResourceType>
In This Article
Back to top