View Source GoogleApi.AccessContextManager.V1.Model.ReauthSettings (google_api_access_context_manager v0.25.0)

Stores settings related to Google Cloud Session Length including session duration, the type of challenge (i.e. method) they should face when their session expires, and other related settings.

Attributes

  • maxInactivity (type: String.t, default: nil) - Optional. How long a user is allowed to take between actions before a new access token must be issued. Presently only set for Cloud Apps.
  • reauthMethod (type: String.t, default: nil) - Optional. Reauth method when users GCP session is up.
  • sessionLength (type: String.t, default: nil) - Optional. The session length. Setting this field to zero is equal to disabling. Reauth. Also can set infinite session by flipping the enabled bit to false below. If use_oidc_max_age is true, for OIDC apps, the session length will be the minimum of this field and OIDC max_age param.
  • sessionLengthEnabled (type: boolean(), default: nil) - Optional. Big red button to turn off GCSL. When false, all fields set above will be disregarded and the session length is basically infinite.
  • useOidcMaxAge (type: boolean(), default: nil) - Optional. Only useful for OIDC apps. When false, the OIDC max_age param, if passed in the authentication request will be ignored. When true, the re-auth period will be the minimum of the session_length field and the max_age OIDC param.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.AccessContextManager.V1.Model.ReauthSettings{
  maxInactivity: String.t() | nil,
  reauthMethod: String.t() | nil,
  sessionLength: String.t() | nil,
  sessionLengthEnabled: boolean() | nil,
  useOidcMaxAge: boolean() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.