ManagedIdentityTokenResponse

data class ManagedIdentityTokenResponse(val accessToken: String? = null, val authorizationAudience: String? = null, val expiresIn: String? = null, val expiresOn: String? = null, val notBefore: String? = null, val resourceId: String? = null, val tokenType: String? = null)

The managed identity token for the managed app resource.

Constructors

Link copied to clipboard
constructor(accessToken: String? = null, authorizationAudience: String? = null, expiresIn: String? = null, expiresOn: String? = null, notBefore: String? = null, resourceId: String? = null, tokenType: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val accessToken: String? = null

The requested access token.

Link copied to clipboard

The aud (audience) the access token was request for. This is the same as what was provided in the listTokens request.

Link copied to clipboard
val expiresIn: String? = null

The number of seconds the access token will be valid.

Link copied to clipboard
val expiresOn: String? = null

The timespan when the access token expires. This is represented as the number of seconds from epoch.

Link copied to clipboard
val notBefore: String? = null

The timespan when the access token takes effect. This is represented as the number of seconds from epoch.

Link copied to clipboard
val resourceId: String? = null

The Azure resource ID for the issued token. This is either the managed application ID or the user-assigned identity ID.

Link copied to clipboard
val tokenType: String? = null

The type of the token.