Leggere in inglese Modifica

Condividi tramite


Librerie della rete CDN di Azure per PythonAzure CDN libraries for python

PanoramicaOverview

La rete CDN (Content Delivery Network) di Azure consente di fornire cache di contenuto Web per assicurare la disponibilità a larghezza di banda elevata in tutto il mondo.Azure Content Delivery Network (CDN) allows you to provide web content caches to ensure high-bandwidth availability across the globe.

Per iniziare a usare la rete CDN di Azure, vedere Introduzione alla rete CDN di Azure.To get started with Azure CDN, see Getting started with Azure CDN.

API di gestioneManagement APIs

Creare, eseguire query e gestire reti CDN di Azure con l'API di gestione.Create, query, and manage Azure CDNs with the management API.

Installare il pacchetto di gestione tramite pip.Install the management package via pip.

pip install azure-mgmt-cdn

EsempioExample

Creazione di un profilo di rete CDN con un singolo endpoint definito: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()