Outlook_Addin_LLM/node_modules/@azure/arm-appservice/dist-esm/samples-dev/kubeEnvironmentsGetSample.js

31 lines
1.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 { __awaiter } from "tslib";
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { WebSiteManagementClient } from "@azure/arm-appservice";
import { DefaultAzureCredential } from "@azure/identity";
/**
* This sample demonstrates how to Description for Get the properties of a Kubernetes Environment.
*
* @summary Description for Get the properties of a Kubernetes Environment.
* x-ms-original-file: specification/web/resource-manager/Microsoft.Web/stable/2022-03-01/examples/KubeEnvironments_Get.json
*/
function getKubeEnvironmentsByName() {
return __awaiter(this, void 0, void 0, function* () {
const subscriptionId = "8efdecc5-919e-44eb-b179-915dca89ebf9";
const resourceGroupName = "examplerg";
const name = "jlaw-demo1";
const credential = new DefaultAzureCredential();
const client = new WebSiteManagementClient(credential, subscriptionId);
const result = yield client.kubeEnvironments.get(resourceGroupName, name);
console.log(result);
});
}
getKubeEnvironmentsByName().catch(console.error);
//# sourceMappingURL=kubeEnvironmentsGetSample.js.map