Class: Google::Apis::CloudidentityV1beta1::SamlSpConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SamlSpConfig

Returns a new instance of SamlSpConfig.



3754
3755
3756
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3754

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

Instance Attribute Details

#assertion_consumer_service_uriString

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

Returns:

  • (String)


3747
3748
3749
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3747

def assertion_consumer_service_uri
  @assertion_consumer_service_uri
end

#entity_idString

Output only. The SAML Entity ID for this service provider. Corresponds to the JSON property entityId

Returns:

  • (String)


3752
3753
3754
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3752

def entity_id
  @entity_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3759
3760
3761
3762
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 3759

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