# coding=utf-8
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------

"""
FILE: sample_unassign_deployment_resources.py
DESCRIPTION:
    This sample demonstrates how to unassign deployment resources from a Text Authoring project.
USAGE:
    python sample_unassign_deployment_resources.py
REQUIRED ENV VARS (for AAD / DefaultAzureCredential):
    AZURE_TEXT_AUTHORING_ENDPOINT
    AZURE_CLIENT_ID
    AZURE_TENANT_ID
    AZURE_CLIENT_SECRET
NOTE:
    If you want to use AzureKeyCredential instead, set:
      - AZURE_TEXT_AUTHORING_ENDPOINT
      - AZURE_TEXT_AUTHORING_KEY
OPTIONAL ENV VARS:
    PROJECT_NAME   # defaults to "<project-name>"
    RESOURCE_ID    # defaults to "<azure-resource-id>"
"""

# [START text_authoring_unassign_deployment_resources]
import os
from azure.identity import DefaultAzureCredential
from azure.core.exceptions import HttpResponseError
from azure.ai.textanalytics.authoring import TextAuthoringClient
from azure.ai.textanalytics.authoring.models import (
    UnassignDeploymentResourcesDetails,
)


def sample_unassign_deployment_resources():
    # settings
    endpoint = os.environ["AZURE_TEXT_AUTHORING_ENDPOINT"]
    project_name = os.environ.get("PROJECT_NAME", "<project-name>")
    resource_id = os.environ.get("RESOURCE_ID", "<azure-resource-id>")

    # create a client with AAD
    credential = DefaultAzureCredential()
    client = TextAuthoringClient(endpoint, credential=credential)
    project_client = client.get_project_client(project_name)

    # build request body
    assigned_resource_ids = [resource_id]
    details = UnassignDeploymentResourcesDetails(assigned_resource_ids=assigned_resource_ids)

    # start unassign (long-running operation)
    poller = project_client.project.begin_unassign_deployment_resources(body=details)

    try:
        poller.result()
        print("Unassign completed.")
        print(f"done: {poller.done()}")
        print(f"status: {poller.status()}")
    except HttpResponseError as e:
        print(f"Operation failed: {e.message}")
        print(e.error)


# [END text_authoring_unassign_deployment_resources]


def main():
    sample_unassign_deployment_resources()


if __name__ == "__main__":
    main()
