ClientInfoArgs

data class ClientInfoArgs(val email: Output<String>? = null, val name: Output<String>? = null, val objectId: Output<String>? = null, val userPrincipalName: Output<String>? = null) : ConvertibleToJava<ClientInfoArgs>

Information on the client (user or application) that made some action

Constructors

Link copied to clipboard
constructor(email: Output<String>? = null, name: Output<String>? = null, objectId: Output<String>? = null, userPrincipalName: Output<String>? = null)

Properties

Link copied to clipboard
val email: Output<String>? = null

The email of the client.

Link copied to clipboard
val name: Output<String>? = null

The name of the client.

Link copied to clipboard
val objectId: Output<String>? = null

The object id of the client.

Link copied to clipboard
val userPrincipalName: Output<String>? = null

The user principal name of the client.

Functions

Link copied to clipboard
open override fun toJava(): ClientInfoArgs