Class: Google::Apis::IamV1::SignJwtResponse
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::SignJwtResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/iam_v1/classes.rb,
lib/google/apis/iam_v1/representations.rb,
lib/google/apis/iam_v1/representations.rb
Overview
Deprecated. Migrate to Service Account Credentials API. The service account sign JWT response.
Instance Attribute Summary collapse
-
#key_id ⇒ String
Deprecated.
-
#signed_jwt ⇒ String
Deprecated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SignJwtResponse
constructor
A new instance of SignJwtResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SignJwtResponse
Returns a new instance of SignJwtResponse.
2899 2900 2901 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2899 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key_id ⇒ String
Deprecated. Migrate to Service Account Credentials API. The id of the key used to sign the JWT.
Corresponds to the JSON property keyId
2891 2892 2893 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2891 def key_id @key_id end |
#signed_jwt ⇒ String
Deprecated. Migrate to Service Account Credentials API. The signed JWT.
Corresponds to the JSON property signedJwt
2897 2898 2899 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2897 def signed_jwt @signed_jwt end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2904 2905 2906 2907 |
# File 'lib/google/apis/iam_v1/classes.rb', line 2904 def update!(**args) @key_id = args[:key_id] if args.key?(:key_id) @signed_jwt = args[:signed_jwt] if args.key?(:signed_jwt) end |