diff --git a/main.tsp b/main.tsp index 9ac4066..44f58d7 100644 --- a/main.tsp +++ b/main.tsp @@ -20,7 +20,7 @@ using OpenAPI; * */ @service(#{ title: "HyperFleet API" }) -@info(#{ version: "1.0.9", contact: #{ name: "HyperFleet Team" }, license: #{ name: "Apache 2.0" ,url: "https://www.apache.org/licenses/LICENSE-2.0"} }) +@info(#{ version: "1.0.10", contact: #{ name: "HyperFleet Team" }, license: #{ name: "Apache 2.0" ,url: "https://www.apache.org/licenses/LICENSE-2.0"} }) @server("https://hyperfleet.redhat.com", "Production") @route("/api/hyperfleet/v1") namespace HyperFleet; diff --git a/schemas/core/openapi.yaml b/schemas/core/openapi.yaml index d865c3f..ccf414e 100644 --- a/schemas/core/openapi.yaml +++ b/schemas/core/openapi.yaml @@ -1,7 +1,7 @@ openapi: 3.0.0 info: title: HyperFleet API - version: 1.0.9 + version: 1.0.10 contact: name: HyperFleet Team license: @@ -692,7 +692,7 @@ paths: /api/hyperfleet/v1/nodepools: get: operationId: getNodePools - summary: List all nodepools for cluster + summary: List all nodepools for clusterr description: Returns the list of all nodepools parameters: - $ref: '#/components/parameters/SearchParams' diff --git a/schemas/core/swagger.yaml b/schemas/core/swagger.yaml index 8d510ec..77a4fc4 100644 --- a/schemas/core/swagger.yaml +++ b/schemas/core/swagger.yaml @@ -16,7 +16,7 @@ info: name: Apache 2.0 url: 'https://www.apache.org/licenses/LICENSE-2.0' title: HyperFleet API - version: 1.0.9 + version: 1.0.10 host: hyperfleet.redhat.com basePath: / schemes: @@ -910,7 +910,7 @@ paths: - BearerAuth: [] description: Returns the list of all nodepools operationId: getNodePools - summary: List all nodepools for cluster + summary: List all nodepools for clusterr definitions: AdapterCondition: description: >- diff --git a/schemas/gcp/openapi.yaml b/schemas/gcp/openapi.yaml index 2770707..0a096ec 100644 --- a/schemas/gcp/openapi.yaml +++ b/schemas/gcp/openapi.yaml @@ -1,7 +1,7 @@ openapi: 3.0.0 info: title: HyperFleet API - version: 1.0.9 + version: 1.0.10 contact: name: HyperFleet Team license: @@ -582,7 +582,7 @@ paths: /api/hyperfleet/v1/nodepools: get: operationId: getNodePools - summary: List all nodepools for cluster + summary: List all nodepools for clusterr description: Returns the list of all nodepools parameters: - $ref: '#/components/parameters/SearchParams' diff --git a/schemas/gcp/swagger.yaml b/schemas/gcp/swagger.yaml index 8879c90..2f389db 100644 --- a/schemas/gcp/swagger.yaml +++ b/schemas/gcp/swagger.yaml @@ -16,7 +16,7 @@ info: name: Apache 2.0 url: 'https://www.apache.org/licenses/LICENSE-2.0' title: HyperFleet API - version: 1.0.9 + version: 1.0.10 host: hyperfleet.redhat.com basePath: / schemes: @@ -779,7 +779,7 @@ paths: - BearerAuth: [] description: Returns the list of all nodepools operationId: getNodePools - summary: List all nodepools for cluster + summary: List all nodepools for clusterr definitions: AcceleratorSpec: properties: diff --git a/services/nodepools.tsp b/services/nodepools.tsp index eff741c..656a12e 100644 --- a/services/nodepools.tsp +++ b/services/nodepools.tsp @@ -18,7 +18,7 @@ interface NodePools { */ @route("/nodepools") @get - @summary("List all nodepools for cluster") + @summary("List all nodepools for clusterr") @operationId("getNodePools") getNodePools(...QueryParams): Body | Error