38 строки
1.3 KiB
TypeScript
38 строки
1.3 KiB
TypeScript
/*
|
|
* Copyright (c) Microsoft Corporation.
|
|
* Licensed under the MIT License.
|
|
*
|
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
*/
|
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
import { MicrosoftStorageSync } from "@azure/arm-storagesync";
|
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
|
|
/**
|
|
* This sample demonstrates how to Delete a given ServerEndpoint.
|
|
*
|
|
* @summary Delete a given ServerEndpoint.
|
|
* x-ms-original-file: specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2020-09-01/examples/ServerEndpoints_Delete.json
|
|
*/
|
|
async function serverEndpointsDelete() {
|
|
const subscriptionId = "52b8da2f-61e0-4a1f-8dde-336911f367fb";
|
|
const resourceGroupName = "SampleResourceGroup_1";
|
|
const storageSyncServiceName = "SampleStorageSyncService_1";
|
|
const syncGroupName = "SampleSyncGroup_1";
|
|
const serverEndpointName = "SampleServerEndpoint_1";
|
|
const credential = new DefaultAzureCredential();
|
|
const client = new MicrosoftStorageSync(credential, subscriptionId);
|
|
const result = await client.serverEndpoints.beginDeleteAndWait(
|
|
resourceGroupName,
|
|
storageSyncServiceName,
|
|
syncGroupName,
|
|
serverEndpointName
|
|
);
|
|
console.log(result);
|
|
}
|
|
|
|
serverEndpointsDelete().catch(console.error);
|