Bibliotecas da CDN do Azure para PythonAzure CDN libraries for python
Visão geralOverview
A Rede de Distribuição de Conteúdo do Azure (CDN) permite que você forneça caches de conteúdo da Web para garantir uma disponibilidade de alta largura de banda em todo o mundo.Azure Content Delivery Network (CDN) allows you to provide web content caches to ensure high-bandwidth availability across the globe.
Para começar a usar a CDN do Azure, consulte Introdução à CDN do Azure.To get started with Azure CDN, see Getting started with Azure CDN.
APIs de gerenciamentoManagement APIs
Criar, consultar e gerenciar as CDNs do Azure com a API de gerenciamento.Create, query, and manage Azure CDNs with the management API.
Instalar o pacote de gerenciamento com PIP.Install the management package via pip.
pip install azure-mgmt-cdn
ExemploExample
Criar um perfil de CDN com um único ponto de extremidade definido:Creating a CDN profile with a single defined endpoint:
from azure.mgmt.cdn import CdnManagementClient
cdn_client = CdnManagementClient(credentials, 'your-subscription-id')
profile_poller = cdn_client.profiles.create('my-resource-group',
'cdn-name',
{
"location": "some_region",
"sku": {
"name": "sku_tier"
}
})
profile = profile_poller.result()
endpoint_poller = cdn_client.endpoints.create('my-resource-group',
'cdn-name',
'unique-endpoint-name',
{
"location": "any_region",
"origins": [
{
"name": "origin_name",
"host_name": "url"
}]
})
endpoint = endpoint_poller.result()