Class: Google::Apis::IamV1::SignJwtResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SignJwtResponse

Returns a new instance of SignJwtResponse.



1952
1953
1954
# File 'lib/google/apis/iam_v1/classes.rb', line 1952

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

Instance Attribute Details

#key_idString

Deprecated. Migrate to Service Account Credentials API. The id of the key used to sign the JWT. Corresponds to the JSON property keyId

Returns:

  • (String)


1944
1945
1946
# File 'lib/google/apis/iam_v1/classes.rb', line 1944

def key_id
  @key_id
end

#signed_jwtString

Deprecated. Migrate to Service Account Credentials API. The signed JWT. Corresponds to the JSON property signedJwt

Returns:

  • (String)


1950
1951
1952
# File 'lib/google/apis/iam_v1/classes.rb', line 1950

def signed_jwt
  @signed_jwt
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1957
1958
1959
1960
# File 'lib/google/apis/iam_v1/classes.rb', line 1957

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