Render · Schema

redisPATCHInput

Input type for updating a Redis instance

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
name string The name of the Redis instance
plan object
maxmemoryPolicy object
ipAllowList array
View JSON Schema on GitHub

JSON Schema

render-redispatchinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/redisPATCHInput",
  "title": "redisPATCHInput",
  "type": "object",
  "description": "Input type for updating a Redis instance",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the Redis instance"
    },
    "plan": {
      "$ref": "#/components/schemas/redisPlan"
    },
    "maxmemoryPolicy": {
      "$ref": "#/components/schemas/maxmemoryPolicy"
    },
    "ipAllowList": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/cidrBlockAndDescription"
      }
    }
  }
}