-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from Azure-Samples/t2-cdn-2020-10-27
[T2] cdn
- Loading branch information
Showing
3 changed files
with
183 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
--- | ||
page_type: sample | ||
languages: | ||
- python | ||
products: | ||
- azure | ||
description: "These code samples will show you how to manage cdn using Azure SDK for Python." | ||
urlFragment: cdn | ||
--- | ||
|
||
# Getting started - Managing cdn using Azure Python SDK | ||
|
||
These code samples will show you how to manage cdn using Azure SDK for Python. | ||
|
||
## Features | ||
|
||
This project framework provides examples for the following services: | ||
|
||
### cdn | ||
* [] Using the Azure SDK for Python - cdn Management Library [azure-mgmt-cdn](https://pypi.org/project/azure-mgmt-cdn/) for the [cdn API](https://docs.microsoft.com/en-us/rest/api/cdn/) | ||
|
||
## Getting Started | ||
|
||
### Prerequisites | ||
|
||
1. Before we run the samples, we need to make sure we have setup the credentials. Follow the instructions in [register a new application using Azure portal](https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal) to obtain `subscription id`,`client id`,`client secret`, and `application id` | ||
|
||
2. Store your credentials an environment variables. | ||
For example, in Linux-based OS, you can do | ||
```bash | ||
export AZURE_TENANT_ID="xxx" | ||
export AZURE_CLIENT_ID="xxx" | ||
export AZURE_CLIENT_SECRET="xxx" | ||
export SUBSCRIPTION_ID="xxx" | ||
``` | ||
|
||
### Installation | ||
|
||
1. If you don't already have it, [install Python](https://www.python.org/downloads/). | ||
|
||
This sample (and the SDK) is compatible with Python 2.7, 3.3, 3.4, 3.5 and 3.6. | ||
|
||
2. General recommendation for Python development is to use a Virtual Environment. | ||
For more information, see https://docs.python.org/3/tutorial/venv.html | ||
|
||
Install and initialize the virtual environment with the "venv" module on Python 3 (you must install [virtualenv](https://pypi.python.org/pypi/virtualenv) for Python 2.7): | ||
|
||
``` | ||
python -m venv mytestenv # Might be "python3" or "py -3.6" depending on your Python installation | ||
cd mytestenv | ||
source bin/activate # Linux shell (Bash, ZSH, etc.) only | ||
./scripts/activate # PowerShell only | ||
./scripts/activate.bat # Windows CMD only | ||
``` | ||
|
||
### Quickstart | ||
|
||
1. Clone the repository. | ||
|
||
``` | ||
git clone https://github.com/Azure-Samples/azure-samples-python-management.git | ||
``` | ||
|
||
2. Install the dependencies using pip. | ||
|
||
``` | ||
cd azure-samples-python-management/samples/cdn | ||
pip install -r requirements.txt | ||
``` | ||
|
||
## Demo | ||
|
||
A demo app is included to show how to use the project. | ||
|
||
To run the complete demo, execute `python example.py` | ||
|
||
To run each individual demo, point directly to the file. For example (i.e. not complete list): | ||
|
||
1. `python manage_cdn.py` | ||
|
||
If the script starts with `disable_***.py`, it means that it is unavailable now. | ||
|
||
The sample files do not have dependency each other and each file represents an individual end-to-end scenario. Please look at the sample that contains the scenario you are interested in | ||
|
||
## Resources | ||
|
||
- https://github.com/Azure/azure-sdk-for-python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# -------------------------------------------------------------------------- | ||
|
||
import os | ||
import time | ||
from azure.identity import DefaultAzureCredential | ||
from azure.mgmt.cdn import CdnManagementClient | ||
from azure.mgmt.resource import ResourceManagementClient | ||
|
||
# - other dependence - | ||
# - end - | ||
|
||
|
||
def main(): | ||
|
||
SUBSCRIPTION_ID = os.environ.get("SUBSCRIPTION_ID", None) | ||
TIME = str(time.time()).replace('.','') | ||
GROUP_NAME = "testcdn" + TIME | ||
CDN = "cdn" + TIME | ||
LOCATION='WestUs' | ||
|
||
# Create client | ||
# # For other authentication approaches, please see: https://pypi.org/project/azure-identity/ | ||
resource_client = ResourceManagementClient( | ||
credential=DefaultAzureCredential(), | ||
subscription_id=SUBSCRIPTION_ID | ||
) | ||
cdn_client = CdnManagementClient( | ||
credential=DefaultAzureCredential(), | ||
subscription_id=SUBSCRIPTION_ID | ||
) | ||
# - init depended client - | ||
# - end - | ||
|
||
# Create resource group | ||
resource_client.resource_groups.create_or_update( | ||
GROUP_NAME, | ||
{"location": LOCATION} | ||
) | ||
|
||
# - init depended resources - | ||
# - end - | ||
|
||
# Create cdn | ||
cdn = cdn_client.profiles.begin_create( | ||
GROUP_NAME, | ||
CDN, | ||
{ | ||
"location": LOCATION, | ||
"sku": { | ||
"name": "Standard_Verizon" | ||
} | ||
} | ||
).result() | ||
print("Create cdn:\n{}\n".format(cdn)) | ||
|
||
# Get cdn | ||
cdn = cdn_client.profiles.get( | ||
GROUP_NAME, | ||
CDN | ||
) | ||
print("Get cdn:\n{}\n".format(cdn)) | ||
|
||
# Update cdn | ||
cdn = cdn_client.profiles.begin_update( | ||
GROUP_NAME, | ||
CDN, | ||
{ | ||
"tags": { | ||
"additional_properties": "Tag1" | ||
} | ||
} | ||
).result() | ||
print("Update cdn:\n{}\n".format(cdn)) | ||
|
||
# Delete cdn | ||
cdn = cdn_client.profiles.begin_delete( | ||
GROUP_NAME, | ||
CDN | ||
).result() | ||
print("Delete cdn.\n") | ||
|
||
# Delete Group | ||
resource_client.resource_groups.begin_delete( | ||
GROUP_NAME | ||
).result() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
azure-identity | ||
azure-mgmt-resource==15.0.0 | ||
azure-mgmt-cdn==10.0.0b1 |