INPUT_OBJECT

CreateIdentityProviderSamlMutationInput

The input object that defines the fields for the createIdentityProviderSaml mutation.

link GraphQL Schema definition

  • input CreateIdentityProviderSamlMutationInput {
  • # The display name.
  • display_name: String!
  • # Whether or not this is enabled.
  • enabled: Boolean!
  • # The SAML sign in URL.
  • sign_in_endpoint: URL!
  • # The SAML sign out URL.
  • sign_out_endpoint: URL
  • # The attribute in the SAML token that will be mapped to the user_id property.
  • user_id_attribute: URL
  • # The X.509 signing certificate contents.
  • certificate: Text!
  • # Whether to include more verbose logging during the authentication process or
  • # not.
  • debug: Boolean!
  • # Whether to sign the SAML request or not.
  • sign_saml_request: Boolean!
  • # The sign request algorithm.
  • signature_algorithm: SamlSignatureAlgorithm!
  • # The sign request algorithm digest.
  • digest_algorithm: SamlDigestAlgorithm!
  • # The SAML protocol binding.
  • protocol_binding: SamlProtocolBinding!
  • # Authentication domains.
  • auth_domains: String!
  • }

link Require by