action vercel_get_edge_config { label: "Get an Edge Config" description: "Returns an Edge Config." provider: vercel method: GET path: "/edge-config/{edgeConfigId}" encoding: json input: { type: "object" properties: { edgeConfigId: { type: "string" } teamId: { type: "string" } } required: ["edgeConfigId"] additionalProperties: false } output: { type: "object" description: "The EdgeConfig." required: ["itemCount", "sizeInBytes"] properties: { createdAt: { type: ["number", "null"] } creator: { type: "string" } domain: { type: "string" } id: { type: "string" } itemCount: { type: "number" } name: { type: "string" } recordType: { type: "string" enum: ["A", "AAAA", "ALIAS", "CAA", "CNAME", "MX", "SRV", "TXT", "NS"] } sizeInBytes: { type: "number" } ttl: { type: "number" } type: { type: "string" enum: ["record", "record-sys"] } value: { type: "string" } } } }