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

com.pulumi.gcp.apigateway.kotlin.inputs.ApiConfigOpenapiDocumentDocumentArgs.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.apigateway.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.apigateway.inputs.ApiConfigOpenapiDocumentDocumentArgs.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

/**
 *
 * @property contents Base64 encoded content of the file.
 * @property path The file path (full or relative path). This is typically the path of the file when it is uploaded.
 */
public data class ApiConfigOpenapiDocumentDocumentArgs(
    public val contents: Output,
    public val path: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.apigateway.inputs.ApiConfigOpenapiDocumentDocumentArgs =
        com.pulumi.gcp.apigateway.inputs.ApiConfigOpenapiDocumentDocumentArgs.builder()
            .contents(contents.applyValue({ args0 -> args0 }))
            .path(path.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ApiConfigOpenapiDocumentDocumentArgs].
 */
@PulumiTagMarker
public class ApiConfigOpenapiDocumentDocumentArgsBuilder internal constructor() {
    private var contents: Output? = null

    private var path: Output? = null

    /**
     * @param value Base64 encoded content of the file.
     */
    @JvmName("jusequnxrhvmogqj")
    public suspend fun contents(`value`: Output) {
        this.contents = value
    }

    /**
     * @param value The file path (full or relative path). This is typically the path of the file when it is uploaded.
     */
    @JvmName("hauxfpvblqqxsyyd")
    public suspend fun path(`value`: Output) {
        this.path = value
    }

    /**
     * @param value Base64 encoded content of the file.
     */
    @JvmName("gmxlxshtqnshqgcq")
    public suspend fun contents(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.contents = mapped
    }

    /**
     * @param value The file path (full or relative path). This is typically the path of the file when it is uploaded.
     */
    @JvmName("veftilmangiytgnx")
    public suspend fun path(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.path = mapped
    }

    internal fun build(): ApiConfigOpenapiDocumentDocumentArgs = ApiConfigOpenapiDocumentDocumentArgs(
        contents = contents ?: throw PulumiNullFieldException("contents"),
        path = path ?: throw PulumiNullFieldException("path"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy