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

com.pulumi.gcp.networksecurity.kotlin.AddressGroupIamBinding.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.networksecurity.kotlin

import com.pulumi.core.Output
import com.pulumi.gcp.networksecurity.kotlin.outputs.AddressGroupIamBindingCondition
import com.pulumi.gcp.networksecurity.kotlin.outputs.AddressGroupIamBindingCondition.Companion.toKotlin
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.List

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

    public var args: AddressGroupIamBindingArgs = AddressGroupIamBindingArgs()

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

public class AddressGroupIamBinding internal constructor(
    override val javaResource: com.pulumi.gcp.networksecurity.AddressGroupIamBinding,
) : KotlinCustomResource(javaResource, AddressGroupIamBindingMapper) {
    public val condition: Output?
        get() = javaResource.condition().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    toKotlin(args0)
                })
            }).orElse(null)
        })

    public val etag: Output
        get() = javaResource.etag().applyValue({ args0 -> args0 })

    public val location: Output
        get() = javaResource.location().applyValue({ args0 -> args0 })

    public val members: Output>
        get() = javaResource.members().applyValue({ args0 -> args0.map({ args0 -> args0 }) })

    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    public val project: Output
        get() = javaResource.project().applyValue({ args0 -> args0 })

    public val role: Output
        get() = javaResource.role().applyValue({ args0 -> args0 })
}

public object AddressGroupIamBindingMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.gcp.networksecurity.AddressGroupIamBinding::class == javaResource::class

    override fun map(javaResource: Resource): AddressGroupIamBinding =
        AddressGroupIamBinding(javaResource as com.pulumi.gcp.networksecurity.AddressGroupIamBinding)
}

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy