All URIs are relative to http://localhost:8091
| Method | HTTP request | Description |
|---|---|---|
| configurer_totp | POST /apis/uc.api.security.halo.run/v1alpha1/authentications/two-factor/totp | |
| delete_totp | DELETE /apis/uc.api.security.halo.run/v1alpha1/authentications/two-factor/totp/- | |
| disable_two_factor | PUT /apis/uc.api.security.halo.run/v1alpha1/authentications/two-factor/settings/disabled | |
| enable_two_factor | PUT /apis/uc.api.security.halo.run/v1alpha1/authentications/two-factor/settings/enabled | |
| get_totp_auth_link | GET /apis/uc.api.security.halo.run/v1alpha1/authentications/two-factor/totp/auth-link | |
| get_two_factor_authentication_settings | GET /apis/uc.api.security.halo.run/v1alpha1/authentications/two-factor/settings |
TwoFactorAuthSettings configurer_totp(totp_request=totp_request)
Configure a TOTP
- Basic Authentication (basicAuth):
- Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.totp_request import TotpRequest
from halo_client.models.two_factor_auth_settings import TwoFactorAuthSettings
from halo_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
host = "http://localhost:8091"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
username = os.environ["USERNAME"],
password = os.environ["PASSWORD"]
)
# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = halo_client.TwoFactorAuthV1alpha1UcApi(api_client)
totp_request = halo_client.TotpRequest() # TotpRequest | (optional)
try:
api_response = api_instance.configurer_totp(totp_request=totp_request)
print("The response of TwoFactorAuthV1alpha1UcApi->configurer_totp:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TwoFactorAuthV1alpha1UcApi->configurer_totp: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| totp_request | TotpRequest | [optional] |
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 0 | default response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TwoFactorAuthSettings delete_totp(password_request=password_request)
- Basic Authentication (basicAuth):
- Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.password_request import PasswordRequest
from halo_client.models.two_factor_auth_settings import TwoFactorAuthSettings
from halo_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
host = "http://localhost:8091"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
username = os.environ["USERNAME"],
password = os.environ["PASSWORD"]
)
# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = halo_client.TwoFactorAuthV1alpha1UcApi(api_client)
password_request = halo_client.PasswordRequest() # PasswordRequest | (optional)
try:
api_response = api_instance.delete_totp(password_request=password_request)
print("The response of TwoFactorAuthV1alpha1UcApi->delete_totp:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TwoFactorAuthV1alpha1UcApi->delete_totp: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| password_request | PasswordRequest | [optional] |
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 0 | default response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TwoFactorAuthSettings disable_two_factor(password_request=password_request)
Disable Two-factor authentication
- Basic Authentication (basicAuth):
- Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.password_request import PasswordRequest
from halo_client.models.two_factor_auth_settings import TwoFactorAuthSettings
from halo_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
host = "http://localhost:8091"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
username = os.environ["USERNAME"],
password = os.environ["PASSWORD"]
)
# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = halo_client.TwoFactorAuthV1alpha1UcApi(api_client)
password_request = halo_client.PasswordRequest() # PasswordRequest | (optional)
try:
api_response = api_instance.disable_two_factor(password_request=password_request)
print("The response of TwoFactorAuthV1alpha1UcApi->disable_two_factor:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TwoFactorAuthV1alpha1UcApi->disable_two_factor: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| password_request | PasswordRequest | [optional] |
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 0 | default response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TwoFactorAuthSettings enable_two_factor(password_request=password_request)
Enable Two-factor authentication
- Basic Authentication (basicAuth):
- Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.password_request import PasswordRequest
from halo_client.models.two_factor_auth_settings import TwoFactorAuthSettings
from halo_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
host = "http://localhost:8091"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
username = os.environ["USERNAME"],
password = os.environ["PASSWORD"]
)
# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = halo_client.TwoFactorAuthV1alpha1UcApi(api_client)
password_request = halo_client.PasswordRequest() # PasswordRequest | (optional)
try:
api_response = api_instance.enable_two_factor(password_request=password_request)
print("The response of TwoFactorAuthV1alpha1UcApi->enable_two_factor:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TwoFactorAuthV1alpha1UcApi->enable_two_factor: %s\n" % e)| Name | Type | Description | Notes |
|---|---|---|---|
| password_request | PasswordRequest | [optional] |
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 0 | default response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TotpAuthLinkResponse get_totp_auth_link()
Get TOTP auth link, including secret
- Basic Authentication (basicAuth):
- Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.totp_auth_link_response import TotpAuthLinkResponse
from halo_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
host = "http://localhost:8091"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
username = os.environ["USERNAME"],
password = os.environ["PASSWORD"]
)
# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = halo_client.TwoFactorAuthV1alpha1UcApi(api_client)
try:
api_response = api_instance.get_totp_auth_link()
print("The response of TwoFactorAuthV1alpha1UcApi->get_totp_auth_link:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TwoFactorAuthV1alpha1UcApi->get_totp_auth_link: %s\n" % e)This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 0 | default response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TwoFactorAuthSettings get_two_factor_authentication_settings()
Get Two-factor authentication settings.
- Basic Authentication (basicAuth):
- Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.two_factor_auth_settings import TwoFactorAuthSettings
from halo_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
host = "http://localhost:8091"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
username = os.environ["USERNAME"],
password = os.environ["PASSWORD"]
)
# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
access_token = os.environ["BEARER_TOKEN"]
)
# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = halo_client.TwoFactorAuthV1alpha1UcApi(api_client)
try:
api_response = api_instance.get_two_factor_authentication_settings()
print("The response of TwoFactorAuthV1alpha1UcApi->get_two_factor_authentication_settings:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling TwoFactorAuthV1alpha1UcApi->get_two_factor_authentication_settings: %s\n" % e)This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 0 | default response | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]