Class: Google::Apis::CloudidentityV1beta1::SamlSpConfig
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::SamlSpConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
SAML SP (service provider) configuration.
Instance Attribute Summary collapse
-
#assertion_consumer_service_uri ⇒ String
Output only.
-
#entity_id ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SamlSpConfig
constructor
A new instance of SamlSpConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SamlSpConfig
Returns a new instance of SamlSpConfig.
3738 3739 3740 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3738 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assertion_consumer_service_uri ⇒ String
Output only. The SAML Assertion Consumer Service (ACS) URL to be used for
the IDP-initiated login. Assumed to accept response messages via the HTTP-
POST
binding.
Corresponds to the JSON property assertionConsumerServiceUri
3731 3732 3733 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3731 def assertion_consumer_service_uri @assertion_consumer_service_uri end |
#entity_id ⇒ String
Output only. The SAML Entity ID for this service provider.
Corresponds to the JSON property entityId
3736 3737 3738 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3736 def entity_id @entity_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3743 3744 3745 3746 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3743 def update!(**args) @assertion_consumer_service_uri = args[:assertion_consumer_service_uri] if args.key?(:assertion_consumer_service_uri) @entity_id = args[:entity_id] if args.key?(:entity_id) end |