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

56 lines
No EOL
2.4 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 Returns whether Scm basic auth is allowed and whether Ftp is allowed for a given site.
*
* @summary Description for Returns whether Scm basic auth is allowed and whether Ftp is allowed for a given site.
* x-ms-original-file: specification/web/resource-manager/Microsoft.Web/stable/2023-12-01/examples/ListPublishingCredentialsPoliciesSlot.json
*/
function listPublishingCredentialsPolicies() {
return __awaiter(this, void 0, void 0, function* () {
var _a, e_1, _b, _c;
const subscriptionId = process.env["APPSERVICE_SUBSCRIPTION_ID"] ||
"3fb8d758-2e2c-42e9-a528-a8acdfe87237";
const resourceGroupName = process.env["APPSERVICE_RESOURCE_GROUP"] || "testrg123";
const name = "testsite";
const slot = "staging";
const credential = new DefaultAzureCredential();
const client = new WebSiteManagementClient(credential, subscriptionId);
const resArray = new Array();
try {
for (var _d = true, _e = __asyncValues(client.webApps.listBasicPublishingCredentialsPoliciesSlot(resourceGroupName, name, slot)), _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* () {
listPublishingCredentialsPolicies();
});
}
main().catch(console.error);
//# sourceMappingURL=webAppsListBasicPublishingCredentialsPoliciesSlotSample.js.map