Class: Google::Apis::StsV1::GoogleIdentityStsV1ExchangeTokenResponse

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

Overview

Response message for ExchangeToken.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleIdentityStsV1ExchangeTokenResponse

Returns a new instance of GoogleIdentityStsV1ExchangeTokenResponse.



377
378
379
# File 'lib/google/apis/sts_v1/classes.rb', line 377

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

Instance Attribute Details

#access_tokenString

An OAuth 2.0 security token, issued by Google, in response to the token exchange request. Tokens can vary in size, depending in part on the size of mapped claims, up to a maximum of 12288 bytes (12 KB). Google reserves the right to change the token size and the maximum length at any time. Corresponds to the JSON property access_token

Returns:

  • (String)


355
356
357
# File 'lib/google/apis/sts_v1/classes.rb', line 355

def access_token
  @access_token
end

#expires_inFixnum

The amount of time, in seconds, between the time when the access token was issued and the time when the access token will expire. This field is absent when the subject_token in the request is a Google-issued, short-lived access token. In this case, the access token has the same expiration time as the subject_token. Corresponds to the JSON property expires_in

Returns:

  • (Fixnum)


364
365
366
# File 'lib/google/apis/sts_v1/classes.rb', line 364

def expires_in
  @expires_in
end

#issued_token_typeString

The token type. Always matches the value of requested_token_type from the request. Corresponds to the JSON property issued_token_type

Returns:

  • (String)


370
371
372
# File 'lib/google/apis/sts_v1/classes.rb', line 370

def issued_token_type
  @issued_token_type
end

#token_typeString

The type of access token. Always has the value Bearer. Corresponds to the JSON property token_type

Returns:

  • (String)


375
376
377
# File 'lib/google/apis/sts_v1/classes.rb', line 375

def token_type
  @token_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



382
383
384
385
386
387
# File 'lib/google/apis/sts_v1/classes.rb', line 382

def update!(**args)
  @access_token = args[:access_token] if args.key?(:access_token)
  @expires_in = args[:expires_in] if args.key?(:expires_in)
  @issued_token_type = args[:issued_token_type] if args.key?(:issued_token_type)
  @token_type = args[:token_type] if args.key?(:token_type)
end