Class: Google::Apis::IamcredentialsV1::SignJwtResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/iamcredentials_v1/classes.rb,
generated/google/apis/iamcredentials_v1/representations.rb,
generated/google/apis/iamcredentials_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SignJwtResponse

Returns a new instance of SignJwtResponse.



287
288
289
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 287

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#key_idString

The ID of the key used to sign the JWT. The key used for signing will remain valid for at least 12 hours after the JWT is signed. To verify the signature, you can retrieve the public key in several formats from the following endpoints: - RSA public key wrapped in an X.509 v3 certificate: https://www. googleapis.com/service_accounts/v1/metadata/x509/ACCOUNT_EMAIL- Raw key in JSON format: `https://www.googleapis.com/service_accounts/v1/metadata/raw/` ACCOUNT_EMAIL - JSON Web Key (JWK): https://www.googleapis.com/ service_accounts/v1/metadata/jwk/ACCOUNT_EMAIL` Corresponds to the JSON propertykeyId`

Returns:

  • (String)


275
276
277
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 275

def key_id
  @key_id
end

#signed_jwtString

The signed JWT. Contains the automatically generated header; the client- supplied payload; and the signature, which is generated using the key referenced by the kid field in the header. After the key pair referenced by the key_id response field expires, Google no longer exposes the public key that can be used to verify the JWT. As a result, the receiver can no longer verify the signature. Corresponds to the JSON property signedJwt

Returns:

  • (String)


285
286
287
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 285

def signed_jwt
  @signed_jwt
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



292
293
294
295
# File 'generated/google/apis/iamcredentials_v1/classes.rb', line 292

def update!(**args)
  @key_id = args[:key_id] if args.key?(:key_id)
  @signed_jwt = args[:signed_jwt] if args.key?(:signed_jwt)
end