Interface AddonRegistryApi


public interface AddonRegistryApi
  • Method Details

    • listAddonRegistry

      @GetMapping("/api/v1/addon_registries") org.springframework.http.ResponseEntity<V1ListAddonRegistryResponse> listAddonRegistry()
    • createAddonRegistry

      @PostMapping("/api/v1/addon_registries") org.springframework.http.ResponseEntity<V1AddonRegistry> createAddonRegistry(@RequestBody V1CreateAddonRegistryRequest body)
    • updateAddonRegistry

      @PutMapping("/api/v1/addon_registries/{addonRegName}") org.springframework.http.ResponseEntity<V1AddonRegistry> updateAddonRegistry(@RequestBody V1UpdateAddonRegistryRequest body, @PathVariable("addonRegName") String addonRegName)
    • deleteAddonRegistry

      @DeleteMapping("/api/v1/addon_registries/{addonRegName}") org.springframework.http.ResponseEntity<V1AddonRegistry> deleteAddonRegistry(@PathVariable("addonRegName") String addonRegName)