11openapi : 3.0.0
22info :
33 title : HyperFleet API
4- version : 1.0.9
4+ version : 1.0.10
55 contact :
66 name : HyperFleet Team
77 license :
@@ -500,6 +500,7 @@ paths:
500500 - name : nodepool_id
501501 in : path
502502 required : true
503+ description : Nodepool ID
503504 schema :
504505 type : string
505506 responses :
@@ -521,6 +522,45 @@ paths:
521522 application/json :
522523 schema :
523524 $ref : ' #/components/schemas/AdapterStatusCreateRequest'
525+ security :
526+ - BearerAuth : []
527+ put :
528+ operationId : putNodePoolStatuses
529+ summary : Adapter creates or updates resource nodepool status
530+ parameters :
531+ - name : cluster_id
532+ in : path
533+ required : true
534+ description : Cluster ID
535+ schema :
536+ type : string
537+ - name : nodepool_id
538+ in : path
539+ required : true
540+ description : Nodepool ID
541+ schema :
542+ type : string
543+ responses :
544+ ' 201 ' :
545+ description : The request has succeeded and a new resource has been created as a result.
546+ content :
547+ application/json :
548+ schema :
549+ $ref : ' #/components/schemas/AdapterStatus'
550+ ' 400 ' :
551+ description : The server could not understand the request due to invalid syntax.
552+ ' 404 ' :
553+ description : The server cannot find the requested resource.
554+ ' 409 ' :
555+ description : The request conflicts with the current state of the server.
556+ requestBody :
557+ required : true
558+ content :
559+ application/json :
560+ schema :
561+ $ref : ' #/components/schemas/AdapterStatusCreateRequest'
562+ security :
563+ - BearerAuth : []
524564 get :
525565 operationId : getNodePoolsStatuses
526566 summary : List all adapter statuses for nodepools
@@ -595,6 +635,37 @@ paths:
595635 $ref : ' #/components/schemas/AdapterStatusCreateRequest'
596636 security :
597637 - BearerAuth : []
638+ put :
639+ operationId : putClusterStatuses
640+ summary : Adapter creates or updates resource cluster status
641+ parameters :
642+ - name : cluster_id
643+ in : path
644+ required : true
645+ description : Cluster ID
646+ schema :
647+ type : string
648+ responses :
649+ ' 201 ' :
650+ description : The request has succeeded and a new resource has been created as a result.
651+ content :
652+ application/json :
653+ schema :
654+ $ref : ' #/components/schemas/AdapterStatus'
655+ ' 400 ' :
656+ description : The server could not understand the request due to invalid syntax.
657+ ' 404 ' :
658+ description : The server cannot find the requested resource.
659+ ' 409 ' :
660+ description : The request conflicts with the current state of the server.
661+ requestBody :
662+ required : true
663+ content :
664+ application/json :
665+ schema :
666+ $ref : ' #/components/schemas/AdapterStatusCreateRequest'
667+ security :
668+ - BearerAuth : []
598669 get :
599670 operationId : getClusterStatuses
600671 summary : List all adapter statuses for cluster
0 commit comments