- 0.62.0 (latest)
- 0.61.0
- 0.59.0
- 0.58.0
- 0.57.0
- 0.56.0
- 0.55.0
- 0.54.0
- 0.53.0
- 0.52.0
- 0.51.0
- 0.50.0
- 0.49.0
- 0.47.0
- 0.46.0
- 0.45.0
- 0.44.0
- 0.43.0
- 0.42.0
- 0.41.0
- 0.40.0
- 0.39.0
- 0.38.0
- 0.37.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.19.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
public interface SearchChangeHistoryEventsRequestOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getAccount()
public abstract String getAccount()
Required. The account resource for which to return change history resources. Format: accounts/{account}
Example: accounts/100
string account = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
Returns | |
---|---|
Type | Description |
String |
The account. |
getAccountBytes()
public abstract ByteString getAccountBytes()
Required. The account resource for which to return change history resources. Format: accounts/{account}
Example: accounts/100
string account = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for account. |
getAction(int index)
public abstract ActionType getAction(int index)
Optional. If set, only return changes that match one or more of these types of actions.
repeated .google.analytics.admin.v1beta.ActionType action = 4 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
index |
int The index of the element to return. |
Returns | |
---|---|
Type | Description |
ActionType |
The action at the given index. |
getActionCount()
public abstract int getActionCount()
Optional. If set, only return changes that match one or more of these types of actions.
repeated .google.analytics.admin.v1beta.ActionType action = 4 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
int |
The count of action. |
getActionList()
public abstract List<ActionType> getActionList()
Optional. If set, only return changes that match one or more of these types of actions.
repeated .google.analytics.admin.v1beta.ActionType action = 4 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
List<ActionType> |
A list containing the action. |
getActionValue(int index)
public abstract int getActionValue(int index)
Optional. If set, only return changes that match one or more of these types of actions.
repeated .google.analytics.admin.v1beta.ActionType action = 4 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
index |
int The index of the value to return. |
Returns | |
---|---|
Type | Description |
int |
The enum numeric value on the wire of action at the given index. |
getActionValueList()
public abstract List<Integer> getActionValueList()
Optional. If set, only return changes that match one or more of these types of actions.
repeated .google.analytics.admin.v1beta.ActionType action = 4 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
List<Integer> |
A list containing the enum numeric values on the wire for action. |
getActorEmail(int index)
public abstract String getActorEmail(int index)
Optional. If set, only return changes if they are made by a user in this list.
repeated string actor_email = 5 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
index |
int The index of the element to return. |
Returns | |
---|---|
Type | Description |
String |
The actorEmail at the given index. |
getActorEmailBytes(int index)
public abstract ByteString getActorEmailBytes(int index)
Optional. If set, only return changes if they are made by a user in this list.
repeated string actor_email = 5 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
index |
int The index of the value to return. |
Returns | |
---|---|
Type | Description |
ByteString |
The bytes of the actorEmail at the given index. |
getActorEmailCount()
public abstract int getActorEmailCount()
Optional. If set, only return changes if they are made by a user in this list.
repeated string actor_email = 5 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
int |
The count of actorEmail. |
getActorEmailList()
public abstract List<String> getActorEmailList()
Optional. If set, only return changes if they are made by a user in this list.
repeated string actor_email = 5 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
List<String> |
A list containing the actorEmail. |
getEarliestChangeTime()
public abstract Timestamp getEarliestChangeTime()
Optional. If set, only return changes made after this time (inclusive).
.google.protobuf.Timestamp earliest_change_time = 6 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
Timestamp |
The earliestChangeTime. |
getEarliestChangeTimeOrBuilder()
public abstract TimestampOrBuilder getEarliestChangeTimeOrBuilder()
Optional. If set, only return changes made after this time (inclusive).
.google.protobuf.Timestamp earliest_change_time = 6 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
TimestampOrBuilder |
getLatestChangeTime()
public abstract Timestamp getLatestChangeTime()
Optional. If set, only return changes made before this time (inclusive).
.google.protobuf.Timestamp latest_change_time = 7 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
Timestamp |
The latestChangeTime. |
getLatestChangeTimeOrBuilder()
public abstract TimestampOrBuilder getLatestChangeTimeOrBuilder()
Optional. If set, only return changes made before this time (inclusive).
.google.protobuf.Timestamp latest_change_time = 7 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
TimestampOrBuilder |
getPageSize()
public abstract int getPageSize()
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).
int32 page_size = 8 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
int |
The pageSize. |
getPageToken()
public abstract String getPageToken()
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.
string page_token = 9 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
String |
The pageToken. |
getPageTokenBytes()
public abstract ByteString getPageTokenBytes()
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.
string page_token = 9 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for pageToken. |
getProperty()
public abstract String getProperty()
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
string property = 2 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
Returns | |
---|---|
Type | Description |
String |
The property. |
getPropertyBytes()
public abstract ByteString getPropertyBytes()
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
string property = 2 [(.google.api.field_behavior) = OPTIONAL, (.google.api.resource_reference) = { ... }
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for property. |
getResourceType(int index)
public abstract ChangeHistoryResourceType getResourceType(int index)
Optional. If set, only return changes if they are for a resource that matches at least one of these types.
repeated .google.analytics.admin.v1beta.ChangeHistoryResourceType resource_type = 3 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
index |
int The index of the element to return. |
Returns | |
---|---|
Type | Description |
ChangeHistoryResourceType |
The resourceType at the given index. |
getResourceTypeCount()
public abstract int getResourceTypeCount()
Optional. If set, only return changes if they are for a resource that matches at least one of these types.
repeated .google.analytics.admin.v1beta.ChangeHistoryResourceType resource_type = 3 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
int |
The count of resourceType. |
getResourceTypeList()
public abstract List<ChangeHistoryResourceType> getResourceTypeList()
Optional. If set, only return changes if they are for a resource that matches at least one of these types.
repeated .google.analytics.admin.v1beta.ChangeHistoryResourceType resource_type = 3 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
List<ChangeHistoryResourceType> |
A list containing the resourceType. |
getResourceTypeValue(int index)
public abstract int getResourceTypeValue(int index)
Optional. If set, only return changes if they are for a resource that matches at least one of these types.
repeated .google.analytics.admin.v1beta.ChangeHistoryResourceType resource_type = 3 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
index |
int The index of the value to return. |
Returns | |
---|---|
Type | Description |
int |
The enum numeric value on the wire of resourceType at the given index. |
getResourceTypeValueList()
public abstract List<Integer> getResourceTypeValueList()
Optional. If set, only return changes if they are for a resource that matches at least one of these types.
repeated .google.analytics.admin.v1beta.ChangeHistoryResourceType resource_type = 3 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
List<Integer> |
A list containing the enum numeric values on the wire for resourceType. |
hasEarliestChangeTime()
public abstract boolean hasEarliestChangeTime()
Optional. If set, only return changes made after this time (inclusive).
.google.protobuf.Timestamp earliest_change_time = 6 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
boolean |
Whether the earliestChangeTime field is set. |
hasLatestChangeTime()
public abstract boolean hasLatestChangeTime()
Optional. If set, only return changes made before this time (inclusive).
.google.protobuf.Timestamp latest_change_time = 7 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
boolean |
Whether the latestChangeTime field is set. |