Class: Google::Apis::CloudidentityV1::InboundSamlSsoProfile
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::InboundSamlSsoProfile
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
A SAML 2.0 federation between a Google enterprise customer and a SAML identity provider.
Instance Attribute Summary collapse
-
#customer ⇒ String
Immutable.
-
#display_name ⇒ String
Human-readable name of the SAML SSO profile.
-
#idp_config ⇒ Google::Apis::CloudidentityV1::SamlIdpConfig
SAML IDP (identity provider) configuration.
-
#name ⇒ String
Output only.
-
#sp_config ⇒ Google::Apis::CloudidentityV1::SamlSpConfig
SAML SP (service provider) configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InboundSamlSsoProfile
constructor
A new instance of InboundSamlSsoProfile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InboundSamlSsoProfile
Returns a new instance of InboundSamlSsoProfile.
1673 1674 1675 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1673 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer ⇒ String
Immutable. The customer. For example: customers/C0123abc
.
Corresponds to the JSON property customer
1650 1651 1652 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1650 def customer @customer end |
#display_name ⇒ String
Human-readable name of the SAML SSO profile.
Corresponds to the JSON property displayName
1655 1656 1657 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1655 def display_name @display_name end |
#idp_config ⇒ Google::Apis::CloudidentityV1::SamlIdpConfig
SAML IDP (identity provider) configuration.
Corresponds to the JSON property idpConfig
1660 1661 1662 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1660 def idp_config @idp_config end |
#name ⇒ String
Output only. Resource name of the SAML SSO profile.
Corresponds to the JSON property name
1666 1667 1668 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1666 def name @name end |
#sp_config ⇒ Google::Apis::CloudidentityV1::SamlSpConfig
SAML SP (service provider) configuration.
Corresponds to the JSON property spConfig
1671 1672 1673 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1671 def sp_config @sp_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1678 1679 1680 1681 1682 1683 1684 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1678 def update!(**args) @customer = args[:customer] if args.key?(:customer) @display_name = args[:display_name] if args.key?(:display_name) @idp_config = args[:idp_config] if args.key?(:idp_config) @name = args[:name] if args.key?(:name) @sp_config = args[:sp_config] if args.key?(:sp_config) end |