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

com.pulumi.gcp.securitycenter.kotlin.FolderSccBigQueryExport.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.20.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.securitycenter.kotlin

import com.pulumi.core.Output
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

/**
 * Builder for [FolderSccBigQueryExport].
 */
@PulumiTagMarker
public class FolderSccBigQueryExportResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: FolderSccBigQueryExportArgs = FolderSccBigQueryExportArgs()

    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 FolderSccBigQueryExportArgsBuilder.() -> Unit) {
        val builder = FolderSccBigQueryExportArgsBuilder()
        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(): FolderSccBigQueryExport {
        val builtJavaResource =
            com.pulumi.gcp.securitycenter.FolderSccBigQueryExport(
                this.name,
                this.args.toJava(),
                this.opts.toJava(),
            )
        return FolderSccBigQueryExport(builtJavaResource)
    }
}

/**
 * A Cloud Security Command Center (Cloud SCC) Big Query Export Config.
 * It represents exporting Security Command Center data, including assets, findings, and security marks
 * to a BigQuery instance.
 * > **Note:** In order to use Cloud SCC resources, your organization must be enrolled
 * in [SCC Standard/Premium](https://cloud.google.com/security-command-center/docs/quickstart-security-command-center).
 * Without doing so, you may run into errors during resource creation.
 * To get more information about FolderSccBigQueryExport, see:
 * * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v1/folders.bigQueryExports)
 * * How-to Guides
 *     * [Official Documentation](https://cloud.google.com/security-command-center/docs/how-to-analyze-findings-in-big-query)
 * ## Example Usage
 * ### Scc Folder Big Query Export Config Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const folder = new gcp.organizations.Folder("folder", {
 *     parent: "organizations/123456789",
 *     displayName: "folder-name",
 *     deletionProtection: false,
 * });
 * const _default = new gcp.bigquery.Dataset("default", {
 *     datasetId: "my_dataset_id",
 *     friendlyName: "test",
 *     description: "This is a test description",
 *     location: "US",
 *     defaultTableExpirationMs: 3600000,
 *     defaultPartitionExpirationMs: undefined,
 *     labels: {
 *         env: "default",
 *     },
 * });
 * const customBigQueryExportConfig = new gcp.securitycenter.FolderSccBigQueryExport("custom_big_query_export_config", {
 *     bigQueryExportId: "my-export",
 *     folder: folder.folderId,
 *     dataset: _default.id,
 *     description: "Cloud Security Command Center Findings Big Query Export Config",
 *     filter: "state=\"ACTIVE\" AND NOT mute=\"MUTED\"",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * folder = gcp.organizations.Folder("folder",
 *     parent="organizations/123456789",
 *     display_name="folder-name",
 *     deletion_protection=False)
 * default = gcp.bigquery.Dataset("default",
 *     dataset_id="my_dataset_id",
 *     friendly_name="test",
 *     description="This is a test description",
 *     location="US",
 *     default_table_expiration_ms=3600000,
 *     default_partition_expiration_ms=None,
 *     labels={
 *         "env": "default",
 *     })
 * custom_big_query_export_config = gcp.securitycenter.FolderSccBigQueryExport("custom_big_query_export_config",
 *     big_query_export_id="my-export",
 *     folder=folder.folder_id,
 *     dataset=default.id,
 *     description="Cloud Security Command Center Findings Big Query Export Config",
 *     filter="state=\"ACTIVE\" AND NOT mute=\"MUTED\"")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var folder = new Gcp.Organizations.Folder("folder", new()
 *     {
 *         Parent = "organizations/123456789",
 *         DisplayName = "folder-name",
 *         DeletionProtection = false,
 *     });
 *     var @default = new Gcp.BigQuery.Dataset("default", new()
 *     {
 *         DatasetId = "my_dataset_id",
 *         FriendlyName = "test",
 *         Description = "This is a test description",
 *         Location = "US",
 *         DefaultTableExpirationMs = 3600000,
 *         DefaultPartitionExpirationMs = null,
 *         Labels =
 *         {
 *             { "env", "default" },
 *         },
 *     });
 *     var customBigQueryExportConfig = new Gcp.SecurityCenter.FolderSccBigQueryExport("custom_big_query_export_config", new()
 *     {
 *         BigQueryExportId = "my-export",
 *         Folder = folder.FolderId,
 *         Dataset = @default.Id,
 *         Description = "Cloud Security Command Center Findings Big Query Export Config",
 *         Filter = "state=\"ACTIVE\" AND NOT mute=\"MUTED\"",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/bigquery"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
 * 	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/securitycenter"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		folder, err := organizations.NewFolder(ctx, "folder", &organizations.FolderArgs{
 * 			Parent:             pulumi.String("organizations/123456789"),
 * 			DisplayName:        pulumi.String("folder-name"),
 * 			DeletionProtection: pulumi.Bool(false),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = bigquery.NewDataset(ctx, "default", &bigquery.DatasetArgs{
 * 			DatasetId:                    pulumi.String("my_dataset_id"),
 * 			FriendlyName:                 pulumi.String("test"),
 * 			Description:                  pulumi.String("This is a test description"),
 * 			Location:                     pulumi.String("US"),
 * 			DefaultTableExpirationMs:     pulumi.Int(3600000),
 * 			DefaultPartitionExpirationMs: nil,
 * 			Labels: pulumi.StringMap{
 * 				"env": pulumi.String("default"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = securitycenter.NewFolderSccBigQueryExport(ctx, "custom_big_query_export_config", &securitycenter.FolderSccBigQueryExportArgs{
 * 			BigQueryExportId: pulumi.String("my-export"),
 * 			Folder:           folder.FolderId,
 * 			Dataset:          _default.ID(),
 * 			Description:      pulumi.String("Cloud Security Command Center Findings Big Query Export Config"),
 * 			Filter:           pulumi.String("state=\"ACTIVE\" AND NOT mute=\"MUTED\""),
 * 		})
 * 		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.organizations.Folder;
 * import com.pulumi.gcp.organizations.FolderArgs;
 * import com.pulumi.gcp.bigquery.Dataset;
 * import com.pulumi.gcp.bigquery.DatasetArgs;
 * import com.pulumi.gcp.securitycenter.FolderSccBigQueryExport;
 * import com.pulumi.gcp.securitycenter.FolderSccBigQueryExportArgs;
 * 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) {
 *         var folder = new Folder("folder", FolderArgs.builder()
 *             .parent("organizations/123456789")
 *             .displayName("folder-name")
 *             .deletionProtection(false)
 *             .build());
 *         var default_ = new Dataset("default", DatasetArgs.builder()
 *             .datasetId("my_dataset_id")
 *             .friendlyName("test")
 *             .description("This is a test description")
 *             .location("US")
 *             .defaultTableExpirationMs(3600000)
 *             .defaultPartitionExpirationMs(null)
 *             .labels(Map.of("env", "default"))
 *             .build());
 *         var customBigQueryExportConfig = new FolderSccBigQueryExport("customBigQueryExportConfig", FolderSccBigQueryExportArgs.builder()
 *             .bigQueryExportId("my-export")
 *             .folder(folder.folderId())
 *             .dataset(default_.id())
 *             .description("Cloud Security Command Center Findings Big Query Export Config")
 *             .filter("state=\"ACTIVE\" AND NOT mute=\"MUTED\"")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   folder:
 *     type: gcp:organizations:Folder
 *     properties:
 *       parent: organizations/123456789
 *       displayName: folder-name
 *       deletionProtection: false
 *   default:
 *     type: gcp:bigquery:Dataset
 *     properties:
 *       datasetId: my_dataset_id
 *       friendlyName: test
 *       description: This is a test description
 *       location: US
 *       defaultTableExpirationMs: 3.6e+06
 *       defaultPartitionExpirationMs: null
 *       labels:
 *         env: default
 *   customBigQueryExportConfig:
 *     type: gcp:securitycenter:FolderSccBigQueryExport
 *     name: custom_big_query_export_config
 *     properties:
 *       bigQueryExportId: my-export
 *       folder: ${folder.folderId}
 *       dataset: ${default.id}
 *       description: Cloud Security Command Center Findings Big Query Export Config
 *       filter: state="ACTIVE" AND NOT mute="MUTED"
 * ```
 * 
 * ## Import
 * FolderSccBigQueryExport can be imported using any of these accepted formats:
 * * `folders/{{folder}}/bigQueryExports/{{big_query_export_id}}`
 * * `{{folder}}/{{big_query_export_id}}`
 * When using the `pulumi import` command, FolderSccBigQueryExport can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:securitycenter/folderSccBigQueryExport:FolderSccBigQueryExport default folders/{{folder}}/bigQueryExports/{{big_query_export_id}}
 * ```
 * ```sh
 * $ pulumi import gcp:securitycenter/folderSccBigQueryExport:FolderSccBigQueryExport default {{folder}}/{{big_query_export_id}}
 * ```
 */
