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 Database Tools Endpoint Services in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools endpoint services. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsEndpointServices = oci.databasetools.getDatabaseToolsEndpointServices({ * compartmentId: compartmentId, * displayName: databaseToolsEndpointServiceDisplayName, * name: databaseToolsEndpointServiceName, * state: databaseToolsEndpointServiceState, * }); * ``` */ export declare function getDatabaseToolsEndpointServices(args: GetDatabaseToolsEndpointServicesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsEndpointServices. */ export interface GetDatabaseToolsEndpointServicesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire specified display name. */ displayName?: string; filters?: inputs.DatabaseTools.GetDatabaseToolsEndpointServicesFilter[]; /** * A filter to return only resources that match the entire specified name. */ name?: string; /** * A filter to return only resources their `lifecycleState` matches the specified `lifecycleState`. */ state?: string; } /** * A collection of values returned by getDatabaseToolsEndpointServices. */ export interface GetDatabaseToolsEndpointServicesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Database Tools Endpoint Service. */ readonly compartmentId: string; /** * The list of database_tools_endpoint_service_collection. */ readonly databaseToolsEndpointServiceCollections: outputs.DatabaseTools.GetDatabaseToolsEndpointServicesDatabaseToolsEndpointServiceCollection[]; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.DatabaseTools.GetDatabaseToolsEndpointServicesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A unique, non-changeable resource name. */ readonly name?: string; /** * The current state of the Database Tools Endpoint Service. */ readonly state?: string; } /** * This data source provides the list of Database Tools Endpoint Services in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools endpoint services. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsEndpointServices = oci.databasetools.getDatabaseToolsEndpointServices({ * compartmentId: compartmentId, * displayName: databaseToolsEndpointServiceDisplayName, * name: databaseToolsEndpointServiceName, * state: databaseToolsEndpointServiceState, * }); * ``` */ export declare function getDatabaseToolsEndpointServicesOutput(args: GetDatabaseToolsEndpointServicesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsEndpointServices. */ export interface GetDatabaseToolsEndpointServicesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the entire specified name. */ name?: pulumi.Input; /** * A filter to return only resources their `lifecycleState` matches the specified `lifecycleState`. */ state?: pulumi.Input; } //# sourceMappingURL=getDatabaseToolsEndpointServices.d.ts.map