Pinecone · Schema

UpdateProjectRequest

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
name string The name of the new project.
max_pods integer The maximum number of Pods that can be created in the project.
force_encryption_with_cmek boolean Whether to force encryption with a customer-managed encryption key (CMEK). Once enabled, CMEK encryption cannot be disabled.
View JSON Schema on GitHub

JSON Schema

pinecone-updateprojectrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateProjectRequest",
  "title": "UpdateProjectRequest",
  "type": "object",
  "properties": {
    "name": {
      "example": "chatbot-prod",
      "description": "The name of the new project.",
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "max_pods": {
      "description": "The maximum number of Pods that can be created in the project.\n",
      "type": "integer"
    },
    "force_encryption_with_cmek": {
      "description": "Whether to force encryption with a customer-managed encryption key (CMEK). Once enabled, CMEK encryption cannot be disabled.\n",
      "type": "boolean"
    }
  }
}