Render · Schema
redisPOSTInput
Input type for creating a Redis instance
CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the Redis instance |
| ownerId | string | The ID of the owner of the Redis instance |
| plan | object | |
| region | string | The region where the Redis instance is located |
| environmentId | string | |
| maxmemoryPolicy | object | |
| ipAllowList | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/redisPOSTInput",
"title": "redisPOSTInput",
"type": "object",
"description": "Input type for creating a Redis instance",
"required": [
"name",
"ownerId",
"plan"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the Redis instance"
},
"ownerId": {
"type": "string",
"description": "The ID of the owner of the Redis instance"
},
"plan": {
"$ref": "#/components/schemas/redisPlan"
},
"region": {
"type": "string",
"description": "The region where the Redis instance is located"
},
"environmentId": {
"type": "string"
},
"maxmemoryPolicy": {
"$ref": "#/components/schemas/maxmemoryPolicy"
},
"ipAllowList": {
"type": "array",
"items": {
"$ref": "#/components/schemas/cidrBlockAndDescription"
}
}
}
}