DebugTokenArgs

data class DebugTokenArgs(val appId: Output<String>? = null, val displayName: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val token: Output<String>? = null) : ConvertibleToJava<DebugTokenArgs>

Creates a new DebugToken for the specified app. For security reasons, after the creation operation completes, the token field cannot be updated or retrieved, but you can revoke the debug token using DeleteDebugToken. Each app can have a maximum of 20 debug tokens.

Constructors

Link copied to clipboard
fun DebugTokenArgs(appId: Output<String>? = null, displayName: Output<String>? = null, name: Output<String>? = null, project: Output<String>? = null, token: Output<String>? = null)

Functions

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

Properties

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

A human readable display name used to identify this debug token.

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

The relative resource name of the debug token, in the format: `` projects/{project_number}/apps/{app_id}/debugTokens/{debug_token_id} `` @property project @property token Input only. Immutable. The secret token itself. Must be provided during creation, and must be a UUID4, case insensitive. This field is immutable once set, and cannot be provided during an UpdateDebugToken request. You can, however, delete this debug token using DeleteDebugToken to revoke it. For security reasons, this field will never be populated in any response.

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