Google Analytics · Schema
GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest
Request message for SearchChangeHistoryEvents RPC.
AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution
Properties
| Name | Type | Description |
|---|---|---|
| action | array | Optional. If set, only return changes that match one or more of these types of actions. |
| actorEmail | array | Optional. If set, only return changes if they are made by a user in this list. |
| earliestChangeTime | string | Optional. If set, only return changes made after this time (inclusive). |
| latestChangeTime | string | Optional. If set, only return changes made before this time (inclusive). |
| pageSize | integer | 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. |
| pageToken | 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 `SearchChangeHistoryE |
| property | string | 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" |
| resourceType | array | Optional. If set, only return changes if they are for a resource that matches at least one of these types. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest",
"title": "GoogleAnalyticsAdminV1betaSearchChangeHistoryEventsRequest",
"description": "Request message for SearchChangeHistoryEvents RPC.",
"properties": {
"action": {
"description": "Optional. If set, only return changes that match one or more of these types of actions.",
"items": {
"enum": [
"ACTION_TYPE_UNSPECIFIED",
"CREATED",
"UPDATED",
"DELETED"
],
"type": "string"
},
"type": "array"
},
"actorEmail": {
"description": "Optional. If set, only return changes if they are made by a user in this list.",
"items": {
"type": "string"
},
"type": "array"
},
"earliestChangeTime": {
"description": "Optional. If set, only return changes made after this time (inclusive).",
"format": "google-datetime",
"type": "string"
},
"latestChangeTime": {
"description": "Optional. If set, only return changes made before this time (inclusive).",
"format": "google-datetime",
"type": "string"
},
"pageSize": {
"description": "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).",
"format": "int32",
"type": "integer"
},
"pageToken": {
"description": "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.",
"type": "string"
},
"property": {
"description": "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\"",
"type": "string"
},
"resourceType": {
"description": "Optional. If set, only return changes if they are for a resource that matches at least one of these types.",
"items": {
"enum": [
"CHANGE_HISTORY_RESOURCE_TYPE_UNSPECIFIED",
"ACCOUNT",
"PROPERTY",
"FIREBASE_LINK",
"GOOGLE_ADS_LINK",
"GOOGLE_SIGNALS_SETTINGS",
"CONVERSION_EVENT",
"MEASUREMENT_PROTOCOL_SECRET",
"DATA_RETENTION_SETTINGS",
"DISPLAY_VIDEO_360_ADVERTISER_LINK",
"DISPLAY_VIDEO_360_ADVERTISER_LINK_PROPOSAL",
"DATA_STREAM",
"ATTRIBUTION_SETTINGS"
],
"type": "string"
},
"type": "array"
}
},
"type": "object"
}