56 lines
No EOL
2.3 KiB
JavaScript
56 lines
No EOL
2.3 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 { __asyncValues, __awaiter } from "tslib";
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
import { WebSiteManagementClient } from "@azure/arm-appservice";
|
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
import * as dotenv from "dotenv";
|
|
dotenv.config();
|
|
/**
|
|
* This sample demonstrates how to Returns details of all backends linked to a static site build
|
|
*
|
|
* @summary Returns details of all backends linked to a static site build
|
|
* x-ms-original-file: specification/web/resource-manager/Microsoft.Web/stable/2023-12-01/examples/GetLinkedBackendsForStaticSiteBuild.json
|
|
*/
|
|
function getDetailsOfTheLinkedBackendsRegisteredWithAStaticSiteBuild() {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
var _a, e_1, _b, _c;
|
|
const subscriptionId = process.env["APPSERVICE_SUBSCRIPTION_ID"] ||
|
|
"34adfa4f-cedf-4dc0-ba29-b6d1a69ab345";
|
|
const resourceGroupName = process.env["APPSERVICE_RESOURCE_GROUP"] || "rg";
|
|
const name = "testStaticSite0";
|
|
const environmentName = "default";
|
|
const credential = new DefaultAzureCredential();
|
|
const client = new WebSiteManagementClient(credential, subscriptionId);
|
|
const resArray = new Array();
|
|
try {
|
|
for (var _d = true, _e = __asyncValues(client.staticSites.listLinkedBackendsForBuild(resourceGroupName, name, environmentName)), _f; _f = yield _e.next(), _a = _f.done, !_a; _d = true) {
|
|
_c = _f.value;
|
|
_d = false;
|
|
let item = _c;
|
|
resArray.push(item);
|
|
}
|
|
}
|
|
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
finally {
|
|
try {
|
|
if (!_d && !_a && (_b = _e.return)) yield _b.call(_e);
|
|
}
|
|
finally { if (e_1) throw e_1.error; }
|
|
}
|
|
console.log(resArray);
|
|
});
|
|
}
|
|
function main() {
|
|
return __awaiter(this, void 0, void 0, function* () {
|
|
getDetailsOfTheLinkedBackendsRegisteredWithAStaticSiteBuild();
|
|
});
|
|
}
|
|
main().catch(console.error);
|
|
//# sourceMappingURL=staticSitesGetLinkedBackendsForBuildSample.js.map
|