|
2455 | 2455 | ] |
2456 | 2456 | } |
2457 | 2457 | }, |
| 2458 | + "/api/v1/namespaces/{namespace}/workers/{workerInstanceKey}": { |
| 2459 | + "get": { |
| 2460 | + "summary": "DescribeWorker returns information about the specified worker execution.", |
| 2461 | + "operationId": "DescribeWorker2", |
| 2462 | + "responses": { |
| 2463 | + "200": { |
| 2464 | + "description": "A successful response.", |
| 2465 | + "schema": { |
| 2466 | + "$ref": "#/definitions/v1DescribeWorkerResponse" |
| 2467 | + } |
| 2468 | + }, |
| 2469 | + "default": { |
| 2470 | + "description": "An unexpected error response.", |
| 2471 | + "schema": { |
| 2472 | + "$ref": "#/definitions/rpcStatus" |
| 2473 | + } |
| 2474 | + } |
| 2475 | + }, |
| 2476 | + "parameters": [ |
| 2477 | + { |
| 2478 | + "name": "namespace", |
| 2479 | + "description": "Namespace this worker belongs to.", |
| 2480 | + "in": "path", |
| 2481 | + "required": true, |
| 2482 | + "type": "string" |
| 2483 | + }, |
| 2484 | + { |
| 2485 | + "name": "workerInstanceKey", |
| 2486 | + "description": "Worker instance key to describe.", |
| 2487 | + "in": "path", |
| 2488 | + "required": true, |
| 2489 | + "type": "string" |
| 2490 | + }, |
| 2491 | + { |
| 2492 | + "name": "identity", |
| 2493 | + "description": "The identity of the client who initiated this request.", |
| 2494 | + "in": "query", |
| 2495 | + "required": false, |
| 2496 | + "type": "string" |
| 2497 | + } |
| 2498 | + ], |
| 2499 | + "tags": [ |
| 2500 | + "WorkflowService" |
| 2501 | + ] |
| 2502 | + } |
| 2503 | + }, |
2458 | 2504 | "/api/v1/namespaces/{namespace}/workflow-count": { |
2459 | 2505 | "get": { |
2460 | 2506 | "summary": "CountWorkflowExecutions is a visibility API to count of workflow executions in a specific namespace.", |
|
6235 | 6281 | ] |
6236 | 6282 | } |
6237 | 6283 | }, |
| 6284 | + "/namespaces/{namespace}/workers/{workerInstanceKey}": { |
| 6285 | + "get": { |
| 6286 | + "summary": "DescribeWorker returns information about the specified worker execution.", |
| 6287 | + "operationId": "DescribeWorker", |
| 6288 | + "responses": { |
| 6289 | + "200": { |
| 6290 | + "description": "A successful response.", |
| 6291 | + "schema": { |
| 6292 | + "$ref": "#/definitions/v1DescribeWorkerResponse" |
| 6293 | + } |
| 6294 | + }, |
| 6295 | + "default": { |
| 6296 | + "description": "An unexpected error response.", |
| 6297 | + "schema": { |
| 6298 | + "$ref": "#/definitions/rpcStatus" |
| 6299 | + } |
| 6300 | + } |
| 6301 | + }, |
| 6302 | + "parameters": [ |
| 6303 | + { |
| 6304 | + "name": "namespace", |
| 6305 | + "description": "Namespace this worker belongs to.", |
| 6306 | + "in": "path", |
| 6307 | + "required": true, |
| 6308 | + "type": "string" |
| 6309 | + }, |
| 6310 | + { |
| 6311 | + "name": "workerInstanceKey", |
| 6312 | + "description": "Worker instance key to describe.", |
| 6313 | + "in": "path", |
| 6314 | + "required": true, |
| 6315 | + "type": "string" |
| 6316 | + }, |
| 6317 | + { |
| 6318 | + "name": "identity", |
| 6319 | + "description": "The identity of the client who initiated this request.", |
| 6320 | + "in": "query", |
| 6321 | + "required": false, |
| 6322 | + "type": "string" |
| 6323 | + } |
| 6324 | + ], |
| 6325 | + "tags": [ |
| 6326 | + "WorkflowService" |
| 6327 | + ] |
| 6328 | + } |
| 6329 | + }, |
6238 | 6330 | "/namespaces/{namespace}/workflow-count": { |
6239 | 6331 | "get": { |
6240 | 6332 | "summary": "CountWorkflowExecutions is a visibility API to count of workflow executions in a specific namespace.", |
|
0 commit comments