1. Packages
  2. Google Cloud Native
  3. API Docs
  4. cloudasset
  5. cloudasset/v1
  6. Feed

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.cloudasset/v1.Feed

Explore with Pulumi AI

google-native logo

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

    Creates a feed in a parent project/folder/organization to listen to its asset updates. Auto-naming is currently not supported for this resource.

    Create Feed Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Feed(name: string, args: FeedArgs, opts?: CustomResourceOptions);
    @overload
    def Feed(resource_name: str,
             args: FeedArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Feed(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             feed_id: Optional[str] = None,
             feed_output_config: Optional[FeedOutputConfigArgs] = None,
             name: Optional[str] = None,
             v1_id: Optional[str] = None,
             v1_id1: Optional[str] = None,
             asset_names: Optional[Sequence[str]] = None,
             asset_types: Optional[Sequence[str]] = None,
             condition: Optional[ExprArgs] = None,
             content_type: Optional[FeedContentType] = None,
             relationship_types: Optional[Sequence[str]] = None)
    func NewFeed(ctx *Context, name string, args FeedArgs, opts ...ResourceOption) (*Feed, error)
    public Feed(string name, FeedArgs args, CustomResourceOptions? opts = null)
    public Feed(String name, FeedArgs args)
    public Feed(String name, FeedArgs args, CustomResourceOptions options)
    
    type: google-native:cloudasset/v1:Feed
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args FeedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args FeedArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args FeedArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FeedArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FeedArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var feedResource = new GoogleNative.CloudAsset.V1.Feed("feedResource", new()
    {
        FeedId = "string",
        FeedOutputConfig = new GoogleNative.CloudAsset.V1.Inputs.FeedOutputConfigArgs
        {
            PubsubDestination = new GoogleNative.CloudAsset.V1.Inputs.PubsubDestinationArgs
            {
                Topic = "string",
            },
        },
        Name = "string",
        V1Id = "string",
        V1Id1 = "string",
        AssetNames = new[]
        {
            "string",
        },
        AssetTypes = new[]
        {
            "string",
        },
        Condition = new GoogleNative.CloudAsset.V1.Inputs.ExprArgs
        {
            Description = "string",
            Expression = "string",
            Location = "string",
            Title = "string",
        },
        ContentType = GoogleNative.CloudAsset.V1.FeedContentType.ContentTypeUnspecified,
        RelationshipTypes = new[]
        {
            "string",
        },
    });
    
    example, err := cloudasset.NewFeed(ctx, "feedResource", &cloudasset.FeedArgs{
    FeedId: pulumi.String("string"),
    FeedOutputConfig: &cloudasset.FeedOutputConfigArgs{
    PubsubDestination: &cloudasset.PubsubDestinationArgs{
    Topic: pulumi.String("string"),
    },
    },
    Name: pulumi.String("string"),
    V1Id: pulumi.String("string"),
    V1Id1: pulumi.String("string"),
    AssetNames: pulumi.StringArray{
    pulumi.String("string"),
    },
    AssetTypes: pulumi.StringArray{
    pulumi.String("string"),
    },
    Condition: &cloudasset.ExprArgs{
    Description: pulumi.String("string"),
    Expression: pulumi.String("string"),
    Location: pulumi.String("string"),
    Title: pulumi.String("string"),
    },
    ContentType: cloudasset.FeedContentTypeContentTypeUnspecified,
    RelationshipTypes: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var feedResource = new Feed("feedResource", FeedArgs.builder()        
        .feedId("string")
        .feedOutputConfig(FeedOutputConfigArgs.builder()
            .pubsubDestination(PubsubDestinationArgs.builder()
                .topic("string")
                .build())
            .build())
        .name("string")
        .v1Id("string")
        .v1Id1("string")
        .assetNames("string")
        .assetTypes("string")
        .condition(ExprArgs.builder()
            .description("string")
            .expression("string")
            .location("string")
            .title("string")
            .build())
        .contentType("CONTENT_TYPE_UNSPECIFIED")
        .relationshipTypes("string")
        .build());
    
    feed_resource = google_native.cloudasset.v1.Feed("feedResource",
        feed_id="string",
        feed_output_config=google_native.cloudasset.v1.FeedOutputConfigArgs(
            pubsub_destination=google_native.cloudasset.v1.PubsubDestinationArgs(
                topic="string",
            ),
        ),
        name="string",
        v1_id="string",
        v1_id1="string",
        asset_names=["string"],
        asset_types=["string"],
        condition=google_native.cloudasset.v1.ExprArgs(
            description="string",
            expression="string",
            location="string",
            title="string",
        ),
        content_type=google_native.cloudasset.v1.FeedContentType.CONTENT_TYPE_UNSPECIFIED,
        relationship_types=["string"])
    
    const feedResource = new google_native.cloudasset.v1.Feed("feedResource", {
        feedId: "string",
        feedOutputConfig: {
            pubsubDestination: {
                topic: "string",
            },
        },
        name: "string",
        v1Id: "string",
        v1Id1: "string",
        assetNames: ["string"],
        assetTypes: ["string"],
        condition: {
            description: "string",
            expression: "string",
            location: "string",
            title: "string",
        },
        contentType: google_native.cloudasset.v1.FeedContentType.ContentTypeUnspecified,
        relationshipTypes: ["string"],
    });
    
    type: google-native:cloudasset/v1:Feed
    properties:
        assetNames:
            - string
        assetTypes:
            - string
        condition:
            description: string
            expression: string
            location: string
            title: string
        contentType: CONTENT_TYPE_UNSPECIFIED
        feedId: string
        feedOutputConfig:
            pubsubDestination:
                topic: string
        name: string
        relationshipTypes:
            - string
        v1Id: string
        v1Id1: string
    

    Feed Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Feed resource accepts the following input properties:

    FeedId string
    This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
    FeedOutputConfig Pulumi.GoogleNative.CloudAsset.V1.Inputs.FeedOutputConfig
    Feed output configuration defining where the asset updates are published to.
    Name string
    The format will be projects/{project_number}/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.
    V1Id string
    V1Id1 string
    AssetNames List<string>
    A list of the full names of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types 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.
    AssetTypes List<string>
    A list of types of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types are exported to the feed. Example: "compute.googleapis.com/Disk" For a list of all supported asset types, see Supported asset types.
    Condition Pulumi.GoogleNative.CloudAsset.V1.Inputs.Expr
    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] (https://github.com/google/cel-spec) 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. See our user guide for detailed instructions.
    ContentType Pulumi.GoogleNative.CloudAsset.V1.FeedContentType
    Asset content type. If not specified, no content but the asset name and type will be returned.
    RelationshipTypes List<string>
    A list of relationship types to output, for example: INSTANCE_TO_INSTANCEGROUP. This field should only be specified if content_type=RELATIONSHIP. * If specified: it outputs specified relationship updates on the [asset_names] or the [asset_types]. It returns an error if any of the [relationship_types] doesn't belong to the supported relationship types of the [asset_names] or [asset_types], or any of the [asset_names] or the [asset_types] doesn't belong to the source types of the [relationship_types]. * Otherwise: it outputs the supported relationships of the types of [asset_names] and [asset_types] or returns an error if any of the [asset_names] or the [asset_types] has no replationship support. See Introduction to Cloud Asset Inventory for all supported asset types and relationship types.
    FeedId string
    This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
    FeedOutputConfig FeedOutputConfigArgs
    Feed output configuration defining where the asset updates are published to.
    Name string
    The format will be projects/{project_number}/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.
    V1Id string
    V1Id1 string
    AssetNames []string
    A list of the full names of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types 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.
    AssetTypes []string
    A list of types of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types are exported to the feed. Example: "compute.googleapis.com/Disk" For a list of all supported asset types, see Supported asset types.
    Condition ExprArgs
    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] (https://github.com/google/cel-spec) 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. See our user guide for detailed instructions.
    ContentType FeedContentType
    Asset content type. If not specified, no content but the asset name and type will be returned.
    RelationshipTypes []string
    A list of relationship types to output, for example: INSTANCE_TO_INSTANCEGROUP. This field should only be specified if content_type=RELATIONSHIP. * If specified: it outputs specified relationship updates on the [asset_names] or the [asset_types]. It returns an error if any of the [relationship_types] doesn't belong to the supported relationship types of the [asset_names] or [asset_types], or any of the [asset_names] or the [asset_types] doesn't belong to the source types of the [relationship_types]. * Otherwise: it outputs the supported relationships of the types of [asset_names] and [asset_types] or returns an error if any of the [asset_names] or the [asset_types] has no replationship support. See Introduction to Cloud Asset Inventory for all supported asset types and relationship types.
    feedId String
    This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
    feedOutputConfig FeedOutputConfig
    Feed output configuration defining where the asset updates are published to.
    name String
    The format will be projects/{project_number}/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.
    v1Id String
    v1Id1 String
    assetNames List<String>
    A list of the full names of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types 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.
    assetTypes List<String>
    A list of types of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types are exported to the feed. Example: "compute.googleapis.com/Disk" For a list of all supported asset types, see Supported asset types.
    condition Expr
    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] (https://github.com/google/cel-spec) 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. See our user guide for detailed instructions.
    contentType FeedContentType
    Asset content type. If not specified, no content but the asset name and type will be returned.
    relationshipTypes List<String>
    A list of relationship types to output, for example: INSTANCE_TO_INSTANCEGROUP. This field should only be specified if content_type=RELATIONSHIP. * If specified: it outputs specified relationship updates on the [asset_names] or the [asset_types]. It returns an error if any of the [relationship_types] doesn't belong to the supported relationship types of the [asset_names] or [asset_types], or any of the [asset_names] or the [asset_types] doesn't belong to the source types of the [relationship_types]. * Otherwise: it outputs the supported relationships of the types of [asset_names] and [asset_types] or returns an error if any of the [asset_names] or the [asset_types] has no replationship support. See Introduction to Cloud Asset Inventory for all supported asset types and relationship types.
    feedId string
    This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
    feedOutputConfig FeedOutputConfig
    Feed output configuration defining where the asset updates are published to.
    name string
    The format will be projects/{project_number}/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.
    v1Id string
    v1Id1 string
    assetNames string[]
    A list of the full names of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types 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.
    assetTypes string[]
    A list of types of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types are exported to the feed. Example: "compute.googleapis.com/Disk" For a list of all supported asset types, see Supported asset types.
    condition Expr
    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] (https://github.com/google/cel-spec) 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. See our user guide for detailed instructions.
    contentType FeedContentType
    Asset content type. If not specified, no content but the asset name and type will be returned.
    relationshipTypes string[]
    A list of relationship types to output, for example: INSTANCE_TO_INSTANCEGROUP. This field should only be specified if content_type=RELATIONSHIP. * If specified: it outputs specified relationship updates on the [asset_names] or the [asset_types]. It returns an error if any of the [relationship_types] doesn't belong to the supported relationship types of the [asset_names] or [asset_types], or any of the [asset_names] or the [asset_types] doesn't belong to the source types of the [relationship_types]. * Otherwise: it outputs the supported relationships of the types of [asset_names] and [asset_types] or returns an error if any of the [asset_names] or the [asset_types] has no replationship support. See Introduction to Cloud Asset Inventory for all supported asset types and relationship types.
    feed_id str
    This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
    feed_output_config FeedOutputConfigArgs
    Feed output configuration defining where the asset updates are published to.
    name str
    The format will be projects/{project_number}/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.
    v1_id str
    v1_id1 str
    asset_names Sequence[str]
    A list of the full names of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types 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.
    asset_types Sequence[str]
    A list of types of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types are exported to the feed. Example: "compute.googleapis.com/Disk" For a list of all supported asset types, see Supported asset types.
    condition ExprArgs
    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] (https://github.com/google/cel-spec) 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. See our user guide for detailed instructions.
    content_type FeedContentType
    Asset content type. If not specified, no content but the asset name and type will be returned.
    relationship_types Sequence[str]
    A list of relationship types to output, for example: INSTANCE_TO_INSTANCEGROUP. This field should only be specified if content_type=RELATIONSHIP. * If specified: it outputs specified relationship updates on the [asset_names] or the [asset_types]. It returns an error if any of the [relationship_types] doesn't belong to the supported relationship types of the [asset_names] or [asset_types], or any of the [asset_names] or the [asset_types] doesn't belong to the source types of the [relationship_types]. * Otherwise: it outputs the supported relationships of the types of [asset_names] and [asset_types] or returns an error if any of the [asset_names] or the [asset_types] has no replationship support. See Introduction to Cloud Asset Inventory for all supported asset types and relationship types.
    feedId String
    This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
    feedOutputConfig Property Map
    Feed output configuration defining where the asset updates are published to.
    name String
    The format will be projects/{project_number}/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.
    v1Id String
    v1Id1 String
    assetNames List<String>
    A list of the full names of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types 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.
    assetTypes List<String>
    A list of types of the assets to receive updates. You must specify either or both of asset_names and asset_types. Only asset updates matching specified asset_names or asset_types are exported to the feed. Example: "compute.googleapis.com/Disk" For a list of all supported asset types, see Supported asset types.
    condition Property Map
    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] (https://github.com/google/cel-spec) 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. See our user guide for detailed instructions.
    contentType "CONTENT_TYPE_UNSPECIFIED" | "RESOURCE" | "IAM_POLICY" | "ORG_POLICY" | "ACCESS_POLICY" | "OS_INVENTORY" | "RELATIONSHIP"
    Asset content type. If not specified, no content but the asset name and type will be returned.
    relationshipTypes List<String>
    A list of relationship types to output, for example: INSTANCE_TO_INSTANCEGROUP. This field should only be specified if content_type=RELATIONSHIP. * If specified: it outputs specified relationship updates on the [asset_names] or the [asset_types]. It returns an error if any of the [relationship_types] doesn't belong to the supported relationship types of the [asset_names] or [asset_types], or any of the [asset_names] or the [asset_types] doesn't belong to the source types of the [relationship_types]. * Otherwise: it outputs the supported relationships of the types of [asset_names] and [asset_types] or returns an error if any of the [asset_names] or the [asset_types] has no replationship support. See Introduction to Cloud Asset Inventory for all supported asset types and relationship types.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Feed resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Supporting Types

    Expr, ExprArgs

    Description string
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    Expression string
    Textual representation of an expression in Common Expression Language syntax.
    Location string
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    Title string
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    Description string
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    Expression string
    Textual representation of an expression in Common Expression Language syntax.
    Location string
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    Title string
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    description String
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    expression String
    Textual representation of an expression in Common Expression Language syntax.
    location String
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    title String
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    description string
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    expression string
    Textual representation of an expression in Common Expression Language syntax.
    location string
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    title string
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    description str
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    expression str
    Textual representation of an expression in Common Expression Language syntax.
    location str
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    title str
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    description String
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    expression String
    Textual representation of an expression in Common Expression Language syntax.
    location String
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    title String
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

    ExprResponse, ExprResponseArgs

    Description string
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    Expression string
    Textual representation of an expression in Common Expression Language syntax.
    Location string
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    Title string
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    Description string
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    Expression string
    Textual representation of an expression in Common Expression Language syntax.
    Location string
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    Title string
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    description String
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    expression String
    Textual representation of an expression in Common Expression Language syntax.
    location String
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    title String
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    description string
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    expression string
    Textual representation of an expression in Common Expression Language syntax.
    location string
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    title string
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    description str
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    expression str
    Textual representation of an expression in Common Expression Language syntax.
    location str
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    title str
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
    description String
    Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
    expression String
    Textual representation of an expression in Common Expression Language syntax.
    location String
    Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
    title String
    Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.

    FeedContentType, FeedContentTypeArgs

    ContentTypeUnspecified
    CONTENT_TYPE_UNSPECIFIEDUnspecified content type.
    Resource
    RESOURCEResource metadata.
    IamPolicy
    IAM_POLICYThe actual IAM policy set on a resource.
    OrgPolicy
    ORG_POLICYThe organization policy set on an asset.
    AccessPolicy
    ACCESS_POLICYThe Access Context Manager policy set on an asset.
    OsInventory
    OS_INVENTORYThe runtime OS Inventory information.
    Relationship
    RELATIONSHIPThe related resources.
    FeedContentTypeContentTypeUnspecified
    CONTENT_TYPE_UNSPECIFIEDUnspecified content type.
    FeedContentTypeResource
    RESOURCEResource metadata.
    FeedContentTypeIamPolicy
    IAM_POLICYThe actual IAM policy set on a resource.
    FeedContentTypeOrgPolicy
    ORG_POLICYThe organization policy set on an asset.
    FeedContentTypeAccessPolicy
    ACCESS_POLICYThe Access Context Manager policy set on an asset.
    FeedContentTypeOsInventory
    OS_INVENTORYThe runtime OS Inventory information.
    FeedContentTypeRelationship
    RELATIONSHIPThe related resources.
    ContentTypeUnspecified
    CONTENT_TYPE_UNSPECIFIEDUnspecified content type.
    Resource
    RESOURCEResource metadata.
    IamPolicy
    IAM_POLICYThe actual IAM policy set on a resource.
    OrgPolicy
    ORG_POLICYThe organization policy set on an asset.
    AccessPolicy
    ACCESS_POLICYThe Access Context Manager policy set on an asset.
    OsInventory
    OS_INVENTORYThe runtime OS Inventory information.
    Relationship
    RELATIONSHIPThe related resources.
    ContentTypeUnspecified
    CONTENT_TYPE_UNSPECIFIEDUnspecified content type.
    Resource
    RESOURCEResource metadata.
    IamPolicy
    IAM_POLICYThe actual IAM policy set on a resource.
    OrgPolicy
    ORG_POLICYThe organization policy set on an asset.
    AccessPolicy
    ACCESS_POLICYThe Access Context Manager policy set on an asset.
    OsInventory
    OS_INVENTORYThe runtime OS Inventory information.
    Relationship
    RELATIONSHIPThe related resources.
    CONTENT_TYPE_UNSPECIFIED
    CONTENT_TYPE_UNSPECIFIEDUnspecified content type.
    RESOURCE
    RESOURCEResource metadata.
    IAM_POLICY
    IAM_POLICYThe actual IAM policy set on a resource.
    ORG_POLICY
    ORG_POLICYThe organization policy set on an asset.
    ACCESS_POLICY
    ACCESS_POLICYThe Access Context Manager policy set on an asset.
    OS_INVENTORY
    OS_INVENTORYThe runtime OS Inventory information.
    RELATIONSHIP
    RELATIONSHIPThe related resources.
    "CONTENT_TYPE_UNSPECIFIED"
    CONTENT_TYPE_UNSPECIFIEDUnspecified content type.
    "RESOURCE"
    RESOURCEResource metadata.
    "IAM_POLICY"
    IAM_POLICYThe actual IAM policy set on a resource.
    "ORG_POLICY"
    ORG_POLICYThe organization policy set on an asset.
    "ACCESS_POLICY"
    ACCESS_POLICYThe Access Context Manager policy set on an asset.
    "OS_INVENTORY"
    OS_INVENTORYThe runtime OS Inventory information.
    "RELATIONSHIP"
    RELATIONSHIPThe related resources.

    FeedOutputConfig, FeedOutputConfigArgs

    PubsubDestination PubsubDestination
    Destination on Pub/Sub.
    pubsubDestination PubsubDestination
    Destination on Pub/Sub.
    pubsubDestination PubsubDestination
    Destination on Pub/Sub.
    pubsub_destination PubsubDestination
    Destination on Pub/Sub.
    pubsubDestination Property Map
    Destination on Pub/Sub.

    FeedOutputConfigResponse, FeedOutputConfigResponseArgs

    pubsubDestination Property Map
    Destination on Pub/Sub.

    PubsubDestination, PubsubDestinationArgs

    Topic string
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    Topic string
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    topic String
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    topic string
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    topic str
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    topic String
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.

    PubsubDestinationResponse, PubsubDestinationResponseArgs

    Topic string
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    Topic string
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    topic String
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    topic string
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    topic str
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.
    topic String
    The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/topics/TOPIC_ID.

    Package Details

    Repository
    Google Cloud Native pulumi/pulumi-google-native
    License
    Apache-2.0
    google-native logo

    Google Cloud Native is in preview. Google Cloud Classic is fully supported.

    Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi