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

Commit

Permalink
feat(dedicatedCloud): add global task route
Browse files Browse the repository at this point in the history
  • Loading branch information
marie-j committed Aug 6, 2018
1 parent e2c2773 commit eea022c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/dedicatedCloud/task/dedicatedCloud-task.v6.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,29 @@ angular.module("ovh-api-services").service("OvhApiDedicatedCloudTaskV6", functio
state: "@state"
}
},
getGlobalTasks: {
url: "/dedicatedCloud/:serviceName/globalTasks",
method: "GET",
isArray: true,
queryParams: {
datacenterId: "@datacenterId",
"endDate.from": "@endDate.from",
"endDate.to": "@endDate.to",
"executionDate.from": "@executionDate.from",
"executionDate.to": "@executionDate.to",
filerId: "@filerId",
hostId: "@hostId",
"lastModificationDate.from": "@lastModificationDate.from",
"lastModificationDate.to": "@lastModificationDate.to",
name: "@name",
networkAccessId: "@networkAccessId",
orderId: "@orderId",
parentTaskId: "@parentTaskId",
state: "@state",
userId: "@userId",
vlanId: "@vlanId"
}
},
changeMaintenanceExecutionDate: {
url: baseURL + "/changeMaintenanceExecutionDate",
method: "POST",
Expand Down

0 comments on commit eea022c

Please sign in to comment.