47 строки
1.7 KiB
TypeScript
47 строки
1.7 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 { WebSiteManagementClient } from "@azure/arm-appservice";
|
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
import * as dotenv from "dotenv";
|
|
|
|
dotenv.config();
|
|
|
|
/**
|
|
* This sample demonstrates how to Description for Microsoft.CertificateRegistration call to get a detector response from App Lens.
|
|
*
|
|
* @summary Description for Microsoft.CertificateRegistration call to get a detector response from App Lens.
|
|
* x-ms-original-file: specification/web/resource-manager/Microsoft.CertificateRegistration/stable/2023-12-01/examples/Diagnostics_GetAppServiceCertificateOrderDetectorResponse.json
|
|
*/
|
|
async function getAppServiceCertificateOrderDetectorResponse() {
|
|
const subscriptionId =
|
|
process.env["APPSERVICE_SUBSCRIPTION_ID"] ||
|
|
"5700fc96-77b4-4f8d-afce-c353d8c443bd";
|
|
const resourceGroupName =
|
|
process.env["APPSERVICE_RESOURCE_GROUP"] || "Sample-WestUSResourceGroup";
|
|
const certificateOrderName = "SampleCertificateOrderName";
|
|
const detectorName = "AutoRenewStatus";
|
|
const credential = new DefaultAzureCredential();
|
|
const client = new WebSiteManagementClient(credential, subscriptionId);
|
|
const result =
|
|
await client.certificateOrdersDiagnostics.getAppServiceCertificateOrderDetectorResponse(
|
|
resourceGroupName,
|
|
certificateOrderName,
|
|
detectorName,
|
|
);
|
|
console.log(result);
|
|
}
|
|
|
|
async function main() {
|
|
getAppServiceCertificateOrderDetectorResponse();
|
|
}
|
|
|
|
main().catch(console.error);
|