Folder Feed Args
Describes a Cloud Asset Inventory feed used to to listen to asset updates. To get more information about FolderFeed, see:
How-to Guides
Official Documentation {{% examples %}}
Example Usage
{{% /examples %}}
Import
FolderFeed can be imported using any of these accepted formats
$ pulumi import gcp:cloudasset/folderFeed:FolderFeed default folders/{{folder_id}}/feeds/{{name}}
$ pulumi import gcp:cloudasset/folderFeed:FolderFeed default {{folder_id}}/{{name}}
Constructors
Properties
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 and assetTypes are exported to the feed. For example: //compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1. See https://cloud.google.com/apis/design/resourceNames#fullResourceName for more info.
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 and assetTypes are exported to the feed. For example: "compute.googleapis.com/Disk" See https://cloud.google.com/asset-inventory/docs/supported-asset-types for a list of all supported asset types.
The project whose identity will be used when sending messages to the destination pubsub topic. It also specifies the project for API enablement check, quota, and billing.
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 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 condition are optional. Structure is documented below.
Asset content type. If not specified, no content but the asset name and type will be returned. Possible values are: CONTENT_TYPE_UNSPECIFIED
, RESOURCE
, IAM_POLICY
, ORG_POLICY
, OS_INVENTORY
, ACCESS_POLICY
.
Output configuration for asset feed destination. Structure is documented below.