Skip to content

Commit 7d86fd0

Browse files
1 parent b0654f7 commit 7d86fd0

18 files changed

+882
-12
lines changed

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

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/model/GoogleDevtoolsCloudbuildV1Artifacts.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GoogleDevtoolsCloudbuildV1Artifacts extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Optional. A list of generic artifacts to be uploaded to Artifact Registry upon successful
35+
* completion of all build steps. If any artifacts fail to be pushed, the build is marked FAILURE.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<GoogleDevtoolsCloudbuildV1GenericArtifact> genericArtifacts;
40+
3341
/**
3442
* Optional. A list of Go modules to be uploaded to Artifact Registry upon successful completion
3543
* of all build steps. If any objects fail to be pushed, the build is marked FAILURE.
@@ -98,6 +106,25 @@ public final class GoogleDevtoolsCloudbuildV1Artifacts extends com.google.api.cl
98106
@com.google.api.client.util.Key
99107
private java.util.List<GoogleDevtoolsCloudbuildV1PythonPackage> pythonPackages;
100108

109+
/**
110+
* Optional. A list of generic artifacts to be uploaded to Artifact Registry upon successful
111+
* completion of all build steps. If any artifacts fail to be pushed, the build is marked FAILURE.
112+
* @return value or {@code null} for none
113+
*/
114+
public java.util.List<GoogleDevtoolsCloudbuildV1GenericArtifact> getGenericArtifacts() {
115+
return genericArtifacts;
116+
}
117+
118+
/**
119+
* Optional. A list of generic artifacts to be uploaded to Artifact Registry upon successful
120+
* completion of all build steps. If any artifacts fail to be pushed, the build is marked FAILURE.
121+
* @param genericArtifacts genericArtifacts or {@code null} for none
122+
*/
123+
public GoogleDevtoolsCloudbuildV1Artifacts setGenericArtifacts(java.util.List<GoogleDevtoolsCloudbuildV1GenericArtifact> genericArtifacts) {
124+
this.genericArtifacts = genericArtifacts;
125+
return this;
126+
}
127+
101128
/**
102129
* Optional. A list of Go modules to be uploaded to Artifact Registry upon successful completion
103130
* of all build steps. If any objects fail to be pushed, the build is marked FAILURE.

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/model/GoogleDevtoolsCloudbuildV1Dependency.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class GoogleDevtoolsCloudbuildV1Dependency extends com.google.api.c
3636
@com.google.api.client.util.Key
3737
private java.lang.Boolean empty;
3838

39+
/**
40+
* Represents a generic artifact as a build dependency.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private GoogleDevtoolsCloudbuildV1GenericArtifactDependency genericArtifact;
45+
3946
/**
4047
* Represents a git repository as a build dependency.
4148
* The value may be {@code null}.
@@ -60,6 +67,23 @@ public GoogleDevtoolsCloudbuildV1Dependency setEmpty(java.lang.Boolean empty) {
6067
return this;
6168
}
6269

70+
/**
71+
* Represents a generic artifact as a build dependency.
72+
* @return value or {@code null} for none
73+
*/
74+
public GoogleDevtoolsCloudbuildV1GenericArtifactDependency getGenericArtifact() {
75+
return genericArtifact;
76+
}
77+
78+
/**
79+
* Represents a generic artifact as a build dependency.
80+
* @param genericArtifact genericArtifact or {@code null} for none
81+
*/
82+
public GoogleDevtoolsCloudbuildV1Dependency setGenericArtifact(GoogleDevtoolsCloudbuildV1GenericArtifactDependency genericArtifact) {
83+
this.genericArtifact = genericArtifact;
84+
return this;
85+
}
86+
6387
/**
6488
* Represents a git repository as a build dependency.
6589
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.run.v1.model;
18+
19+
/**
20+
* Generic artifact to upload to Artifact Registry upon successful completion of all build steps.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Run Admin API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleDevtoolsCloudbuildV1GenericArtifact extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Path to the generic artifact in the build's workspace to be uploaded to Artifact
34+
* Registry.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String folder;
39+
40+
/**
41+
* Required. Registry path to upload the generic artifact to, in the form
42+
* projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/versions/$VERSION
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String registryPath;
47+
48+
/**
49+
* Required. Path to the generic artifact in the build's workspace to be uploaded to Artifact
50+
* Registry.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getFolder() {
54+
return folder;
55+
}
56+
57+
/**
58+
* Required. Path to the generic artifact in the build's workspace to be uploaded to Artifact
59+
* Registry.
60+
* @param folder folder or {@code null} for none
61+
*/
62+
public GoogleDevtoolsCloudbuildV1GenericArtifact setFolder(java.lang.String folder) {
63+
this.folder = folder;
64+
return this;
65+
}
66+
67+
/**
68+
* Required. Registry path to upload the generic artifact to, in the form
69+
* projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/versions/$VERSION
70+
* @return value or {@code null} for none
71+
*/
72+
public java.lang.String getRegistryPath() {
73+
return registryPath;
74+
}
75+
76+
/**
77+
* Required. Registry path to upload the generic artifact to, in the form
78+
* projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/versions/$VERSION
79+
* @param registryPath registryPath or {@code null} for none
80+
*/
81+
public GoogleDevtoolsCloudbuildV1GenericArtifact setRegistryPath(java.lang.String registryPath) {
82+
this.registryPath = registryPath;
83+
return this;
84+
}
85+
86+
@Override
87+
public GoogleDevtoolsCloudbuildV1GenericArtifact set(String fieldName, Object value) {
88+
return (GoogleDevtoolsCloudbuildV1GenericArtifact) super.set(fieldName, value);
89+
}
90+
91+
@Override
92+
public GoogleDevtoolsCloudbuildV1GenericArtifact clone() {
93+
return (GoogleDevtoolsCloudbuildV1GenericArtifact) super.clone();
94+
}
95+
96+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.run.v1.model;
18+
19+
/**
20+
* Represents a generic artifact as a build dependency.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Run Admin API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class GoogleDevtoolsCloudbuildV1GenericArtifactDependency extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. Where the artifact files should be placed on the worker.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String destPath;
38+
39+
/**
40+
* Required. The location to download the artifact files from. Ex:
41+
* projects/p1/locations/us/repositories/r1/packages/p1/versions/v1
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String resource;
46+
47+
/**
48+
* Required. Where the artifact files should be placed on the worker.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getDestPath() {
52+
return destPath;
53+
}
54+
55+
/**
56+
* Required. Where the artifact files should be placed on the worker.
57+
* @param destPath destPath or {@code null} for none
58+
*/
59+
public GoogleDevtoolsCloudbuildV1GenericArtifactDependency setDestPath(java.lang.String destPath) {
60+
this.destPath = destPath;
61+
return this;
62+
}
63+
64+
/**
65+
* Required. The location to download the artifact files from. Ex:
66+
* projects/p1/locations/us/repositories/r1/packages/p1/versions/v1
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getResource() {
70+
return resource;
71+
}
72+
73+
/**
74+
* Required. The location to download the artifact files from. Ex:
75+
* projects/p1/locations/us/repositories/r1/packages/p1/versions/v1
76+
* @param resource resource or {@code null} for none
77+
*/
78+
public GoogleDevtoolsCloudbuildV1GenericArtifactDependency setResource(java.lang.String resource) {
79+
this.resource = resource;
80+
return this;
81+
}
82+
83+
@Override
84+
public GoogleDevtoolsCloudbuildV1GenericArtifactDependency set(String fieldName, Object value) {
85+
return (GoogleDevtoolsCloudbuildV1GenericArtifactDependency) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public GoogleDevtoolsCloudbuildV1GenericArtifactDependency clone() {
90+
return (GoogleDevtoolsCloudbuildV1GenericArtifactDependency) super.clone();
91+
}
92+
93+
}

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/model/GoogleDevtoolsCloudbuildV1Results.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ public final class GoogleDevtoolsCloudbuildV1Results extends com.google.api.clie
6161
@com.google.api.client.util.Key
6262
private java.util.List<java.lang.String> buildStepOutputs;
6363

