import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Work Request Log Entries in Oracle Cloud Infrastructure Container Engine service. * * Get the logs of a work request. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWorkRequestLogEntries = oci.containerengine.getWorkRequestLogEntries({ * compartmentId: compartmentId, * workRequestId: testWorkRequest.id, * }); * ``` */ export declare function getWorkRequestLogEntries(args: GetWorkRequestLogEntriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWorkRequestLogEntries. */ export interface GetWorkRequestLogEntriesArgs { /** * The OCID of the compartment. */ compartmentId: string; filters?: inputs.ContainerEngine.GetWorkRequestLogEntriesFilter[]; /** * The OCID of the work request. */ workRequestId: string; } /** * A collection of values returned by getWorkRequestLogEntries. */ export interface GetWorkRequestLogEntriesResult { readonly compartmentId: string; readonly filters?: outputs.ContainerEngine.GetWorkRequestLogEntriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly workRequestId: string; /** * The list of work_request_log_entries. */ readonly workRequestLogEntries: outputs.ContainerEngine.GetWorkRequestLogEntriesWorkRequestLogEntry[]; } /** * This data source provides the list of Work Request Log Entries in Oracle Cloud Infrastructure Container Engine service. * * Get the logs of a work request. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testWorkRequestLogEntries = oci.containerengine.getWorkRequestLogEntries({ * compartmentId: compartmentId, * workRequestId: testWorkRequest.id, * }); * ``` */ export declare function getWorkRequestLogEntriesOutput(args: GetWorkRequestLogEntriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWorkRequestLogEntries. */ export interface GetWorkRequestLogEntriesOutputArgs { /** * The OCID of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The OCID of the work request. */ workRequestId: pulumi.Input; } //# sourceMappingURL=getWorkRequestLogEntries.d.ts.map