|
314 | 314 | "operationId": "v1-get-a-snippet",
|
315 | 315 | "summary": "Gets a specific SQL snippet",
|
316 | 316 | "parameters": [
|
317 |
| - { "name": "id", "required": true, "in": "path", "schema": { "type": "uuid" } } |
| 317 | + { |
| 318 | + "name": "id", |
| 319 | + "required": true, |
| 320 | + "in": "path", |
| 321 | + "schema": { "format": "uuid", "type": "string" } |
| 322 | + } |
318 | 323 | ],
|
319 | 324 | "responses": {
|
320 | 325 | "200": {
|
|
2070 | 2075 | "schema": { "type": "string" }
|
2071 | 2076 | },
|
2072 | 2077 | {
|
2073 |
| - "name": "resource_multiplier", |
| 2078 | + "name": "compute_multiplier", |
2074 | 2079 | "required": false,
|
2075 | 2080 | "in": "query",
|
2076 |
| - "schema": { "type": "string" } |
| 2081 | + "schema": { "minimum": 1, "maximum": 4, "type": "number" } |
2077 | 2082 | }
|
2078 | 2083 | ],
|
2079 | 2084 | "requestBody": {
|
|
2219 | 2224 | "schema": { "type": "string" }
|
2220 | 2225 | },
|
2221 | 2226 | {
|
2222 |
| - "name": "resource_multiplier", |
| 2227 | + "name": "compute_multiplier", |
2223 | 2228 | "required": false,
|
2224 | 2229 | "in": "query",
|
2225 |
| - "schema": { "type": "string" } |
| 2230 | + "schema": { "minimum": 1, "maximum": 4, "type": "number" } |
2226 | 2231 | }
|
2227 | 2232 | ],
|
2228 | 2233 | "requestBody": {
|
|
2849 | 2854 | },
|
2850 | 2855 | "release_channel": {
|
2851 | 2856 | "type": "string",
|
2852 |
| - "enum": ["internal", "alpha", "beta", "ga", "withdrawn"], |
| 2857 | + "enum": ["internal", "alpha", "beta", "ga", "withdrawn", "preview"], |
2853 | 2858 | "description": "Release channel. If not provided, GA will be used."
|
2854 | 2859 | },
|
2855 | 2860 | "postgres_engine": {
|
2856 | 2861 | "type": "string",
|
2857 |
| - "enum": ["15"], |
| 2862 | + "enum": ["15", "17-oriole"], |
2858 | 2863 | "description": "Postgres engine version. If not provided, the latest version will be used."
|
2859 | 2864 | }
|
2860 | 2865 | },
|
|
3087 | 3092 | },
|
3088 | 3093 | "ReleaseChannel": {
|
3089 | 3094 | "type": "string",
|
3090 |
| - "enum": ["internal", "alpha", "beta", "ga", "withdrawn"] |
| 3095 | + "enum": ["internal", "alpha", "beta", "ga", "withdrawn", "preview"] |
3091 | 3096 | },
|
3092 | 3097 | "PostgresEngine": {
|
3093 | 3098 | "type": "string",
|
3094 | 3099 | "description": "Postgres engine version. If not provided, the latest version will be used.",
|
3095 |
| - "enum": ["15"] |
| 3100 | + "enum": ["15", "17-oriole"] |
3096 | 3101 | },
|
3097 | 3102 | "CreateBranchBody": {
|
3098 | 3103 | "type": "object",
|
|
4246 | 4251 | "name": { "type": "string" },
|
4247 | 4252 | "body": { "type": "string" },
|
4248 | 4253 | "verify_jwt": { "type": "boolean" },
|
4249 |
| - "resource_multiplier": { "type": "string" } |
| 4254 | + "compute_multiplier": { "type": "number", "minimum": 1, "maximum": 4 } |
4250 | 4255 | },
|
4251 | 4256 | "required": ["slug", "name", "body"]
|
4252 | 4257 | },
|
|
4264 | 4269 | "import_map": { "type": "boolean" },
|
4265 | 4270 | "entrypoint_path": { "type": "string" },
|
4266 | 4271 | "import_map_path": { "type": "string" },
|
4267 |
| - "resource_multiplier": { "type": "string" } |
| 4272 | + "compute_multiplier": { "type": "number" } |
4268 | 4273 | },
|
4269 | 4274 | "required": ["version", "created_at", "updated_at", "id", "slug", "name", "status"]
|
4270 | 4275 | },
|
|
4282 | 4287 | "import_map": { "type": "boolean" },
|
4283 | 4288 | "entrypoint_path": { "type": "string" },
|
4284 | 4289 | "import_map_path": { "type": "string" },
|
4285 |
| - "resource_multiplier": { "type": "string" } |
| 4290 | + "compute_multiplier": { "type": "number" } |
4286 | 4291 | },
|
4287 | 4292 | "required": ["version", "created_at", "updated_at", "id", "slug", "name", "status"]
|
4288 | 4293 | },
|
|
4292 | 4297 | "name": { "type": "string" },
|
4293 | 4298 | "body": { "type": "string" },
|
4294 | 4299 | "verify_jwt": { "type": "boolean" },
|
4295 |
| - "resource_multiplier": { "type": "string" } |
| 4300 | + "compute_multiplier": { "type": "number", "minimum": 1, "maximum": 4 } |
4296 | 4301 | }
|
4297 | 4302 | },
|
4298 | 4303 | "V1StorageBucketResponse": {
|
|
0 commit comments