com.pulumi.azurenative.appplatform.kotlin.outputs.GetJobResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.appplatform.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Job resource payload
* @property id Fully qualified resource Id for the resource.
* @property name The name of the resource.
* @property properties Properties of the Job resource
* @property systemData Metadata pertaining to creation and last modification of the resource.
* @property type The type of the resource.
*/
public data class GetJobResult(
public val id: String,
public val name: String,
public val properties: JobResourcePropertiesResponse,
public val systemData: SystemDataResponse,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.appplatform.outputs.GetJobResult): GetJobResult = GetJobResult(
id = javaType.id(),
name = javaType.name(),
properties = javaType.properties().let({ args0 ->
com.pulumi.azurenative.appplatform.kotlin.outputs.JobResourcePropertiesResponse.Companion.toKotlin(args0)
}),
systemData = javaType.systemData().let({ args0 ->
com.pulumi.azurenative.appplatform.kotlin.outputs.SystemDataResponse.Companion.toKotlin(args0)
}),
type = javaType.type(),
)
}
}