UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

52 lines (51 loc) 2.15 kB
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>; }