12345678910111213141516171819202122232425262728293031 |
- ---
- swagger: '2.0'
- info:
- version: 1.0.0
- title: GeoWebCache Reloading
- description: Reloading a GeoWebCache instance after changing configurations.
- contact:
- name: GeoServer
- email: 'geoserver-users@osgeo.org'
- url: 'https://geoserver.org/comm/'
- host: localhost:8080
- schemes:
- - http
- basePath: /geoserver/gwc/rest
- paths:
- /reload:
- post:
- operationId: reloadPost
- tags:
- - "GwcReload"
- summary: Reloads GWC settings/
- description: Reloads the GeoWebCache settings after making changes to the configuration.
- parameters:
- - name: configurationName
- in: body
- description: The string value of the configuration ie. "reload_configuration=1"
- schema:
- type: string
- responses:
- 200:
- description: OK
|