azure-sdk-for-js/sdk/storagesync/arm-storagesync/samples-dev/cloudEndpointsPreBackupSamp...

43 строки
1.5 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 { BackupRequest, MicrosoftStorageSync } from "@azure/arm-storagesync";
import { DefaultAzureCredential } from "@azure/identity";
/**
* This sample demonstrates how to Pre Backup a given CloudEndpoint.
*
* @summary Pre Backup a given CloudEndpoint.
* x-ms-original-file: specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2020-09-01/examples/CloudEndpoints_PreBackup.json
*/
async function cloudEndpointsPreBackup() {
const subscriptionId = "52b8da2f-61e0-4a1f-8dde-336911f367fb";
const resourceGroupName = "SampleResourceGroup_1";
const storageSyncServiceName = "SampleStorageSyncService_1";
const syncGroupName = "SampleSyncGroup_1";
const cloudEndpointName = "SampleCloudEndpoint_1";
const parameters: BackupRequest = {
azureFileShare:
"https://sampleserver.file.core.test-cint.azure-test.net/sampleFileShare"
};
const credential = new DefaultAzureCredential();
const client = new MicrosoftStorageSync(credential, subscriptionId);
const result = await client.cloudEndpoints.beginPreBackupAndWait(
resourceGroupName,
storageSyncServiceName,
syncGroupName,
cloudEndpointName,
parameters
);
console.log(result);
}
cloudEndpointsPreBackup().catch(console.error);