Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2SpConfig
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2SpConfig
- 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
The SAML SP (Service Provider) configuration when the project acts as the relying party to receive and accept an authentication assertion issued by a SAML identity provider.
Instance Attribute Summary collapse
-
#callback_uri ⇒ String
Callback URI where responses from IDP are handled.
-
#sp_certificates ⇒ Array<Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2SpCertificate>
Output only.
-
#sp_entity_id ⇒ String
Unique identifier for all SAML entities.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2SpConfig
constructor
A new instance of GoogleCloudIdentitytoolkitAdminV2SpConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2SpConfig
Returns a new instance of GoogleCloudIdentitytoolkitAdminV2SpConfig.
1899 1900 1901 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1899 def initialize(**args) update!(**args) end |
Instance Attribute Details
#callback_uri ⇒ String
Callback URI where responses from IDP are handled.
Corresponds to the JSON property callbackUri
1886 1887 1888 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1886 def callback_uri @callback_uri end |
#sp_certificates ⇒ Array<Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2SpCertificate>
Output only. Public certificates generated by the server to verify the
signature in SAMLRequest in the SP-initiated flow.
Corresponds to the JSON property spCertificates
1892 1893 1894 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1892 def sp_certificates @sp_certificates end |
#sp_entity_id ⇒ String
Unique identifier for all SAML entities.
Corresponds to the JSON property spEntityId
1897 1898 1899 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1897 def sp_entity_id @sp_entity_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1904 1905 1906 1907 1908 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1904 def update!(**args) @callback_uri = args[:callback_uri] if args.key?(:callback_uri) @sp_certificates = args[:sp_certificates] if args.key?(:sp_certificates) @sp_entity_id = args[:sp_entity_id] if args.key?(:sp_entity_id) end |