Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.46 KB

CreateSAMLConnectionRequest.md

File metadata and controls

34 lines (28 loc) · 1.46 KB

ClerkBackend::CreateSAMLConnectionRequest

Properties

Name Type Description Notes
name String The name to use as a label for this SAML Connection
domain String The domain of your organization. Sign in flows using an email with this domain, will use this SAML Connection.
provider String The IdP provider of the connection.
idp_entity_id String The Entity ID as provided by the IdP [optional]
idp_sso_url String The Single-Sign On URL as provided by the IdP [optional]
idp_certificate String The X.509 certificate as provided by the IdP [optional]
idp_metadata_url String The URL which serves the IdP metadata. If present, it takes priority over the corresponding individual properties [optional]
idp_metadata String The XML content of the IdP metadata file. If present, it takes priority over the corresponding individual properties [optional]
attribute_mapping CreateSAMLConnectionRequestAttributeMapping [optional]

Example

require 'clerk-sdk-ruby-backend'

instance = ClerkBackend::CreateSAMLConnectionRequest.new(
  name: null,
  domain: null,
  provider: null,
  idp_entity_id: null,
  idp_sso_url: null,
  idp_certificate: null,
  idp_metadata_url: null,
  idp_metadata: null,
  attribute_mapping: null
)