kb-cloud-client-typescript 2.3.0-alpha.178 → 2.3.0-alpha.180

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/openapi.yaml CHANGED
@@ -8561,6 +8561,42 @@ paths:
8561
8561
  $ref: '#/components/responses/500'
8562
8562
  tags:
8563
8563
  - task
8564
+ /api/v1/organizations/{orgName}/tasks/{taskId}/events:
8565
+ get:
8566
+ summary: List operation events related to a task
8567
+ description: List operation events whose recorded response contains the task ID.
8568
+ operationId: listTaskEvents
8569
+ parameters:
8570
+ - description: Organization name
8571
+ in: path
8572
+ name: orgName
8573
+ required: true
8574
+ schema:
8575
+ type: string
8576
+ - description: ID of the task
8577
+ in: path
8578
+ name: taskId
8579
+ required: true
8580
+ schema:
8581
+ type: string
8582
+ responses:
8583
+ '200':
8584
+ description: Operation events related to the task
8585
+ content:
8586
+ application/json:
8587
+ schema:
8588
+ $ref: '#/components/schemas/eventList'
8589
+ '400':
8590
+ $ref: '#/components/responses/400'
8591
+ '401':
8592
+ $ref: '#/components/responses/401'
8593
+ '403':
8594
+ $ref: '#/components/responses/403'
8595
+ '500':
8596
+ $ref: '#/components/responses/500'
8597
+ tags:
8598
+ - task
8599
+ - event
8564
8600
  /api/v1/organizations/{orgName}/tasks/{taskId}/cancel:
8565
8601
  post:
8566
8602
  summary: Cancel a task
@@ -35437,6 +35473,10 @@ components:
35437
35473
  deploymentName:
35438
35474
  description: The name of the blue-green deployment.
35439
35475
  type: string
35476
+ blueClusterVersion:
35477
+ type: string
35478
+ greenClusterVersion:
35479
+ type: string
35440
35480
  blueCluster:
35441
35481
  $ref: '#/components/schemas/clusterListItem'
35442
35482
  greenCluster: