Библиотеки ресурсов Azure для PythonAzure Resources libraries for Python

ОбзорOverview

Управление ресурсами Azure в группах ресурсов.Manage Azure resources in resource groups.

PackagePackage ОПИСАНИЕDescription
azure.mgmt.resource.featuresazure.mgmt.resource.features Azure Feature Exposure Control (AFEC) — это механизм для поставщиков ресурсов, который обеспечивает контроль над отображением функций пользователям.Azure Feature Exposure Control (AFEC) provides a mechanism for the resource providers to control feature exposure to users.
azure.mgmt.resource.linksazure.mgmt.resource.links Ресурсы Azure можно связывать друг с другом, формируя логические связи.Azure resources can be linked together to form logical relationships. Связи можно устанавливать между ресурсами, принадлежащими к разным группам ресурсов.You can establish links between resources belonging to different resource groups.
azure.mgmt.resource.locksazure.mgmt.resource.locks Ресурсы Azure можно блокировать, чтобы другие пользователи из вашей организации не могли их удалить или изменить.Azure resources can be locked to prevent other users in your organization from deleting or modifying resources.
azure.mgmt.resource.managedapplicationsazure.mgmt.resource.managedapplications Приложения (устройства), управляемые с помощью ARM.ARM managed applications (appliances).
azure.mgmt.resource.policyazure.mgmt.resource.policy Для управления доступом к ресурсам и контроля над ним можно определить настраиваемые политики и назначить их в той или иной области.To manage and control access to your resources, you can define customized policies and assign them at a scope.
azure.mgmt.resource.resourcesazure.mgmt.resource.resources Операции для работы с ресурсами и группами ресурсов.Provides operations for working with resources and resource groups.
azure.mgmt.resource.subscriptionsazure.mgmt.resource.subscriptions Все ресурсы и группы ресурсов существуют в пределах подписок.All resource groups and resources exist within subscriptions. Эти операции позволяют получать сведения о подписках и клиентах.These operation enable you get information about your subscriptions and tenants.

Установка библиотекInstall the libraries

pip install azure-mgmt-resource

ПримерExample

Ниже приведен пример создания группы ресурсов.The following is an example of how to create a resource group.

from azure.mgmt.resource import ResourceManagementClient
client = ResourceManagementClient(credentials, subscription_id)
client.resource_groups.create(RESOURCE_GROUP_NAME, {'location':'eastus'})

Ознакомьтесь с другими примерами кода Python, которые можно использовать в приложениях.Explore more sample Python code you can use in your apps.