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

com.pulumi.gcp.storage.kotlin.inputs.GetBucketObjectContentPlainArgs.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.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.storage.kotlin.inputs

import com.pulumi.gcp.storage.inputs.GetBucketObjectContentPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getBucketObjectContent.
 * @property bucket The name of the containing bucket.
 * @property content (Computed) [Content-Language](https://tools.ietf.org/html/rfc7231#section-3.1.3.2) of the object content.
 * @property name The name of the object.
 */
public data class GetBucketObjectContentPlainArgs(
    public val bucket: String,
    public val content: String? = null,
    public val name: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.storage.inputs.GetBucketObjectContentPlainArgs =
        com.pulumi.gcp.storage.inputs.GetBucketObjectContentPlainArgs.builder()
            .bucket(bucket.let({ args0 -> args0 }))
            .content(content?.let({ args0 -> args0 }))
            .name(name.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetBucketObjectContentPlainArgs].
 */
@PulumiTagMarker
public class GetBucketObjectContentPlainArgsBuilder internal constructor() {
    private var bucket: String? = null

    private var content: String? = null

    private var name: String? = null

    /**
     * @param value The name of the containing bucket.
     */
    @JvmName("yocnmobcxkeumhrh")
    public suspend fun bucket(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.bucket = mapped
    }

    /**
     * @param value (Computed) [Content-Language](https://tools.ietf.org/html/rfc7231#section-3.1.3.2) of the object content.
     */
    @JvmName("oxuooerwepguctjw")
    public suspend fun content(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.content = mapped
    }

    /**
     * @param value The name of the object.
     */
    @JvmName("lrysesuhiobmmisj")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.name = mapped
    }

    internal fun build(): GetBucketObjectContentPlainArgs = GetBucketObjectContentPlainArgs(
        bucket = bucket ?: throw PulumiNullFieldException("bucket"),
        content = content,
        name = name ?: throw PulumiNullFieldException("name"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy