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

com.pulumi.gcp.cloudrun.kotlin.inputs.ServiceTemplateMetadataArgs.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.cloudrun.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.cloudrun.inputs.ServiceTemplateMetadataArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 *
 * @property annotations Annotations is a key value map stored with a resource that
 * may be set by external tools to store and retrieve arbitrary metadata. More
 * info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
 * **Note**: The Cloud Run API may add additional annotations that were not provided in your config.
 * If the provider plan shows a diff where a server-side annotation is added, you can add it to your config
 * or apply the lifecycle.ignore_changes rule to the metadata.0.annotations field.
 * Annotations with `run.googleapis.com/` and `autoscaling.knative.dev` are restricted. Use the following annotation
 * keys to configure features on a Service:
 * - `run.googleapis.com/binary-authorization-breakglass` sets the [Binary Authorization breakglass](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--breakglass).
 * - `run.googleapis.com/binary-authorization` sets the [Binary Authorization](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--binary-authorization).
 * - `run.googleapis.com/client-name` sets the client name calling the Cloud Run API.
 * - `run.googleapis.com/custom-audiences` sets the [custom audiences](https://cloud.google.com/sdk/gcloud/reference/alpha/run/deploy#--add-custom-audiences)
 * that can be used in the audience field of ID token for authenticated requests.
 * - `run.googleapis.com/description` sets a user defined description for the Service.
 * - `run.googleapis.com/ingress` sets the [ingress settings](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--ingress)
 * for the Service. For example, `"run.googleapis.com/ingress" = "all"`.
 * - `run.googleapis.com/launch-stage` sets the [launch stage](https://cloud.google.com/run/docs/troubleshooting#launch-stage-validation)
 * when a preview feature is used. For example, `"run.googleapis.com/launch-stage": "BETA"`
 * **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
 * Please refer to the field `effective_annotations` for all of the annotations present on the resource.
 * @property generation (Output)
 * A sequence number representing a specific generation of the desired state.
 * @property labels Map of string keys and values that can be used to organize and categorize
 * (scope and select) objects. May match selectors of replication controllers
 * and routes.
 * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
 * Please refer to the field `effective_labels` for all of the labels present on the resource.
 * @property name Name must be unique within a Google Cloud project and region.
 * Is required when creating resources. Name is primarily intended
 * for creation idempotence and configuration definition. Cannot be updated.
 * @property namespace In Cloud Run the namespace must be equal to either the
 * project ID or project number.
 * @property resourceVersion (Output)
 * An opaque value that represents the internal version of this object that
 * can be used by clients to determine when objects have changed. May be used
 * for optimistic concurrency, change detection, and the watch operation on a
 * resource or set of resources. They may only be valid for a
 * particular resource or set of resources.
 * @property selfLink (Output)
 * SelfLink is a URL representing this object.
 * @property uid (Output)
 * UID is a unique id generated by the server on successful creation of a resource and is not
 * allowed to change on PUT operations.
 */
public data class ServiceTemplateMetadataArgs(
    public val annotations: Output>? = null,
    public val generation: Output? = null,
    public val labels: Output>? = null,
    public val name: Output? = null,
    public val namespace: Output? = null,
    public val resourceVersion: Output? = null,
    public val selfLink: Output? = null,
    public val uid: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.cloudrun.inputs.ServiceTemplateMetadataArgs =
        com.pulumi.gcp.cloudrun.inputs.ServiceTemplateMetadataArgs.builder()
            .annotations(
                annotations?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            )
            .generation(generation?.applyValue({ args0 -> args0 }))
            .labels(labels?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .name(name?.applyValue({ args0 -> args0 }))
            .namespace(namespace?.applyValue({ args0 -> args0 }))
            .resourceVersion(resourceVersion?.applyValue({ args0 -> args0 }))
            .selfLink(selfLink?.applyValue({ args0 -> args0 }))
            .uid(uid?.applyValue({ args0 -> args0 })).build()
}

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

    private var generation: Output? = null

    private var labels: Output>? = null

    private var name: Output? = null

    private var namespace: Output? = null

    private var resourceVersion: Output? = null

    private var selfLink: Output? = null

    private var uid: Output? = null

    /**
     * @param value Annotations is a key value map stored with a resource that
     * may be set by external tools to store and retrieve arbitrary metadata. More
     * info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
     * **Note**: The Cloud Run API may add additional annotations that were not provided in your config.
     * If the provider plan shows a diff where a server-side annotation is added, you can add it to your config
     * or apply the lifecycle.ignore_changes rule to the metadata.0.annotations field.
     * Annotations with `run.googleapis.com/` and `autoscaling.knative.dev` are restricted. Use the following annotation
     * keys to configure features on a Service:
     * - `run.googleapis.com/binary-authorization-breakglass` sets the [Binary Authorization breakglass](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--breakglass).
     * - `run.googleapis.com/binary-authorization` sets the [Binary Authorization](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--binary-authorization).
     * - `run.googleapis.com/client-name` sets the client name calling the Cloud Run API.
     * - `run.googleapis.com/custom-audiences` sets the [custom audiences](https://cloud.google.com/sdk/gcloud/reference/alpha/run/deploy#--add-custom-audiences)
     * that can be used in the audience field of ID token for authenticated requests.
     * - `run.googleapis.com/description` sets a user defined description for the Service.
     * - `run.googleapis.com/ingress` sets the [ingress settings](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--ingress)
     * for the Service. For example, `"run.googleapis.com/ingress" = "all"`.
     * - `run.googleapis.com/launch-stage` sets the [launch stage](https://cloud.google.com/run/docs/troubleshooting#launch-stage-validation)
     * when a preview feature is used. For example, `"run.googleapis.com/launch-stage": "BETA"`
     * **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
     * Please refer to the field `effective_annotations` for all of the annotations present on the resource.
     */
    @JvmName("iweriauwjkditgne")
    public suspend fun annotations(`value`: Output>) {
        this.annotations = value
    }

    /**
     * @param value (Output)
     * A sequence number representing a specific generation of the desired state.
     */
    @JvmName("eduhkyucewikkyup")
    public suspend fun generation(`value`: Output) {
        this.generation = value
    }

    /**
     * @param value Map of string keys and values that can be used to organize and categorize
     * (scope and select) objects. May match selectors of replication controllers
     * and routes.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("ysjahjogxtesupmk")
    public suspend fun labels(`value`: Output>) {
        this.labels = value
    }

    /**
     * @param value Name must be unique within a Google Cloud project and region.
     * Is required when creating resources. Name is primarily intended
     * for creation idempotence and configuration definition. Cannot be updated.
     */
    @JvmName("tcvbapnjvgocprso")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value In Cloud Run the namespace must be equal to either the
     * project ID or project number.
     */
    @JvmName("wtbiqjkgteewdymj")
    public suspend fun namespace(`value`: Output) {
        this.namespace = value
    }

    /**
     * @param value (Output)
     * An opaque value that represents the internal version of this object that
     * can be used by clients to determine when objects have changed. May be used
     * for optimistic concurrency, change detection, and the watch operation on a
     * resource or set of resources. They may only be valid for a
     * particular resource or set of resources.
     */
    @JvmName("ggryypqsllwikrou")
    public suspend fun resourceVersion(`value`: Output) {
        this.resourceVersion = value
    }

    /**
     * @param value (Output)
     * SelfLink is a URL representing this object.
     */
    @JvmName("nbctoodenftiqlhd")
    public suspend fun selfLink(`value`: Output) {
        this.selfLink = value
    }

    /**
     * @param value (Output)
     * UID is a unique id generated by the server on successful creation of a resource and is not
     * allowed to change on PUT operations.
     */
    @JvmName("iyqbqvrthrwdnuaq")
    public suspend fun uid(`value`: Output) {
        this.uid = value
    }

    /**
     * @param value Annotations is a key value map stored with a resource that
     * may be set by external tools to store and retrieve arbitrary metadata. More
     * info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
     * **Note**: The Cloud Run API may add additional annotations that were not provided in your config.
     * If the provider plan shows a diff where a server-side annotation is added, you can add it to your config
     * or apply the lifecycle.ignore_changes rule to the metadata.0.annotations field.
     * Annotations with `run.googleapis.com/` and `autoscaling.knative.dev` are restricted. Use the following annotation
     * keys to configure features on a Service:
     * - `run.googleapis.com/binary-authorization-breakglass` sets the [Binary Authorization breakglass](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--breakglass).
     * - `run.googleapis.com/binary-authorization` sets the [Binary Authorization](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--binary-authorization).
     * - `run.googleapis.com/client-name` sets the client name calling the Cloud Run API.
     * - `run.googleapis.com/custom-audiences` sets the [custom audiences](https://cloud.google.com/sdk/gcloud/reference/alpha/run/deploy#--add-custom-audiences)
     * that can be used in the audience field of ID token for authenticated requests.
     * - `run.googleapis.com/description` sets a user defined description for the Service.
     * - `run.googleapis.com/ingress` sets the [ingress settings](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--ingress)
     * for the Service. For example, `"run.googleapis.com/ingress" = "all"`.
     * - `run.googleapis.com/launch-stage` sets the [launch stage](https://cloud.google.com/run/docs/troubleshooting#launch-stage-validation)
     * when a preview feature is used. For example, `"run.googleapis.com/launch-stage": "BETA"`
     * **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
     * Please refer to the field `effective_annotations` for all of the annotations present on the resource.
     */
    @JvmName("ryjqaoextkwypser")
    public suspend fun annotations(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.annotations = mapped
    }

    /**
     * @param values Annotations is a key value map stored with a resource that
     * may be set by external tools to store and retrieve arbitrary metadata. More
     * info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
     * **Note**: The Cloud Run API may add additional annotations that were not provided in your config.
     * If the provider plan shows a diff where a server-side annotation is added, you can add it to your config
     * or apply the lifecycle.ignore_changes rule to the metadata.0.annotations field.
     * Annotations with `run.googleapis.com/` and `autoscaling.knative.dev` are restricted. Use the following annotation
     * keys to configure features on a Service:
     * - `run.googleapis.com/binary-authorization-breakglass` sets the [Binary Authorization breakglass](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--breakglass).
     * - `run.googleapis.com/binary-authorization` sets the [Binary Authorization](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--binary-authorization).
     * - `run.googleapis.com/client-name` sets the client name calling the Cloud Run API.
     * - `run.googleapis.com/custom-audiences` sets the [custom audiences](https://cloud.google.com/sdk/gcloud/reference/alpha/run/deploy#--add-custom-audiences)
     * that can be used in the audience field of ID token for authenticated requests.
     * - `run.googleapis.com/description` sets a user defined description for the Service.
     * - `run.googleapis.com/ingress` sets the [ingress settings](https://cloud.google.com/sdk/gcloud/reference/run/deploy#--ingress)
     * for the Service. For example, `"run.googleapis.com/ingress" = "all"`.
     * - `run.googleapis.com/launch-stage` sets the [launch stage](https://cloud.google.com/run/docs/troubleshooting#launch-stage-validation)
     * when a preview feature is used. For example, `"run.googleapis.com/launch-stage": "BETA"`
     * **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
     * Please refer to the field `effective_annotations` for all of the annotations present on the resource.
     */
    @JvmName("njuecfhveoactysw")
    public fun annotations(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.annotations = mapped
    }

    /**
     * @param value (Output)
     * A sequence number representing a specific generation of the desired state.
     */
    @JvmName("ictpgkvtvomehxka")
    public suspend fun generation(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.generation = mapped
    }

    /**
     * @param value Map of string keys and values that can be used to organize and categorize
     * (scope and select) objects. May match selectors of replication controllers
     * and routes.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("qjiwxchylykfjgyg")
    public suspend fun labels(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param values Map of string keys and values that can be used to organize and categorize
     * (scope and select) objects. May match selectors of replication controllers
     * and routes.
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("mnrvmlgfnfvgirbd")
    public fun labels(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param value Name must be unique within a Google Cloud project and region.
     * Is required when creating resources. Name is primarily intended
     * for creation idempotence and configuration definition. Cannot be updated.
     */
    @JvmName("estmtffgyqwargdp")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value In Cloud Run the namespace must be equal to either the
     * project ID or project number.
     */
    @JvmName("safnpijmxmtslxad")
    public suspend fun namespace(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.namespace = mapped
    }

    /**
     * @param value (Output)
     * An opaque value that represents the internal version of this object that
     * can be used by clients to determine when objects have changed. May be used
     * for optimistic concurrency, change detection, and the watch operation on a
     * resource or set of resources. They may only be valid for a
     * particular resource or set of resources.
     */
    @JvmName("vaumminkifghasvy")
    public suspend fun resourceVersion(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceVersion = mapped
    }

    /**
     * @param value (Output)
     * SelfLink is a URL representing this object.
     */
    @JvmName("siyhrcuchvttxars")
    public suspend fun selfLink(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.selfLink = mapped
    }

    /**
     * @param value (Output)
     * UID is a unique id generated by the server on successful creation of a resource and is not
     * allowed to change on PUT operations.
     */
    @JvmName("ywqpbtqcsgobersg")
    public suspend fun uid(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.uid = mapped
    }

    internal fun build(): ServiceTemplateMetadataArgs = ServiceTemplateMetadataArgs(
        annotations = annotations,
        generation = generation,
        labels = labels,
        name = name,
        namespace = namespace,
        resourceVersion = resourceVersion,
        selfLink = selfLink,
        uid = uid,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy