Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1IssueSamlResponseRequest
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1IssueSamlResponseRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v1/classes.rb,
lib/google/apis/identitytoolkit_v1/representations.rb,
lib/google/apis/identitytoolkit_v1/representations.rb
Overview
Request message for IssueSamlResponse.
Instance Attribute Summary collapse
-
#id_token ⇒ String
The Identity Platform ID token.
-
#rp_id ⇒ String
Relying Party identifier, which is the audience of issued SAMLResponse.
-
#saml_app_entity_id ⇒ String
SAML app entity id specified in Google Admin Console for each app.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1IssueSamlResponseRequest
constructor
A new instance of GoogleCloudIdentitytoolkitV1IssueSamlResponseRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1IssueSamlResponseRequest
Returns a new instance of GoogleCloudIdentitytoolkitV1IssueSamlResponseRequest.
1256 1257 1258 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1256 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id_token ⇒ String
The Identity Platform ID token. It will be verified and then converted to a
new SAMLResponse.
Corresponds to the JSON property idToken
1240 1241 1242 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1240 def id_token @id_token end |
#rp_id ⇒ String
Relying Party identifier, which is the audience of issued SAMLResponse.
Corresponds to the JSON property rpId
1245 1246 1247 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1245 def rp_id @rp_id end |
#saml_app_entity_id ⇒ String
SAML app entity id specified in Google Admin Console for each app. If
developers want to redirect to a third-party app rather than a G Suite app,
they'll probably they need this. When it's used, we'll return a RelayState.
This includes a SAMLRequest, which can be used to trigger a SP-initiated SAML
flow to redirect to the real app.
Corresponds to the JSON property samlAppEntityId
1254 1255 1256 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1254 def saml_app_entity_id @saml_app_entity_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1261 1262 1263 1264 1265 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1261 def update!(**args) @id_token = args[:id_token] if args.key?(:id_token) @rp_id = args[:rp_id] if args.key?(:rp_id) @saml_app_entity_id = args[:saml_app_entity_id] if args.key?(:saml_app_entity_id) end |