1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
# pylint: disable=line-too-long,useless-suppression
# coding=utf-8
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
"""
FILE: sample_get_unassign_project_resources_status.py
DESCRIPTION:
This sample demonstrates how to get the status of a project unassign-resources job in a Conversation Authoring project.
USAGE:
python sample_get_unassign_project_resources_status.py
REQUIRED ENV VARS (for AAD / DefaultAzureCredential):
AZURE_CONVERSATIONS_AUTHORING_ENDPOINT
AZURE_CLIENT_ID
AZURE_TENANT_ID
AZURE_CLIENT_SECRET
NOTE:
If you want to use AzureKeyCredential instead, set:
- AZURE_CONVERSATIONS_AUTHORING_ENDPOINT
- AZURE_CONVERSATIONS_AUTHORING_KEY
OPTIONAL ENV VARS:
PROJECT_NAME # defaults to "<project-name>"
"""
# [START conversation_authoring_get_unassign_project_resources_status]
import os
from azure.identity import DefaultAzureCredential
from azure.core.exceptions import HttpResponseError
from azure.ai.language.conversations.authoring import ConversationAuthoringClient
from azure.ai.language.conversations.authoring.models import ProjectResourcesState
def sample_get_unassign_project_resources_status():
# settings
endpoint = os.environ["AZURE_CONVERSATIONS_AUTHORING_ENDPOINT"]
project_name = os.environ.get("PROJECT_NAME", "<project-name>")
# Example job ID (replace with real one returned by unassign operation)
job_id = "00000000-0000-0000-0000-000000000000"
credential = DefaultAzureCredential()
client = ConversationAuthoringClient(endpoint, credential=credential)
project_client = client.get_project_client(project_name)
# start get-status call
try:
state = project_client.project.get_unassign_project_resources_status(job_id)
print("Status retrieved successfully.")
print(f"Job ID: {state.job_id}")
print(f"Status: {state.status}")
print(f"Created On: {state.created_on}")
print(f"Last Updated On: {state.last_updated_on}")
print(f"Expires On: {state.expires_on}")
except HttpResponseError as e:
print(f"Operation failed: {e.message}")
print(e.error)
# [END conversation_authoring_get_unassign_project_resources_status]
def main():
sample_get_unassign_project_resources_status()
if __name__ == "__main__":
main()
|