Class: Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPublicJwk
- Inherits:
-
Object
- Object
- Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaPublicJwk
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebaseappcheck_v1beta/classes.rb,
lib/google/apis/firebaseappcheck_v1beta/representations.rb,
lib/google/apis/firebaseappcheck_v1beta/representations.rb
Overview
A JWK as specified by section 4 of RFC 7517 and section 6.3.1 of RFC 7518.
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaPublicJwk
constructor
A new instance of GoogleFirebaseAppcheckV1betaPublicJwk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseAppcheckV1betaPublicJwk
Returns a new instance of GoogleFirebaseAppcheckV1betaPublicJwk.
1230 1231 1232 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1230 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alg ⇒ String
See section 4.4 of RFC 7517.
Corresponds to the JSON property alg
1201 1202 1203 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1201 def alg @alg end |
#e ⇒ String
See section 6.3.1.2 of RFC 7518.
Corresponds to the JSON property e
1207 1208 1209 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1207 def e @e end |
#kid ⇒ String
See section 4.5 of RFC 7517.
Corresponds to the JSON property kid
1212 1213 1214 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1212 def kid @kid end |
#kty ⇒ String
See section 4.1 of RFC 7517.
Corresponds to the JSON property kty
1217 1218 1219 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1217 def kty @kty end |
#n ⇒ String
See section 6.3.1.1 of RFC 7518.
Corresponds to the JSON property n
1223 1224 1225 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1223 def n @n end |
#use ⇒ String
See section 4.2 of RFC 7517.
Corresponds to the JSON property use
1228 1229 1230 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1228 def use @use end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'lib/google/apis/firebaseappcheck_v1beta/classes.rb', line 1235 def update!(**args) @alg = args[:alg] if args.key?(:alg) @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) end |