Render · Schema

keyValuePATCHInput

Input type for updating a Key Value instance

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

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

JSON Schema

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