39 lines
1.8 KiB
JavaScript
39 lines
1.8 KiB
JavaScript
/*
|
|
* 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.
|
|
*/
|
|
import { __awaiter } from "tslib";
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
import { ResourceManagementClient } from "@azure/arm-resources";
|
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
/**
|
|
* This sample demonstrates how to You can provide the template and parameters directly in the request or link to JSON files.
|
|
*
|
|
* @summary You can provide the template and parameters directly in the request or link to JSON files.
|
|
* x-ms-original-file: specification/resources/resource-manager/Microsoft.Resources/stable/2021-04-01/examples/PutDeploymentAtManagementGroup.json
|
|
*/
|
|
function createDeploymentAtManagementGroupScope() {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
const subscriptionId = "00000000-0000-0000-0000-000000000000";
|
|
const groupId = "my-management-group-id";
|
|
const deploymentName = "my-deployment";
|
|
const parameters = {
|
|
location: "eastus",
|
|
properties: {
|
|
mode: "Incremental",
|
|
parameters: {},
|
|
templateLink: { uri: "https://example.com/exampleTemplate.json" }
|
|
}
|
|
};
|
|
const credential = new DefaultAzureCredential();
|
|
const client = new ResourceManagementClient(credential, subscriptionId);
|
|
const result = yield client.deployments.beginCreateOrUpdateAtManagementGroupScopeAndWait(groupId, deploymentName, parameters);
|
|
console.log(result);
|
|
});
|
|
}
|
|
createDeploymentAtManagementGroupScope().catch(console.error);
|
|
//# sourceMappingURL=deploymentsCreateOrUpdateAtManagementGroupScopeSample.js.map
|