template.cortex.cloud.authenticate

Operation: POST /dataservice/template/cortex/cloud/authenticate

Authenticate Cloud Account Credentials

def authenticate_azure_connect_cred_and_add(
    payload: Optional[Any] = None,
) -> None: ...

Example:

from catalyswan.core import create_client

url = "example.com"
username = "admin"
password = "password123"

with create_client(
    url=url, username=username, password=password
) as client:
    client.template.cortex.cloud.authenticate.authenticate_azure_connect_cred_and_add()