diff --git a/clients/google-api-services-ondemandscanning/v1/2.0.0/README.md b/clients/google-api-services-ondemandscanning/v1/2.0.0/README.md
index def4ee8674f..98b7a5acb03 100644
--- a/clients/google-api-services-ondemandscanning/v1/2.0.0/README.md
+++ b/clients/google-api-services-ondemandscanning/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-ondemandscanning
- v1-rev20251208-2.0.0
+ v1-rev20260209-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-ondemandscanning:v1-rev20251208-2.0.0'
+ implementation 'com.google.apis:google-api-services-ondemandscanning:v1-rev20260209-2.0.0'
}
```
diff --git a/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/OnDemandScanning.java b/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/OnDemandScanning.java
index 7a4860abc6b..8c5de0b001b 100644
--- a/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/OnDemandScanning.java
+++ b/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/OnDemandScanning.java
@@ -103,7 +103,7 @@ public class OnDemandScanning extends com.google.api.client.googleapis.services.
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
*
Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
*
* @param jsonFactory JSON factory, which may be:
@@ -1397,8 +1397,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
* Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
- *
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
* @param jsonFactory JSON factory, which may be:
*
diff --git a/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/BaseImage.java b/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/BaseImage.java
index 24ec2b89c2c..a7ae86cb8f8 100644
--- a/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/BaseImage.java
+++ b/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/BaseImage.java
@@ -44,6 +44,13 @@ public final class BaseImage extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String name;
+ /**
+ * The registry in which the base image is from.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String registry;
+
/**
* The repository name in which the base image is from.
* The value may be {@code null}.
@@ -85,6 +92,23 @@ public BaseImage setName(java.lang.String name) {
return this;
}
+ /**
+ * The registry in which the base image is from.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getRegistry() {
+ return registry;
+ }
+
+ /**
+ * The registry in which the base image is from.
+ * @param registry registry or {@code null} for none
+ */
+ public BaseImage setRegistry(java.lang.String registry) {
+ this.registry = registry;
+ return this;
+ }
+
/**
* The repository name in which the base image is from.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/DiscoveryOccurrence.java b/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/DiscoveryOccurrence.java
index 8a3ea1925f3..e5cee8a8cac 100644
--- a/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/DiscoveryOccurrence.java
+++ b/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/DiscoveryOccurrence.java
@@ -94,6 +94,13 @@ public final class DiscoveryOccurrence extends com.google.api.client.json.Generi
@com.google.api.client.util.Key
private String lastScanTime;
+ /**
+ * The last time vulnerability scan results changed.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private String lastVulnerabilityUpdateTime;
+
/**
* The status of an SBOM generation.
* The value may be {@code null}.
@@ -256,6 +263,23 @@ public DiscoveryOccurrence setLastScanTime(String lastScanTime) {
return this;
}
+ /**
+ * The last time vulnerability scan results changed.
+ * @return value or {@code null} for none
+ */
+ public String getLastVulnerabilityUpdateTime() {
+ return lastVulnerabilityUpdateTime;
+ }
+
+ /**
+ * The last time vulnerability scan results changed.
+ * @param lastVulnerabilityUpdateTime lastVulnerabilityUpdateTime or {@code null} for none
+ */
+ public DiscoveryOccurrence setLastVulnerabilityUpdateTime(String lastVulnerabilityUpdateTime) {
+ this.lastVulnerabilityUpdateTime = lastVulnerabilityUpdateTime;
+ return this;
+ }
+
/**
* The status of an SBOM generation.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/GrafeasV1BaseImage.java b/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/GrafeasV1BaseImage.java
index fb0778cc729..8cefd7ec8a0 100644
--- a/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/GrafeasV1BaseImage.java
+++ b/clients/google-api-services-ondemandscanning/v1/2.0.0/com/google/api/services/ondemandscanning/v1/model/GrafeasV1BaseImage.java
@@ -44,6 +44,13 @@ public final class GrafeasV1BaseImage extends com.google.api.client.json.Generic
@com.google.api.client.util.Key
private java.lang.String name;
+ /**
+ * The registry in which the base image is from.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String registry;
+
/**
* The repository name in which the base image is from.
* The value may be {@code null}.
@@ -85,6 +92,23 @@ public GrafeasV1BaseImage setName(java.lang.String name) {
return this;
}
+ /**
+ * The registry in which the base image is from.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getRegistry() {
+ return registry;
+ }
+
+ /**
+ * The registry in which the base image is from.
+ * @param registry registry or {@code null} for none
+ */
+ public GrafeasV1BaseImage setRegistry(java.lang.String registry) {
+ this.registry = registry;
+ return this;
+ }
+
/**
* The repository name in which the base image is from.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-ondemandscanning/v1/2.0.0/pom.xml b/clients/google-api-services-ondemandscanning/v1/2.0.0/pom.xml
index ca772a036e5..13d39248ea6 100644
--- a/clients/google-api-services-ondemandscanning/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-ondemandscanning/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-ondemandscanning
- v1-rev20251208-2.0.0
- On-Demand Scanning API v1-rev20251208-2.0.0
+ v1-rev20260209-2.0.0
+ On-Demand Scanning API v1-rev20260209-2.0.0
jar
2011
diff --git a/clients/google-api-services-ondemandscanning/v1/README.md b/clients/google-api-services-ondemandscanning/v1/README.md
index def4ee8674f..98b7a5acb03 100644
--- a/clients/google-api-services-ondemandscanning/v1/README.md
+++ b/clients/google-api-services-ondemandscanning/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-ondemandscanning
- v1-rev20251208-2.0.0
+ v1-rev20260209-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-ondemandscanning:v1-rev20251208-2.0.0'
+ implementation 'com.google.apis:google-api-services-ondemandscanning:v1-rev20260209-2.0.0'
}
```
diff --git a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/README.md b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/README.md
index 05001661e88..a0cd071ce2a 100644
--- a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/README.md
+++ b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-ondemandscanning
- v1beta1-rev20251208-2.0.0
+ v1beta1-rev20260209-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-ondemandscanning:v1beta1-rev20251208-2.0.0'
+ implementation 'com.google.apis:google-api-services-ondemandscanning:v1beta1-rev20260209-2.0.0'
}
```
diff --git a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/OnDemandScanning.java b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/OnDemandScanning.java
index 966971f26b4..27c76897de2 100644
--- a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/OnDemandScanning.java
+++ b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/OnDemandScanning.java
@@ -103,7 +103,7 @@ public class OnDemandScanning extends com.google.api.client.googleapis.services.
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
* - Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * - Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
+ *
- Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
*
* @param jsonFactory JSON factory, which may be:
@@ -1397,8 +1397,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}
* Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}
- * Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
- *
+ * Java: {@code com.google.api.client.http.javanet.NetHttpTransport}
*
* @param jsonFactory JSON factory, which may be:
*
diff --git a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/BaseImage.java b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/BaseImage.java
index 0610c3e41ef..a10855e6451 100644
--- a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/BaseImage.java
+++ b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/BaseImage.java
@@ -44,6 +44,13 @@ public final class BaseImage extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String name;
+ /**
+ * The registry in which the base image is from.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String registry;
+
/**
* The repository name in which the base image is from.
* The value may be {@code null}.
@@ -85,6 +92,23 @@ public BaseImage setName(java.lang.String name) {
return this;
}
+ /**
+ * The registry in which the base image is from.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getRegistry() {
+ return registry;
+ }
+
+ /**
+ * The registry in which the base image is from.
+ * @param registry registry or {@code null} for none
+ */
+ public BaseImage setRegistry(java.lang.String registry) {
+ this.registry = registry;
+ return this;
+ }
+
/**
* The repository name in which the base image is from.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/DiscoveryOccurrence.java b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/DiscoveryOccurrence.java
index c32cb5daf61..4f0cfeb3e93 100644
--- a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/DiscoveryOccurrence.java
+++ b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/DiscoveryOccurrence.java
@@ -94,6 +94,13 @@ public final class DiscoveryOccurrence extends com.google.api.client.json.Generi
@com.google.api.client.util.Key
private String lastScanTime;
+ /**
+ * The last time vulnerability scan results changed.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private String lastVulnerabilityUpdateTime;
+
/**
* The status of an SBOM generation.
* The value may be {@code null}.
@@ -256,6 +263,23 @@ public DiscoveryOccurrence setLastScanTime(String lastScanTime) {
return this;
}
+ /**
+ * The last time vulnerability scan results changed.
+ * @return value or {@code null} for none
+ */
+ public String getLastVulnerabilityUpdateTime() {
+ return lastVulnerabilityUpdateTime;
+ }
+
+ /**
+ * The last time vulnerability scan results changed.
+ * @param lastVulnerabilityUpdateTime lastVulnerabilityUpdateTime or {@code null} for none
+ */
+ public DiscoveryOccurrence setLastVulnerabilityUpdateTime(String lastVulnerabilityUpdateTime) {
+ this.lastVulnerabilityUpdateTime = lastVulnerabilityUpdateTime;
+ return this;
+ }
+
/**
* The status of an SBOM generation.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/GrafeasV1BaseImage.java b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/GrafeasV1BaseImage.java
index 330586ba812..d6b56049097 100644
--- a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/GrafeasV1BaseImage.java
+++ b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/com/google/api/services/ondemandscanning/v1beta1/model/GrafeasV1BaseImage.java
@@ -44,6 +44,13 @@ public final class GrafeasV1BaseImage extends com.google.api.client.json.Generic
@com.google.api.client.util.Key
private java.lang.String name;
+ /**
+ * The registry in which the base image is from.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.String registry;
+
/**
* The repository name in which the base image is from.
* The value may be {@code null}.
@@ -85,6 +92,23 @@ public GrafeasV1BaseImage setName(java.lang.String name) {
return this;
}
+ /**
+ * The registry in which the base image is from.
+ * @return value or {@code null} for none
+ */
+ public java.lang.String getRegistry() {
+ return registry;
+ }
+
+ /**
+ * The registry in which the base image is from.
+ * @param registry registry or {@code null} for none
+ */
+ public GrafeasV1BaseImage setRegistry(java.lang.String registry) {
+ this.registry = registry;
+ return this;
+ }
+
/**
* The repository name in which the base image is from.
* @return value or {@code null} for none
diff --git a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/pom.xml b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/pom.xml
index 4935094551e..08f09fe9c01 100644
--- a/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/pom.xml
+++ b/clients/google-api-services-ondemandscanning/v1beta1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-ondemandscanning
- v1beta1-rev20251208-2.0.0
- On-Demand Scanning API v1beta1-rev20251208-2.0.0
+ v1beta1-rev20260209-2.0.0
+ On-Demand Scanning API v1beta1-rev20260209-2.0.0
jar
2011
diff --git a/clients/google-api-services-ondemandscanning/v1beta1/README.md b/clients/google-api-services-ondemandscanning/v1beta1/README.md
index 05001661e88..a0cd071ce2a 100644
--- a/clients/google-api-services-ondemandscanning/v1beta1/README.md
+++ b/clients/google-api-services-ondemandscanning/v1beta1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-ondemandscanning
- v1beta1-rev20251208-2.0.0
+ v1beta1-rev20260209-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-ondemandscanning:v1beta1-rev20251208-2.0.0'
+ implementation 'com.google.apis:google-api-services-ondemandscanning:v1beta1-rev20260209-2.0.0'
}
```