import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Database Tools Database Api Gateway Config Pool Api Spec resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a Database Tools database API gateway config API spec resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec({ * apiSpecKey: databaseToolsDatabaseApiGatewayConfigPoolApiSpecApiSpecKey, * databaseToolsDatabaseApiGatewayConfigId: testConfig.id, * poolKey: databaseToolsDatabaseApiGatewayConfigPoolApiSpecPoolKey, * }); * ``` */ export declare function getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs { /** * The key of the API spec config. */ apiSpecKey: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools database API gateway config. */ databaseToolsDatabaseApiGatewayConfigId: string; /** * The key of the pool config. */ poolKey: string; } /** * A collection of values returned by getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResult { readonly apiSpecKey: string; /** * The content of a string-escaped Open API spec in JSON format. */ readonly content: string; readonly databaseToolsDatabaseApiGatewayConfigId: string; /** * A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information. */ readonly displayName: string; readonly id: string; /** * A system generated string that uniquely identifies an API spec sub resource within a given pool. */ readonly key: string; readonly poolKey: string; /** * The time the resource was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the resource was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * The type of the Database Tools database API gateway config API spec sub resource. */ readonly type: string; } /** * This data source provides details about a specific Database Tools Database Api Gateway Config Pool Api Spec resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a Database Tools database API gateway config API spec resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec({ * apiSpecKey: databaseToolsDatabaseApiGatewayConfigPoolApiSpecApiSpecKey, * databaseToolsDatabaseApiGatewayConfigId: testConfig.id, * poolKey: databaseToolsDatabaseApiGatewayConfigPoolApiSpecPoolKey, * }); * ``` */ export declare function getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecOutput(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecOutputArgs { /** * The key of the API spec config. */ apiSpecKey: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools database API gateway config. */ databaseToolsDatabaseApiGatewayConfigId: pulumi.Input; /** * The key of the pool config. */ poolKey: pulumi.Input; } //# sourceMappingURL=getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec.d.ts.map