IPWorks Cloud 2020 Python Edition

Questions / Feedback?

auth_mechanism Property

The authentication mechanism to use when connecting to the server.

Syntax

def get_auth_mechanism() -> int: ...
def set_auth_mechanism(value: int) -> None: ...

auth_mechanism = property(get_auth_mechanism, set_auth_mechanism)

Default Value

0

Remarks

This property controls what authentication mechanism the class should use when connecting to the server.

Possible values are:

0 (amNone - default) No authentication is performed.
1 (amSimple) Hadoop pseudo/simple authentication is performed.
2 (amBasic) Basic authentication is performed.
3 (amNTLM) NTLM authentication is performed.
4 (amNegotiate) Negotiate authentication is performed.
5 (amOAuth) OAuth authentication is performed.

When set to 1 (amSimple), the value of the user property is automatically sent in every request using the user.name query parameter.

When set to 2 (amBasic), 3 (amNTLM), or 4 (amNegotiate), the values held by the user and password properties will be used to perform Basic, NTLM, or Negotiate (e.g., Kerberos SPNEGO) authentication.

When set to 5 (amOAuth), the value of the authorization property is automatically sent in every request using the Authorization HTTP header.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Python Edition - Version 20.0 [Build 8265]