Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.cloudasset/v1.Feed
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
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)
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.
Constructor 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:
- Feed
Id string - This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
- Feed
Output Pulumi.Config Google Native. Cloud Asset. V1. Inputs. Feed Output Config - 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
- Asset
Names 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. - Asset
Types 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.
Google Native. Cloud Asset. 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 theExpr
must be a valid [CEL expression] (https://github.com/google/cel-spec) on a TemporalAsset with nametemporal_asset
. Example: a Feed with expression ("temporal_asset.deleted == true") will only publish Asset deletions. Other fields ofExpr
are optional. See our user guide for detailed instructions. - Content
Type Pulumi.Google Native. Cloud Asset. V1. Feed Content Type - Asset content type. If not specified, no content but the asset name and type will be returned.
- Relationship
Types 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.
- Feed
Id string - This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
- Feed
Output FeedConfig Output Config Args - 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
- Asset
Names []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. - Asset
Types []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
Args - 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 theExpr
must be a valid [CEL expression] (https://github.com/google/cel-spec) on a TemporalAsset with nametemporal_asset
. Example: a Feed with expression ("temporal_asset.deleted == true") will only publish Asset deletions. Other fields ofExpr
are optional. See our user guide for detailed instructions. - Content
Type FeedContent Type - Asset content type. If not specified, no content but the asset name and type will be returned.
- Relationship
Types []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 String - This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
- feed
Output FeedConfig Output Config - 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
- asset
Names 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. - asset
Types 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 theExpr
must be a valid [CEL expression] (https://github.com/google/cel-spec) on a TemporalAsset with nametemporal_asset
. Example: a Feed with expression ("temporal_asset.deleted == true") will only publish Asset deletions. Other fields ofExpr
are optional. See our user guide for detailed instructions. - content
Type FeedContent Type - Asset content type. If not specified, no content but the asset name and type will be returned.
- relationship
Types 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.
- feed
Id string - This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
- feed
Output FeedConfig Output Config - 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
- asset
Names 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. - asset
Types 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 theExpr
must be a valid [CEL expression] (https://github.com/google/cel-spec) on a TemporalAsset with nametemporal_asset
. Example: a Feed with expression ("temporal_asset.deleted == true") will only publish Asset deletions. Other fields ofExpr
are optional. See our user guide for detailed instructions. - content
Type FeedContent Type - Asset content type. If not specified, no content but the asset name and type will be returned.
- relationship
Types 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_ Feedconfig Output Config Args - 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
Expr
Args - 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 theExpr
must be a valid [CEL expression] (https://github.com/google/cel-spec) on a TemporalAsset with nametemporal_asset
. Example: a Feed with expression ("temporal_asset.deleted == true") will only publish Asset deletions. Other fields ofExpr
are optional. See our user guide for detailed instructions. - content_
type FeedContent Type - 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.
- feed
Id String - This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
- feed
Output Property MapConfig - 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
- asset
Names 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. - asset
Types 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 theExpr
must be a valid [CEL expression] (https://github.com/google/cel-spec) on a TemporalAsset with nametemporal_asset
. Example: a Feed with expression ("temporal_asset.deleted == true") will only publish Asset deletions. Other fields ofExpr
are optional. See our user guide for detailed instructions. - content
Type "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.
- relationship
Types 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
- 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.
- Feed
Content Type Content Type Unspecified - CONTENT_TYPE_UNSPECIFIEDUnspecified content type.
- Feed
Content Type Resource - RESOURCEResource metadata.
- Feed
Content Type Iam Policy - IAM_POLICYThe actual IAM policy set on a resource.
- Feed
Content Type Org Policy - ORG_POLICYThe organization policy set on an asset.
- Feed
Content Type Access Policy - ACCESS_POLICYThe Access Context Manager policy set on an asset.
- Feed
Content Type Os Inventory - OS_INVENTORYThe runtime OS Inventory information.
- Feed
Content Type 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.
- 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
- Pubsub
Destination Pulumi.Google Native. Cloud Asset. V1. Inputs. Pubsub Destination - Destination on Pub/Sub.
- Pubsub
Destination PubsubDestination - Destination on Pub/Sub.
- pubsub
Destination PubsubDestination - Destination on Pub/Sub.
- pubsub
Destination PubsubDestination - Destination on Pub/Sub.
- pubsub_
destination PubsubDestination - Destination on Pub/Sub.
- pubsub
Destination Property Map - Destination on Pub/Sub.
FeedOutputConfigResponse, FeedOutputConfigResponseArgs
- Pubsub
Destination Pulumi.Google Native. Cloud Asset. V1. Inputs. Pubsub Destination Response - Destination on Pub/Sub.
- Pubsub
Destination PubsubDestination Response - Destination on Pub/Sub.
- pubsub
Destination PubsubDestination Response - Destination on Pub/Sub.
- pubsub
Destination PubsubDestination Response - Destination on Pub/Sub.
- pubsub_
destination PubsubDestination Response - Destination on Pub/Sub.
- pubsub
Destination 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 Cloud Native is in preview. Google Cloud Classic is fully supported.