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 Cloud Db System Connectors in Oracle Cloud Infrastructure Database Management service. * * Lists the cloud connectors in the specified cloud DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudDbSystemConnectors = oci.databasemanagement.getCloudDbSystemConnectors({ * cloudDbSystemId: testCloudDbSystem.id, * compartmentId: compartmentId, * displayName: cloudDbSystemConnectorDisplayName, * }); * ``` */ export declare function getCloudDbSystemConnectors(args?: GetCloudDbSystemConnectorsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudDbSystemConnectors. */ export interface GetCloudDbSystemConnectorsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system. */ cloudDbSystemId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: string; /** * A filter to only return the resources that match the entire display name. */ displayName?: string; filters?: inputs.DatabaseManagement.GetCloudDbSystemConnectorsFilter[]; } /** * A collection of values returned by getCloudDbSystemConnectors. */ export interface GetCloudDbSystemConnectorsResult { /** * The list of cloud_db_system_connector_collection. */ readonly cloudDbSystemConnectorCollections: outputs.DatabaseManagement.GetCloudDbSystemConnectorsCloudDbSystemConnectorCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the connector is a part of. */ readonly cloudDbSystemId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * The user-friendly name for the cloud connector. The name does not have to be unique. */ readonly displayName?: string; readonly filters?: outputs.DatabaseManagement.GetCloudDbSystemConnectorsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cloud Db System Connectors in Oracle Cloud Infrastructure Database Management service. * * Lists the cloud connectors in the specified cloud DB system. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudDbSystemConnectors = oci.databasemanagement.getCloudDbSystemConnectors({ * cloudDbSystemId: testCloudDbSystem.id, * compartmentId: compartmentId, * displayName: cloudDbSystemConnectorDisplayName, * }); * ``` */ export declare function getCloudDbSystemConnectorsOutput(args?: GetCloudDbSystemConnectorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudDbSystemConnectors. */ export interface GetCloudDbSystemConnectorsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system. */ cloudDbSystemId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * A filter to only return the resources that match the entire display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCloudDbSystemConnectors.d.ts.map