Skip to content

Commit 21bb50a

Browse files
cgarrett-edwardsGitHub Enterprise
authored andcommitted
feat(api): SDK update 20240126-142534 (#70)
1 parent e82fcfc commit 21bb50a

2 files changed

Lines changed: 33 additions & 8 deletions

File tree

  • modules/code-engine/src

modules/code-engine/src/main/java/com/ibm/cloud/code_engine/code_engine/v2/model/Job.java

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ public interface RunServiceAccount {
5959
String NONE = "none";
6060
}
6161

62+
protected String build;
63+
@SerializedName("build_run")
64+
protected String buildRun;
6265
@SerializedName("created_at")
6366
protected String createdAt;
6467
@SerializedName("entity_tag")
@@ -104,6 +107,28 @@ public interface RunServiceAccount {
104107

105108
protected Job() { }
106109

110+
/**
111+
* Gets the build.
112+
*
113+
* Reference to a build that is associated with the job.
114+
*
115+
* @return the build
116+
*/
117+
public String getBuild() {
118+
return build;
119+
}
120+
121+
/**
122+
* Gets the buildRun.
123+
*
124+
* Reference to a buildrun that is associated with the job.
125+
*
126+
* @return the buildRun
127+
*/
128+
public String getBuildRun() {
129+
return buildRun;
130+
}
131+
107132
/**
108133
* Gets the createdAt.
109134
*

0 commit comments

Comments
 (0)