com.pulumi.gcp.composer.kotlin.Environment.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.composer.kotlin
import com.pulumi.core.Output
import com.pulumi.gcp.composer.kotlin.outputs.EnvironmentConfig
import com.pulumi.gcp.composer.kotlin.outputs.EnvironmentStorageConfig
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
import kotlin.collections.Map
import com.pulumi.gcp.composer.kotlin.outputs.EnvironmentConfig.Companion.toKotlin as environmentConfigToKotlin
import com.pulumi.gcp.composer.kotlin.outputs.EnvironmentStorageConfig.Companion.toKotlin as environmentStorageConfigToKotlin
/**
* Builder for [Environment].
*/
@PulumiTagMarker
public class EnvironmentResourceBuilder internal constructor() {
public var name: String? = null
public var args: EnvironmentArgs = EnvironmentArgs()
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 EnvironmentArgsBuilder.() -> Unit) {
val builder = EnvironmentArgsBuilder()
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(): Environment {
val builtJavaResource = com.pulumi.gcp.composer.Environment(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Environment(builtJavaResource)
}
}
/**
*
* ## Import
* Environment can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/{{region}}/environments/{{name}}`
* * `{{project}}/{{region}}/{{name}}`
* * `{{name}}`
* When using the `pulumi import` command, Environment can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:composer/environment:Environment default projects/{{project}}/locations/{{region}}/environments/{{name}}
* ```
* ```sh
* $ pulumi import gcp:composer/environment:Environment default {{project}}/{{region}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:composer/environment:Environment default {{name}}
* ```
*/
public class Environment internal constructor(
override val javaResource: com.pulumi.gcp.composer.Environment,
) : KotlinCustomResource(javaResource, EnvironmentMapper) {
/**
* Configuration parameters for this environment.
*/
public val config: Output
get() = javaResource.config().applyValue({ args0 ->
args0.let({ args0 ->
environmentConfigToKotlin(args0)
})
})
public val effectiveLabels: Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy