published on Friday, May 15, 2026 by Pulumi
published on Friday, May 15, 2026 by Pulumi
This resource provides the Database Tools Database Api Gateway Config Pool Api Spec resource in Oracle Cloud Infrastructure Database Tools Runtime service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database_tools_runtime
Create a Database Tools database API gateway config API spec resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec = new oci.databasetools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec("test_database_tools_database_api_gateway_config_pool_api_spec", {
content: databaseToolsDatabaseApiGatewayConfigPoolApiSpecContent,
databaseToolsDatabaseApiGatewayConfigId: testConfig.id,
displayName: databaseToolsDatabaseApiGatewayConfigPoolApiSpecDisplayName,
poolKey: databaseToolsDatabaseApiGatewayConfigPoolApiSpecPoolKey,
type: databaseToolsDatabaseApiGatewayConfigPoolApiSpecType,
});
import pulumi
import pulumi_oci as oci
test_database_tools_database_api_gateway_config_pool_api_spec = oci.databasetools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec("test_database_tools_database_api_gateway_config_pool_api_spec",
content=database_tools_database_api_gateway_config_pool_api_spec_content,
database_tools_database_api_gateway_config_id=test_config["id"],
display_name=database_tools_database_api_gateway_config_pool_api_spec_display_name,
pool_key=database_tools_database_api_gateway_config_pool_api_spec_pool_key,
type=database_tools_database_api_gateway_config_pool_api_spec_type)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/databasetools"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databasetools.NewRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(ctx, "test_database_tools_database_api_gateway_config_pool_api_spec", &databasetools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs{
Content: pulumi.Any(databaseToolsDatabaseApiGatewayConfigPoolApiSpecContent),
DatabaseToolsDatabaseApiGatewayConfigId: pulumi.Any(testConfig.Id),
DisplayName: pulumi.Any(databaseToolsDatabaseApiGatewayConfigPoolApiSpecDisplayName),
PoolKey: pulumi.Any(databaseToolsDatabaseApiGatewayConfigPoolApiSpecPoolKey),
Type: pulumi.Any(databaseToolsDatabaseApiGatewayConfigPoolApiSpecType),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec = new Oci.DatabaseTools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec("test_database_tools_database_api_gateway_config_pool_api_spec", new()
{
Content = databaseToolsDatabaseApiGatewayConfigPoolApiSpecContent,
DatabaseToolsDatabaseApiGatewayConfigId = testConfig.Id,
DisplayName = databaseToolsDatabaseApiGatewayConfigPoolApiSpecDisplayName,
PoolKey = databaseToolsDatabaseApiGatewayConfigPoolApiSpecPoolKey,
Type = databaseToolsDatabaseApiGatewayConfigPoolApiSpecType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseTools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec;
import com.pulumi.oci.DatabaseTools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec = new RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec("testDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec", RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs.builder()
.content(databaseToolsDatabaseApiGatewayConfigPoolApiSpecContent)
.databaseToolsDatabaseApiGatewayConfigId(testConfig.id())
.displayName(databaseToolsDatabaseApiGatewayConfigPoolApiSpecDisplayName)
.poolKey(databaseToolsDatabaseApiGatewayConfigPoolApiSpecPoolKey)
.type(databaseToolsDatabaseApiGatewayConfigPoolApiSpecType)
.build());
}
}
resources:
testDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec:
type: oci:DatabaseTools:RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec
name: test_database_tools_database_api_gateway_config_pool_api_spec
properties:
content: ${databaseToolsDatabaseApiGatewayConfigPoolApiSpecContent}
databaseToolsDatabaseApiGatewayConfigId: ${testConfig.id}
displayName: ${databaseToolsDatabaseApiGatewayConfigPoolApiSpecDisplayName}
poolKey: ${databaseToolsDatabaseApiGatewayConfigPoolApiSpecPoolKey}
type: ${databaseToolsDatabaseApiGatewayConfigPoolApiSpecType}
Example coming soon!
Create RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(name: string, args: RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs, opts?: CustomResourceOptions);@overload
def RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(resource_name: str,
args: RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(resource_name: str,
opts: Optional[ResourceOptions] = None,
content: Optional[str] = None,
database_tools_database_api_gateway_config_id: Optional[str] = None,
display_name: Optional[str] = None,
pool_key: Optional[str] = None,
type: Optional[str] = None)func NewRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(ctx *Context, name string, args RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs, opts ...ResourceOption) (*RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec, error)public RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(string name, RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs args, CustomResourceOptions? opts = null)
public RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(String name, RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs args)
public RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(String name, RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs args, CustomResourceOptions options)
type: oci:DatabaseTools:RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "oci_databasetools_runtimedatabasetoolsdatabaseapigatewayconfigpoolapispec" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource = new Oci.DatabaseTools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec("runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource", new()
{
Content = "string",
DatabaseToolsDatabaseApiGatewayConfigId = "string",
DisplayName = "string",
PoolKey = "string",
Type = "string",
});
example, err := databasetools.NewRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(ctx, "runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource", &databasetools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs{
Content: pulumi.String("string"),
DatabaseToolsDatabaseApiGatewayConfigId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
PoolKey: pulumi.String("string"),
Type: pulumi.String("string"),
})
resource "oci_databasetools_runtimedatabasetoolsdatabaseapigatewayconfigpoolapispec" "runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource" {
content = "string"
database_tools_database_api_gateway_config_id = "string"
display_name = "string"
pool_key = "string"
type = "string"
}
var runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource = new RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec("runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource", RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecArgs.builder()
.content("string")
.databaseToolsDatabaseApiGatewayConfigId("string")
.displayName("string")
.poolKey("string")
.type("string")
.build());
runtime_database_tools_database_api_gateway_config_pool_api_spec_resource = oci.databasetools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec("runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource",
content="string",
database_tools_database_api_gateway_config_id="string",
display_name="string",
pool_key="string",
type="string")
const runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource = new oci.databasetools.RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec("runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecResource", {
content: "string",
databaseToolsDatabaseApiGatewayConfigId: "string",
displayName: "string",
poolKey: "string",
type: "string",
});
type: oci:DatabaseTools:RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec
properties:
content: string
databaseToolsDatabaseApiGatewayConfigId: string
displayName: string
poolKey: string
type: string
RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec resource accepts the following input properties:
- Content string
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- Database
Tools stringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- Pool
Key string - The key of the pool config.
- Type string
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Content string
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- Database
Tools stringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- Pool
Key string - The key of the pool config.
- Type string
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content string
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database_
tools_ stringdatabase_ api_ gateway_ config_ id - The OCID of a Database Tools database API gateway config.
- display_
name string - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- pool_
key string - The key of the pool config.
- type string
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content String
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database
Tools StringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- pool
Key String - The key of the pool config.
- type String
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content string
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database
Tools stringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- pool
Key string - The key of the pool config.
- type string
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content str
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database_
tools_ strdatabase_ api_ gateway_ config_ id - The OCID of a Database Tools database API gateway config.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- pool_
key str - The key of the pool config.
- type str
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content String
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database
Tools StringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- pool
Key String - The key of the pool config.
- type String
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Key string
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- Time
Created string - The time the resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the resource was updated. An RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key string
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- Time
Created string - The time the resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the resource was updated. An RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- key string
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- time_
created string - The time the resource was created. An RFC3339 formatted datetime string.
- time_
updated string - The time the resource was updated. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- key String
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- time
Created String - The time the resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the resource was updated. An RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- key string
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- time
Created string - The time the resource was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the resource was updated. An RFC3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- key str
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- time_
created str - The time the resource was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the resource was updated. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- key String
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- time
Created String - The time the resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the resource was updated. An RFC3339 formatted datetime string.
Look up Existing RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec Resource
Get an existing RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecState, opts?: CustomResourceOptions): RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
content: Optional[str] = None,
database_tools_database_api_gateway_config_id: Optional[str] = None,
display_name: Optional[str] = None,
key: Optional[str] = None,
pool_key: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
type: Optional[str] = None) -> RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecfunc GetRuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec(ctx *Context, name string, id IDInput, state *RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecState, opts ...ResourceOption) (*RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec, error)public static RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec Get(string name, Input<string> id, RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecState? state, CustomResourceOptions? opts = null)public static RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec get(String name, Output<String> id, RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpecState state, CustomResourceOptions options)resources: _: type: oci:DatabaseTools:RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec get: id: ${id}import {
to = oci_databasetools_runtimedatabasetoolsdatabaseapigatewayconfigpoolapispec.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Content string
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- Database
Tools stringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- Key string
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- Pool
Key string - The key of the pool config.
- Time
Created string - The time the resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the resource was updated. An RFC3339 formatted datetime string.
- Type string
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Content string
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- Database
Tools stringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- Key string
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- Pool
Key string - The key of the pool config.
- Time
Created string - The time the resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time the resource was updated. An RFC3339 formatted datetime string.
- Type string
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content string
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database_
tools_ stringdatabase_ api_ gateway_ config_ id - The OCID of a Database Tools database API gateway config.
- display_
name string - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- key string
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- pool_
key string - The key of the pool config.
- time_
created string - The time the resource was created. An RFC3339 formatted datetime string.
- time_
updated string - The time the resource was updated. An RFC3339 formatted datetime string.
- type string
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content String
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database
Tools StringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- key String
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- pool
Key String - The key of the pool config.
- time
Created String - The time the resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the resource was updated. An RFC3339 formatted datetime string.
- type String
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content string
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database
Tools stringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- key string
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- pool
Key string - The key of the pool config.
- time
Created string - The time the resource was created. An RFC3339 formatted datetime string.
- time
Updated string - The time the resource was updated. An RFC3339 formatted datetime string.
- type string
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content str
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database_
tools_ strdatabase_ api_ gateway_ config_ id - The OCID of a Database Tools database API gateway config.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- key str
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- pool_
key str - The key of the pool config.
- time_
created str - The time the resource was created. An RFC3339 formatted datetime string.
- time_
updated str - The time the resource was updated. An RFC3339 formatted datetime string.
- type str
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- content String
- (Updatable) The content of a string-escaped Open API spec in JSON format.
- database
Tools StringDatabase Api Gateway Config Id - The OCID of a Database Tools database API gateway config.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.
- key String
- A system generated string that uniquely identifies an API spec sub resource within a given pool.
- pool
Key String - The key of the pool config.
- time
Created String - The time the resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time the resource was updated. An RFC3339 formatted datetime string.
- type String
(Updatable) The type of the Database Tools database API gateway config API spec sub resource.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Import
DatabaseToolsDatabaseApiGatewayConfigPoolApiSpecs can be imported using the id, e.g.
$ pulumi import oci:DatabaseTools/runtimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec:RuntimeDatabaseToolsDatabaseApiGatewayConfigPoolApiSpec test_database_tools_database_api_gateway_config_pool_api_spec "databaseToolsDatabaseApiGatewayConfigs/{databaseToolsDatabaseApiGatewayConfigId}/pools/{poolKey}/apiSpecs/{apiSpecKey}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
published on Friday, May 15, 2026 by Pulumi
