Method: batchGetAssetsHistory

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

string

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 parent:

  • cloudasset.assets.exportResource
  • cloudasset.assets.exportIamPolicy

Query parameters

Parameters
assetNames[]

string

A list of the full names of the assets. See: https://cloud.google.com/asset-inventory/docs/resource-name-format Example:

//compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1.

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

enum (ContentType)

Optional. The content type.

readTimeWindow

object (TimeWindow)

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[]

string

Optional. A list of relationship types to output, for example: INSTANCE_TO_INSTANCEGROUP. This field should only be specified if contentType=RELATIONSHIP. * If specified: it outputs specified relationships' history on the [assetNames]. It returns an error if any of the [relationshipTypes] doesn't belong to the supported relationship types of the [assetNames] or if any of the [assetNames]'s types doesn't belong to the source types of the [relationshipTypes]. * Otherwise: it outputs the supported relationships' history on the [assetNames] or returns an error if any of the [assetNames]'s types has no relationship support. See Introduction to Cloud Asset Inventory for all supported asset types and relationship types.

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 (TemporalAsset)
    }
  ]
}
Fields
assets[]

object (TemporalAsset)

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 (TimeWindow)
  },
  "deleted": boolean,
  "asset": {
    object (Asset)
  },
  "priorAssetState": enum (PriorAssetState),
  "priorAsset": {
    object (Asset)
  }
}
Fields
window

object (TimeWindow)

The time window when the asset data and state was observed.

deleted

boolean

Whether the asset has been deleted or not.

asset

object (Asset)

An asset in Google Cloud.

priorAssetState

enum (PriorAssetState)

State of priorAsset.

priorAsset

object (Asset)

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.