google-native logo
Google Cloud Native v0.28.0, Feb 2 23

google-native.cloudasset/v1.Feed

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

new Feed(name: string, args: FeedArgs, opts?: CustomResourceOptions);
@overload
def Feed(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         asset_names: Optional[Sequence[str]] = None,
         asset_types: Optional[Sequence[str]] = None,
         condition: Optional[ExprArgs] = None,
         content_type: Optional[FeedContentType] = None,
         feed_id: Optional[str] = None,
         feed_output_config: Optional[FeedOutputConfigArgs] = None,
         name: Optional[str] = None,
         relationship_types: Optional[Sequence[str]] = None,
         v1_id: Optional[str] = None,
         v1_id1: Optional[str] = None)
@overload
def Feed(resource_name: str,
         args: FeedArgs,
         opts: Optional[ResourceOptions] = 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.

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.

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.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 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.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 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 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 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 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 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.

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

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

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

ContentTypeUnspecified
CONTENT_TYPE_UNSPECIFIED

Unspecified content type.

Resource
RESOURCE

Resource metadata.

IamPolicy
IAM_POLICY

The actual IAM policy set on a resource.

OrgPolicy
ORG_POLICY

The organization policy set on an asset.

AccessPolicy
ACCESS_POLICY

The Access Context Manager policy set on an asset.

OsInventory
OS_INVENTORY

The runtime OS Inventory information.

Relationship
RELATIONSHIP

The related resources.

FeedContentTypeContentTypeUnspecified
CONTENT_TYPE_UNSPECIFIED

Unspecified content type.

FeedContentTypeResource
RESOURCE

Resource metadata.

FeedContentTypeIamPolicy
IAM_POLICY

The actual IAM policy set on a resource.

FeedContentTypeOrgPolicy
ORG_POLICY

The organization policy set on an asset.

FeedContentTypeAccessPolicy
ACCESS_POLICY

The Access Context Manager policy set on an asset.

FeedContentTypeOsInventory
OS_INVENTORY

The runtime OS Inventory information.

FeedContentTypeRelationship
RELATIONSHIP

The related resources.

ContentTypeUnspecified
CONTENT_TYPE_UNSPECIFIED

Unspecified content type.

Resource
RESOURCE

Resource metadata.

IamPolicy
IAM_POLICY

The actual IAM policy set on a resource.

OrgPolicy
ORG_POLICY

The organization policy set on an asset.

AccessPolicy
ACCESS_POLICY

The Access Context Manager policy set on an asset.

OsInventory
OS_INVENTORY

The runtime OS Inventory information.

Relationship
RELATIONSHIP

The related resources.

ContentTypeUnspecified
CONTENT_TYPE_UNSPECIFIED

Unspecified content type.

Resource
RESOURCE

Resource metadata.

IamPolicy
IAM_POLICY

The actual IAM policy set on a resource.

OrgPolicy
ORG_POLICY

The organization policy set on an asset.

AccessPolicy
ACCESS_POLICY

The Access Context Manager policy set on an asset.

OsInventory
OS_INVENTORY

The runtime OS Inventory information.

Relationship
RELATIONSHIP

The related resources.

CONTENT_TYPE_UNSPECIFIED
CONTENT_TYPE_UNSPECIFIED

Unspecified content type.

RESOURCE
RESOURCE

Resource metadata.

IAM_POLICY
IAM_POLICY

The actual IAM policy set on a resource.

ORG_POLICY
ORG_POLICY

The organization policy set on an asset.

ACCESS_POLICY
ACCESS_POLICY

The Access Context Manager policy set on an asset.

OS_INVENTORY
OS_INVENTORY

The runtime OS Inventory information.

RELATIONSHIP
RELATIONSHIP

The related resources.

"CONTENT_TYPE_UNSPECIFIED"
CONTENT_TYPE_UNSPECIFIED

Unspecified content type.

"RESOURCE"
RESOURCE

Resource metadata.

"IAM_POLICY"
IAM_POLICY

The actual IAM policy set on a resource.

"ORG_POLICY"
ORG_POLICY

The organization policy set on an asset.

"ACCESS_POLICY"
ACCESS_POLICY

The Access Context Manager policy set on an asset.

"OS_INVENTORY"
OS_INVENTORY

The runtime OS Inventory information.

"RELATIONSHIP"
RELATIONSHIP

The related resources.

FeedOutputConfig

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

pubsubDestination Property Map

Destination on Pub/Sub.

PubsubDestination

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

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