com.pulumi.azure.apimanagement.kotlin.outputs.GetUserResult.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.apimanagement.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getUser.
* @property apiManagementName
* @property email The Email Address used for this User.
* @property firstName The First Name for the User.
* @property id The provider-assigned unique ID for this managed resource.
* @property lastName The Last Name for the User.
* @property note Any notes about this User.
* @property resourceGroupName
* @property state The current state of this User, for example `active`, `blocked` or `pending`.
* @property userId
*/
public data class GetUserResult(
public val apiManagementName: String,
public val email: String,
public val firstName: String,
public val id: String,
public val lastName: String,
public val note: String,
public val resourceGroupName: String,
public val state: String,
public val userId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetUserResult):
GetUserResult = GetUserResult(
apiManagementName = javaType.apiManagementName(),
email = javaType.email(),
firstName = javaType.firstName(),
id = javaType.id(),
lastName = javaType.lastName(),
note = javaType.note(),
resourceGroupName = javaType.resourceGroupName(),
state = javaType.state(),
userId = javaType.userId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy