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

com.pulumi.azure.healthcare.kotlin.outputs.FhirServiceOciArtifact.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.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