Class: Google::Apis::ContainerV1::Jwk
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::Jwk
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
Jwk is a JSON Web Key as specified in RFC 7517
Instance Attribute Summary collapse
-
#alg ⇒ String
Algorithm.
-
#crv ⇒ String
Used for ECDSA keys.
-
#e ⇒ String
Used for RSA keys.
-
#kid ⇒ String
Key ID.
-
#kty ⇒ String
Key Type.
-
#n ⇒ String
Used for RSA keys.
-
#use ⇒ String
Permitted uses for the public keys.
-
#x ⇒ String
Used for ECDSA keys.
-
#y ⇒ String
Used for ECDSA keys.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Jwk
constructor
A new instance of Jwk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Jwk
Returns a new instance of Jwk.
2117 2118 2119 |
# File 'lib/google/apis/container_v1/classes.rb', line 2117 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alg ⇒ String
Algorithm.
Corresponds to the JSON property alg
2075 2076 2077 |
# File 'lib/google/apis/container_v1/classes.rb', line 2075 def alg @alg end |
#crv ⇒ String
Used for ECDSA keys.
Corresponds to the JSON property crv
2080 2081 2082 |
# File 'lib/google/apis/container_v1/classes.rb', line 2080 def crv @crv end |
#e ⇒ String
Used for RSA keys.
Corresponds to the JSON property e
2085 2086 2087 |
# File 'lib/google/apis/container_v1/classes.rb', line 2085 def e @e end |
#kid ⇒ String
Key ID.
Corresponds to the JSON property kid
2090 2091 2092 |
# File 'lib/google/apis/container_v1/classes.rb', line 2090 def kid @kid end |
#kty ⇒ String
Key Type.
Corresponds to the JSON property kty
2095 2096 2097 |
# File 'lib/google/apis/container_v1/classes.rb', line 2095 def kty @kty end |
#n ⇒ String
Used for RSA keys.
Corresponds to the JSON property n
2100 2101 2102 |
# File 'lib/google/apis/container_v1/classes.rb', line 2100 def n @n end |
#use ⇒ String
Permitted uses for the public keys.
Corresponds to the JSON property use
2105 2106 2107 |
# File 'lib/google/apis/container_v1/classes.rb', line 2105 def use @use end |
#x ⇒ String
Used for ECDSA keys.
Corresponds to the JSON property x
2110 2111 2112 |
# File 'lib/google/apis/container_v1/classes.rb', line 2110 def x @x end |
#y ⇒ String
Used for ECDSA keys.
Corresponds to the JSON property y
2115 2116 2117 |
# File 'lib/google/apis/container_v1/classes.rb', line 2115 def y @y end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 |
# File 'lib/google/apis/container_v1/classes.rb', line 2122 def update!(**args) @alg = args[:alg] if args.key?(:alg) @crv = args[:crv] if args.key?(:crv) @e = args[:e] if args.key?(:e) @kid = args[:kid] if args.key?(:kid) @kty = args[:kty] if args.key?(:kty) @n = args[:n] if args.key?(:n) @use = args[:use] if args.key?(:use) @x = args[:x] if args.key?(:x) @y = args[:y] if args.key?(:y) end |