@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.15 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Method to get site health summary.
*
* Uses Azure REST API version 2023-10-01-preview.
*
* Other available API versions: 2023-06-06, 2024-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native offazure [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listServerSitesControllerHealthSummary(args: ListServerSitesControllerHealthSummaryArgs, opts?: pulumi.InvokeOptions): Promise<ListServerSitesControllerHealthSummaryResult>;
export interface ListServerSitesControllerHealthSummaryArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Site name
*/
siteName: string;
}
/**
* Collection of SiteHealthSummary.
*/
export interface ListServerSitesControllerHealthSummaryResult {
/**
* Gets the value of next link.
*/
readonly nextLink: string;
/**
* Gets the list of SiteHealthSummary.
*/
readonly value: outputs.offazure.SiteHealthSummaryResponse[];
}
/**
* Method to get site health summary.
*
* Uses Azure REST API version 2023-10-01-preview.
*
* Other available API versions: 2023-06-06, 2024-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native offazure [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listServerSitesControllerHealthSummaryOutput(args: ListServerSitesControllerHealthSummaryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListServerSitesControllerHealthSummaryResult>;
export interface ListServerSitesControllerHealthSummaryOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Site name
*/
siteName: pulumi.Input<string>;
}