Azure CLI를 사용하여 Azure API Management API 작업 만들기
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 및 작업이 생성됩니다.
Reference
이 문제에 관하여(Azure CLI를 사용하여 Azure API Management API 작업 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/markusmeyer13/create-azure-api-management-api-operation-with-azure-cli-4pg6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)