Required. The format will be projects/{projectNumber}/feeds/{client-assigned_feed_identifier} or folders/{folder_number}/feeds/{client-assigned_feed_identifier} or organizations/{organization_number}/feeds/{client-assigned_feed_identifier}
The client-assigned feed identifier must be unique within the parent project/folder/organization.
Request body
The request body contains data with the following structure:
JSON representation
{"feed": {"name": string,"assetNames": [string],"assetTypes": [string],"contentType": enum (ContentType),"feedOutputConfig": {// Union field destination can be only one of the following:"pubsubDestination": {object (PubsubDestination)}// End of list of possible types for union field destination.},"condition": {"expression": string,"title": string,"description": string,"location": string},"relationshipTypes": [string]},"updateMask": string}
Fields
feed.assetNames[]
string
A list of the full names of the assets to receive updates. You must specify either or both of assetNames and assetTypes. Only asset updates matching specified assetNames or assetTypes are exported to the feed. Example: //compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1. For a list of the full names for supported asset types, see Resource name format.
feed.assetTypes[]
string
A list of types of the assets to receive updates. You must specify either or both of assetNames and assetTypes. Only asset updates matching specified assetNames or assetTypes are exported to the feed. Example: "compute.googleapis.com/Disk"
A condition which determines whether an asset update should be published. If specified, an asset will be returned only when the expression evaluates to true. When set, expression field in the Expr must be a valid CEL expression on a TemporalAsset with name temporal_asset. Example: a Feed with expression ("temporal_asset.deleted == true") will only publish Asset deletions. Other fields of Expr are 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 relationship updates on the [assetNames] or the [assetTypes]. It returns an error if any of the [relationshipTypes] doesn't belong to the supported relationship types of the [assetNames] or [assetTypes], or any of the [assetNames] or the [assetTypes] doesn't belong to the source types of the [relationshipTypes]. * Otherwise: it outputs the supported relationships of the types of [assetNames] and [assetTypes] or returns an error if any of the [assetNames] or the [assetTypes] has no replationship support. See Introduction to Cloud Asset Inventory for all supported asset types and relationship types.
Required. Only updates the feed fields indicated by this mask. The field mask must not be empty, and it must not contain fields that are immutable or only set by the server.
This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo".
Response body
If successful, the response body contains an instance of Feed.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-05 UTC."],[[["This webpage details how to update an asset feed configuration using a `PATCH` HTTP request to the specified URL: `https://cloudasset.googleapis.com/v1/{feed.name=*/*/feeds/*}`."],["The `feed.name` path parameter is required and represents a unique identifier for the feed within the specified project, folder, or organization."],["The request body requires a JSON structure with fields like `assetNames`, `assetTypes`, and `feedOutputConfig` to define which assets are updated and where the updates are published to, and also includes an `updateMask` to specify which fields to update."],["The `feed.condition` field allows you to set a filter to only include certain types of asset updates that match a specified [CEL expression](https://github.com/google/cel-spec)."],["Upon a successful request, the response body will contain a [Feed](https://cloud.google.com/asset-inventory/docs/reference/rest/v1/feeds#Feed) instance, and this operation requires the `https://www.googleapis.com/auth/cloud-platform` OAuth scope."]]],[]]