64+
/**
65+
* Output only. Generic artifacts uploaded to Artifact Registry at the end of the build.
66+
* The value may be {@code null}.
67+
*/
68+
@com.google.api.client.util.Key
69+
private java.util.List<GoogleDevtoolsCloudbuildV1UploadedGenericArtifact> genericArtifacts;
70+
6471
/**
6572
* Optional. Go module artifacts uploaded to Artifact Registry at the end of the build.
6673
* The value may be {@code null}.
@@ -186,6 +193,23 @@ public GoogleDevtoolsCloudbuildV1Results setBuildStepOutputs(java.util.List<java
186193
return this;
187194
}
188195

196+
/**
197+
* Output only. Generic artifacts uploaded to Artifact Registry at the end of the build.
198+
* @return value or {@code null} for none
199+
*/
200+
public java.util.List<GoogleDevtoolsCloudbuildV1UploadedGenericArtifact> getGenericArtifacts() {
201+
return genericArtifacts;
202+
}
203+
204+
/**
205+
* Output only. Generic artifacts uploaded to Artifact Registry at the end of the build.
206+
* @param genericArtifacts genericArtifacts or {@code null} for none
207+
*/
208+
public GoogleDevtoolsCloudbuildV1Results setGenericArtifacts(java.util.List<GoogleDevtoolsCloudbuildV1UploadedGenericArtifact> genericArtifacts) {
209+
this.genericArtifacts = genericArtifacts;
210+
return this;
211+
}
212+
189213
/**
190214
* Optional. Go module artifacts uploaded to Artifact Registry at the end of the build.
191215
* @return value or {@code null} for none

0 commit comments

Comments
 (0)