Skip to content

Commit

Permalink
Update jobs and services to latest API additions
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Oct 16, 2023
1 parent a550fa6 commit f9353f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Job extends BaseEntity {
* @param {string} jobId - The batch job ID.
*/
constructor(connection, jobId) {
super(connection, ["id", "title", "description", "process", "status", "progress", "created", "updated", "plan", "costs", "budget"]);
super(connection, ["id", "title", "description", "process", "status", "progress", "created", "updated", "plan", "costs", "budget", "usage", ["log_level", "logLevel"], "links"]);
/**
* The identifier of the batch job.
* @public
Expand Down
2 changes: 1 addition & 1 deletion src/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Service extends BaseEntity {
* @param {string} serviceId - The service ID.
*/
constructor(connection, serviceId) {
super(connection, ["id", "title", "description", "process", "url", "type", "enabled", "configuration", "attributes", "created", "plan", "costs", "budget"]);
super(connection, ["id", "title", "description", "process", "url", "type", "enabled", "configuration", "attributes", "created", "plan", "costs", "budget", "usage", ["log_level", "logLevel"], "links"]);
/**
* The identifier of the service.
* @public
Expand Down

0 comments on commit f9353f6

Please sign in to comment.