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 Opensearch Cluster Pipelines in Oracle Cloud Infrastructure Opensearch service. * * Returns a list of OpensearchClusterPipelines. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOpensearchClusterPipelines = oci.opensearch.getOpensearchClusterPipelines({ * compartmentId: compartmentId, * displayName: opensearchClusterPipelineDisplayName, * id: opensearchClusterPipelineId, * pipelineComponentId: testPipelineComponent.id, * state: opensearchClusterPipelineState, * }); * ``` */ export declare function getOpensearchClusterPipelines(args: GetOpensearchClusterPipelinesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOpensearchClusterPipelines. */ export interface GetOpensearchClusterPipelinesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.Opensearch.GetOpensearchClusterPipelinesFilter[]; /** * unique OpensearchClusterPipeline identifier */ id?: string; /** * A filter to return pipelines whose any component has the given pipelineComponentId. */ pipelineComponentId?: string; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getOpensearchClusterPipelines. */ export interface GetOpensearchClusterPipelinesResult { /** * The OCID of the compartment where the pipeline is located. */ readonly compartmentId: string; /** * The name of the pipeline. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Opensearch.GetOpensearchClusterPipelinesFilter[]; /** * The OCID of the cluster pipeline. */ readonly id?: string; /** * The list of opensearch_cluster_pipeline_collection. */ readonly opensearchClusterPipelineCollections: outputs.Opensearch.GetOpensearchClusterPipelinesOpensearchClusterPipelineCollection[]; readonly pipelineComponentId?: string; /** * The current state of the cluster backup. */ readonly state?: string; } /** * This data source provides the list of Opensearch Cluster Pipelines in Oracle Cloud Infrastructure Opensearch service. * * Returns a list of OpensearchClusterPipelines. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOpensearchClusterPipelines = oci.opensearch.getOpensearchClusterPipelines({ * compartmentId: compartmentId, * displayName: opensearchClusterPipelineDisplayName, * id: opensearchClusterPipelineId, * pipelineComponentId: testPipelineComponent.id, * state: opensearchClusterPipelineState, * }); * ``` */ export declare function getOpensearchClusterPipelinesOutput(args: GetOpensearchClusterPipelinesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOpensearchClusterPipelines. */ export interface GetOpensearchClusterPipelinesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * unique OpensearchClusterPipeline identifier */ id?: pulumi.Input; /** * A filter to return pipelines whose any component has the given pipelineComponentId. */ pipelineComponentId?: pulumi.Input; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getOpensearchClusterPipelines.d.ts.map