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

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.
/**
* This sample demonstrates how to Post Backup a given CloudEndpoint.
*
* @summary Post Backup a given CloudEndpoint.
* x-ms-original-file: specification/storagesync/resource-manager/Microsoft.StorageSync/stable/2020-09-01/examples/CloudEndpoints_PostBackup.json
*/
import { BackupRequest, MicrosoftStorageSync } from "@azure/arm-storagesync";
import { DefaultAzureCredential } from "@azure/identity";
async function cloudEndpointsPostBackup() {
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.beginPostBackupAndWait(
resourceGroupName,
storageSyncServiceName,
syncGroupName,
cloudEndpointName,
parameters
);
console.log(result);
}
cloudEndpointsPostBackup().catch(console.error);