pub struct GoogleFirebaseAppcheckV1betaDebugToken {
pub display_name: Option<String>,
pub name: Option<String>,
pub token: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
A debug token is a secret used during the development or integration testing of an app. It essentially allows the development or integration testing to bypass app attestation while still allowing App Check to enforce protection on supported production Firebase services.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- apps debug tokens create projects (request|response)
- apps debug tokens get projects (response)
- apps debug tokens patch projects (request|response)
Fields§
§display_name: Option<String>Required. A human readable display name used to identify this debug token.
name: Option<String>Required. The relative resource name of the debug token, in the format: projects/{project_number}/apps/{app_id}/debugTokens/{debug_token_id}
token: Option<String>Required. 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.
update_time: Option<DateTime<Utc>>Output only. Timestamp when this debug token was most recently updated.
Trait Implementations§
Source§impl Clone for GoogleFirebaseAppcheckV1betaDebugToken
impl Clone for GoogleFirebaseAppcheckV1betaDebugToken
Source§fn clone(&self) -> GoogleFirebaseAppcheckV1betaDebugToken
fn clone(&self) -> GoogleFirebaseAppcheckV1betaDebugToken
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more