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"; /** * Retrieve the deleted runbooks for an automation account. * * Uses Azure REST API version 2023-05-15-preview. * * Other available API versions: 2024-10-23. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native automation [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listAutomationAccountDeletedRunbooks(args: ListAutomationAccountDeletedRunbooksArgs, opts?: pulumi.InvokeOptions): Promise<ListAutomationAccountDeletedRunbooksResult>; export interface ListAutomationAccountDeletedRunbooksArgs { /** * The name of the automation account. */ automationAccountName: string; /** * Name of an Azure Resource group. */ resourceGroupName: string; } /** * The response model for the list deleted runbook. */ export interface ListAutomationAccountDeletedRunbooksResult { /** * Gets or sets the next link. */ readonly nextLink?: string; /** * List of deleted runbooks in automation account. */ readonly value?: outputs.automation.DeletedRunbookResponse[]; } /** * Retrieve the deleted runbooks for an automation account. * * Uses Azure REST API version 2023-05-15-preview. * * Other available API versions: 2024-10-23. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native automation [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listAutomationAccountDeletedRunbooksOutput(args: ListAutomationAccountDeletedRunbooksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListAutomationAccountDeletedRunbooksResult>; export interface ListAutomationAccountDeletedRunbooksOutputArgs { /** * The name of the automation account. */ automationAccountName: pulumi.Input<string>; /** * Name of an Azure Resource group. */ resourceGroupName: pulumi.Input<string>; }