Create Instance
This API creates AWS PaaS Database Instance for Oracle.
- application/json
Request Body
instanceProperties object
instance object required
instanceName stringName of the instance
applicationId integerDefault value:
22
clientName stringName of the cloud account
version string requiredDatabase instance version
oracleInstance object
sqlConnect object
userName stringOracle database username
password stringBase64 encrypted database user password
domainName stringRDS SID
confirmPassword stringrdsConfig object
dbTLSConnectOptions object required
portnumber integerIf SSL is enabled, provide port
sslEnabled booleanDefault value:
false
Set it to true if you want to establish secure communicatin
s3Bucket stringS3 Bucket name to store rman dumps
planEntity object required
planId integerName of the Plan
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
processinginstructioninfo object
attributes object[]
name stringvalue stringresponse object
warningCode integererrorCode integerwarningMessage stringentity object
subclientId integerclientId integerinstanceName stringinstanceId integer_type_ integer
{
"processinginstructioninfo": {
"attributes": [
{
"name": "string",
"value": "string"
}
]
},
"response": {
"warningCode": 0,
"errorCode": 0,
"warningMessage": "string",
"entity": {
"subclientId": 0,
"clientId": 0,
"instanceName": "string",
"instanceId": 0,
"_type_": 0
}
}
}
{
"processinginstructioninfo": {
"attributes": [
{
"name": "exitval",
"value": "0"
}
]
},
"response": {
"warningCode": 0,
"errorCode": 0,
"warningMessage": "",
"entity": {
"subclientId": 0,
"clientId": 214,
"instanceName": "awsoradb14[us-east-1]",
"instanceId": 80,
"_type_": 0
}
}
}
Bad Request
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- errorMessage string
- errorCode integer
entity object
subclientId integerclientId integerinstanceName stringinstanceId integer_type_ integer
{
"errorMessage": "string",
"errorCode": 0,
"entity": {
"subclientId": 0,
"clientId": 0,
"instanceName": "string",
"instanceId": 0,
"_type_": 0
}
}
{
"errorMessage": "Connection to Oracle Server failed.\n[~Connection to Database Failed: could not connect to server: Connection timed out (0x0000274C/10060)\tIs the server running on host \"x.x.x.x\" and accepting\tTCP/IP connections on port 5432?~]",
"errorCode": 4444,
"entity": {
"subclientId": 0,
"clientId": 214,
"instanceName": "jah-pg14[us-east-2]",
"instanceId": 2,
"_type_": 0
}
}
Loading...