Odstraní zadaný privátní koncový bod.
DELETE https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}?api-version=2024-05-01
Parametry identifikátoru URI
Name |
V |
Vyžadováno |
Typ |
Description |
privateEndpointName
|
path |
True
|
string
|
Název privátního koncového bodu.
|
resourceGroupName
|
path |
True
|
string
|
Název skupiny prostředků.
|
subscriptionId
|
path |
True
|
string
|
Přihlašovací údaje předplatného, které jednoznačně identifikují předplatné Microsoft Azure. ID předplatného tvoří součást identifikátoru URI pro každé volání služby.
|
api-version
|
query |
True
|
string
|
Verze rozhraní API klienta.
|
Odpovědi
Name |
Typ |
Description |
200 OK
|
|
Odstranění proběhlo úspěšně.
|
202 Accepted
|
|
Akceptovaná a operace se dokončí asynchronně.
|
204 No Content
|
|
Odstranění proběhlo úspěšně.
|
Other Status Codes
|
Error
|
Chyba.
|
Zabezpečení
azure_auth
Tok OAuth2 v Azure Active Directory
Typ:
oauth2
Tok:
implicit
URL autorizace:
https://login.microsoftonline.com/common/oauth2/authorize
Rozsahy
Name |
Description |
user_impersonation
|
zosobnění uživatelského účtu
|
Příklady
Delete private endpoint
Ukázkový požadavek
DELETE https://management.azure.com/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/privateEndpoints/testPe?api-version=2024-05-01
/**
* Samples for PrivateEndpoints Delete.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/PrivateEndpointDelete.json
*/
/**
* Sample code: Delete private endpoint.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void deletePrivateEndpoint(com.azure.resourcemanager.AzureResourceManager azure) {
azure.networks().manager().serviceClient().getPrivateEndpoints().delete("rg1", "testPe",
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
from azure.identity import DefaultAzureCredential
from azure.mgmt.network import NetworkManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-network
# USAGE
python private_endpoint_delete.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = NetworkManagementClient(
credential=DefaultAzureCredential(),
subscription_id="subId",
)
client.private_endpoints.begin_delete(
resource_group_name="rg1",
private_endpoint_name="testPe",
).result()
# x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/PrivateEndpointDelete.json
if __name__ == "__main__":
main()
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
package armnetwork_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v6"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/ab04533261eff228f28e08900445d0edef3eb70c/specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/PrivateEndpointDelete.json
func ExamplePrivateEndpointsClient_BeginDelete() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armnetwork.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewPrivateEndpointsClient().BeginDelete(ctx, "rg1", "testPe", nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
_, err = poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %v", err)
}
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { NetworkManagementClient } = require("@azure/arm-network");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Deletes the specified private endpoint.
*
* @summary Deletes the specified private endpoint.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/PrivateEndpointDelete.json
*/
async function deletePrivateEndpoint() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subId";
const resourceGroupName = process.env["NETWORK_RESOURCE_GROUP"] || "rg1";
const privateEndpointName = "testPe";
const credential = new DefaultAzureCredential();
const client = new NetworkManagementClient(credential, subscriptionId);
const result = await client.privateEndpoints.beginDeleteAndWait(
resourceGroupName,
privateEndpointName,
);
console.log(result);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
Ukázková odpověď
Azure-AsyncOperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2024-05-01
Definice
Name |
Description |
Error
|
Běžné vyjádření chyb
|
ErrorDetails
|
Znázornění běžných podrobností o chybách
|
Error
Běžné vyjádření chyb
Name |
Typ |
Description |
code
|
string
|
Kód chyby
|
details
|
ErrorDetails[]
|
Podrobnosti o chybě
|
innerError
|
string
|
Vnitřní chybová zpráva
|
message
|
string
|
Zpráva o chybě.
|
target
|
string
|
Cíl chyby
|
ErrorDetails
Znázornění běžných podrobností o chybách
Name |
Typ |
Description |
code
|
string
|
Kód chyby
|
message
|
string
|
Zpráva o chybě.
|
target
|
string
|
Cíl chyby
|