import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Database Tools Database Api Gateway Config Content resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get the content of a Database Tools database API gateway config * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigContent = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigContent({ * databaseToolsDatabaseApiGatewayConfigId: testConfig.id, * }); * ``` */ export declare function getRuntimeDatabaseToolsDatabaseApiGatewayConfigContent(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigContentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRuntimeDatabaseToolsDatabaseApiGatewayConfigContent. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigContentArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools database API gateway config. */ databaseToolsDatabaseApiGatewayConfigId: string; } /** * A collection of values returned by getRuntimeDatabaseToolsDatabaseApiGatewayConfigContent. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigContentResult { readonly databaseToolsDatabaseApiGatewayConfigId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides details about a specific Database Tools Database Api Gateway Config Content resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get the content of a Database Tools database API gateway config * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigContent = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigContent({ * databaseToolsDatabaseApiGatewayConfigId: testConfig.id, * }); * ``` */ export declare function getRuntimeDatabaseToolsDatabaseApiGatewayConfigContentOutput(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigContentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRuntimeDatabaseToolsDatabaseApiGatewayConfigContent. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigContentOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools database API gateway config. */ databaseToolsDatabaseApiGatewayConfigId: pulumi.Input; } //# sourceMappingURL=getRuntimeDatabaseToolsDatabaseApiGatewayConfigContent.d.ts.map