Azure CLI를 사용하여 Azure API Management API 작업 만들기

3238 단어 cliapiazure
Azure API Management API 또는 작업을 만들려면 현재 버전의 Azure CLI를 사용해야 합니다.

Azure CLI 설치



설치된 버전 확인:

az --version


설치 또는 업데이트Azure CLI

로그인



API를 생성하기 전에 로그인해야 합니다. 올바른 테넌트를 선택해야 할 수도 있습니다.

az login


스크립트



여기에서 Microsoft 설명서를 찾으십시오.

az apim api create

az apim api operation create

스크립트에는 기존 API Management가 필요합니다.

$resourceGroupName = "eval.datatransformation"
$serviceName = "mm-sample"
$apiId="lorem-ipsum"
$apiDisplayName="Lorem Ipsum"
$apiId="Lorem"
$apiPath="/lorem-ipsum"
$operationPath="/"
$operationDisplayName="Get"
$operationDescription="Gets the data"

az login

# create the API
az apim api create --service-name $serviceName  -g $resourceGroupName --api-id $apiId --path $apiPath --display-name $apiDisplayName

# create the Operation
az apim api operation create --service-name $serviceName  -g $resourceGroupName --api-id $apiId --url-template $operationPath --method "GET" --display-name $operationDisplayName --description $operationDescription



결과



API 및 작업이 생성됩니다.

좋은 웹페이지 즐겨찾기