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 Connect Harnesses in Oracle Cloud Infrastructure Streaming service. * * Lists the connectharness. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConnectHarnesses = oci.streaming.getConnectHarnesses({ * compartmentId: compartmentId, * id: connectHarnessId, * name: connectHarnessName, * state: connectHarnessState, * }); * ``` */ export declare function getConnectHarnesses(args: GetConnectHarnessesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConnectHarnesses. */ export interface GetConnectHarnessesArgs { /** * The OCID of the compartment. */ compartmentId: string; filters?: inputs.Streaming.GetConnectHarnessesFilter[]; /** * A filter to return only resources that match the given ID exactly. */ id?: string; /** * A filter to return only resources that match the given name exactly. */ name?: string; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getConnectHarnesses. */ export interface GetConnectHarnessesResult { /** * The OCID of the compartment that contains the connect harness. */ readonly compartmentId: string; /** * The list of connect_harness. */ readonly connectHarnesses: outputs.Streaming.GetConnectHarnessesConnectHarness[]; readonly filters?: outputs.Streaming.GetConnectHarnessesFilter[]; /** * The OCID of the connect harness. */ readonly id?: string; /** * The name of the connect harness. Avoid entering confidential information. Example: `JDBCConnector` */ readonly name?: string; /** * The current state of the connect harness. */ readonly state?: string; } /** * This data source provides the list of Connect Harnesses in Oracle Cloud Infrastructure Streaming service. * * Lists the connectharness. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConnectHarnesses = oci.streaming.getConnectHarnesses({ * compartmentId: compartmentId, * id: connectHarnessId, * name: connectHarnessName, * state: connectHarnessState, * }); * ``` */ export declare function getConnectHarnessesOutput(args: GetConnectHarnessesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConnectHarnesses. */ export interface GetConnectHarnessesOutputArgs { /** * The OCID of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given ID exactly. */ id?: pulumi.Input; /** * A filter to return only resources that match the given name exactly. */ name?: pulumi.Input; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getConnectHarnesses.d.ts.map