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.92 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists impacted resources in the subscription by an event (Security Advisory). * * Uses Azure REST API version 2024-02-01. * * Other available API versions: 2022-10-01, 2023-07-01-preview, 2023-10-01-preview, 2025-04-01, 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native resourcehealth [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventId(args: ListSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventIdArgs, opts?: pulumi.InvokeOptions): Promise<ListSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventIdResult>; export interface ListSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventIdArgs { /** * Event Id which uniquely identifies ServiceHealth event. */ eventTrackingId: string; /** * The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */ filter?: string; } /** * The List of eventImpactedResources operation response. */ export interface ListSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventIdResult { /** * The URI to fetch the next page of events. Call ListNext() with this URI to fetch the next page of impacted resource. */ readonly nextLink?: string; /** * The list of eventImpactedResources. */ readonly value: outputs.resourcehealth.EventImpactedResourceResponse[]; } /** * Lists impacted resources in the subscription by an event (Security Advisory). * * Uses Azure REST API version 2024-02-01. * * Other available API versions: 2022-10-01, 2023-07-01-preview, 2023-10-01-preview, 2025-04-01, 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native resourcehealth [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventIdOutput(args: ListSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventIdOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventIdResult>; export interface ListSecurityAdvisoryImpactedResourceBySubscriptionIdAndEventIdOutputArgs { /** * Event Id which uniquely identifies ServiceHealth event. */ eventTrackingId: pulumi.Input<string>; /** * The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */ filter?: pulumi.Input<string>; }