Skip to content

Commit 3ab3ab7

Browse files
1 parent b47aa1e commit 3ab3ab7

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

clients/google-api-services-cloudbuild/v1/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>v1-rev20251111-2.0.0</version>
25+
<version>v1-rev20251125-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:v1-rev20251111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudbuild:v1-rev20251125-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudbuild/v1/2.0.0/com/google/api/services/cloudbuild/v1/model/MavenArtifact.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ public final class MavenArtifact extends com.google.api.client.json.GenericJson
3636
@com.google.api.client.util.Key
3737
private java.lang.String artifactId;
3838

39+
/**
40+
* Optional. Path to a folder containing the files to upload to Artifact Registry. This can be
41+
* either an absolute path, e.g. `/workspace/my-app/target/`, or a relative path from /workspace,
42+
* e.g. `my-app/target/`. This field is mutually exclusive with the `path` field.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String deployFolder;
47+
3948
/**
4049
* Maven `groupId` value used when uploading the artifact to Artifact Registry.
4150
* The value may be {@code null}.
@@ -85,6 +94,27 @@ public MavenArtifact setArtifactId(java.lang.String artifactId) {
8594
return this;
8695
}
8796

97+
/**
98+
* Optional. Path to a folder containing the files to upload to Artifact Registry. This can be
99+
* either an absolute path, e.g. `/workspace/my-app/target/`, or a relative path from /workspace,
100+
* e.g. `my-app/target/`. This field is mutually exclusive with the `path` field.
101+
* @return value or {@code null} for none
102+
*/
103+
public java.lang.String getDeployFolder() {
104+
return deployFolder;
105+
}
106+
107+
/**
108+
* Optional. Path to a folder containing the files to upload to Artifact Registry. This can be
109+
* either an absolute path, e.g. `/workspace/my-app/target/`, or a relative path from /workspace,
110+
* e.g. `my-app/target/`. This field is mutually exclusive with the `path` field.
111+
* @param deployFolder deployFolder or {@code null} for none
112+
*/
113+
public MavenArtifact setDeployFolder(java.lang.String deployFolder) {
114+
this.deployFolder = deployFolder;
115+
return this;
116+
}
117+
88118
/**
89119
* Maven `groupId` value used when uploading the artifact to Artifact Registry.
90120
* @return value or {@code null} for none

clients/google-api-services-cloudbuild/v1/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>v1-rev20251111-2.0.0</version>
12-
<name>Cloud Build API v1-rev20251111-2.0.0</name>
11+
<version>v1-rev20251125-2.0.0</version>
12+
<name>Cloud Build API v1-rev20251125-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudbuild/v1/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>v1-rev20251111-2.0.0</version>
25+
<version>v1-rev20251125-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:v1-rev20251111-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudbuild:v1-rev20251125-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)