REST Resource: feeds

Resource: Feed

An asset feed used to export asset updates to a destinations. An asset feed filter controls what updates are exported. The asset feed must be created within a project, organization, or folder. Supported destinations are: Cloud Pub/Sub topics.

JSON representation
{
  "name": string,
  "assetNames": [
    string
  ],
  "assetTypes": [
    string
  ],
  "contentType": enum (ContentType),
  "feedOutputConfig": {
    object (FeedOutputConfig)
  }
}
Fields
name

string

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.

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. For example: //compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1. See Resource Names for more info.

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. For example: "compute.googleapis.com/Disk" See Introduction to Cloud Asset Inventory for all supported asset types.

contentType

enum (ContentType)

Asset content type. If not specified, no content but the asset name and type will be returned.

feedOutputConfig

object (FeedOutputConfig)

Required. Feed output configuration defining where the asset updates are published to.

ContentType

Asset content type.

Enums
CONTENT_TYPE_UNSPECIFIED Unspecified content type.
RESOURCE Resource metadata.
IAM_POLICY The actual IAM policy set on a resource.

FeedOutputConfig

Output configuration for asset feed destination.

JSON representation
{

  // Union field destination can be only one of the following:
  "pubsubDestination": {
    object (PubsubDestination)
  }
  // End of list of possible types for union field destination.
}
Fields
Union field destination. Asset feed destination. destination can be only one of the following:
pubsubDestination

object (PubsubDestination)

Destination on Pub/Sub.

PubsubDestination

A Pub/Sub destination.

JSON representation
{
  "topic": string
}
Fields
topic

string

The name of the Pub/Sub topic to publish to. For example: projects/PROJECT_ID/topics/TOPIC_ID.

Methods

create

Creates a feed in a parent project/folder/organization to listen to its asset updates.

delete

Deletes an asset feed.

get

Gets details about an asset feed.

list

Lists all asset feeds in a parent project/folder/organization.

patch

Updates an asset feed configuration.