import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Database Tools Database Api Gateway Config Pool Auto Api Spec resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a Database Tools database API gateway config auto API spec resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec({ * autoApiSpecKey: databaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecAutoApiSpecKey, * databaseToolsDatabaseApiGatewayConfigId: testConfig.id, * poolKey: databaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecPoolKey, * }); * ``` */ export declare function getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecArgs { /** * The key of the auto API spec config. */ autoApiSpecKey: 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 getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecResult { /** * Used as the URI path element for this object. When not specified the objectName lowercase is the default value. */ readonly alias: string; readonly autoApiSpecKey: string; /** * The name of the database object. */ readonly databaseObjectName: string; /** * The type of the database object. */ readonly databaseObjectType: string; readonly databaseToolsDatabaseApiGatewayConfigId: string; /** * Description of the autoApiSpec. */ readonly description: 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 auto API spec sub resource within a given pool. */ readonly key: string; /** * The operations to limit access to this resource. If not specified then the default is ["READ","WRITE"]. */ readonly operations: string[]; readonly poolKey: string; /** * The name of the database API gateway config roles protecting the resource. Only valid for RBAC JWT Profile pools and BEARER securitySchemes. */ readonly roles: string[]; /** * The name of the database API gateway config privilege protecting the resource. Only valid for SCOPE JWT Profile pools and BEARER securitySchemes. */ readonly scope: string; /** * The security schemes that can access this resource. If not specified then the resource is public. */ readonly securitySchemes: 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 auto API spec sub resource. */ readonly type: string; } /** * This data source provides details about a specific Database Tools Database Api Gateway Config Pool Auto Api Spec resource in Oracle Cloud Infrastructure Database Tools Runtime service. * * Get a Database Tools database API gateway config auto API spec resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec = oci.databasetools.getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec({ * autoApiSpecKey: databaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecAutoApiSpecKey, * databaseToolsDatabaseApiGatewayConfigId: testConfig.id, * poolKey: databaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecPoolKey, * }); * ``` */ export declare function getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecOutput(args: GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec. */ export interface GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpecOutputArgs { /** * The key of the auto API spec config. */ autoApiSpecKey: 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=getRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolAutoApiSpec.d.ts.map