import * as pulumi from "@pulumi/pulumi"; export declare function getMedia(args: GetMediaArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMedia. */ export interface GetMediaArgs { name: string; } /** * A collection of values returned by getMedia. */ export interface GetMediaResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly operatingsystemIds: number[]; readonly osFamily: string; readonly path: string; } export declare function getMediaOutput(args: GetMediaOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMedia. */ export interface GetMediaOutputArgs { name: pulumi.Input; }