@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.8 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List all alerts in the issue - this method uses pagination to return all alerts
*
* Uses Azure REST API version 2025-03-01-preview.
*/
export declare function listIssueAlerts(args: ListIssueAlertsArgs, opts?: pulumi.InvokeOptions): Promise<ListIssueAlertsResult>;
export interface ListIssueAlertsArgs {
/**
* The filter to apply on the operation. For example, to filter by relevance, use "$filter=relevance eq 'Relevant'"
*/
filter?: string;
/**
* The name of the IssueResource
*/
issueName: string;
/**
* The fully qualified Azure Resource manager identifier of the resource.
*/
resourceUri: string;
}
/**
* Paged collection of RelatedAlert items
*/
export interface ListIssueAlertsResult {
/**
* The link to the next page of items
*/
readonly nextLink?: string;
/**
* The RelatedAlert items on this page
*/
readonly value: outputs.alertsmanagement.RelatedAlertResponse[];
}
/**
* List all alerts in the issue - this method uses pagination to return all alerts
*
* Uses Azure REST API version 2025-03-01-preview.
*/
export declare function listIssueAlertsOutput(args: ListIssueAlertsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListIssueAlertsResult>;
export interface ListIssueAlertsOutputArgs {
/**
* The filter to apply on the operation. For example, to filter by relevance, use "$filter=relevance eq 'Relevant'"
*/
filter?: pulumi.Input<string>;
/**
* The name of the IssueResource
*/
issueName: pulumi.Input<string>;
/**
* The fully qualified Azure Resource manager identifier of the resource.
*/
resourceUri: pulumi.Input<string>;
}