1010 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
1111 * specific language governing permissions and limitations under the License.
1212 */
13+
1314package com .ibm .cloud .code_engine .code_engine .v2 .model ;
1415
1516import java .util .List ;
@@ -78,6 +79,8 @@ public interface Status {
7879 protected String build ;
7980 @ SerializedName ("build_run" )
8081 protected String buildRun ;
82+ @ SerializedName ("computed_env_variables" )
83+ protected List <EnvVar > computedEnvVariables ;
8184 @ SerializedName ("created_at" )
8285 protected String createdAt ;
8386 protected String endpoint ;
@@ -157,14 +160,26 @@ public String getBuild() {
157160 /**
158161 * Gets the buildRun.
159162 *
160- * Reference to a buildrun that is associated with the application.
163+ * Reference to a build run that is associated with the application.
161164 *
162165 * @return the buildRun
163166 */
164167 public String getBuildRun () {
165168 return buildRun ;
166169 }
167170
171+ /**
172+ * Gets the computedEnvVariables.
173+ *
174+ * References to config maps, secrets or literal values, which are defined and set by Code Engine and are exposed as
175+ * environment variables in the application.
176+ *
177+ * @return the computedEnvVariables
178+ */
179+ public List <EnvVar > getComputedEnvVariables () {
180+ return computedEnvVariables ;
181+ }
182+
168183 /**
169184 * Gets the createdAt.
170185 *
@@ -179,8 +194,8 @@ public String getCreatedAt() {
179194 /**
180195 * Gets the endpoint.
181196 *
182- * Optional URL to invoke app. Depending on visibility this is accessible publicly or in the private network only.
183- * Empty in case 'managed_domain_mappings' is set to 'local'.
197+ * Optional URL to invoke the app. Depending on visibility, this is accessible publicly or in the private network
198+ * only. Empty in case 'managed_domain_mappings' is set to 'local'.
184199 *
185200 * @return the endpoint
186201 */
@@ -191,7 +206,7 @@ public String getEndpoint() {
191206 /**
192207 * Gets the endpointInternal.
193208 *
194- * URL to app that is only visible within the project.
209+ * The URL to the app that is only visible within the project.
195210 *
196211 * @return the endpointInternal
197212 */
@@ -320,7 +335,7 @@ public Probe getProbeReadiness() {
320335 /**
321336 * Gets the projectId.
322337 *
323- * The ID of the project the resource is located in .
338+ * The ID of the project in which the resource is located.
324339 *
325340 * @return the projectId
326341 */
@@ -366,7 +381,7 @@ public List<String> getRunArguments() {
366381 /**
367382 * Gets the runAsUser.
368383 *
369- * Optional user ID (UID) to run the app (e.g., `1001`) .
384+ * Optional user ID (UID) to run the app.
370385 *
371386 * @return the runAsUser
372387 */
@@ -389,8 +404,8 @@ public List<String> getRunCommands() {
389404 /**
390405 * Gets the runEnvVariables.
391406 *
392- * References to config maps, secrets or literal values, which are exposed as environment variables in the
393- * application.
407+ * References to config maps, secrets or literal values, which are defined by the app owner and are exposed as
408+ * environment variables in the application.
394409 *
395410 * @return the runEnvVariables
396411 */
@@ -460,7 +475,7 @@ public String getScaleCpuLimit() {
460475 /**
461476 * Gets the scaleDownDelay.
462477 *
463- * Optional amount of time in seconds that delays the scale down behavior for an app instance.
478+ * Optional amount of time in seconds that delays the scale- down behavior for an app instance.
464479 *
465480 * @return the scaleDownDelay
466481 */
0 commit comments