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