Töröl egy meglévő névteret. Ez a művelet a névtérben lévő összes társított erőforrást is eltávolítja.
DELETE https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}?api-version=2021-11-01
URI-paraméterek
Name |
In |
Kötelező |
Típus |
Description |
namespaceName
|
path |
True
|
string
|
A névtér neve
|
resourceGroupName
|
path |
True
|
string
|
Az Azure-előfizetés erőforráscsoportjának neve.
|
subscriptionId
|
path |
True
|
string
|
Az előfizetés hitelesítő adatai, amelyek egyedileg azonosítják a Microsoft Azure-előfizetést. Az előfizetés-azonosító az URI részét képezi minden szolgáltatáshíváshoz.
|
api-version
|
query |
True
|
string
|
Ügyfél API-verziója.
|
Válaszok
Name |
Típus |
Description |
200 OK
|
|
A névtér törlése sikerült.
|
202 Accepted
|
|
A névtér törlési kérése elfogadott.
|
204 No Content
|
|
Nincs tartalom.
|
Other Status Codes
|
ErrorResponse
|
A ServiceBus hibaválasza leírja, hogy miért nem sikerült a művelet.
|
Biztonság
azure_auth
Azure Active Directory OAuth2 Flow
Típus:
oauth2
Folyamat:
implicit
Engedélyezési URL:
https://login.microsoftonline.com/common/oauth2/authorize
Hatókörök
Name |
Description |
user_impersonation
|
felhasználói fiók megszemélyesítése
|
Példák
NameSpaceDelete
Mintakérelem
DELETE https://management.azure.com/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-3285?api-version=2021-11-01
/**
* Samples for Namespaces Delete.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2021-11-01/examples/NameSpaces/
* SBNameSpaceDelete.json
*/
/**
* Sample code: NameSpaceDelete.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void nameSpaceDelete(com.azure.resourcemanager.AzureResourceManager azure) {
azure.serviceBusNamespaces().manager().serviceClient().getNamespaces().delete("ArunMonocle",
"sdk-Namespace-3285", 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_name_space_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.namespaces.begin_delete(
resource_group_name="ArunMonocle",
namespace_name="sdk-Namespace-3285",
).result()
print(response)
# x-ms-original-file: specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2021-11-01/examples/NameSpaces/SBNameSpaceDelete.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/NameSpaces/SBNameSpaceDelete.json
func ExampleNamespacesClient_BeginDelete() {
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)
}
poller, err := clientFactory.NewNamespacesClient().BeginDelete(ctx, "ArunMonocle", "sdk-Namespace-3285", 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 { ServiceBusManagementClient } = require("@azure/arm-servicebus");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Deletes an existing namespace. This operation also removes all associated resources under the namespace.
*
* @summary Deletes an existing namespace. This operation also removes all associated resources under the namespace.
* x-ms-original-file: specification/servicebus/resource-manager/Microsoft.ServiceBus/stable/2021-11-01/examples/NameSpaces/SBNameSpaceDelete.json
*/
async function nameSpaceDelete() {
const subscriptionId = "5f750a97-50d9-4e36-8081-c9ee4c0210d4";
const resourceGroupName = "ArunMonocle";
const namespaceName = "sdk-Namespace-3285";
const credential = new DefaultAzureCredential();
const client = new ServiceBusManagementClient(credential, subscriptionId);
const result = await client.namespaces.beginDeleteAndWait(resourceGroupName, namespaceName);
console.log(result);
}
nameSpaceDelete().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
Definíciók
Error
A hibaobjektum.
Name |
Típus |
Description |
additionalInfo
|
ErrorAdditionalInfo[]
|
A hiba további információi.
|
code
|
string
|
A hibakód.
|
details
|
ErrorResponse[]
|
A hiba részletei.
|
message
|
string
|
A hibaüzenet.
|
target
|
string
|
A hibacél.
|
ErrorAdditionalInfo
Az erőforrás-kezelési hiba további információi.
Name |
Típus |
Description |
info
|
object
|
A további információk.
|
type
|
string
|
A további információtípus.
|
ErrorResponse
Az erőforrás-kezelési hibaválasz.
Name |
Típus |
Description |
error
|
Error
|
A hibaobjektum.
|