Skip to content

Commit 850a389

Browse files
chore: regenerate ondemandscanning client
1 parent 38c1764 commit 850a389

File tree

14 files changed

+160
-18
lines changed

14 files changed

+160
-18
lines changed

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

clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/OnDemandScanning.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class OnDemandScanning extends com.google.api.client.googleapis.services.
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -1397,8 +1397,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
13971397
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
13981398
* <li>Android: {@code newCompatibleTransport} from
13991399
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
1400-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
1401-
* </li>
1400+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
14021401
* </ul>
14031402
* @param jsonFactory JSON factory, which may be:
14041403
* <ul>

clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/BaseImage.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class BaseImage extends com.google.api.client.json.GenericJson {
4444
@com.google.api.client.util.Key
4545
private java.lang.String name;
4646

47+
/**
48+
* The registry in which the base image is from.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String registry;
53+
4754
/**
4855
* The repository name in which the base image is from.
4956
* The value may be {@code null}.
@@ -85,6 +92,23 @@ public BaseImage setName(java.lang.String name) {
8592
return this;
8693
}
8794

95+
/**
96+
* The registry in which the base image is from.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getRegistry() {
100+
return registry;
101+
}
102+
103+
/**
104+
* The registry in which the base image is from.
105+
* @param registry registry or {@code null} for none
106+
*/
107+
public BaseImage setRegistry(java.lang.String registry) {
108+
this.registry = registry;
109+
return this;
110+
}
111+
88112
/**
89113
* The repository name in which the base image is from.
90114
* @return value or {@code null} for none

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,13 @@ public final class DiscoveryOccurrence extends com.google.api.client.json.Generi
9494
@com.google.api.client.util.Key
9595
private String lastScanTime;
9696

97+
/**
98+
* The last time vulnerability scan results changed.
99+
* The value may be {@code null}.
100+
*/
101+
@com.google.api.client.util.Key
102+
private String lastVulnerabilityUpdateTime;
103+
97104
/**
98105
* The status of an SBOM generation.
99106
* The value may be {@code null}.
@@ -256,6 +263,23 @@ public DiscoveryOccurrence setLastScanTime(String lastScanTime) {
256263
return this;
257264
}
258265

266+
/**
267+
* The last time vulnerability scan results changed.
268+
* @return value or {@code null} for none
269+
*/
270+
public String getLastVulnerabilityUpdateTime() {
271+
return lastVulnerabilityUpdateTime;
272+
}
273+
274+
/**
275+
* The last time vulnerability scan results changed.
276+
* @param lastVulnerabilityUpdateTime lastVulnerabilityUpdateTime or {@code null} for none
277+
*/
278+
public DiscoveryOccurrence setLastVulnerabilityUpdateTime(String lastVulnerabilityUpdateTime) {
279+
this.lastVulnerabilityUpdateTime = lastVulnerabilityUpdateTime;
280+
return this;
281+
}
282+
259283
/**
260284
* The status of an SBOM generation.
261285
* @return value or {@code null} for none

clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/GrafeasV1BaseImage.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class GrafeasV1BaseImage extends com.google.api.client.json.Generic
4444
@com.google.api.client.util.Key
4545
private java.lang.String name;
4646

47+
/**
48+
* The registry in which the base image is from.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String registry;
53+
4754
/**
4855
* The repository name in which the base image is from.
4956
* The value may be {@code null}.
@@ -85,6 +92,23 @@ public GrafeasV1BaseImage setName(java.lang.String name) {
8592
return this;
8693
}
8794

95+
/**
96+
* The registry in which the base image is from.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getRegistry() {
100+
return registry;
101+
}
102+
103+
/**
104+
* The registry in which the base image is from.
105+
* @param registry registry or {@code null} for none
106+
*/
107+
public GrafeasV1BaseImage setRegistry(java.lang.String registry) {
108+
this.registry = registry;
109+
return this;
110+
}
111+
88112
/**
89113
* The repository name in which the base image is from.
90114
* @return value or {@code null} for none

clients/google-api-services-ondemandscanning/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-ondemandscanning</artifactId>
11-
<version>v1-rev20251208-2.0.0</version>
12-
<name>On-Demand Scanning API v1-rev20251208-2.0.0</name>
11+
<version>v1-rev20260209-2.0.0</version>
12+
<name>On-Demand Scanning API v1-rev20260209-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-ondemandscanning/v1beta1/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-ondemandscanning</artifactId>
25-
<version>v1beta1-rev20251208-2.0.0</version>
25+
<version>v1beta1-rev20260209-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-ondemandscanning:v1beta1-rev20251208-2.0.0'
38+
implementation 'com.google.apis:google-api-services-ondemandscanning:v1beta1-rev20260209-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/OnDemandScanning.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class OnDemandScanning extends com.google.api.client.googleapis.services.
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -1397,8 +1397,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
13971397
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
13981398
* <li>Android: {@code newCompatibleTransport} from
13991399
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
1400-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
1401-
* </li>
1400+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
14021401
* </ul>
14031402
* @param jsonFactory JSON factory, which may be:
14041403
* <ul>

clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/BaseImage.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ public final class BaseImage extends com.google.api.client.json.GenericJson {
4444
@com.google.api.client.util.Key
4545
private java.lang.String name;
4646

47+
/**
48+
* The registry in which the base image is from.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String registry;
53+
4754
/**
4855
* The repository name in which the base image is from.
4956
* The value may be {@code null}.
@@ -85,6 +92,23 @@ public BaseImage setName(java.lang.String name) {
8592
return this;
8693
}
8794

95+
/**
96+
* The registry in which the base image is from.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getRegistry() {
100+
return registry;
101+
}
102+
103+
/**
104+
* The registry in which the base image is from.
105+
* @param registry registry or {@code null} for none
106+
*/
107+
public BaseImage setRegistry(java.lang.String registry) {
108+
this.registry = registry;
109+
return this;
110+
}
111+
88112
/**
89113
* The repository name in which the base image is from.
90114
* @return value or {@code null} for none

0 commit comments

Comments
 (0)