All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.cloudasset.kotlin.ProjectFeedArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.cloudasset.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.cloudasset.ProjectFeedArgs.builder
import com.pulumi.gcp.cloudasset.kotlin.inputs.ProjectFeedConditionArgs
import com.pulumi.gcp.cloudasset.kotlin.inputs.ProjectFeedConditionArgsBuilder
import com.pulumi.gcp.cloudasset.kotlin.inputs.ProjectFeedFeedOutputConfigArgs
import com.pulumi.gcp.cloudasset.kotlin.inputs.ProjectFeedFeedOutputConfigArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 * Describes a Cloud Asset Inventory feed used to to listen to asset updates.
 * To get more information about ProjectFeed, 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 Project 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",
 * });
 * // Create a feed that sends notifications about network resource updates.
 * const projectFeed = new gcp.cloudasset.ProjectFeed("project_feed", {
 *     project: "my-project-name",
 *     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")
 * # Create a feed that sends notifications about network resource updates.
 * project_feed = gcp.cloudasset.ProjectFeed("project_feed",
 *     project="my-project-name",
 *     feed_id="network-updates",
 *     content_type="RESOURCE",
 *     asset_types=[
 *         "compute.googleapis.com/Subnetwork",
 *         "compute.googleapis.com/Network",
 *     ],
 *     feed_output_config=gcp.cloudasset.ProjectFeedFeedOutputConfigArgs(
 *         pubsub_destination=gcp.cloudasset.ProjectFeedFeedOutputConfigPubsubDestinationArgs(
 *             topic=feed_output.id,
 *         ),
 *     ),
 *     condition=gcp.cloudasset.ProjectFeedConditionArgs(
 *         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",
 *     });
 *     // Create a feed that sends notifications about network resource updates.
 *     var projectFeed = new Gcp.CloudAsset.ProjectFeed("project_feed", new()
 *     {
 *         Project = "my-project-name",
 *         FeedId = "network-updates",
 *         ContentType = "RESOURCE",
 *         AssetTypes = new[]
 *         {
 *             "compute.googleapis.com/Subnetwork",
 *             "compute.googleapis.com/Network",
 *         },
 *         FeedOutputConfig = new Gcp.CloudAsset.Inputs.ProjectFeedFeedOutputConfigArgs
 *         {
 *             PubsubDestination = new Gcp.CloudAsset.Inputs.ProjectFeedFeedOutputConfigPubsubDestinationArgs
 *             {
 *                 Topic = feedOutput.Id,
 *             },
 *         },
 *         Condition = new Gcp.CloudAsset.Inputs.ProjectFeedConditionArgs
 *         {
 *             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
 * 		}
 * 		// Create a feed that sends notifications about network resource updates.
 * 		_, err = cloudasset.NewProjectFeed(ctx, "project_feed", &cloudasset.ProjectFeedArgs{
 * 			Project:     pulumi.String("my-project-name"),
 * 			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.ProjectFeedFeedOutputConfigArgs{
 * 				PubsubDestination: &cloudasset.ProjectFeedFeedOutputConfigPubsubDestinationArgs{
 * 					Topic: feedOutput.ID(),
 * 				},
 * 			},
 * 			Condition: &cloudasset.ProjectFeedConditionArgs{
 * 				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.cloudasset.ProjectFeed;
 * import com.pulumi.gcp.cloudasset.ProjectFeedArgs;
 * import com.pulumi.gcp.cloudasset.inputs.ProjectFeedFeedOutputConfigArgs;
 * import com.pulumi.gcp.cloudasset.inputs.ProjectFeedFeedOutputConfigPubsubDestinationArgs;
 * import com.pulumi.gcp.cloudasset.inputs.ProjectFeedConditionArgs;
 * 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());
 *         // Create a feed that sends notifications about network resource updates.
 *         var projectFeed = new ProjectFeed("projectFeed", ProjectFeedArgs.builder()
 *             .project("my-project-name")
 *             .feedId("network-updates")
 *             .contentType("RESOURCE")
 *             .assetTypes(
 *                 "compute.googleapis.com/Subnetwork",
 *                 "compute.googleapis.com/Network")
 *             .feedOutputConfig(ProjectFeedFeedOutputConfigArgs.builder()
 *                 .pubsubDestination(ProjectFeedFeedOutputConfigPubsubDestinationArgs.builder()
 *                     .topic(feedOutput.id())
 *                     .build())
 *                 .build())
 *             .condition(ProjectFeedConditionArgs.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.
 *   projectFeed:
 *     type: gcp:cloudasset:ProjectFeed
 *     name: project_feed
 *     properties:
 *       project: my-project-name
 *       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
 * 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
 * ProjectFeed can be imported using any of these accepted formats:
 * * `projects/{{project}}/feeds/{{name}}`
 * * `{{project}}/{{name}}`
 * * `{{name}}`
 * When using the `pulumi import` command, ProjectFeed can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:cloudasset/projectFeed:ProjectFeed default projects/{{project}}/feeds/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:cloudasset/projectFeed:ProjectFeed default {{project}}/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:cloudasset/projectFeed:ProjectFeed default {{name}}
 * ```
 * @property assetNames 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.
 * @property assetTypes 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.
 * @property billingProject 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. If not specified, the resource's project will be used.
 * @property condition 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.
 * @property contentType 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"]
 * @property feedId This is the client-assigned asset feed identifier and it needs to be unique under a specific parent.
 * @property feedOutputConfig Output configuration for asset feed destination.
 * Structure is documented below.
 * @property project
 */
public data class ProjectFeedArgs(
    public val assetNames: Output>? = null,
    public val assetTypes: Output>? = null,
    public val billingProject: Output? = null,
    public val condition: Output? = null,
    public val contentType: Output? = null,
    public val feedId: Output? = null,
    public val feedOutputConfig: Output? = null,
    public val project: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.cloudasset.ProjectFeedArgs =
        com.pulumi.gcp.cloudasset.ProjectFeedArgs.builder()
            .assetNames(assetNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .assetTypes(assetTypes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .billingProject(billingProject?.applyValue({ args0 -> args0 }))
            .condition(condition?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .contentType(contentType?.applyValue({ args0 -> args0 }))
            .feedId(feedId?.applyValue({ args0 -> args0 }))
            .feedOutputConfig(feedOutputConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .project(project?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ProjectFeedArgs].
 */
@PulumiTagMarker
public class ProjectFeedArgsBuilder internal constructor() {
    private var assetNames: Output>? = null

    private var assetTypes: Output>? = null

    private var billingProject: Output? = null

    private var condition: Output? = null

    private var contentType: Output? = null

    private var feedId: Output? = null

    private var feedOutputConfig: Output? = null

    private var project: Output? = null

    /**
     * @param value 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.
     */
    @JvmName("eiboeicyuxdonymp")
    public suspend fun assetNames(`value`: Output>) {
        this.assetNames = value
    }

    @JvmName("xulnyuihslhefgqv")
    public suspend fun assetNames(vararg values: Output) {
        this.assetNames = Output.all(values.asList())
    }

    /**
     * @param values 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.
     */
    @JvmName("jookqlvcphyqugak")
    public suspend fun assetNames(values: List>) {
        this.assetNames = Output.all(values)
    }

    /**
     * @param value 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.
     */
    @JvmName("niubwkljivsbkhtf")
    public suspend fun assetTypes(`value`: Output>) {
        this.assetTypes = value
    }

    @JvmName("ovrdaldabjlkrtja")
    public suspend fun assetTypes(vararg values: Output) {
        this.assetTypes = Output.all(values.asList())
    }

    /**
     * @param values 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.
     */
    @JvmName("doydqhxobkiufgff")
    public suspend fun assetTypes(values: List>) {
        this.assetTypes = Output.all(values)
    }

    /**
     * @param value 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. If not specified, the resource's project will be used.
     */
    @JvmName("vvqplkeobjfnrvkm")
    public suspend fun billingProject(`value`: Output) {
        this.billingProject = value
    }

    /**
     * @param value 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.
     */
    @JvmName("uuuyqqtgadysyksb")
    public suspend fun condition(`value`: Output) {
        this.condition = value
    }

    /**
     * @param value 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"]
     */
    @JvmName("xnxiaeknuuiktolt")
    public suspend fun contentType(`value`: Output) {
        this.contentType = value
    }

    /**
     * @param value This is the client-assigned asset feed identifier and it needs to be unique under a specific parent.
     */
    @JvmName("rrenovnhervxlhqm")
    public suspend fun feedId(`value`: Output) {
        this.feedId = value
    }

    /**
     * @param value Output configuration for asset feed destination.
     * Structure is documented below.
     */
    @JvmName("vfsoeagyblaxsvtb")
    public suspend fun feedOutputConfig(`value`: Output) {
        this.feedOutputConfig = value
    }

    /**
     * @param value
     */
    @JvmName("btamjfvqvqayqgbb")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value 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.
     */
    @JvmName("gggrlgaccpdmanng")
    public suspend fun assetNames(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.assetNames = mapped
    }

    /**
     * @param values 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.
     */
    @JvmName("qavelprfqxefeudr")
    public suspend fun assetNames(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.assetNames = mapped
    }

    /**
     * @param value 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.
     */
    @JvmName("mihboichksxgowmw")
    public suspend fun assetTypes(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.assetTypes = mapped
    }

    /**
     * @param values 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.
     */
    @JvmName("tuykjbeaxmywbjek")
    public suspend fun assetTypes(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.assetTypes = mapped
    }

    /**
     * @param value 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. If not specified, the resource's project will be used.
     */
    @JvmName("oqfgqlovvmvsihef")
    public suspend fun billingProject(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.billingProject = mapped
    }

    /**
     * @param value 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.
     */
    @JvmName("njsbcsttbhlktvwm")
    public suspend fun condition(`value`: ProjectFeedConditionArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.condition = mapped
    }

    /**
     * @param argument 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.
     */
    @JvmName("akoyrblsjysdayax")
    public suspend fun condition(argument: suspend ProjectFeedConditionArgsBuilder.() -> Unit) {
        val toBeMapped = ProjectFeedConditionArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.condition = mapped
    }

    /**
     * @param value 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"]
     */
    @JvmName("goouucdapffatxej")
    public suspend fun contentType(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.contentType = mapped
    }

    /**
     * @param value This is the client-assigned asset feed identifier and it needs to be unique under a specific parent.
     */
    @JvmName("jjehpvedfriqhjmt")
    public suspend fun feedId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.feedId = mapped
    }

    /**
     * @param value Output configuration for asset feed destination.
     * Structure is documented below.
     */
    @JvmName("hjghhacvorxoxuib")
    public suspend fun feedOutputConfig(`value`: ProjectFeedFeedOutputConfigArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.feedOutputConfig = mapped
    }

    /**
     * @param argument Output configuration for asset feed destination.
     * Structure is documented below.
     */
    @JvmName("igaxbhneyuyatsss")
    public suspend fun feedOutputConfig(argument: suspend ProjectFeedFeedOutputConfigArgsBuilder.() -> Unit) {
        val toBeMapped = ProjectFeedFeedOutputConfigArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.feedOutputConfig = mapped
    }

    /**
     * @param value
     */
    @JvmName("kafcovxdnwhuptjn")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    internal fun build(): ProjectFeedArgs = ProjectFeedArgs(
        assetNames = assetNames,
        assetTypes = assetTypes,
        billingProject = billingProject,
        condition = condition,
        contentType = contentType,
        feedId = feedId,
        feedOutputConfig = feedOutputConfig,
        project = project,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy