Hiermee verwijdert u een alias (configuratie voor herstel na noodgevallen)
DELETE https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}?api-version=2021-11-01
URI-parameters
Name |
In |
Vereist |
Type |
Description |
alias
|
path |
True
|
string
|
De naam van de configuratie voor herstel na noodgevallen
|
namespaceName
|
path |
True
|
string
|
De naam van de naamruimte
|
resourceGroupName
|
path |
True
|
string
|
Naam van de resourcegroep binnen het Azure-abonnement.
|
subscriptionId
|
path |
True
|
string
|
Abonnementsreferenties waarmee een Microsoft Azure-abonnement uniek wordt geïdentificeerd. De abonnements-id maakt deel uit van de URI voor elke service-aanroep.
|
api-version
|
query |
True
|
string
|
Client-API-versie.
|
Antwoorden
Name |
Type |
Description |
200 OK
|
|
Aanvraag voor verwijderen van alias (noodherstelconfiguratie) geaccepteerd
|
204 No Content
|
|
Geen inhoud.
|
Other Status Codes
|
ErrorResponse
|
ServiceBus-foutreactie waarin wordt beschreven waarom de bewerking is mislukt.
|
Beveiliging
azure_auth
Azure Active Directory OAuth2-stroom
Type:
oauth2
Stroom:
implicit
Autorisatie-URL:
https://login.microsoftonline.com/common/oauth2/authorize
Bereiken
Name |
Description |
user_impersonation
|
Uw gebruikersaccount imiteren
|
Voorbeelden
SBAliasDelete
Voorbeeldaanvraag
DELETE https://management.azure.com/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/SouthCentralUS/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8860/disasterRecoveryConfigs/sdk-DisasterRecovery-3814?api-version=2021-11-01
/**
* Samples for DisasterRecoveryConfigs Delete.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2021-11-01/examples/disasterRecoveryConfigs
* /SBAliasDelete.json
*/
/**
* Sample code: SBAliasDelete.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void sBAliasDelete(com.azure.resourcemanager.AzureResourceManager azure) {
azure.serviceBusNamespaces().manager().serviceClient().getDisasterRecoveryConfigs().deleteWithResponse(
"SouthCentralUS", "sdk-Namespace-8860", "sdk-DisasterRecovery-3814", 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.servicebus import ServiceBusManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-servicebus
# USAGE
python sb_alias_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 = ServiceBusManagementClient(
credential=DefaultAzureCredential(),
subscription_id="5f750a97-50d9-4e36-8081-c9ee4c0210d4",
)
response = client.disaster_recovery_configs.delete(
resource_group_name="SouthCentralUS",
namespace_name="sdk-Namespace-8860",
alias="sdk-DisasterRecovery-3814",
)
print(response)
# x-ms-original-file: specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2021-11-01/examples/disasterRecoveryConfigs/SBAliasDelete.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 armservicebus_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicebus/armservicebus"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/7a2ac91de424f271cf91cc8009f3fe9ee8249086/specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2021-11-01/examples/disasterRecoveryConfigs/SBAliasDelete.json
func ExampleDisasterRecoveryConfigsClient_Delete() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armservicebus.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
_, err = clientFactory.NewDisasterRecoveryConfigsClient().Delete(ctx, "SouthCentralUS", "sdk-Namespace-8860", "sdk-DisasterRecovery-3814", nil)
if err != nil {
log.Fatalf("failed to finish the request: %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 { ServiceBusManagementClient } = require("@azure/arm-servicebus");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Deletes an Alias(Disaster Recovery configuration)
*
* @summary Deletes an Alias(Disaster Recovery configuration)
* x-ms-original-file: specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2021-11-01/examples/disasterRecoveryConfigs/SBAliasDelete.json
*/
async function sbAliasDelete() {
const subscriptionId = "5f750a97-50d9-4e36-8081-c9ee4c0210d4";
const resourceGroupName = "SouthCentralUS";
const namespaceName = "sdk-Namespace-8860";
const alias = "sdk-DisasterRecovery-3814";
const credential = new DefaultAzureCredential();
const client = new ServiceBusManagementClient(credential, subscriptionId);
const result = await client.disasterRecoveryConfigs.delete(
resourceGroupName,
namespaceName,
alias
);
console.log(result);
}
sbAliasDelete().catch(console.error);
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
Definities
Error
Het foutobject.
Name |
Type |
Description |
additionalInfo
|
ErrorAdditionalInfo[]
|
De fout aanvullende informatie.
|
code
|
string
|
De foutcode.
|
details
|
ErrorResponse[]
|
De foutdetails.
|
message
|
string
|
Het foutbericht.
|
target
|
string
|
Het foutdoel.
|
ErrorAdditionalInfo
Aanvullende informatie over de resourcebeheerfout.
Name |
Type |
Description |
info
|
object
|
De aanvullende informatie.
|
type
|
string
|
Het type aanvullende informatie.
|
ErrorResponse
Het foutantwoord voor resourcebeheer.
Name |
Type |
Description |
error
|
Error
|
Het foutobject.
|