Skip to content

update rc openapi spec #1794

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 1 addition & 118 deletions content/operate/rc/api/api-reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,6 @@
"description": "All Pro subscription connectivity operations.",
"x-order": "11"
},
{
"name": "Subscriptions - Dedicated",
"description": "All Dedicated subscription operations.",
"x-order": "11"
},
{
"name": "Databases - Pro",
"description": "All Pro database operations.",
Expand Down Expand Up @@ -3082,7 +3077,7 @@
],
"summary": "Get a single Essentials subscription",
"description": "Gets information on the specified Essentials subscription.",
"operationId": "getSubscriptionById_2",
"operationId": "getSubscriptionById_1",
"parameters": [
{
"name": "subscriptionId",
Expand Down Expand Up @@ -8582,64 +8577,6 @@
}
}
},
"/subscriptions/dedicated/{subscriptionId}": {
"get": {
"tags": [
"Subscriptions - Dedicated"
],
"summary": "Get a single dedicated subscription",
"description": "Gets information on the specified dedicated subscription.",
"operationId": "getSubscriptionById_1",
"parameters": [
{
"name": "subscriptionId",
"in": "path",
"description": "Subscription ID.",
"required": true,
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"responses": {
"400": {
"description": "Bad Request - The server cannot process the request due to something that is perceived to be a client error"
},
"412": {
"description": "Precondition Failed - Feature flag for this flow is off"
},
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DedicatedSubscription"
}
}
}
},
"401": {
"description": "Unauthorized - Authentication failed for requested resource"
},
"403": {
"description": "Forbidden - Not allowed to access requested resource (primarily due to client source IP API Key restrictions)"
},
"404": {
"description": "Not Found - The resource you were trying to reach was not found or does not exist"
},
"429": {
"description": "Too Many Requests - Too many resources are concurrently created / updated / deleted in the account. Please re-submit API requests after resource changes are completed)"
},
"500": {
"description": "Internal system error - If this error persists, please contact customer support"
},
"503": {
"description": "Service Unavailable - Server is temporarily unable to handle the request, please try again later. If this error persists, please contact customer support "
}
}
}
},
"/session-logs": {
"get": {
"tags": [
Expand Down Expand Up @@ -13633,60 +13570,6 @@
},
"description": "Database tag"
},
"DedicatedSubscription": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for the subscription",
"format": "int32"
},
"name": {
"type": "string",
"description": "Name of the subscription"
},
"paymentMethodId": {
"type": "integer",
"description": "Payment method identifier",
"format": "int32"
},
"status": {
"type": "string",
"description": "Current status of the subscription"
},
"memoryStorage": {
"type": "string",
"description": "Memory storage configuration for the subscription",
"enum": [
"ram",
"ram-and-flash"
]
},
"numberOfDatabases": {
"type": "integer",
"description": "Number of databases in the subscription",
"format": "int32"
},
"paymentMethodType": {
"type": "string",
"description": "Type of payment method used",
"enum": [
"credit-card",
"marketplace"
]
},
"links": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"type": "object"
}
}
}
},
"description": "Redis Dedicated Subscription information"
},
"SubscriptionSpec": {
"required": [
"regions"
Expand Down