INPUT_OBJECT

UpdateIdentityProviderSamlMutationInput

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

link GraphQL Schema definition

  • input UpdateIdentityProviderSamlMutationInput {
  • # 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
  • # Setting this value to `true` will set `sign_out_endpoint` to null.
  • unset_sign_out_endpoint: Boolean
  • # Setting this value to `true` will set `user_id_attribute` to null.
  • unset_user_id_attribute: Boolean
  • }

link Require by