|
314 | 314 | ] |
315 | 315 | } |
316 | 316 | }, |
| 317 | + "/config-source/delete": { |
| 318 | + "put": { |
| 319 | + "summary": "Delete the configuration for a dynamic configuration source", |
| 320 | + "operationId": "Waypoint_DeleteConfigSource", |
| 321 | + "responses": { |
| 322 | + "200": { |
| 323 | + "description": "A successful response.", |
| 324 | + "schema": { |
| 325 | + "properties": {} |
| 326 | + } |
| 327 | + }, |
| 328 | + "default": { |
| 329 | + "description": "An unexpected error response.", |
| 330 | + "schema": { |
| 331 | + "$ref": "#/definitions/grpc.gateway.runtime.Error" |
| 332 | + } |
| 333 | + } |
| 334 | + }, |
| 335 | + "parameters": [ |
| 336 | + { |
| 337 | + "name": "body", |
| 338 | + "in": "body", |
| 339 | + "required": true, |
| 340 | + "schema": { |
| 341 | + "$ref": "#/definitions/hashicorp.waypoint.DeleteConfigSourceRequest" |
| 342 | + } |
| 343 | + } |
| 344 | + ], |
| 345 | + "tags": [ |
| 346 | + "Waypoint" |
| 347 | + ] |
| 348 | + } |
| 349 | + }, |
317 | 350 | "/deployment/{deployment.id}/status-report": { |
318 | 351 | "put": { |
319 | 352 | "summary": "ExpediteStatusReport returns the queued status report job id", |
|
2224 | 2257 | ] |
2225 | 2258 | } |
2226 | 2259 | }, |
| 2260 | + "/project/config/delete": { |
| 2261 | + "put": { |
| 2262 | + "summary": "Delete one or more configuration variables for applications or runners.", |
| 2263 | + "operationId": "Waypoint_DeleteConfig", |
| 2264 | + "responses": { |
| 2265 | + "200": { |
| 2266 | + "description": "A successful response.", |
| 2267 | + "schema": { |
| 2268 | + "$ref": "#/definitions/hashicorp.waypoint.ConfigDeleteResponse" |
| 2269 | + } |
| 2270 | + }, |
| 2271 | + "default": { |
| 2272 | + "description": "An unexpected error response.", |
| 2273 | + "schema": { |
| 2274 | + "$ref": "#/definitions/grpc.gateway.runtime.Error" |
| 2275 | + } |
| 2276 | + } |
| 2277 | + }, |
| 2278 | + "parameters": [ |
| 2279 | + { |
| 2280 | + "name": "body", |
| 2281 | + "in": "body", |
| 2282 | + "required": true, |
| 2283 | + "schema": { |
| 2284 | + "$ref": "#/definitions/hashicorp.waypoint.ConfigDeleteRequest" |
| 2285 | + } |
| 2286 | + } |
| 2287 | + ], |
| 2288 | + "tags": [ |
| 2289 | + "Waypoint" |
| 2290 | + ] |
| 2291 | + } |
| 2292 | + }, |
2227 | 2293 | "/project/from-template": { |
2228 | 2294 | "post": { |
2229 | 2295 | "summary": "CreateProjectFromTemplate is in BETA. It creates a new Waypoint project\nfrom a Project Template, provisioning infrastructure before upserting the\nWaypoint project to the database", |
|
7683 | 7749 | "default": "UNKNOWN", |
7684 | 7750 | "description": "Supported component types, the values here MUST match the enum values\nin the Go sdk/component package exactly. A test in internal/server\nvalidates this." |
7685 | 7751 | }, |
| 7752 | + "hashicorp.waypoint.ConfigDeleteRequest": { |
| 7753 | + "type": "object", |
| 7754 | + "properties": { |
| 7755 | + "variables": { |
| 7756 | + "type": "array", |
| 7757 | + "items": { |
| 7758 | + "$ref": "#/definitions/hashicorp.waypoint.ConfigVar" |
| 7759 | + } |
| 7760 | + } |
| 7761 | + } |
| 7762 | + }, |
7686 | 7763 | "hashicorp.waypoint.ConfigDeleteResponse": { |
7687 | 7764 | "type": "object" |
7688 | 7765 | }, |
|
7998 | 8075 | } |
7999 | 8076 | } |
8000 | 8077 | }, |
| 8078 | + "hashicorp.waypoint.DeleteConfigSourceRequest": { |
| 8079 | + "type": "object", |
| 8080 | + "properties": { |
| 8081 | + "config_source": { |
| 8082 | + "$ref": "#/definitions/hashicorp.waypoint.ConfigSource" |
| 8083 | + } |
| 8084 | + } |
| 8085 | + }, |
8001 | 8086 | "hashicorp.waypoint.DeleteOnDemandRunnerConfigResponse": { |
8002 | 8087 | "type": "object", |
8003 | 8088 | "properties": { |
|
0 commit comments