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 Pipeline Schemas in Oracle Cloud Infrastructure Golden Gate service. * * Returns an array of schemas based on mapping rules for a pipeline. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPipelineSchemas = oci.goldengate.getPipelineSchemas({ * pipelineId: testPipeline.id, * displayName: pipelineSchemaDisplayName, * }); * ``` */ export declare function getPipelineSchemas(args: GetPipelineSchemasArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPipelineSchemas. */ export interface GetPipelineSchemasArgs { /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName?: string; filters?: inputs.GoldenGate.GetPipelineSchemasFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline created. */ pipelineId: string; } /** * A collection of values returned by getPipelineSchemas. */ export interface GetPipelineSchemasResult { readonly displayName?: string; readonly filters?: outputs.GoldenGate.GetPipelineSchemasFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly pipelineId: string; /** * The list of pipeline_schema_collection. */ readonly pipelineSchemaCollections: outputs.GoldenGate.GetPipelineSchemasPipelineSchemaCollection[]; } /** * This data source provides the list of Pipeline Schemas in Oracle Cloud Infrastructure Golden Gate service. * * Returns an array of schemas based on mapping rules for a pipeline. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPipelineSchemas = oci.goldengate.getPipelineSchemas({ * pipelineId: testPipeline.id, * displayName: pipelineSchemaDisplayName, * }); * ``` */ export declare function getPipelineSchemasOutput(args: GetPipelineSchemasOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPipelineSchemas. */ export interface GetPipelineSchemasOutputArgs { /** * A filter to return only the resources that match the entire 'displayName' given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline created. */ pipelineId: pulumi.Input; } //# sourceMappingURL=getPipelineSchemas.d.ts.map