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.19 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets all deployments for a remediation at subscription scope. * * Uses Azure REST API version 2024-10-01. * * Other available API versions: 2021-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native policyinsights [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listRemediationDeploymentsAtSubscription(args: ListRemediationDeploymentsAtSubscriptionArgs, opts?: pulumi.InvokeOptions): Promise<ListRemediationDeploymentsAtSubscriptionResult>; export interface ListRemediationDeploymentsAtSubscriptionArgs { /** * The name of the remediation. */ remediationName: string; /** * Maximum number of records to return. */ top?: number; } /** * List of deployments for a remediation. */ export interface ListRemediationDeploymentsAtSubscriptionResult { /** * The URL to get the next set of results. */ readonly nextLink: string; /** * Array of deployments for the remediation. */ readonly value: outputs.policyinsights.RemediationDeploymentResponse[]; } /** * Gets all deployments for a remediation at subscription scope. * * Uses Azure REST API version 2024-10-01. * * Other available API versions: 2021-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native policyinsights [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listRemediationDeploymentsAtSubscriptionOutput(args: ListRemediationDeploymentsAtSubscriptionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListRemediationDeploymentsAtSubscriptionResult>; export interface ListRemediationDeploymentsAtSubscriptionOutputArgs { /** * The name of the remediation. */ remediationName: pulumi.Input<string>; /** * Maximum number of records to return. */ top?: pulumi.Input<number>; }