Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2InboundSamlConfig
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2InboundSamlConfig
- 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
A pair of SAML RP-IDP configurations when the project acts as the relying party.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The config's display name set by developers.
-
#enabled ⇒ Boolean
(also: #enabled?)
True if allows the user to sign in with the provider.
-
#idp_config ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2IdpConfig
The SAML IdP (Identity Provider) configuration when the project acts as the relying party.
-
#name ⇒ String
The name of the InboundSamlConfig resource, for example: 'projects/my-awesome- project/inboundSamlConfigs/my-config-id'.
-
#sp_config ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2SpConfig
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 Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2InboundSamlConfig
constructor
A new instance of GoogleCloudIdentitytoolkitAdminV2InboundSamlConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitAdminV2InboundSamlConfig
Returns a new instance of GoogleCloudIdentitytoolkitAdminV2InboundSamlConfig.
833 834 835 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 833 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The config's display name set by developers.
Corresponds to the JSON property displayName
806 807 808 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 806 def display_name @display_name end |
#enabled ⇒ Boolean Also known as: enabled?
True if allows the user to sign in with the provider.
Corresponds to the JSON property enabled
811 812 813 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 811 def enabled @enabled end |
#idp_config ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2IdpConfig
The SAML IdP (Identity Provider) configuration when the project acts as the
relying party.
Corresponds to the JSON property idpConfig
818 819 820 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 818 def idp_config @idp_config end |
#name ⇒ String
The name of the InboundSamlConfig resource, for example: 'projects/my-awesome-
project/inboundSamlConfigs/my-config-id'. Ignored during create requests.
Corresponds to the JSON property name
824 825 826 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 824 def name @name end |
#sp_config ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitAdminV2SpConfig
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.
Corresponds to the JSON property spConfig
831 832 833 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 831 def sp_config @sp_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
838 839 840 841 842 843 844 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 838 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @enabled = args[:enabled] if args.key?(:enabled) @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 |