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

com.pulumi.gcp.securitycenter.kotlin.SourceArgs.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.securitycenter.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.securitycenter.SourceArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A Cloud Security Command Center's (Cloud SCC) finding source. A finding
 * source is an entity or a mechanism that can produce a finding. A source is
 * like a container of findings that come from the same scanner, logger,
 * monitor, etc.
 * To get more information about Source, see:
 * * [API documentation](https://cloud.google.com/security-command-center/docs/reference/rest/v1/organizations.sources)
 * * How-to Guides
 *     * [Official Documentation](https://cloud.google.com/security-command-center/docs)
 * ## Example Usage
 * ### Scc Source Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const customSource = new gcp.securitycenter.Source("custom_source", {
 *     displayName: "My Source",
 *     organization: "123456789",
 *     description: "My custom Cloud Security Command Center Finding Source",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * custom_source = gcp.securitycenter.Source("custom_source",
 *     display_name="My Source",
 *     organization="123456789",
 *     description="My custom Cloud Security Command Center Finding Source")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var customSource = new Gcp.SecurityCenter.Source("custom_source", new()
 *     {
 *         DisplayName = "My Source",
 *         Organization = "123456789",
 *         Description = "My custom Cloud Security Command Center Finding Source",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/securitycenter"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := securitycenter.NewSource(ctx, "custom_source", &securitycenter.SourceArgs{
 * 			DisplayName:  pulumi.String("My Source"),
 * 			Organization: pulumi.String("123456789"),
 * 			Description:  pulumi.String("My custom Cloud Security Command Center Finding Source"),
 * 		})
 * 		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.securitycenter.Source;
 * import com.pulumi.gcp.securitycenter.SourceArgs;
 * 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 customSource = new Source("customSource", SourceArgs.builder()
 *             .displayName("My Source")
 *             .organization("123456789")
 *             .description("My custom Cloud Security Command Center Finding Source")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   customSource:
 *     type: gcp:securitycenter:Source
 *     name: custom_source
 *     properties:
 *       displayName: My Source
 *       organization: '123456789'
 *       description: My custom Cloud Security Command Center Finding Source
 * ```
 * 
 * ## Import
 * Source can be imported using any of these accepted formats:
 * * `organizations/{{organization}}/sources/{{name}}`
 * * `{{organization}}/{{name}}`
 * When using the `pulumi import` command, Source can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:securitycenter/source:Source default organizations/{{organization}}/sources/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:securitycenter/source:Source default {{organization}}/{{name}}
 * ```
 * @property description The description of the source (max of 1024 characters).
 * @property displayName The source’s display name. A source’s display name must be unique
 * amongst its siblings, for example, two sources with the same parent
 * can't share the same display name. The display name must start and end
 * with a letter or digit, may contain letters, digits, spaces, hyphens,
 * and underscores, and can be no longer than 32 characters.
 * @property organization The organization whose Cloud Security Command Center the Source
 * lives in.
 * - - -
 */
public data class SourceArgs(
    public val description: Output? = null,
    public val displayName: Output? = null,
    public val organization: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.securitycenter.SourceArgs =
        com.pulumi.gcp.securitycenter.SourceArgs.builder()
            .description(description?.applyValue({ args0 -> args0 }))
            .displayName(displayName?.applyValue({ args0 -> args0 }))
            .organization(organization?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [SourceArgs].
 */
@PulumiTagMarker
public class SourceArgsBuilder internal constructor() {
    private var description: Output? = null

    private var displayName: Output? = null

    private var organization: Output? = null

    /**
     * @param value The description of the source (max of 1024 characters).
     */
    @JvmName("ltxweqrudxxjwiwj")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value The source’s display name. A source’s display name must be unique
     * amongst its siblings, for example, two sources with the same parent
     * can't share the same display name. The display name must start and end
     * with a letter or digit, may contain letters, digits, spaces, hyphens,
     * and underscores, and can be no longer than 32 characters.
     */
    @JvmName("mmmbqucqcrhdiawo")
    public suspend fun displayName(`value`: Output) {
        this.displayName = value
    }

    /**
     * @param value The organization whose Cloud Security Command Center the Source
     * lives in.
     * - - -
     */
    @JvmName("mivlswcbpfmwwoqe")
    public suspend fun organization(`value`: Output) {
        this.organization = value
    }

    /**
     * @param value The description of the source (max of 1024 characters).
     */
    @JvmName("xoneebmhbagtocwx")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value The source’s display name. A source’s display name must be unique
     * amongst its siblings, for example, two sources with the same parent
     * can't share the same display name. The display name must start and end
     * with a letter or digit, may contain letters, digits, spaces, hyphens,
     * and underscores, and can be no longer than 32 characters.
     */
    @JvmName("ejtklemobkrdektk")
    public suspend fun displayName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.displayName = mapped
    }

    /**
     * @param value The organization whose Cloud Security Command Center the Source
     * lives in.
     * - - -
     */
    @JvmName("kkcvavqsqvjggsbj")
    public suspend fun organization(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.organization = mapped
    }

    internal fun build(): SourceArgs = SourceArgs(
        description = description,
        displayName = displayName,
        organization = organization,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy