편집

다음을 통해 공유


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

개요Overview

Azure Resource Manager를 사용하여 그룹에서 리소스를 배포, 모니터링 및 관리합니다.Deploy, monitor, and manage resources in groups with Azure Resource Manager.

관리 APIManagement API

관리 API를 사용하여 리소스 그룹을 만들고, 템플릿에서 리소스를 배포합니다.Use the management API to create resource groups and deploy resources from templates.

pip install azure-mgmt-resource

Example

Azure Eastern US 지역에 새 리소스 그룹을 만듭니다.Create a new resource group in the Azure Eastern US region.

from azure.mgmt.resource import ResourceManagementClient

LOCATION = 'eastus'
GROUP_NAME ='sample_resource_group'

resource_client = ResourceManagementClient(credentials, subscription_id)
resource_client.resource_groups.create_or_update(GROUP_NAME, {'location': LOCATION})

샘플Samples

Azure 리소스 및 리소스 그룹 관리Manage Azure resources and resource groups

Azure Resource Manager 샘플의 전체 목록을 봅니다.View the complete list of Azure Resource Manager samples.