Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.cloudasset.kotlin
import com.pulumi.core.Output
import com.pulumi.gcp.cloudasset.kotlin.outputs.FolderFeedCondition
import com.pulumi.gcp.cloudasset.kotlin.outputs.FolderFeedFeedOutputConfig
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import com.pulumi.gcp.cloudasset.kotlin.outputs.FolderFeedCondition.Companion.toKotlin as folderFeedConditionToKotlin
import com.pulumi.gcp.cloudasset.kotlin.outputs.FolderFeedFeedOutputConfig.Companion.toKotlin as folderFeedFeedOutputConfigToKotlin
/**
* Builder for [FolderFeed].
*/
@PulumiTagMarker
public class FolderFeedResourceBuilder internal constructor() {
public var name: String? = null
public var args: FolderFeedArgs = FolderFeedArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend FolderFeedArgsBuilder.() -> Unit) {
val builder = FolderFeedArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): FolderFeed {
val builtJavaResource = com.pulumi.gcp.cloudasset.FolderFeed(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return FolderFeed(builtJavaResource)
}
}
/**
* Describes a Cloud Asset Inventory feed used to to listen to asset updates.
* To get more information about FolderFeed, see:
* * [API documentation](https://cloud.google.com/asset-inventory/docs/reference/rest/)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/asset-inventory/docs)
* ## Example Usage
* ### Cloud Asset Folder Feed
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* // The topic where the resource change notifications will be sent.
* const feedOutput = new gcp.pubsub.Topic("feed_output", {
* project: "my-project-name",
* name: "network-updates",
* });
* // The folder that will be monitored for resource updates.
* const myFolder = new gcp.organizations.Folder("my_folder", {
* displayName: "Networking",
* parent: "organizations/123456789",
* });
* // Create a feed that sends notifications about network resource updates under a
* // particular folder.
* const folderFeed = new gcp.cloudasset.FolderFeed("folder_feed", {
* billingProject: "my-project-name",
* folder: myFolder.folderId,
* feedId: "network-updates",
* contentType: "RESOURCE",
* assetTypes: [
* "compute.googleapis.com/Subnetwork",
* "compute.googleapis.com/Network",
* ],
* feedOutputConfig: {
* pubsubDestination: {
* topic: feedOutput.id,
* },
* },
* condition: {
* expression: `!temporal_asset.deleted &&
* temporal_asset.prior_asset_state == google.cloud.asset.v1.TemporalAsset.PriorAssetState.DOES_NOT_EXIST
* `,
* title: "created",
* description: "Send notifications on creation events",
* },
* });
* // Find the project number of the project whose identity will be used for sending
* // the asset change notifications.
* const project = gcp.organizations.getProject({
* projectId: "my-project-name",
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* # The topic where the resource change notifications will be sent.
* feed_output = gcp.pubsub.Topic("feed_output",
* project="my-project-name",
* name="network-updates")
* # The folder that will be monitored for resource updates.
* my_folder = gcp.organizations.Folder("my_folder",
* display_name="Networking",
* parent="organizations/123456789")
* # Create a feed that sends notifications about network resource updates under a
* # particular folder.
* folder_feed = gcp.cloudasset.FolderFeed("folder_feed",
* billing_project="my-project-name",
* folder=my_folder.folder_id,
* feed_id="network-updates",
* content_type="RESOURCE",
* asset_types=[
* "compute.googleapis.com/Subnetwork",
* "compute.googleapis.com/Network",
* ],
* feed_output_config={
* "pubsub_destination": {
* "topic": feed_output.id,
* },
* },
* condition={
* "expression": """!temporal_asset.deleted &&
* temporal_asset.prior_asset_state == google.cloud.asset.v1.TemporalAsset.PriorAssetState.DOES_NOT_EXIST
* """,
* "title": "created",
* "description": "Send notifications on creation events",
* })
* # Find the project number of the project whose identity will be used for sending
* # the asset change notifications.
* project = gcp.organizations.get_project(project_id="my-project-name")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* // The topic where the resource change notifications will be sent.
* var feedOutput = new Gcp.PubSub.Topic("feed_output", new()
* {
* Project = "my-project-name",
* Name = "network-updates",
* });
* // The folder that will be monitored for resource updates.
* var myFolder = new Gcp.Organizations.Folder("my_folder", new()
* {
* DisplayName = "Networking",
* Parent = "organizations/123456789",
* });
* // Create a feed that sends notifications about network resource updates under a
* // particular folder.
* var folderFeed = new Gcp.CloudAsset.FolderFeed("folder_feed", new()
* {
* BillingProject = "my-project-name",
* Folder = myFolder.FolderId,
* FeedId = "network-updates",
* ContentType = "RESOURCE",
* AssetTypes = new[]
* {
* "compute.googleapis.com/Subnetwork",
* "compute.googleapis.com/Network",
* },
* FeedOutputConfig = new Gcp.CloudAsset.Inputs.FolderFeedFeedOutputConfigArgs
* {
* PubsubDestination = new Gcp.CloudAsset.Inputs.FolderFeedFeedOutputConfigPubsubDestinationArgs
* {
* Topic = feedOutput.Id,
* },
* },
* Condition = new Gcp.CloudAsset.Inputs.FolderFeedConditionArgs
* {
* Expression = @"!temporal_asset.deleted &&
* temporal_asset.prior_asset_state == google.cloud.asset.v1.TemporalAsset.PriorAssetState.DOES_NOT_EXIST
* ",
* Title = "created",
* Description = "Send notifications on creation events",
* },
* });
* // Find the project number of the project whose identity will be used for sending
* // the asset change notifications.
* var project = Gcp.Organizations.GetProject.Invoke(new()
* {
* ProjectId = "my-project-name",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/cloudasset"
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/pubsub"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* // The topic where the resource change notifications will be sent.
* feedOutput, err := pubsub.NewTopic(ctx, "feed_output", &pubsub.TopicArgs{
* Project: pulumi.String("my-project-name"),
* Name: pulumi.String("network-updates"),
* })
* if err != nil {
* return err
* }
* // The folder that will be monitored for resource updates.
* myFolder, err := organizations.NewFolder(ctx, "my_folder", &organizations.FolderArgs{
* DisplayName: pulumi.String("Networking"),
* Parent: pulumi.String("organizations/123456789"),
* })
* if err != nil {
* return err
* }
* // Create a feed that sends notifications about network resource updates under a
* // particular folder.
* _, err = cloudasset.NewFolderFeed(ctx, "folder_feed", &cloudasset.FolderFeedArgs{
* BillingProject: pulumi.String("my-project-name"),
* Folder: myFolder.FolderId,
* FeedId: pulumi.String("network-updates"),
* ContentType: pulumi.String("RESOURCE"),
* AssetTypes: pulumi.StringArray{
* pulumi.String("compute.googleapis.com/Subnetwork"),
* pulumi.String("compute.googleapis.com/Network"),
* },
* FeedOutputConfig: &cloudasset.FolderFeedFeedOutputConfigArgs{
* PubsubDestination: &cloudasset.FolderFeedFeedOutputConfigPubsubDestinationArgs{
* Topic: feedOutput.ID(),
* },
* },
* Condition: &cloudasset.FolderFeedConditionArgs{
* Expression: pulumi.String("!temporal_asset.deleted &&\ntemporal_asset.prior_asset_state == google.cloud.asset.v1.TemporalAsset.PriorAssetState.DOES_NOT_EXIST\n"),
* Title: pulumi.String("created"),
* Description: pulumi.String("Send notifications on creation events"),
* },
* })
* if err != nil {
* return err
* }
* // Find the project number of the project whose identity will be used for sending
* // the asset change notifications.
* _, err = organizations.LookupProject(ctx, &organizations.LookupProjectArgs{
* ProjectId: pulumi.StringRef("my-project-name"),
* }, nil)
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.pubsub.Topic;
* import com.pulumi.gcp.pubsub.TopicArgs;
* import com.pulumi.gcp.organizations.Folder;
* import com.pulumi.gcp.organizations.FolderArgs;
* import com.pulumi.gcp.cloudasset.FolderFeed;
* import com.pulumi.gcp.cloudasset.FolderFeedArgs;
* import com.pulumi.gcp.cloudasset.inputs.FolderFeedFeedOutputConfigArgs;
* import com.pulumi.gcp.cloudasset.inputs.FolderFeedFeedOutputConfigPubsubDestinationArgs;
* import com.pulumi.gcp.cloudasset.inputs.FolderFeedConditionArgs;
* import com.pulumi.gcp.organizations.OrganizationsFunctions;
* import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
* public static void stack(Context ctx) {
* // The topic where the resource change notifications will be sent.
* var feedOutput = new Topic("feedOutput", TopicArgs.builder()
* .project("my-project-name")
* .name("network-updates")
* .build());
* // The folder that will be monitored for resource updates.
* var myFolder = new Folder("myFolder", FolderArgs.builder()
* .displayName("Networking")
* .parent("organizations/123456789")
* .build());
* // Create a feed that sends notifications about network resource updates under a
* // particular folder.
* var folderFeed = new FolderFeed("folderFeed", FolderFeedArgs.builder()
* .billingProject("my-project-name")
* .folder(myFolder.folderId())
* .feedId("network-updates")
* .contentType("RESOURCE")
* .assetTypes(
* "compute.googleapis.com/Subnetwork",
* "compute.googleapis.com/Network")
* .feedOutputConfig(FolderFeedFeedOutputConfigArgs.builder()
* .pubsubDestination(FolderFeedFeedOutputConfigPubsubDestinationArgs.builder()
* .topic(feedOutput.id())
* .build())
* .build())
* .condition(FolderFeedConditionArgs.builder()
* .expression("""
* !temporal_asset.deleted &&
* temporal_asset.prior_asset_state == google.cloud.asset.v1.TemporalAsset.PriorAssetState.DOES_NOT_EXIST
* """)
* .title("created")
* .description("Send notifications on creation events")
* .build())
* .build());
* // Find the project number of the project whose identity will be used for sending
* // the asset change notifications.
* final var project = OrganizationsFunctions.getProject(GetProjectArgs.builder()
* .projectId("my-project-name")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* # Create a feed that sends notifications about network resource updates under a
* # particular folder.
* folderFeed:
* type: gcp:cloudasset:FolderFeed
* name: folder_feed
* properties:
* billingProject: my-project-name
* folder: ${myFolder.folderId}
* feedId: network-updates
* contentType: RESOURCE
* assetTypes:
* - compute.googleapis.com/Subnetwork
* - compute.googleapis.com/Network
* feedOutputConfig:
* pubsubDestination:
* topic: ${feedOutput.id}
* condition:
* expression: |
* !temporal_asset.deleted &&
* temporal_asset.prior_asset_state == google.cloud.asset.v1.TemporalAsset.PriorAssetState.DOES_NOT_EXIST
* title: created
* description: Send notifications on creation events
* # The topic where the resource change notifications will be sent.
* feedOutput:
* type: gcp:pubsub:Topic
* name: feed_output
* properties:
* project: my-project-name
* name: network-updates
* # The folder that will be monitored for resource updates.
* myFolder:
* type: gcp:organizations:Folder
* name: my_folder
* properties:
* displayName: Networking
* parent: organizations/123456789
* variables:
* # Find the project number of the project whose identity will be used for sending
* # the asset change notifications.
* project:
* fn::invoke:
* Function: gcp:organizations:getProject
* Arguments:
* projectId: my-project-name
* ```
*
* ## Import
* FolderFeed can be imported using any of these accepted formats:
* * `folders/{{folder_id}}/feeds/{{name}}`
* * `{{folder_id}}/{{name}}`
* When using the `pulumi import` command, FolderFeed can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:cloudasset/folderFeed:FolderFeed default folders/{{folder_id}}/feeds/{{name}}
* ```
* ```sh
* $ pulumi import gcp:cloudasset/folderFeed:FolderFeed default {{folder_id}}/{{name}}
* ```
*/
public class FolderFeed internal constructor(
override val javaResource: com.pulumi.gcp.cloudasset.FolderFeed,
) : KotlinCustomResource(javaResource, FolderFeedMapper) {
/**
* A list of the full names of the assets to receive updates. You must specify either or both of assetNames and assetTypes.
* Only asset updates matching specified assetNames and assetTypes are exported to the feed. For example:
* //compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1. See
* https://cloud.google.com/apis/design/resourceNames#fullResourceName for more info.
*/
public val assetNames: Output>?
get() = javaResource.assetNames().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0
})
}).orElse(null)
})
/**
* A list of types of the assets to receive updates. You must specify either or both of assetNames and assetTypes. Only
* asset updates matching specified assetNames and assetTypes are exported to the feed. For example:
* "compute.googleapis.com/Disk" See https://cloud.google.com/asset-inventory/docs/supported-asset-types for a list of all
* supported asset types.
*/
public val assetTypes: Output>?
get() = javaResource.assetTypes().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0
})
}).orElse(null)
})
/**
* The project whose identity will be used when sending messages to the
* destination pubsub topic. It also specifies the project for API
* enablement check, quota, and billing.
*/
public val billingProject: Output
get() = javaResource.billingProject().applyValue({ args0 -> args0 })
/**
* A condition which determines whether an asset update should be published. If specified, an asset will be returned only
* when the expression evaluates to true. When set, expression field must be a valid CEL expression on a TemporalAsset with
* name temporal_asset. Example: a Feed with expression "temporal_asset.deleted == true" will only publish Asset deletions.
* Other fields of condition are optional.
*/
public val condition: Output?
get() = javaResource.condition().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
folderFeedConditionToKotlin(args0)
})
}).orElse(null)
})
/**
* Asset content type. If not specified, no content but the asset name and type will be returned. Possible values:
* ["CONTENT_TYPE_UNSPECIFIED", "RESOURCE", "IAM_POLICY", "ORG_POLICY", "OS_INVENTORY", "ACCESS_POLICY"]
*/
public val contentType: Output?
get() = javaResource.contentType().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* This is the client-assigned asset feed identifier and it needs to be unique under a specific parent.
*/
public val feedId: Output
get() = javaResource.feedId().applyValue({ args0 -> args0 })
/**
* Output configuration for asset feed destination.
* Structure is documented below.
*/
public val feedOutputConfig: Output
get() = javaResource.feedOutputConfig().applyValue({ args0 ->
args0.let({ args0 ->
folderFeedFeedOutputConfigToKotlin(args0)
})
})
/**
* The folder this feed should be created in.
*/
public val folder: Output
get() = javaResource.folder().applyValue({ args0 -> args0 })
/**
* The ID of the folder where this feed has been created. Both [FOLDER_NUMBER]
* and folders/[FOLDER_NUMBER] are accepted.
*/
public val folderId: Output
get() = javaResource.folderId().applyValue({ args0 -> args0 })
/**
* The format will be folders/{folder_number}/feeds/{client-assigned_feed_identifier}.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
}
public object FolderFeedMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.gcp.cloudasset.FolderFeed::class == javaResource::class
override fun map(javaResource: Resource): FolderFeed = FolderFeed(
javaResource as
com.pulumi.gcp.cloudasset.FolderFeed,
)
}
/**
* @see [FolderFeed].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [FolderFeed].
*/
public suspend fun folderFeed(name: String, block: suspend FolderFeedResourceBuilder.() -> Unit): FolderFeed {
val builder = FolderFeedResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [FolderFeed].
* @param name The _unique_ name of the resulting resource.
*/
public fun folderFeed(name: String): FolderFeed {
val builder = FolderFeedResourceBuilder()
builder.name(name)
return builder.build()
}