google_api_container v0.7.0 GoogleApi.Container.V1.Model.Jwk View Source

Jwk is a JSON Web Key as specified in RFC 7517

Attributes

  • alg (String.t): Algorithm. Defaults to: null.
  • crv (String.t): Used for ECDSA keys. Defaults to: null.
  • e (String.t): Used for RSA keys. Defaults to: null.
  • kid (String.t): Key ID. Defaults to: null.
  • kty (String.t): Key Type. Defaults to: null.
  • n (String.t): Used for RSA keys. Defaults to: null.
  • use (String.t): Permitted uses for the public keys. Defaults to: null.
  • x (String.t): Used for ECDSA keys. Defaults to: null.
  • y (String.t): Used for ECDSA keys. Defaults to: null.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t() View Source
t() :: %GoogleApi.Container.V1.Model.Jwk{
  alg: any(),
  crv: any(),
  e: any(),
  kid: any(),
  kty: any(),
  n: any(),
  use: any(),
  x: any(),
  y: any()
}

Link to this section Functions

Link to this function

decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.