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

com.pulumi.gcp.compute.kotlin.ProjectMetadataArgs.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.compute.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.compute.ProjectMetadataArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 *  /*
 * Authoritatively manages metadata common to all instances for a project in GCE. For more information see
 * [the official documentation](https://cloud.google.com/compute/docs/storing-retrieving-metadata)
 * and
 * [API](https://cloud.google.com/compute/docs/reference/latest/projects/setCommonInstanceMetadata).
 * > **Note:**  This resource manages all project-level metadata including project-level ssh keys.
 * Keys unset in config but set on the server will be removed. If you want to manage only single
 * key/value pairs within the project metadata rather than the entire set, then use
 * google_compute_project_metadata_item.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const _default = new gcp.compute.ProjectMetadata("default", {metadata: {
 *     foo: "bar",
 *     fizz: "buzz",
 *     "13": "42",
 * }});
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * default = gcp.compute.ProjectMetadata("default", metadata={
 *     "foo": "bar",
 *     "fizz": "buzz",
 *     "13": "42",
 * })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var @default = new Gcp.Compute.ProjectMetadata("default", new()
 *     {
 *         Metadata =
 *         {
 *             { "foo", "bar" },
 *             { "fizz", "buzz" },
 *             { "13", "42" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := compute.NewProjectMetadata(ctx, "default", &compute.ProjectMetadataArgs{
 * 			Metadata: pulumi.StringMap{
 * 				"foo":  pulumi.String("bar"),
 * 				"fizz": pulumi.String("buzz"),
 * 				"13":   pulumi.String("42"),
 * 			},
 * 		})
 * 		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.compute.ProjectMetadata;
 * import com.pulumi.gcp.compute.ProjectMetadataArgs;
 * 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 default_ = new ProjectMetadata("default", ProjectMetadataArgs.builder()
 *             .metadata(Map.ofEntries(
 *                 Map.entry("foo", "bar"),
 *                 Map.entry("fizz", "buzz"),
 *                 Map.entry("13", "42")
 *             ))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   default:
 *     type: gcp:compute:ProjectMetadata
 *     properties:
 *       metadata:
 *         foo: bar
 *         fizz: buzz
 *         '13': '42'
 * ```
 * 
 * ### Adding An SSH Key
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * //A key set in project metadata is propagated to every instance in the project.
 * //This resource configuration is prone to causing frequent diffs as Google adds SSH Keys when the SSH Button is pressed in the console.
 * //It is better to use OS Login instead.
 * const mySshKey = new gcp.compute.ProjectMetadata("my_ssh_key", {metadata: {
 *     "ssh-keys": `      dev:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT dev
 *       foo:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT bar
 * `,
 * }});
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * #A key set in project metadata is propagated to every instance in the project.
 * #This resource configuration is prone to causing frequent diffs as Google adds SSH Keys when the SSH Button is pressed in the console.
 * #It is better to use OS Login instead.
 * my_ssh_key = gcp.compute.ProjectMetadata("my_ssh_key", metadata={
 *     "ssh-keys": """      dev:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT dev
 *       foo:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT bar
 * """,
 * })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     //A key set in project metadata is propagated to every instance in the project.
 *     //This resource configuration is prone to causing frequent diffs as Google adds SSH Keys when the SSH Button is pressed in the console.
 *     //It is better to use OS Login instead.
 *     var mySshKey = new Gcp.Compute.ProjectMetadata("my_ssh_key", new()
 *     {
 *         Metadata =
 *         {
 *             { "ssh-keys", @"      dev:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT dev
 *       foo:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT bar
 * " },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		// A key set in project metadata is propagated to every instance in the project.
 * 		// This resource configuration is prone to causing frequent diffs as Google adds SSH Keys when the SSH Button is pressed in the console.
 * 		// It is better to use OS Login instead.
 * 		_, err := compute.NewProjectMetadata(ctx, "my_ssh_key", &compute.ProjectMetadataArgs{
 * 			Metadata: pulumi.StringMap{
 * 				"ssh-keys": pulumi.String("      dev:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT dev\n      foo:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT bar\n"),
 * 			},
 * 		})
 * 		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.compute.ProjectMetadata;
 * import com.pulumi.gcp.compute.ProjectMetadataArgs;
 * 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) {
 *         //A key set in project metadata is propagated to every instance in the project.
 *         //This resource configuration is prone to causing frequent diffs as Google adds SSH Keys when the SSH Button is pressed in the console.
 *         //It is better to use OS Login instead.
 *         var mySshKey = new ProjectMetadata("mySshKey", ProjectMetadataArgs.builder()
 *             .metadata(Map.of("ssh-keys", """
 *       dev:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT dev
 *       foo:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT bar
 *             """))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   # /*
 *   # A key set in project metadata is propagated to every instance in the project.
 *   # This resource configuration is prone to causing frequent diffs as Google adds SSH Keys when the SSH Button is pressed in the console.
 *   # It is better to use OS Login instead.
 *   # */
 *   mySshKey:
 *     type: gcp:compute:ProjectMetadata
 *     name: my_ssh_key
 *     properties:
 *       metadata:
 *         ssh-keys: |2
 *                 dev:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT dev
 *                 foo:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILg6UtHDNyMNAh0GjaytsJdrUxjtLy3APXqZfNZhvCeT bar
 * ```
 * 
 * ## Import
 * Project metadata can be imported using the project ID:
 * * `{{project_id}}`
 * When using the `pulumi import` command, project metadata can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:compute/projectMetadata:ProjectMetadata default {{project_id}}
 * ```
 * @property metadata A series of key value pairs.
 * - - -
 * @property project The ID of the project in which the resource belongs. If it
 * is not provided, the provider project is used.
 * */
 */
public data class ProjectMetadataArgs(
    public val metadata: Output>? = null,
    public val project: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.compute.ProjectMetadataArgs =
        com.pulumi.gcp.compute.ProjectMetadataArgs.builder()
            .metadata(
                metadata?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            )
            .project(project?.applyValue({ args0 -> args0 })).build()
}

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

    private var project: Output? = null

    /**
     * @param value A series of key value pairs.
     * - - -
     */
    @JvmName("jthsxpnmxljwmxmo")
    public suspend fun metadata(`value`: Output>) {
        this.metadata = value
    }

    /**
     * @param value The ID of the project in which the resource belongs. If it
     * is not provided, the provider project is used.
     */
    @JvmName("lgcrpojsufciriep")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value A series of key value pairs.
     * - - -
     */
    @JvmName("dupggbhixawcxvrc")
    public suspend fun metadata(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.metadata = mapped
    }

    /**
     * @param values A series of key value pairs.
     * - - -
     */
    @JvmName("qupgcempyrdawlon")
    public fun metadata(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.metadata = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs. If it
     * is not provided, the provider project is used.
     */
    @JvmName("qxqdeaogntjjbowa")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    internal fun build(): ProjectMetadataArgs = ProjectMetadataArgs(
        metadata = metadata,
        project = project,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy