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 74 75 76
|
# coding=utf-8
# ------------------------------------
# Copyright (c) Microsoft.
# Licensed under the MIT License.
# ------------------------------------
"""
FILE: sample_swap_deployments.py
DESCRIPTION:
This sample demonstrates how to swap two **Text Authoring** deployments within a project.
USAGE:
python sample_swap_deployments.py
REQUIRED ENV VARS (for AAD / DefaultAzureCredential):
AZURE_TEXT_ENDPOINT
AZURE_CLIENT_ID
AZURE_TENANT_ID
AZURE_CLIENT_SECRET
NOTE:
If you want to use AzureKeyCredential instead, set:
- AZURE_TEXT_ENDPOINT
- AZURE_TEXT_KEY
OPTIONAL ENV VARS:
PROJECT_NAME # defaults to "<project-name>"
FIRST_DEPLOYMENT_NAME # defaults to "<deployment-name-1>"
SECOND_DEPLOYMENT_NAME # defaults to "<deployment-name-2>"
"""
# [START text_authoring_swap_deployments]
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 SwapDeploymentsDetails
def sample_swap_deployments():
# settings
endpoint = os.environ["AZURE_TEXT_ENDPOINT"]
project_name = os.environ.get("PROJECT_NAME", "<project-name>")
first_deployment = os.environ.get("FIRST_DEPLOYMENT_NAME", "<deployment-name-1>")
second_deployment = os.environ.get("SECOND_DEPLOYMENT_NAME", "<deployment-name-2>")
# create a client with AAD
credential = DefaultAzureCredential()
client = TextAuthoringClient(endpoint, credential=credential)
# project-scoped client
project_client = client.get_project_client(project_name)
# prepare swap details
details = SwapDeploymentsDetails(
first_deployment_name=first_deployment,
second_deployment_name=second_deployment,
)
# begin swap (LRO) and handle success/error
poller = project_client.project.begin_swap_deployments(body=details)
try:
poller.result() # completes with None; raises on failure
print("Swap deployments 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_swap_deployments]
def main():
sample_swap_deployments()
if __name__ == "__main__":
main()
|