azure-sdk-for-js/sdk/storagesync/arm-storagesync/samples-dev/syncGroupsDeleteSample.ts

36 строки
1.2 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 SyncGroup.
*
* @summary Delete a given SyncGroup.
* x-ms-original-file: specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2020-09-01/examples/SyncGroups_Delete.json
*/
async function syncGroupsDelete() {
const subscriptionId = "52b8da2f-61e0-4a1f-8dde-336911f367fb";
const resourceGroupName = "SampleResourceGroup_1";
const storageSyncServiceName = "SampleStorageSyncService_1";
const syncGroupName = "SampleSyncGroup_1";
const credential = new DefaultAzureCredential();
const client = new MicrosoftStorageSync(credential, subscriptionId);
const result = await client.syncGroups.delete(
resourceGroupName,
storageSyncServiceName,
syncGroupName
);
console.log(result);
}
syncGroupsDelete().catch(console.error);