botbook/node_modules/@azure/arm-appservice/dist-esm/samples-dev/appServiceEnvironmentsListByResourceGroupSample.js
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

54 lines
No EOL
2.2 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 Description for Get all App Service Environments in a resource group.
*
* @summary Description for Get all App Service Environments in a resource group.
* x-ms-original-file: specification/web/resource-manager/Microsoft.Web/stable/2023-12-01/examples/AppServiceEnvironments_ListByResourceGroup.json
*/
function getAllAppServiceEnvironmentsInAResourceGroup() {
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"] || "test-rg";
const credential = new DefaultAzureCredential();
const client = new WebSiteManagementClient(credential, subscriptionId);
const resArray = new Array();
try {
for (var _d = true, _e = __asyncValues(client.appServiceEnvironments.listByResourceGroup(resourceGroupName)), _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* () {
getAllAppServiceEnvironmentsInAResourceGroup();
});
}
main().catch(console.error);
//# sourceMappingURL=appServiceEnvironmentsListByResourceGroupSample.js.map