
com.pulumi.gcp.transcoder.kotlin.outputs.JobTemplateConfigInput.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.transcoder.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property key A unique key for this input. Must be specified when using advanced mapping and edit lists.
* @property uri URI of the media. Input files must be at least 5 seconds in duration and stored in Cloud Storage (for example, gs://bucket/inputs/file.mp4).
* If empty, the value is populated from Job.input_uri.
*/
public data class JobTemplateConfigInput(
public val key: String? = null,
public val uri: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.transcoder.outputs.JobTemplateConfigInput): JobTemplateConfigInput = JobTemplateConfigInput(
key = javaType.key().map({ args0 -> args0 }).orElse(null),
uri = javaType.uri().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy