import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Trail Sequence resource in Oracle Cloud Infrastructure Golden Gate service. * * Lists the Trail Sequences for a TrailFile in a given deployment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTrailSequence = oci.goldengate.getTrailSequence({ * deploymentId: testDeployment.id, * trailFileId: testTrailFile.id, * displayName: trailSequenceDisplayName, * trailSequenceId: testTrailSequenceOciGoldenGateTrailSequence.id, * }); * ``` */ export declare function getTrailSequence(args: GetTrailSequenceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTrailSequence. */ export interface GetTrailSequenceArgs { /** * A unique Deployment identifier. */ deploymentId: string; /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName: string; /** * A Trail File identifier */ trailFileId: string; /** * A Trail Sequence identifier */ trailSequenceId: string; } /** * A collection of values returned by getTrailSequence. */ export interface GetTrailSequenceResult { readonly deploymentId: string; /** * An object's Display Name. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An array of TrailSequences. */ readonly items: outputs.GoldenGate.GetTrailSequenceItem[]; /** * The time the data was last fetched from the deployment. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`. */ readonly timeLastFetched: string; readonly trailFileId: string; readonly trailSequenceId: string; } /** * This data source provides details about a specific Trail Sequence resource in Oracle Cloud Infrastructure Golden Gate service. * * Lists the Trail Sequences for a TrailFile in a given deployment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testTrailSequence = oci.goldengate.getTrailSequence({ * deploymentId: testDeployment.id, * trailFileId: testTrailFile.id, * displayName: trailSequenceDisplayName, * trailSequenceId: testTrailSequenceOciGoldenGateTrailSequence.id, * }); * ``` */ export declare function getTrailSequenceOutput(args: GetTrailSequenceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTrailSequence. */ export interface GetTrailSequenceOutputArgs { /** * A unique Deployment identifier. */ deploymentId: pulumi.Input; /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName: pulumi.Input; /** * A Trail File identifier */ trailFileId: pulumi.Input; /** * A Trail Sequence identifier */ trailSequenceId: pulumi.Input; } //# sourceMappingURL=getTrailSequence.d.ts.map