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 Exadata Storage Connectors in Oracle Cloud Infrastructure Database Management service. * * Lists the Exadata storage server connectors for the specified Exadata infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataStorageConnectors = oci.databasemanagement.getCloudExadataStorageConnectors({ * cloudExadataInfrastructureId: testCloudExadataInfrastructure.id, * compartmentId: compartmentId, * displayName: cloudExadataStorageConnectorDisplayName, * }); * ``` */ export declare function getCloudExadataStorageConnectors(args: GetCloudExadataStorageConnectorsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudExadataStorageConnectors. */ export interface GetCloudExadataStorageConnectorsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ cloudExadataInfrastructureId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * The optional single value query filter parameter on the entity display name. */ displayName?: string; filters?: inputs.DatabaseManagement.GetCloudExadataStorageConnectorsFilter[]; } /** * A collection of values returned by getCloudExadataStorageConnectors. */ export interface GetCloudExadataStorageConnectorsResult { readonly cloudExadataInfrastructureId: string; /** * The list of cloud_exadata_storage_connector_collection. */ readonly cloudExadataStorageConnectorCollections: outputs.DatabaseManagement.GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollection[]; readonly compartmentId: string; /** * The name of the Exadata resource. English letters, numbers, "-", "_" and "." only. */ readonly displayName?: string; readonly filters?: outputs.DatabaseManagement.GetCloudExadataStorageConnectorsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cloud Exadata Storage Connectors in Oracle Cloud Infrastructure Database Management service. * * Lists the Exadata storage server connectors for the specified Exadata infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataStorageConnectors = oci.databasemanagement.getCloudExadataStorageConnectors({ * cloudExadataInfrastructureId: testCloudExadataInfrastructure.id, * compartmentId: compartmentId, * displayName: cloudExadataStorageConnectorDisplayName, * }); * ``` */ export declare function getCloudExadataStorageConnectorsOutput(args: GetCloudExadataStorageConnectorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudExadataStorageConnectors. */ export interface GetCloudExadataStorageConnectorsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ cloudExadataInfrastructureId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * The optional single value query filter parameter on the entity display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCloudExadataStorageConnectors.d.ts.map