com.pulumi.azure.batch.kotlin.outputs.GetApplicationResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.batch.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getApplication.
* @property accountName
* @property allowUpdates May packages within the application be overwritten using the same version string.
* @property defaultVersion The package to use if a client requests the application but does not specify a version.
* @property displayName The display name for the application.
* @property id The provider-assigned unique ID for this managed resource.
* @property name The Batch application name.
* @property resourceGroupName
*/
public data class GetApplicationResult(
public val accountName: String,
public val allowUpdates: Boolean,
public val defaultVersion: String,
public val displayName: String,
public val id: String,
public val name: String,
public val resourceGroupName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetApplicationResult):
GetApplicationResult = GetApplicationResult(
accountName = javaType.accountName(),
allowUpdates = javaType.allowUpdates(),
defaultVersion = javaType.defaultVersion(),
displayName = javaType.displayName(),
id = javaType.id(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy