Skip to content

Commit 4cd781c

Browse files
1 parent f81607d commit 4cd781c

25 files changed

+1209
-21
lines changed

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

clients/google-api-services-containeranalysis/v1/2.0.0/com/google/api/services/containeranalysis/v1/model/ContaineranalysisGoogleDevtoolsCloudbuildV1Build.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,13 @@ public final class ContaineranalysisGoogleDevtoolsCloudbuildV1Build extends com.
7676
@com.google.api.client.util.Key
7777
private String createTime;
7878

79+
/**
80+
* Optional. Dependencies that the Cloud Build worker will fetch before executing user steps.
81+
* The value may be {@code null}.
82+
*/
83+
@com.google.api.client.util.Key
84+
private java.util.List<ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency> dependencies;
85+
7986
/**
8087
* Output only. Contains information about the build when status=FAILURE.
8188
* The value may be {@code null}.
@@ -360,6 +367,23 @@ public ContaineranalysisGoogleDevtoolsCloudbuildV1Build setCreateTime(String cre
360367
return this;
361368
}
362369

370+
/**
371+
* Optional. Dependencies that the Cloud Build worker will fetch before executing user steps.
372+
* @return value or {@code null} for none
373+
*/
374+
public java.util.List<ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency> getDependencies() {
375+
return dependencies;
376+
}
377+
378+
/**
379+
* Optional. Dependencies that the Cloud Build worker will fetch before executing user steps.
380+
* @param dependencies dependencies or {@code null} for none
381+
*/
382+
public ContaineranalysisGoogleDevtoolsCloudbuildV1Build setDependencies(java.util.List<ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency> dependencies) {
383+
this.dependencies = dependencies;
384+
return this;
385+
}
386+
363387
/**
364388
* Output only. Contains information about the build when status=FAILURE.
365389
* @return value or {@code null} for none

clients/google-api-services-containeranalysis/v1/2.0.0/com/google/api/services/containeranalysis/v1/model/ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,13 @@ public final class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions exten
112112
@com.google.api.client.util.Key
113113
private ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption pool;
114114

115+
/**
116+
* Optional. Option to specify the Pub/Sub topic to receive build status updates.
117+
* The value may be {@code null}.
118+
*/
119+
@com.google.api.client.util.Key
120+
private java.lang.String pubsubTopic;
121+
115122
/**
116123
* Requested verifiability options.
117124
* The value may be {@code null}.
@@ -356,6 +363,23 @@ public ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions setPool(Container
356363
return this;
357364
}
358365

366+
/**
367+
* Optional. Option to specify the Pub/Sub topic to receive build status updates.
368+
* @return value or {@code null} for none
369+
*/
370+
public java.lang.String getPubsubTopic() {
371+
return pubsubTopic;
372+
}
373+
374+
/**
375+
* Optional. Option to specify the Pub/Sub topic to receive build status updates.
376+
* @param pubsubTopic pubsubTopic or {@code null} for none
377+
*/
378+
public ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions setPubsubTopic(java.lang.String pubsubTopic) {
379+
this.pubsubTopic = pubsubTopic;
380+
return this;
381+
}
382+
359383
/**
360384
* Requested verifiability options.
361385
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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.containeranalysis.v1.model;
18+
19+
/**
20+
* A dependency that the Cloud Build worker will fetch before executing user 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 Container Analysis API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* If set to true disable all dependency fetching (ignoring the default source as well).
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean empty;
39+
40+
/**
41+
* Represents a git repository as a build dependency.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency gitSource;
46+
47+
/**
48+
* If set to true disable all dependency fetching (ignoring the default source as well).
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Boolean getEmpty() {
52+
return empty;
53+
}
54+
55+
/**
56+
* If set to true disable all dependency fetching (ignoring the default source as well).
57+
* @param empty empty or {@code null} for none
58+
*/
59+
public ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency setEmpty(java.lang.Boolean empty) {
60+
this.empty = empty;
61+
return this;
62+
}
63+
64+
/**
65+
* Represents a git repository as a build dependency.
66+
* @return value or {@code null} for none
67+
*/
68+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency getGitSource() {
69+
return gitSource;
70+
}
71+
72+
/**
73+
* Represents a git repository as a build dependency.
74+
* @param gitSource gitSource or {@code null} for none
75+
*/
76+
public ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency setGitSource(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency gitSource) {
77+
this.gitSource = gitSource;
78+
return this;
79+
}
80+
81+
@Override
82+
public ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency set(String fieldName, Object value) {
83+
return (ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency clone() {
88+
return (ContaineranalysisGoogleDevtoolsCloudbuildV1Dependency) super.clone();
89+
}
90+
91+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
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.containeranalysis.v1.model;
18+
19+
/**
20+
* Represents a git repository 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 Container Analysis API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. How much history should be fetched for the build (default 1, -1 for all history).
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
38+
private java.lang.Long depth;
39+
40+
/**
41+
* Required. Where should the files be placed on the worker.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String destPath;
46+
47+
/**
48+
* Optional. True if submodules should be fetched too (default false).
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.Boolean recurseSubmodules;
53+
54+
/**
55+
* Required. The kind of repo (url or dev connect).
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository repository;
60+
61+
/**
62+
* Required. The revision that we will fetch the repo at.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String revision;
67+
68+
/**
69+
* Optional. How much history should be fetched for the build (default 1, -1 for all history).
70+
* @return value or {@code null} for none
71+
*/
72+
public java.lang.Long getDepth() {
73+
return depth;
74+
}
75+
76+
/**
77+
* Optional. How much history should be fetched for the build (default 1, -1 for all history).
78+
* @param depth depth or {@code null} for none
79+
*/
80+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency setDepth(java.lang.Long depth) {
81+
this.depth = depth;
82+
return this;
83+
}
84+
85+
/**
86+
* Required. Where should the files be placed on the worker.
87+
* @return value or {@code null} for none
88+
*/
89+
public java.lang.String getDestPath() {
90+
return destPath;
91+
}
92+
93+
/**
94+
* Required. Where should the files be placed on the worker.
95+
* @param destPath destPath or {@code null} for none
96+
*/
97+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency setDestPath(java.lang.String destPath) {
98+
this.destPath = destPath;
99+
return this;
100+
}
101+
102+
/**
103+
* Optional. True if submodules should be fetched too (default false).
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.Boolean getRecurseSubmodules() {
107+
return recurseSubmodules;
108+
}
109+
110+
/**
111+
* Optional. True if submodules should be fetched too (default false).
112+
* @param recurseSubmodules recurseSubmodules or {@code null} for none
113+
*/
114+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency setRecurseSubmodules(java.lang.Boolean recurseSubmodules) {
115+
this.recurseSubmodules = recurseSubmodules;
116+
return this;
117+
}
118+
119+
/**
120+
* Required. The kind of repo (url or dev connect).
121+
* @return value or {@code null} for none
122+
*/
123+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository getRepository() {
124+
return repository;
125+
}
126+
127+
/**
128+
* Required. The kind of repo (url or dev connect).
129+
* @param repository repository or {@code null} for none
130+
*/
131+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency setRepository(ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository repository) {
132+
this.repository = repository;
133+
return this;
134+
}
135+
136+
/**
137+
* Required. The revision that we will fetch the repo at.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.String getRevision() {
141+
return revision;
142+
}
143+
144+
/**
145+
* Required. The revision that we will fetch the repo at.
146+
* @param revision revision or {@code null} for none
147+
*/
148+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency setRevision(java.lang.String revision) {
149+
this.revision = revision;
150+
return this;
151+
}
152+
153+
@Override
154+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency set(String fieldName, Object value) {
155+
return (ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency) super.set(fieldName, value);
156+
}
157+
158+
@Override
159+
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency clone() {
160+
return (ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency) super.clone();
161+
}
162+
163+
}

0 commit comments

Comments
 (0)