CredentialType

public enum CredentialType : String

The authentication method for this credentials definition. The credential_type specified must be supported by the source_type. The following combinations are possible:

  • "source_type": "box" - valid credential_types: oauth2
  • "source_type": "salesforce" - valid credential_types: username_password
  • "source_type": "sharepoint" - valid credential_types: saml with source_version of online, or ntlm_v1 with source_version of 2016
  • "source_type": "web_crawl" - valid credential_types: noauth or basic
  • “source_type”: “cloud_object_storage”- validcredential_types:aws4_hmac`.
  • Undocumented

    Declaration

    Swift

    case oauth2 = "oauth2"
  • Undocumented

    Declaration

    Swift

    case saml = "saml"
  • Undocumented

    Declaration

    Swift

    case usernamePassword = "username_password"
  • Undocumented

    Declaration

    Swift

    case noauth = "noauth"
  • Undocumented

    Declaration

    Swift

    case basic = "basic"
  • Undocumented

    Declaration

    Swift

    case ntlmV1 = "ntlm_v1"
  • Undocumented

    Declaration

    Swift

    case aws4Hmac = "aws4_hmac"