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 Database Api Gateway Configs in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools database API gateway configs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigs = oci.databasetools.getDatabaseToolsDatabaseApiGatewayConfigs({ * compartmentId: compartmentId, * displayName: databaseToolsDatabaseApiGatewayConfigDisplayName, * state: databaseToolsDatabaseApiGatewayConfigState, * types: databaseToolsDatabaseApiGatewayConfigType, * }); * ``` */ export declare function getDatabaseToolsDatabaseApiGatewayConfigs(args: GetDatabaseToolsDatabaseApiGatewayConfigsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsDatabaseApiGatewayConfigs. */ export interface GetDatabaseToolsDatabaseApiGatewayConfigsArgs { /** * 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.GetDatabaseToolsDatabaseApiGatewayConfigsFilter[]; /** * A filter to return resources only when their `lifecycleState` matches the specified `lifecycleState`. */ state?: string; /** * A filter to return only resources with one of the specified type values. */ types?: string[]; } /** * A collection of values returned by getDatabaseToolsDatabaseApiGatewayConfigs. */ export interface GetDatabaseToolsDatabaseApiGatewayConfigsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Database Tools database API gateway config. */ readonly compartmentId: string; /** * The list of database_tools_database_api_gateway_config_collection. */ readonly databaseToolsDatabaseApiGatewayConfigCollections: outputs.DatabaseTools.GetDatabaseToolsDatabaseApiGatewayConfigsDatabaseToolsDatabaseApiGatewayConfigCollection[]; /** * 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.GetDatabaseToolsDatabaseApiGatewayConfigsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Database Tools database API gateway config. */ readonly state?: string; /** * The Database Tools database API gateway config type. */ readonly types?: string[]; } /** * This data source provides the list of Database Tools Database Api Gateway Configs in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools database API gateway configs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigs = oci.databasetools.getDatabaseToolsDatabaseApiGatewayConfigs({ * compartmentId: compartmentId, * displayName: databaseToolsDatabaseApiGatewayConfigDisplayName, * state: databaseToolsDatabaseApiGatewayConfigState, * types: databaseToolsDatabaseApiGatewayConfigType, * }); * ``` */ export declare function getDatabaseToolsDatabaseApiGatewayConfigsOutput(args: GetDatabaseToolsDatabaseApiGatewayConfigsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsDatabaseApiGatewayConfigs. */ export interface GetDatabaseToolsDatabaseApiGatewayConfigsOutputArgs { /** * 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 resources only when their `lifecycleState` matches the specified `lifecycleState`. */ state?: pulumi.Input; /** * A filter to return only resources with one of the specified type values. */ types?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDatabaseToolsDatabaseApiGatewayConfigs.d.ts.map