Skip to content

Commit b526acf

Browse files
1 parent 5bb7563 commit b526acf

File tree

18 files changed

+369
-36
lines changed

18 files changed

+369
-36
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-rev20250509-2.0.0</version>
25+
<version>v1-rev20250528-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-rev20250509-2.0.0'
38+
implementation 'com.google.apis:google-api-services-containeranalysis:v1-rev20250528-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
public final class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The Developer Connect Git repository link or the url that matches a repository link in the
35-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
34+
* The Developer Connect Git repository link formatted as
35+
* `projects/locations/connections/gitRepositoryLink`
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
@@ -46,17 +46,17 @@ public final class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourc
4646
private java.lang.String url;
4747

4848
/**
49-
* The Developer Connect Git repository link or the url that matches a repository link in the
50-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
49+
* The Developer Connect Git repository link formatted as
50+
* `projects/locations/connections/gitRepositoryLink`
5151
* @return value or {@code null} for none
5252
*/
5353
public java.lang.String getDeveloperConnect() {
5454
return developerConnect;
5555
}
5656

5757
/**
58-
* The Developer Connect Git repository link or the url that matches a repository link in the
59-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
58+
* The Developer Connect Git repository link formatted as
59+
* `projects/locations/connections/gitRepositoryLink`
6060
* @param developerConnect developerConnect or {@code null} for none
6161
*/
6262
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository setDeveloperConnect(java.lang.String developerConnect) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,13 @@ public final class DiscoveryOccurrence extends com.google.api.client.json.Generi
8080
@com.google.api.client.util.Key
8181
private java.lang.String cpe;
8282

83+
/**
84+
* Files that make up the resource described by the occurrence.
85+
* The value may be {@code null}.
86+
*/
87+
@com.google.api.client.util.Key
88+
private java.util.List<File> files;
89+
8390
/**
8491
* The last time this resource was scanned.
8592
* The value may be {@code null}.
@@ -215,6 +222,23 @@ public DiscoveryOccurrence setCpe(java.lang.String cpe) {
215222
return this;
216223
}
217224

225+
/**
226+
* Files that make up the resource described by the occurrence.
227+
* @return value or {@code null} for none
228+
*/
229+
public java.util.List<File> getFiles() {
230+
return files;
231+
}
232+
233+
/**
234+
* Files that make up the resource described by the occurrence.
235+
* @param files files or {@code null} for none
236+
*/
237+
public DiscoveryOccurrence setFiles(java.util.List<File> files) {
238+
this.files = files;
239+
return this;
240+
}
241+
218242
/**
219243
* The last time this resource was scanned.
220244
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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+
* Model definition for File.
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 File extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.Map<String, java.lang.String> digest;
38+
39+
/**
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.String name;
44+
45+
/**
46+
* @return value or {@code null} for none
47+
*/
48+
public java.util.Map<String, java.lang.String> getDigest() {
49+
return digest;
50+
}
51+
52+
/**
53+
* @param digest digest or {@code null} for none
54+
*/
55+
public File setDigest(java.util.Map<String, java.lang.String> digest) {
56+
this.digest = digest;
57+
return this;
58+
}
59+
60+
/**
61+
* @return value or {@code null} for none
62+
*/
63+
public java.lang.String getName() {
64+
return name;
65+
}
66+
67+
/**
68+
* @param name name or {@code null} for none
69+
*/
70+
public File setName(java.lang.String name) {
71+
this.name = name;
72+
return this;
73+
}
74+
75+
@Override
76+
public File set(String fieldName, Object value) {
77+
return (File) super.set(fieldName, value);
78+
}
79+
80+
@Override
81+
public File clone() {
82+
return (File) super.clone();
83+
}
84+
85+
}

clients/google-api-services-containeranalysis/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-containeranalysis</artifactId>
11-
<version>v1-rev20250509-2.0.0</version>
12-
<name>Container Analysis API v1-rev20250509-2.0.0</name>
11+
<version>v1-rev20250528-2.0.0</version>
12+
<name>Container Analysis API v1-rev20250528-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-containeranalysis/v1alpha1/2.0.0/com/google/api/services/containeranalysis/v1alpha1/model/ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
public final class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The Developer Connect Git repository link or the url that matches a repository link in the
35-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
34+
* The Developer Connect Git repository link formatted as
35+
* `projects/locations/connections/gitRepositoryLink`
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
@@ -46,17 +46,17 @@ public final class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourc
4646
private java.lang.String url;
4747

4848
/**
49-
* The Developer Connect Git repository link or the url that matches a repository link in the
50-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
49+
* The Developer Connect Git repository link formatted as
50+
* `projects/locations/connections/gitRepositoryLink`
5151
* @return value or {@code null} for none
5252
*/
5353
public java.lang.String getDeveloperConnect() {
5454
return developerConnect;
5555
}
5656

5757
/**
58-
* The Developer Connect Git repository link or the url that matches a repository link in the
59-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
58+
* The Developer Connect Git repository link formatted as
59+
* `projects/locations/connections/gitRepositoryLink`
6060
* @param developerConnect developerConnect or {@code null} for none
6161
*/
6262
public ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository setDeveloperConnect(java.lang.String developerConnect) {

clients/google-api-services-containeranalysis/v1alpha1/2.0.0/com/google/api/services/containeranalysis/v1alpha1/model/Discovered.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,13 @@ public final class Discovered extends com.google.api.client.json.GenericJson {
8181
@com.google.api.client.util.Key
8282
private java.lang.String cpe;
8383

84+
/**
85+
* Optional. Files that make up the resource described by the occurrence.
86+
* The value may be {@code null}.
87+
*/
88+
@com.google.api.client.util.Key
89+
private java.util.List<File> files;
90+
8491
/**
8592
* The last time this resource was scanned.
8693
* The value may be {@code null}.
@@ -233,6 +240,23 @@ public Discovered setCpe(java.lang.String cpe) {
233240
return this;
234241
}
235242

243+
/**
244+
* Optional. Files that make up the resource described by the occurrence.
245+
* @return value or {@code null} for none
246+
*/
247+
public java.util.List<File> getFiles() {
248+
return files;
249+
}
250+
251+
/**
252+
* Optional. Files that make up the resource described by the occurrence.
253+
* @param files files or {@code null} for none
254+
*/
255+
public Discovered setFiles(java.util.List<File> files) {
256+
this.files = files;
257+
return this;
258+
}
259+
236260
/**
237261
* The last time this resource was scanned.
238262
* @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.v1alpha1.model;
18+
19+
/**
20+
* A file as part of a resource.
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 File extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The digest(s) of the file.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.Map<String, java.lang.String> digest;
39+
40+
/**
41+
* Optional. The name of the file.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String name;
46+
47+
/**
48+
* Optional. The digest(s) of the file.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.util.Map<String, java.lang.String> getDigest() {
52+
return digest;
53+
}
54+
55+
/**
56+
* Optional. The digest(s) of the file.
57+
* @param digest digest or {@code null} for none
58+
*/
59+
public File setDigest(java.util.Map<String, java.lang.String> digest) {
60+
this.digest = digest;
61+
return this;
62+
}
63+
64+
/**
65+
* Optional. The name of the file.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getName() {
69+
return name;
70+
}
71+
72+
/**
73+
* Optional. The name of the file.
74+
* @param name name or {@code null} for none
75+
*/
76+
public File setName(java.lang.String name) {
77+
this.name = name;
78+
return this;
79+
}
80+
81+
@Override
82+
public File set(String fieldName, Object value) {
83+
return (File) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public File clone() {
88+
return (File) super.clone();
89+
}
90+
91+
}

0 commit comments

Comments
 (0)