export declare const FeedContentType: { /** * Unspecified content type. */ readonly ContentTypeUnspecified: "CONTENT_TYPE_UNSPECIFIED"; /** * Resource metadata. */ readonly Resource: "RESOURCE"; /** * The actual IAM policy set on a resource. */ readonly IamPolicy: "IAM_POLICY"; /** * The organization policy set on an asset. */ readonly OrgPolicy: "ORG_POLICY"; /** * The Access Context Manager policy set on an asset. */ readonly AccessPolicy: "ACCESS_POLICY"; /** * The runtime OS Inventory information. */ readonly OsInventory: "OS_INVENTORY"; /** * The related resources. */ readonly Relationship: "RELATIONSHIP"; }; /** * Asset content type. If not specified, no content but the asset name and type will be returned. */ export type FeedContentType = (typeof FeedContentType)[keyof typeof FeedContentType];