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 Trail Files in Oracle Cloud Infrastructure Golden Gate service. * * Lists the TrailFiles for a deployment. * Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTrailFiles = oci.goldengate.getTrailFiles({ * deploymentId: testDeployment.id, * trailFileId: testTrailFile.id, * displayName: trailFileDisplayName, * }); * ``` */ export declare function getTrailFiles(args: GetTrailFilesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTrailFiles. */ export interface GetTrailFilesArgs { /** * A unique Deployment identifier. */ deploymentId: string; /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName?: string; filters?: inputs.GoldenGate.GetTrailFilesFilter[]; /** * A Trail File identifier */ trailFileId: string; } /** * A collection of values returned by getTrailFiles. */ export interface GetTrailFilesResult { readonly deploymentId: string; /** * An object's Display Name. */ readonly displayName?: string; readonly filters?: outputs.GoldenGate.GetTrailFilesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of trail_file_collection. */ readonly trailFileCollections: outputs.GoldenGate.GetTrailFilesTrailFileCollection[]; /** * The TrailFile Id. */ readonly trailFileId: string; } /** * This data source provides the list of Trail Files in Oracle Cloud Infrastructure Golden Gate service. * * Lists the TrailFiles for a deployment. * Deprecated: Please access trail file management functions directly on OGG console which are available since version Oracle GoldenGate 23c. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTrailFiles = oci.goldengate.getTrailFiles({ * deploymentId: testDeployment.id, * trailFileId: testTrailFile.id, * displayName: trailFileDisplayName, * }); * ``` */ export declare function getTrailFilesOutput(args: GetTrailFilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTrailFiles. */ export interface GetTrailFilesOutputArgs { /** * A unique Deployment identifier. */ deploymentId: pulumi.Input; /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A Trail File identifier */ trailFileId: pulumi.Input; } //# sourceMappingURL=getTrailFiles.d.ts.map