com.pulumi.azurenative.app.kotlin.outputs.AppleResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.app.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
* The configuration settings of the Apple provider.
* @property enabled false
if the Apple provider should not be enabled despite the set registration; otherwise, true
.
* @property login The configuration settings of the login flow.
* @property registration The configuration settings of the Apple registration.
*/
public data class AppleResponse(
public val enabled: Boolean? = null,
public val login: LoginScopesResponse? = null,
public val registration: AppleRegistrationResponse? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.app.outputs.AppleResponse): AppleResponse =
AppleResponse(
enabled = javaType.enabled().map({ args0 -> args0 }).orElse(null),
login = javaType.login().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.app.kotlin.outputs.LoginScopesResponse.Companion.toKotlin(args0)
})
}).orElse(null),
registration = javaType.registration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.app.kotlin.outputs.AppleRegistrationResponse.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}