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 External Listener Services in Oracle Cloud Infrastructure Database Management service. * * Lists the database services registered with the specified external listener * for the specified Managed Database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalListenerServices = oci.databasemanagement.getExternalListenerServices({ * externalListenerId: testExternalListener.id, * managedDatabaseId: testManagedDatabase.id, * opcNamedCredentialId: externalListenerServiceOpcNamedCredentialId, * }); * ``` */ export declare function getExternalListenerServices(args: GetExternalListenerServicesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalListenerServices. */ export interface GetExternalListenerServicesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external listener. */ externalListenerId: string; filters?: inputs.DatabaseManagement.GetExternalListenerServicesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ managedDatabaseId: string; /** * The OCID of the Named Credential. */ opcNamedCredentialId?: string; } /** * A collection of values returned by getExternalListenerServices. */ export interface GetExternalListenerServicesResult { readonly externalListenerId: string; /** * The list of external_listener_service_collection. */ readonly externalListenerServiceCollections: outputs.DatabaseManagement.GetExternalListenerServicesExternalListenerServiceCollection[]; readonly filters?: outputs.DatabaseManagement.GetExternalListenerServicesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ readonly managedDatabaseId: string; readonly opcNamedCredentialId?: string; } /** * This data source provides the list of External Listener Services in Oracle Cloud Infrastructure Database Management service. * * Lists the database services registered with the specified external listener * for the specified Managed Database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalListenerServices = oci.databasemanagement.getExternalListenerServices({ * externalListenerId: testExternalListener.id, * managedDatabaseId: testManagedDatabase.id, * opcNamedCredentialId: externalListenerServiceOpcNamedCredentialId, * }); * ``` */ export declare function getExternalListenerServicesOutput(args: GetExternalListenerServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalListenerServices. */ export interface GetExternalListenerServicesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external listener. */ externalListenerId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ managedDatabaseId: pulumi.Input; /** * The OCID of the Named Credential. */ opcNamedCredentialId?: pulumi.Input; } //# sourceMappingURL=getExternalListenerServices.d.ts.map