public class FolderSccBigQueryExport internal constructor(
    override val javaResource: com.pulumi.gcp.securitycenter.FolderSccBigQueryExport,
) : KotlinCustomResource(javaResource, FolderSccBigQueryExportMapper) {
    /**
     * This must be unique within the organization.
     * - - -
     */
    public val bigQueryExportId: Output
        get() = javaResource.bigQueryExportId().applyValue({ args0 -> args0 })

    /**
     * The time at which the BigQuery export was created.
     * A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
     * Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
     */
    public val createTime: Output
        get() = javaResource.createTime().applyValue({ args0 -> args0 })

    /**
     * The dataset to write findings' updates to.
     * Its format is "projects/[projectId]/datasets/[bigquery_dataset_id]".
     * BigQuery Dataset unique ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_).
     */
    public val dataset: Output
        get() = javaResource.dataset().applyValue({ args0 -> args0 })

    /**
     * The description of the export (max of 1024 characters).
     */
    public val description: Output
        get() = javaResource.description().applyValue({ args0 -> args0 })

    /**
     * Expression that defines the filter to apply across create/update
     * events of findings. The
     * expression is a list of zero or more restrictions combined via
     * logical operators AND and OR. Parentheses are supported, and OR
     * has higher precedence than AND.
     * Restrictions have the form    and may have
     * a - character in front of them to indicate negation. The fields
     * map to those defined in the corresponding resource.
     * The supported operators are:
     * * = for all value types.
     * * >, <, >=, <= for integer values.
     * * :, meaning substring matching, for strings.
     * The supported value types are:
     * * string literals in quotes.
     * * integer literals without quotes.
     * * boolean literals true and false without quotes.
     * See
     * [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
     * for information on how to write a filter.
     */
    public val filter: Output
        get() = javaResource.filter().applyValue({ args0 -> args0 })

    /**
     * The folder where Cloud Security Command Center Big Query Export
     * Config lives in.
     */
    public val folder: Output
        get() = javaResource.folder().applyValue({ args0 -> args0 })

    /**
     * Email address of the user who last edited the BigQuery export.
     */
    public val mostRecentEditor: Output
        get() = javaResource.mostRecentEditor().applyValue({ args0 -> args0 })

    /**
     * The resource name of this export, in the format
     * `projects/{{project}}/bigQueryExports/{{big_query_export_id}}`.
     * This field is provided in responses, and is ignored when provided in create requests.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * The service account that needs permission to create table and upload data to the BigQuery dataset.
     */
    public val principal: Output
        get() = javaResource.principal().applyValue({ args0 -> args0 })

    /**
     * The most recent time at which the BigQuery export was updated.
     * A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
     * Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
     */
    public val updateTime: Output
        get() = javaResource.updateTime().applyValue({ args0 -> args0 })
}

public object FolderSccBigQueryExportMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.gcp.securitycenter.FolderSccBigQueryExport::class == javaResource::class

    override fun map(javaResource: Resource): FolderSccBigQueryExport =
        FolderSccBigQueryExport(javaResource as com.pulumi.gcp.securitycenter.FolderSccBigQueryExport)
}

/**
 * @see [FolderSccBigQueryExport].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [FolderSccBigQueryExport].
 */
public suspend fun folderSccBigQueryExport(
    name: String,
    block: suspend FolderSccBigQueryExportResourceBuilder.() -> Unit,
): FolderSccBigQueryExport {
    val builder = FolderSccBigQueryExportResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [FolderSccBigQueryExport].
 * @param name The _unique_ name of the resulting resource.
 */
public fun folderSccBigQueryExport(name: String): FolderSccBigQueryExport {
    val builder = FolderSccBigQueryExportResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy