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 Listener Services in Oracle Cloud Infrastructure Database Management service. * * Lists the database services registered with the specified cloud listener * for the specified Managed Database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudListenerServices = oci.databasemanagement.getCloudListenerServices({ * cloudListenerId: testCloudListener.id, * managedDatabaseId: testManagedDatabase.id, * opcNamedCredentialId: cloudListenerServiceOpcNamedCredentialId, * }); * ``` */ export declare function getCloudListenerServices(args: GetCloudListenerServicesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudListenerServices. */ export interface GetCloudListenerServicesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener. */ cloudListenerId: string; filters?: inputs.DatabaseManagement.GetCloudListenerServicesFilter[]; /** * 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 getCloudListenerServices. */ export interface GetCloudListenerServicesResult { readonly cloudListenerId: string; /** * The list of cloud_listener_service_collection. */ readonly cloudListenerServiceCollections: outputs.DatabaseManagement.GetCloudListenerServicesCloudListenerServiceCollection[]; readonly filters?: outputs.DatabaseManagement.GetCloudListenerServicesFilter[]; /** * 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 Cloud Listener Services in Oracle Cloud Infrastructure Database Management service. * * Lists the database services registered with the specified cloud listener * for the specified Managed Database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudListenerServices = oci.databasemanagement.getCloudListenerServices({ * cloudListenerId: testCloudListener.id, * managedDatabaseId: testManagedDatabase.id, * opcNamedCredentialId: cloudListenerServiceOpcNamedCredentialId, * }); * ``` */ export declare function getCloudListenerServicesOutput(args: GetCloudListenerServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudListenerServices. */ export interface GetCloudListenerServicesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud listener. */ cloudListenerId: 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=getCloudListenerServices.d.ts.map