@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.92 kB
TypeScript
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>;
}