Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ForwardInboundCredentials
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2ForwardInboundCredentials
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v2/classes.rb,
lib/google/apis/identitytoolkit_v2/representations.rb,
lib/google/apis/identitytoolkit_v2/representations.rb
Overview
Indicates which credentials to pass to the registered Blocking Functions.
Instance Attribute Summary collapse
-
#access_token ⇒ Boolean
(also: #access_token?)
Whether to pass the user's OAuth identity provider's access token.
-
#id_token ⇒ Boolean
(also: #id_token?)
Whether to pass the user's OIDC identity provider's ID token.
-
#refresh_token ⇒ Boolean
(also: #refresh_token?)
Whether to pass the user's OAuth identity provider's refresh token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2ForwardInboundCredentials
constructor
A new instance of GoogleCloudIdentitytoolkitAdminV2ForwardInboundCredentials.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2ForwardInboundCredentials
Returns a new instance of GoogleCloudIdentitytoolkitAdminV2ForwardInboundCredentials.
614 615 616 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 614 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_token ⇒ Boolean Also known as: access_token?
Whether to pass the user's OAuth identity provider's access token.
Corresponds to the JSON property accessToken
599 600 601 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 599 def access_token @access_token end |
#id_token ⇒ Boolean Also known as: id_token?
Whether to pass the user's OIDC identity provider's ID token.
Corresponds to the JSON property idToken
605 606 607 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 605 def id_token @id_token end |
#refresh_token ⇒ Boolean Also known as: refresh_token?
Whether to pass the user's OAuth identity provider's refresh token.
Corresponds to the JSON property refreshToken
611 612 613 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 611 def refresh_token @refresh_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
619 620 621 622 623 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 619 def update!(**args) @access_token = args[:access_token] if args.key?(:access_token) @id_token = args[:id_token] if args.key?(:id_token) @refresh_token = args[:refresh_token] if args.key?(:refresh_token) end |