![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.healthcare.kotlin.outputs.FhirServiceOciArtifact.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.healthcare.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property digest A digest of an image within Azure container registry used for export operations of the service instance to narrow the artifacts down.
* @property imageName An image within Azure container registry used for export operations of the service instance.
* @property loginServer An Azure container registry used for export operations of the service instance.
*/
public data class FhirServiceOciArtifact(
public val digest: String? = null,
public val imageName: String? = null,
public val loginServer: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.healthcare.outputs.FhirServiceOciArtifact): FhirServiceOciArtifact = FhirServiceOciArtifact(
digest = javaType.digest().map({ args0 -> args0 }).orElse(null),
imageName = javaType.imageName().map({ args0 -> args0 }).orElse(null),
loginServer = javaType.loginServer(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy