action vercel_create_secret { label: "Create a new secret" description: "Allows to create a new secret." provider: vercel method: POST path: "/v2/secrets/{name}" encoding: json input: { type: "object" properties: { decryptable: { type: "boolean" description: "Whether the secret value can be decrypted after it has been created." } name: { type: "string" } projectId: { type: "string" description: "Associate a secret to a project." } teamId: { type: "string" } value: { type: "string" description: "The value of the new secret." } } required: ["name", "value"] additionalProperties: false } output: { type: "object" required: ["created", "name", "uid", "value"] properties: { created: { type: "string" format: "date-time" description: "The date when the secret was created." } createdAt: { type: "number" description: "Timestamp for when the secret was created." } decryptable: { type: "boolean" description: "Indicates whether the secret value can be decrypted after it has been created." } name: { type: "string" description: "The name of the secret." } projectId: { type: "string" description: "The unique identifier of the project which the secret belongs to." } teamId: { type: ["string", "null"] description: "The unique identifier of the team the secret was created for." } uid: { type: "string" description: "The unique identifier of the secret." } userId: { type: "string" description: "The unique identifier of the user who created the secret." } value: { type: "object" properties: { data: { type: "array" items: { type: "number" } } type: { type: "string" enum: ["Buffer"] } } } } } }