
com.pulumi.azurenative.iotoperations.kotlin.outputs.BrokerAuthenticationPropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.iotoperations.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* BrokerAuthentication Resource properties
* @property authenticationMethods Defines a set of Broker authentication methods to be used on `BrokerListeners`. For each array element one authenticator type supported.
* @property provisioningState The status of the last operation.
*/
public data class BrokerAuthenticationPropertiesResponse(
public val authenticationMethods: List,
public val provisioningState: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.iotoperations.outputs.BrokerAuthenticationPropertiesResponse): BrokerAuthenticationPropertiesResponse = BrokerAuthenticationPropertiesResponse(
authenticationMethods = javaType.authenticationMethods().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.iotoperations.kotlin.outputs.BrokerAuthenticatorMethodsResponse.Companion.toKotlin(args0)
})
}),
provisioningState = javaType.provisioningState(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy