openapi: 3.0.1 info: title: OpenAPI definition version: v0 servers: - url: "http://localhost:8083" description: Generated server url tags: - name: Actuator description: Monitor and interact externalDocs: description: Spring Boot Actuator Web API Documentation url: "https://docs.spring.io/spring-boot/docs/current/actuator-api/html/" paths: /category: get: tags: - category-controller operationId: getAllMembers responses: "200": description: OK content: application/json: schema: type: object security: [] post: tags: - category-controller operationId: addMember requestBody: content: application/json: schema: type: string required: true responses: "200": description: OK content: '*/*': schema: type: object security: [] /product: get: tags: - product-controller operationId: getAllMembers_1 responses: "200": description: OK content: application/json: schema: type: object post: tags: - product-controller operationId: addMember_1 requestBody: content: application/json: schema: type: string required: true responses: "200": description: OK content: '*/*': schema: type: object /error: get: tags: - basic-error-controller operationId: errorHtml_1_1 responses: "200": description: OK content: text/html: schema: $ref: "#/components/schemas/ModelAndView" '*/*': schema: type: object additionalProperties: type: object put: tags: - basic-error-controller operationId: errorHtml_5_1 responses: "200": description: OK content: text/html: schema: $ref: "#/components/schemas/ModelAndView" '*/*': schema: type: object additionalProperties: type: object post: tags: - basic-error-controller operationId: errorHtml_2_1 responses: "200": description: OK content: text/html: schema: $ref: "#/components/schemas/ModelAndView" '*/*': schema: type: object additionalProperties: type: object delete: tags: - basic-error-controller operationId: errorHtml_3_1 responses: "200": description: OK content: text/html: schema: $ref: "#/components/schemas/ModelAndView" '*/*': schema: type: object additionalProperties: type: object options: tags: - basic-error-controller operationId: errorHtml_7 responses: "200": description: OK content: text/html: schema: $ref: "#/components/schemas/ModelAndView" '*/*': schema: type: object additionalProperties: type: object head: tags: - basic-error-controller operationId: errorHtml_4_1 responses: "200": description: OK content: text/html: schema: $ref: "#/components/schemas/ModelAndView" '*/*': schema: type: object additionalProperties: type: object patch: tags: - basic-error-controller operationId: errorHtml_6_1 responses: "200": description: OK content: text/html: schema: $ref: "#/components/schemas/ModelAndView" '*/*': schema: type: object additionalProperties: type: object /actuator/beans: get: tags: - Actuator summary: Actuator web endpoint 'beans' operationId: handle_0 responses: "200": description: OK content: '*/*': schema: type: object /actuator/caches/{cache}: get: tags: - Actuator summary: Actuator web endpoint 'caches-cache' operationId: handle_4 responses: "200": description: OK content: '*/*': schema: type: object delete: tags: - Actuator summary: Actuator web endpoint 'caches-cache' operationId: handle_1 responses: "200": description: OK content: '*/*': schema: type: object /actuator/caches: get: tags: - Actuator summary: Actuator web endpoint 'caches' operationId: handle_2 responses: "200": description: OK content: '*/*': schema: type: object delete: tags: - Actuator summary: Actuator web endpoint 'caches' operationId: handle_3 responses: "200": description: OK content: '*/*': schema: type: object /actuator/health: get: tags: - Actuator summary: Actuator web endpoint 'health' operationId: handle_5 responses: "200": description: OK content: '*/*': schema: type: object /actuator/health/**: get: tags: - Actuator summary: Actuator web endpoint 'health-path' operationId: handle_6 responses: "200": description: OK content: '*/*': schema: type: object /actuator/info: get: tags: - Actuator summary: Actuator web endpoint 'info' operationId: handle_7 responses: "200": description: OK content: '*/*': schema: type: object /actuator/conditions: get: tags: - Actuator summary: Actuator web endpoint 'conditions' operationId: handle_8 responses: "200": description: OK content: '*/*': schema: type: object /actuator/configprops: get: tags: - Actuator summary: Actuator web endpoint 'configprops' operationId: handle_9 responses: "200": description: OK content: '*/*': schema: type: object /actuator/env/{toMatch}: get: tags: - Actuator summary: Actuator web endpoint 'env-toMatch' operationId: handle_10 responses: "200": description: OK content: '*/*': schema: type: object /actuator/env: get: tags: - Actuator summary: Actuator web endpoint 'env' operationId: handle_11 responses: "200": description: OK content: '*/*': schema: type: object /actuator/loggers: get: tags: - Actuator summary: Actuator web endpoint 'loggers' operationId: handle_12 responses: "200": description: OK content: '*/*': schema: type: object /actuator/loggers/{name}: get: tags: - Actuator summary: Actuator web endpoint 'loggers-name' operationId: handle_14 responses: "200": description: OK content: '*/*': schema: type: object post: tags: - Actuator summary: Actuator web endpoint 'loggers-name' operationId: handle_13 responses: "200": description: OK content: '*/*': schema: type: object /actuator/heapdump: get: tags: - Actuator summary: Actuator web endpoint 'heapdump' operationId: handle_15 responses: "200": description: OK content: '*/*': schema: type: object /actuator/threaddump: get: tags: - Actuator summary: Actuator web endpoint 'threaddump' operationId: handle_16_1_17 responses: "200": description: OK content: '*/*': schema: type: object /actuator/metrics/{requiredMetricName}: get: tags: - Actuator summary: Actuator web endpoint 'metrics-requiredMetricName' operationId: handle_18 responses: "200": description: OK content: '*/*': schema: type: object /actuator/metrics: get: tags: - Actuator summary: Actuator web endpoint 'metrics' operationId: handle_19 responses: "200": description: OK content: '*/*': schema: type: object /actuator/scheduledtasks: get: tags: - Actuator summary: Actuator web endpoint 'scheduledtasks' operationId: handle_20 responses: "200": description: OK content: '*/*': schema: type: object /actuator/mappings: get: tags: - Actuator summary: Actuator web endpoint 'mappings' operationId: handle_21 responses: "200": description: OK content: '*/*': schema: type: object /actuator: get: tags: - Actuator summary: Actuator root web endpoint operationId: links_22 responses: "200": description: OK content: '*/*': schema: type: object additionalProperties: type: object additionalProperties: $ref: "#/components/schemas/Link" components: schemas: ModelAndView: type: object properties: view: $ref: "#/components/schemas/View" model: type: object additionalProperties: type: object status: type: string enum: - 100 CONTINUE - 101 SWITCHING_PROTOCOLS - 102 PROCESSING - 103 CHECKPOINT - 200 OK - 201 CREATED - 202 ACCEPTED - 203 NON_AUTHORITATIVE_INFORMATION - 204 NO_CONTENT - 205 RESET_CONTENT - 206 PARTIAL_CONTENT - 207 MULTI_STATUS - 208 ALREADY_REPORTED - 226 IM_USED - 300 MULTIPLE_CHOICES - 301 MOVED_PERMANENTLY - 302 FOUND - 302 MOVED_TEMPORARILY - 303 SEE_OTHER - 304 NOT_MODIFIED - 305 USE_PROXY - 307 TEMPORARY_REDIRECT - 308 PERMANENT_REDIRECT - 400 BAD_REQUEST - 401 UNAUTHORIZED - 402 PAYMENT_REQUIRED - 403 FORBIDDEN - 404 NOT_FOUND - 405 METHOD_NOT_ALLOWED - 406 NOT_ACCEPTABLE - 407 PROXY_AUTHENTICATION_REQUIRED - 408 REQUEST_TIMEOUT - 409 CONFLICT - 410 GONE - 411 LENGTH_REQUIRED - 412 PRECONDITION_FAILED - 413 PAYLOAD_TOO_LARGE - 413 REQUEST_ENTITY_TOO_LARGE - 414 URI_TOO_LONG - 414 REQUEST_URI_TOO_LONG - 415 UNSUPPORTED_MEDIA_TYPE - 416 REQUESTED_RANGE_NOT_SATISFIABLE - 417 EXPECTATION_FAILED - 418 I_AM_A_TEAPOT - 419 INSUFFICIENT_SPACE_ON_RESOURCE - 420 METHOD_FAILURE - 421 DESTINATION_LOCKED - 422 UNPROCESSABLE_ENTITY - 423 LOCKED - 424 FAILED_DEPENDENCY - 425 TOO_EARLY - 426 UPGRADE_REQUIRED - 428 PRECONDITION_REQUIRED - 429 TOO_MANY_REQUESTS - 431 REQUEST_HEADER_FIELDS_TOO_LARGE - 451 UNAVAILABLE_FOR_LEGAL_REASONS - 500 INTERNAL_SERVER_ERROR - 501 NOT_IMPLEMENTED - 502 BAD_GATEWAY - 503 SERVICE_UNAVAILABLE - 504 GATEWAY_TIMEOUT - 505 HTTP_VERSION_NOT_SUPPORTED - 506 VARIANT_ALSO_NEGOTIATES - 507 INSUFFICIENT_STORAGE - 508 LOOP_DETECTED - 509 BANDWIDTH_LIMIT_EXCEEDED - 510 NOT_EXTENDED - 511 NETWORK_AUTHENTICATION_REQUIRED viewName: type: string reference: type: boolean modelMap: type: object properties: empty: type: boolean additionalProperties: type: object empty: type: boolean View: type: object properties: contentType: type: string Link: type: object properties: href: type: string templated: type: boolean