Class: Google::Apis::VerifiedaccessV2::Challenge
- Inherits:
-
Object
- Object
- Google::Apis::VerifiedaccessV2::Challenge
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/verifiedaccess_v2/classes.rb,
lib/google/apis/verifiedaccess_v2/representations.rb,
lib/google/apis/verifiedaccess_v2/representations.rb
Overview
Result message for VerifiedAccess.GenerateChallenge.
Instance Attribute Summary collapse
-
#alternative_challenge ⇒ String
Challenge generated with the old signing key, the bytes representation of SignedData (this will only be present during key rotation).
-
#challenge ⇒ String
Generated challenge, the bytes representation of SignedData.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Challenge
constructor
A new instance of Challenge.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Challenge
Returns a new instance of Challenge.
42 43 44 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 42 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alternative_challenge ⇒ String
Challenge generated with the old signing key, the bytes representation of
SignedData (this will only be present during key rotation).
Corresponds to the JSON property alternativeChallenge
NOTE: Values are automatically base64 encoded/decoded in the client library.
34 35 36 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 34 def alternative_challenge @alternative_challenge end |
#challenge ⇒ String
Generated challenge, the bytes representation of SignedData.
Corresponds to the JSON property challenge
NOTE: Values are automatically base64 encoded/decoded in the client library.
40 41 42 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 40 def challenge @challenge end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
47 48 49 50 |
# File 'lib/google/apis/verifiedaccess_v2/classes.rb', line 47 def update!(**args) @alternative_challenge = args[:alternative_challenge] if args.key?(:alternative_challenge) @challenge = args[:challenge] if args.key?(:challenge) end |