com.pulumi.azure.healthcare.kotlin.outputs.ServiceAuthenticationConfiguration.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.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property audience The intended audience to receive authentication tokens for the service. The default value is https://azurehealthcareapis.com
* @property authority The Azure Active Directory (tenant) that serves as the authentication authority to access the service. The default authority is the Directory defined in the authentication scheme in use when running this provider.
* Authority must be registered to Azure AD and in the following format: https://{Azure-AD-endpoint}/{tenant-id}.
* @property smartProxyEnabled (Boolean) Enables the 'SMART on FHIR' option for mobile and web implementations.
*/
public data class ServiceAuthenticationConfiguration(
public val audience: String? = null,
public val authority: String? = null,
public val smartProxyEnabled: Boolean? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.healthcare.outputs.ServiceAuthenticationConfiguration):
ServiceAuthenticationConfiguration = ServiceAuthenticationConfiguration(
audience = javaType.audience().map({ args0 -> args0 }).orElse(null),
authority = javaType.authority().map({ args0 -> args0 }).orElse(null),
smartProxyEnabled = javaType.smartProxyEnabled().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy