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

com.pulumi.azure.batch.kotlin.outputs.GetApplicationResult.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: 6.15.0.0
Show newest version
@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