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/dist/adminapi/apis/event-api.d.ts +55 -0
- package/dist/adminapi/apis/event-api.d.ts.map +1 -1
- package/dist/adminapi/apis/event-api.js +69 -0
- package/dist/adminapi/apis/event-api.js.map +1 -1
- package/dist/adminapi/apis/task-api.d.ts +56 -0
- package/dist/adminapi/apis/task-api.d.ts.map +1 -1
- package/dist/adminapi/apis/task-api.js +69 -0
- package/dist/adminapi/apis/task-api.js.map +1 -1
- package/dist/openapi/apis/event-api.d.ts +63 -0
- package/dist/openapi/apis/event-api.d.ts.map +1 -1
- package/dist/openapi/apis/event-api.js +74 -0
- package/dist/openapi/apis/event-api.js.map +1 -1
- package/dist/openapi/apis/task-api.d.ts +64 -0
- package/dist/openapi/apis/task-api.d.ts.map +1 -1
- package/dist/openapi/apis/task-api.js +74 -0
- package/dist/openapi/apis/task-api.js.map +1 -1
- package/dist/openapi/models/blue-green-deployment-item.d.ts +12 -0
- package/dist/openapi/models/blue-green-deployment-item.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/adminapi/apis/event-api.ts +100 -0
- package/src/adminapi/apis/task-api.ts +102 -0
- package/src/adminapi.yaml +30 -0
- package/src/openapi/apis/event-api.ts +112 -0
- package/src/openapi/apis/task-api.ts +114 -0
- package/src/openapi/models/blue-green-deployment-item.ts +12 -0
- package/src/openapi.yaml +40 -0
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:
|