You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .openapi/kas-fleet-manager.yaml
+6-11Lines changed: 6 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -767,7 +767,8 @@ paths:
767
767
'500':
768
768
content:
769
769
application/json:
770
-
schema: { }
770
+
schema:
771
+
$ref: '#/components/schemas/Error'
771
772
examples:
772
773
500Example:
773
774
$ref: '#/components/examples/500Example'
@@ -813,7 +814,8 @@ paths:
813
814
'500':
814
815
content:
815
816
application/json:
816
-
schema: { }
817
+
schema:
818
+
$ref: '#/components/schemas/Error'
817
819
examples:
818
820
500Example:
819
821
$ref: '#/components/examples/500Example'
@@ -1454,7 +1456,6 @@ components:
1454
1456
description: The ID of the data plane where Kafka is deployed on. This information is only returned for kafka whose billing model is enterprise
1455
1457
type: string
1456
1458
nullable: true
1457
-
1458
1459
promotion_details:
1459
1460
type: string
1460
1461
description: "Details of the Kafka request promotion. It can be set when a Kafka request promotion is in progress or has failed"
@@ -1572,7 +1573,6 @@ components:
1572
1573
description: enterprise OSD cluster ID to be used for kafka creation
1573
1574
type: string
1574
1575
nullable: true
1575
-
1576
1576
KafkaPromoteRequest:
1577
1577
type: object
1578
1578
properties:
@@ -2021,7 +2021,6 @@ components:
2021
2021
description: Schema for the request body sent to /clusters POST
2022
2022
required:
2023
2023
- cluster_id
2024
-
- cluster_external_id
2025
2024
- cluster_ingress_dns_name
2026
2025
- kafka_machine_pool_node_count
2027
2026
- access_kafkas_via_private_network
@@ -2033,9 +2032,6 @@ components:
2033
2032
cluster_id:
2034
2033
description: The data plane cluster ID. This is the ID of the cluster obtained from OpenShift Cluster Manager (OCM) API
2035
2034
type: string
2036
-
cluster_external_id:
2037
-
description: external cluster ID. Can be obtained from the response JSON of OCM get /api/clusters_mgmt/v1/clusters/<cluster_id>
2038
-
type: string
2039
2035
cluster_ingress_dns_name:
2040
2036
description: dns name of the cluster. Can be obtained from the response JSON of the /api/clusters_mgmt/v1/clusters/<cluster_id>/ingresses (dns_name)
2041
2037
type: string
@@ -2198,7 +2194,7 @@ components:
2198
2194
Search criteria.
2199
2195
2200
2196
The syntax of this parameter is similar to the syntax of the `where` clause of an
2201
-
SQL statement. Allowed fields in the search are `cloud_provider`, `name`, `owner`, `region`, and `status`. Allowed comparators are `<>`, `=`, `LIKE`, or `ILIKE`.
2197
+
SQL statement. Allowed fields in the search are `cloud_provider`, `name`, `owner`, `region`, `status` and `cluster_id`. Allowed comparators are `<>`, `=`, `LIKE`, or `ILIKE`.
2202
2198
Allowed joins are `AND` and `OR`. However, you can use a maximum of 10 joins in a search query.
2203
2199
2204
2200
Examples:
@@ -2207,7 +2203,7 @@ components:
2207
2203
2208
2204
```
2209
2205
name = my-kafka and cloud_provider = aws
2210
-
```[p-]
2206
+
```
2211
2207
2212
2208
To return a Kafka instance with a name that starts with `my`, use the following syntax:
0 commit comments