Method: OryClient::JwkApi#delete_json_web_key

Defined in:
lib/ory-client/api/jwk_api.rb

#delete_json_web_key(set, kid, opts = {}) ⇒ nil

Delete JSON Web Key Use this endpoint to delete a single JSON Web Key. A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

Parameters:

  • set (String)

    The JSON Web Key Set

  • kid (String)

    The JSON Web Key ID (kid)

  • opts (Hash) (defaults to: {})

    the optional parameters

Returns:

  • (nil)


102
103
104
105
# File 'lib/ory-client/api/jwk_api.rb', line 102

def delete_json_web_key(set, kid, opts = {})
  delete_json_web_key_with_http_info(set, kid, opts)
  nil
end