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
description: A conflict has been detected in the creation of this resource
961
+
"500":
962
+
content:
963
+
application/json:
964
+
schema:
965
+
$ref: '#/components/schemas/Error'
966
+
examples:
967
+
500Example:
968
+
$ref: '#/components/examples/500Example'
969
+
description: An unexpected error occurred while registering Enterprise cluster
970
+
security:
971
+
- Bearer: [ ]
899
972
900
973
components:
901
974
schemas:
@@ -1549,6 +1622,48 @@ components:
1549
1622
description: Whether connection reauthentication is enabled or not. If set to true, connection reauthentication on the Kafka instance will be required every 5 minutes.
1550
1623
type: boolean
1551
1624
nullable: true
1625
+
EnterpriseOsdClusterPayload:
1626
+
description: Schema for the request body sent to /clusters POST
1627
+
required:
1628
+
- cluster_id
1629
+
- cluster_external_id
1630
+
- cluster_ingress_dns_name
1631
+
type: object
1632
+
properties:
1633
+
cluster_id:
1634
+
description: OSD cluster ID
1635
+
type: string
1636
+
cluster_external_id:
1637
+
description: external cluster ID. Can be obtained from the response JSON of ocm get /api/clusters_mgmt/v1/clusters/<cluster_id>
1638
+
type: string
1639
+
cluster_ingress_dns_name:
1640
+
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)
0 commit comments