azure-sdk-for-js/sdk/migrate/arm-migrate/samples-dev/projectsListSample.ts

43 строки
1.3 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.
import { AzureMigrateV2 } from "@azure/arm-migrate";
import { DefaultAzureCredential } from "@azure/identity";
import * as dotenv from "dotenv";
dotenv.config();
/**
* This sample demonstrates how to Get all the projects in the resource group.
*
* @summary Get all the projects in the resource group.
* x-ms-original-file: specification/migrate/resource-manager/Microsoft.Migrate/stable/2019-10-01/examples/Projects_List.json
*/
async function projectsList() {
const subscriptionId =
process.env["MIGRATE_SUBSCRIPTION_ID"] ||
"6393a73f-8d55-47ef-b6dd-179b3e0c7910";
const resourceGroupName =
process.env["MIGRATE_RESOURCE_GROUP"] || "abgoyal-westEurope";
const credential = new DefaultAzureCredential();
const client = new AzureMigrateV2(credential, subscriptionId);
const resArray = new Array();
for await (let item of client.projects.list(resourceGroupName)) {
resArray.push(item);
}
console.log(resArray);
}
async function main() {
projectsList();
}
main().catch(console.error);