Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
feat(dedicatedCloud.servicePacks): update api bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
FredericEspiau authored and antleblanc committed Jun 20, 2019
1 parent 645db71 commit 59c9d51
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,13 @@ angular
var queryCache = $cacheFactory("OvhApiDedicatedCloudServicePacksV6Query");
var cache = $cacheFactory("OvhApiDedicatedCloudServicePacksV6");

var servicePacksResource = $resource("/dedicatedCloud/:serviceName/servicePacks", {
var servicePacksResource = $resource("/dedicatedCloud/:serviceName/servicePacks/:name", {
name: "@name",
serviceName: "@serviceName"
}, {
get: {
cache: cache,
method: "GET",
params: {
name: "@name"
},
url: "/dedicatedCloud/:serviceName/servicePacks/:name"
method: "GET"
},
query: {
cache: queryCache,
Expand Down

0 comments on commit 59c9d51

Please sign in to comment.