@maienm/pulumi-readarr
Version:
A Pulumi package for creating and managing Readarr resources. Based on terraform-provider-readarr: version v2.1.0
42 lines (41 loc) • 1.19 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* <!-- subcategory:Notifications -->List all available Notifications.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as readarr from "@pulumi/readarr";
*
* const example = readarr.Notifications.getNotifications({});
* ```
*/
export declare function getNotifications(opts?: pulumi.InvokeOptions): Promise<GetNotificationsResult>;
/**
* A collection of values returned by getNotifications.
*/
export interface GetNotificationsResult {
/**
* The ID of this resource.
*/
readonly id: string;
/**
* Notification list.
*/
readonly notifications: outputs.Notifications.GetNotificationsNotification[];
}
/**
* <!-- subcategory:Notifications -->List all available Notifications.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as readarr from "@pulumi/readarr";
*
* const example = readarr.Notifications.getNotifications({});
* ```
*/
export declare function getNotificationsOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetNotificationsResult>;