- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization Scopes
- Asset
- Resource
- Try it!
Lists asset updates within a time window and returns paged results in response.
HTTP request
GET https://cloudasset.googleapis.com/v1p7beta1/{parent=*/*}/assetUpdates
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. name of the organization or project the assets belong to. Format: "organizations/[organization-number]" (such as "organizations/123"), "projects/[project-number]" (such as "projects/my-project-id"), or "projects/[project-id]" (such as "projects/12345"). Authorization requires one or more of the following IAM permissions on the specified resource
|
Query parameters
Parameters | |
---|---|
updateTimeWindow |
The time window configuration for the asset updates. Both startTime and endTime must be within 35 days from now. endTime is optional and not set, it is default to current timestamp. The returned results contain all assets created, updated or deleted in updateTimeWindow.time_window. |
assetTypes |
A list of asset types to list the updates for. For example: "compute.googleapis.com/Disk". Regular expression is also supported. For example:
See RE2 for all supported regular expression syntax. If the regular expression does not match any supported asset type, an INVALID_ARGUMENT error will be returned. If specified, only matching assets will be returned. At most one of assetTypes and assetNames should be specified. If neither is specified, all assets under the parent will be returned. |
assetNames |
A list of the full names of the assets to list the updates for. See: https://cloud.google.com/asset-inventory/docs/resource-name-format Example:
If specified, only assets in the list will be returned. At most one of assetTypes and assetNames should be specified. If neither is specified, all assets under the parent will be returned. |
contentType |
Asset content type. If not specified, no content but the asset name will be returned. |
pageSize |
The maximum number of assets to be returned in a single response. Default is 100, minimum is 1, and maximum is 1000. |
pageToken |
The |
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
assets.list response.
JSON representation | |
---|---|
{ "assetUpdates": [ { object ( |
Fields | |
---|---|
assetUpdates[] |
Asset updates in the time window. |
updateTimeWindow |
time window configuration of the list request. |
nextPageToken |
Token to retrieve the next page of results. Set to empty if there are no remaining results. |
Authorization Scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.
Asset
An asset in Google Cloud. An asset can be any resource in the Google Cloud resource hierarchy, a resource outside the Google Cloud resource hierarchy (such as Google Kubernetes Engine clusters and objects), or a policy (e.g. Cloud IAM policy). See Supported asset types for more information.
JSON representation | |
---|---|
{ "updateTime": string, "name": string, "assetType": string, "deleted": boolean, "resource": { object ( |
Fields | ||
---|---|---|
updateTime |
The last update timestamp of an asset. updateTime is updated when create/update/delete operation is performed. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
|
name |
The full name of the asset. Example: See Resource names for more information. |
|
assetType |
The type of the asset. Example: See Supported asset types for more information. |
|
deleted |
Whether the asset has been deleted or not. |
|
resource |
A representation of the resource. |
|
iamPolicy |
A representation of the Cloud IAM policy set on a Google Cloud resource. There can be a maximum of one Cloud IAM policy set on any given resource. In addition, Cloud IAM policies inherit their granted access scope from any policies set on parent resources in the resource hierarchy. Therefore, the effectively policy is the union of both the policy set on this resource and each policy set on all of the resource's ancestry resource levels in the hierarchy. See this topic for more information. |
|
orgPolicy[] |
A representation of an organization policy. There can be more than one organization policy with different constraints set on a given resource. |
|
ancestors[] |
The ancestry path of an asset in Google Cloud resource hierarchy, represented as a list of relative resource names. An ancestry path starts with the closest ancestor in the hierarchy and ends at root. If the asset is a project, folder, or organization, the ancestry path starts from the asset itself. Example: |
|
Union field access_context_policy . A representation of an access policy. access_context_policy can be only one of the following: |
||
accessPolicy |
Please also refer to the access policy user guide. |
|
accessLevel |
Please also refer to the access level user guide. |
|
servicePerimeter |
Please also refer to the service perimeter user guide. |
Resource
A representation of a Google Cloud resource.
JSON representation | |
---|---|
{ "version": string, "discoveryDocumentUri": string, "discoveryName": string, "resourceUrl": string, "parent": string, "data": { object }, "location": string } |
Fields | |
---|---|
version |
The API version. Example: |
discoveryDocumentUri |
The URL of the discovery document containing the resource's JSON schema. Example: This value is unspecified for resources that do not have an API based on a discovery document, such as Cloud Bigtable. |
discoveryName |
The JSON schema name listed in the discovery document. Example: This value is unspecified for resources that do not have an API based on a discovery document, such as Cloud Bigtable. |
resourceUrl |
The REST URL for accessing the resource. An HTTP This value is unspecified for resources without a REST API. |
parent |
The full name of the immediate parent of this resource. See Resource Names for more information. For Google Cloud assets, this value is the parent resource defined in the Cloud IAM policy hierarchy. Example: For third-party assets, this field may be set differently. |
data |
The content of the resource, in which some sensitive fields are removed and may not be present. |
location |
The location of the resource in Google Cloud, such as its zone and region. For more information, see https://cloud.google.com/about/locations/. |