Skip to content

Commit f681d93

Browse files
1 parent 1aa0bba commit f681d93

File tree

6 files changed

+87
-6
lines changed

6 files changed

+87
-6
lines changed

clients/google-api-services-cloudbuild/v2/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-cloudbuild</artifactId>
25-
<version>v2-rev20231031-2.0.0</version>
25+
<version>v2-rev20231109-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-cloudbuild:v2-rev20231031-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudbuild:v2-rev20231109-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudbuild/v2/2.0.0/com/google/api/services/cloudbuild/v2/model/PipelineRun.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@ public final class PipelineRun extends com.google.api.client.json.GenericJson {
8484
@com.google.api.client.util.Key
8585
private java.lang.String etag;
8686

87+
/**
88+
* Output only. FinallyStartTime is when all non-finally tasks have been completed and only
89+
* finally tasks are being executed. +optional
90+
* The value may be {@code null}.
91+
*/
92+
@com.google.api.client.util.Key
93+
private String finallyStartTime;
94+
8795
/**
8896
* Output only. The `PipelineRun` name with format
8997
* `projects/{project}/locations/{location}/pipelineRuns/{pipeline_run}`
@@ -301,6 +309,25 @@ public PipelineRun setEtag(java.lang.String etag) {
301309
return this;
302310
}
303311

312+
/**
313+
* Output only. FinallyStartTime is when all non-finally tasks have been completed and only
314+
* finally tasks are being executed. +optional
315+
* @return value or {@code null} for none
316+
*/
317+
public String getFinallyStartTime() {
318+
return finallyStartTime;
319+
}
320+
321+
/**
322+
* Output only. FinallyStartTime is when all non-finally tasks have been completed and only
323+
* finally tasks are being executed. +optional
324+
* @param finallyStartTime finallyStartTime or {@code null} for none
325+
*/
326+
public PipelineRun setFinallyStartTime(String finallyStartTime) {
327+
this.finallyStartTime = finallyStartTime;
328+
return this;
329+
}
330+
304331
/**
305332
* Output only. The `PipelineRun` name with format
306333
* `projects/{project}/locations/{location}/pipelineRuns/{pipeline_run}`

clients/google-api-services-cloudbuild/v2/2.0.0/com/google/api/services/cloudbuild/v2/model/WorkspaceBinding.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ public final class WorkspaceBinding extends com.google.api.client.json.GenericJs
4444
@com.google.api.client.util.Key
4545
private SecretVolumeSource secret;
4646

47+
/**
48+
* Optional. SubPath is optionally a directory on the volume which should be used for this binding
49+
* (i.e. the volume will be mounted at this sub directory). +optional
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String subPath;
54+
4755
/**
4856
* Volume claim that will be created in the same namespace.
4957
* The value may be {@code null}.
@@ -85,6 +93,25 @@ public WorkspaceBinding setSecret(SecretVolumeSource secret) {
8593
return this;
8694
}
8795

96+
/**
97+
* Optional. SubPath is optionally a directory on the volume which should be used for this binding
98+
* (i.e. the volume will be mounted at this sub directory). +optional
99+
* @return value or {@code null} for none
100+
*/
101+
public java.lang.String getSubPath() {
102+
return subPath;
103+
}
104+
105+
/**
106+
* Optional. SubPath is optionally a directory on the volume which should be used for this binding
107+
* (i.e. the volume will be mounted at this sub directory). +optional
108+
* @param subPath subPath or {@code null} for none
109+
*/
110+
public WorkspaceBinding setSubPath(java.lang.String subPath) {
111+
this.subPath = subPath;
112+
return this;
113+
}
114+
88115
/**
89116
* Volume claim that will be created in the same namespace.
90117
* @return value or {@code null} for none

clients/google-api-services-cloudbuild/v2/2.0.0/com/google/api/services/cloudbuild/v2/model/WorkspacePipelineTaskBinding.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class WorkspacePipelineTaskBinding extends com.google.api.client.js
3737
@com.google.api.client.util.Key
3838
private java.lang.String name;
3939

40+
/**
41+
* Optional. SubPath is optionally a directory on the volume which should be used for this binding
42+
* (i.e. the volume will be mounted at this sub directory). +optional
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String subPath;
47+
4048
/**
4149
* Name of the workspace declared by the pipeline.
4250
* The value may be {@code null}.
@@ -61,6 +69,25 @@ public WorkspacePipelineTaskBinding setName(java.lang.String name) {
6169
return this;
6270
}
6371

72+
/**
73+
* Optional. SubPath is optionally a directory on the volume which should be used for this binding
74+
* (i.e. the volume will be mounted at this sub directory). +optional
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getSubPath() {
78+
return subPath;
79+
}
80+
81+
/**
82+
* Optional. SubPath is optionally a directory on the volume which should be used for this binding
83+
* (i.e. the volume will be mounted at this sub directory). +optional
84+
* @param subPath subPath or {@code null} for none
85+
*/
86+
public WorkspacePipelineTaskBinding setSubPath(java.lang.String subPath) {
87+
this.subPath = subPath;
88+
return this;
89+
}
90+
6491
/**
6592
* Name of the workspace declared by the pipeline.
6693
* @return value or {@code null} for none

clients/google-api-services-cloudbuild/v2/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-cloudbuild</artifactId>
11-
<version>v2-rev20231031-2.0.0</version>
12-
<name>Cloud Build API v2-rev20231031-2.0.0</name>
11+
<version>v2-rev20231109-2.0.0</version>
12+
<name>Cloud Build API v2-rev20231109-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudbuild/v2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-cloudbuild</artifactId>
25-
<version>v2-rev20231031-2.0.0</version>
25+
<version>v2-rev20231109-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-cloudbuild:v2-rev20231031-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudbuild:v2-rev20231109-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)