- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- TemporalAsset
- PriorAssetState
- Try it!
Batch gets the update history of assets that overlap a time window. For IAM_POLICY content, this API outputs history when the asset and its attached IAM POLICY both exist. This can create gaps in the output history. Otherwise, this API outputs history with asset in both non-delete or deleted status. If a specified asset does not exist, this API returns an INVALID_ARGUMENT error.
HTTP request
GET https://cloudasset.googleapis.com/v1/{parent=*/*}:batchGetAssetsHistory
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. The relative name of the root asset. It can only be an organization number (such as "organizations/123"), a project ID (such as "projects/my-project-id")", or a project number (such as "projects/12345"). Authorization requires one or more of the following IAM permissions on the specified resource
|
Query parameters
Parameters | |
---|---|
assetNames[] |
A list of the full names of the assets. See: https://cloud.google.com/asset-inventory/docs/resource-name-format Example:
The request becomes a no-op if the asset name list is empty, and the max size of the asset name list is 100 in one request. |
contentType |
Optional. The content type. |
readTimeWindow |
Optional. The time window for the asset history. Both startTime and endTime are optional and if set, it must be after the current time minus 35 days. If endTime is not set, it is default to current timestamp. If startTime is not set, the snapshot of the assets at endTime will be returned. The returned results contain all temporal assets whose time window overlap with readTimeWindow. |
relationshipTypes[] |
Optional. A list of relationship types to output, for example: |
Request body
The request body must be empty.
Response body
Batch get assets history response.
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"assets": [
{
object ( |
Fields | |
---|---|
assets[] |
A list of assets with valid time windows. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
TemporalAsset
An asset in Google Cloud and its temporal metadata, including the time window when it was observed and its status during that window.
JSON representation |
---|
{ "window": { object ( |
Fields | |
---|---|
window |
The time window when the asset data and state was observed. |
deleted |
Whether the asset has been deleted or not. |
asset |
An asset in Google Cloud. |
priorAssetState |
State of priorAsset. |
priorAsset |
Prior copy of the asset. Populated if priorAssetState is PRESENT. Currently this is only set for responses in Real-Time Feed. |
PriorAssetState
State of prior asset.
Enums | |
---|---|
PRIOR_ASSET_STATE_UNSPECIFIED |
priorAsset is not applicable for the current asset. |
PRESENT |
priorAsset is populated correctly. |
INVALID |
Failed to set priorAsset. |
DOES_NOT_EXIST |
Current asset is the first known state. |
DELETED |
priorAsset is a deletion. |