import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Runbook Export resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Get the runbook export status for provided runbook and exportId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRunbookExport = oci.fleetappsmanagement.getRunbookExport({ * exportId: runbookExportId, * runbookId: testRunbook.id, * }); * ``` */ export declare function getRunbookExport(args: GetRunbookExportArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRunbookExport. */ export interface GetRunbookExportArgs { /** * Unique tracking identifier to fetch runbook export status. */ exportId: string; /** * Unique Runbook identifier. */ runbookId: string; } /** * A collection of values returned by getRunbookExport. */ export interface GetRunbookExportResult { /** * Map of runbook export details. */ readonly details: { [key: string]: string; }; readonly exportId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The OCID of the runbook. */ readonly runbookId: string; /** * Runbook name. */ readonly runbookName: string; /** * Runbook version. */ readonly runbookVersion: string; /** * Status. */ readonly status: string; /** * Tracking/Export identifier. */ readonly trackingId: string; } /** * This data source provides details about a specific Runbook Export resource in Oracle Cloud Infrastructure Fleet Apps Management service. * * Get the runbook export status for provided runbook and exportId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRunbookExport = oci.fleetappsmanagement.getRunbookExport({ * exportId: runbookExportId, * runbookId: testRunbook.id, * }); * ``` */ export declare function getRunbookExportOutput(args: GetRunbookExportOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRunbookExport. */ export interface GetRunbookExportOutputArgs { /** * Unique tracking identifier to fetch runbook export status. */ exportId: pulumi.Input; /** * Unique Runbook identifier. */ runbookId: pulumi.Input; } //# sourceMappingURL=getRunbookExport.d.ts.map