Servers - Delete
서버를 삭제합니다.
DELETE https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}?api-version=2021-11-01
URI 매개 변수
Name
In(다음 안에)
필수
형식
Description
resourceGroupName
path
True
string
리소스를 포함하는 리소스 그룹의 이름입니다. Azure 리소스 관리자 API 또는 포털에서 이 값을 가져올 수 있습니다.
serverName
path
True
string
서버의 이름입니다.
subscriptionId
path
True
string
Azure 구독을 식별하는 구독 ID입니다.
api-version
query
True
string
요청에 사용할 API 버전입니다.
응답
Name
형식
Description
200 OK
서버를 삭제했습니다.
202 Accepted
수락됨
204 No Content
지정된 서버가 없습니다.
Other Status Codes
오류 응답: ***
404 SubscriptionDoesNotHaveServer - 요청된 서버를 찾을 수 없습니다.
404 ServerNotInSubscriptionResourceGroup - 지정된 서버가 지정된 리소스 그룹 및 구독에 없습니다.
404 OperationIdNotFound - ID가 있는 작업이 없습니다.
404 SubscriptionNotFound - 요청된 구독을 찾을 수 없습니다.
409 OperationCancelled - 사용자가 작업을 취소했습니다.
409 OperationInterrupted - 동일한 리소스의 다른 작업에 의해 중단되었으므로 리소스에 대한 작업을 완료할 수 없습니다.
409 ConflictingServerOperation - 서버에 대한 작업이 현재 진행 중입니다.
409 DropLogicalServerAlreadyInProgress - 서버가 이미 삭제되고 있습니다.
429 SubscriptionTooManyCreateUpdateRequests - 사용 가능한 리소스에서 처리할 수 있는 최대 요청을 초과하는 요청입니다.
429 SubscriptionTooManyRequests - 사용 가능한 리소스에서 처리할 수 있는 최대 요청을 초과하는 요청입니다.
429 SubscriptionTooManyCreateUpdateRequests - 사용 가능한 리소스에서 처리할 수 있는 최대 요청을 초과하는 요청입니다.
429 SubscriptionTooManyRequests - 사용 가능한 리소스에서 처리할 수 있는 최대 요청을 초과하는 요청입니다.
500 OperationTimedOut - 작업 시간이 초과되고 자동으로 롤백됩니다. 작업을 다시 시도하세요.
503 TooManyRequests - 사용 가능한 리소스에서 처리할 수 있는 최대 요청을 초과하는 요청입니다.
503 TooManyRequests - 사용 가능한 리소스에서 처리할 수 있는 최대 요청을 초과하는 요청입니다.
예제
Delete server
샘플 요청
DELETE https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-6661?api-version=2021-11-01
/**
* Samples for Servers Delete.
*/
public final class Main {
/*
* x-ms-original-file: specification/sql/resource-manager/Microsoft.Sql/stable/2021-11-01/examples/ServerDelete.json
*/
/**
* Sample code: Delete server.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void deleteServer(com.azure.resourcemanager.AzureResourceManager azure) {
azure.sqlServers().manager().serviceClient().getServers().delete("sqlcrudtest-7398", "sqlcrudtest-6661",
com.azure.core.util.Context.NONE);
}
}
To use the Azure SDK library in your project, see this documentation . To provide feedback on this code sample, open a GitHub issue