편집

다음을 통해 공유


Python용 Azure 리소스 라이브러리Azure Resources libraries for Python

개요Overview

리소스 그룹에서 Azure 리소스를 관리합니다.Manage Azure resources in resource groups.

패키지Package 설명Description
azure.mgmt.resource.featuresazure.mgmt.resource.features AFEC(Azure Feature Exposure Control)는 리소스 공급자가 사용자에 대한 기능 노출을 제어하는 메커니즘을 제공합니다.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.