Skip to content

Commit ea53539

Browse files
1 parent fa50a0c commit ea53539

File tree

17 files changed

+144
-27
lines changed

17 files changed

+144
-27
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-rev20260123-2.0.0</version>
25+
<version>v1-rev20260220-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-rev20260123-2.0.0'
38+
implementation 'com.google.apis:google-api-services-containeranalysis:v1-rev20260220-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class ContainerAnalysis 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:
@@ -7374,8 +7374,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
73747374
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
73757375
* <li>Android: {@code newCompatibleTransport} from
73767376
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
7377-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
7378-
* </li>
7377+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
73797378
* </ul>
73807379
* @param jsonFactory JSON factory, which may be:
73817380
* <ul>

clients/google-api-services-containeranalysis/v1/2.0.0/com/google/api/services/containeranalysis/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-containeranalysis/v1/2.0.0/com/google/api/services/containeranalysis/v1/model/VulnerabilityNote.java

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

33+
/**
34+
* The time this advisory was published by the source.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String advisoryPublishTime;
39+
3340
/**
3441
* The CVSS score of this vulnerability. CVSS score is on a scale of 0 - 10 where 0 indicates low
3542
* severity and 10 indicates high severity.
@@ -96,6 +103,23 @@ public final class VulnerabilityNote extends com.google.api.client.json.GenericJ
96103
@com.google.api.client.util.Key
97104
private java.util.List<WindowsDetail> windowsDetails;
98105

106+
/**
107+
* The time this advisory was published by the source.
108+
* @return value or {@code null} for none
109+
*/
110+
public String getAdvisoryPublishTime() {
111+
return advisoryPublishTime;
112+
}
113+
114+
/**
115+
* The time this advisory was published by the source.
116+
* @param advisoryPublishTime advisoryPublishTime or {@code null} for none
117+
*/
118+
public VulnerabilityNote setAdvisoryPublishTime(String advisoryPublishTime) {
119+
this.advisoryPublishTime = advisoryPublishTime;
120+
return this;
121+
}
122+
99123
/**
100124
* The CVSS score of this vulnerability. CVSS score is on a scale of 0 - 10 where 0 indicates low
101125
* severity and 10 indicates high severity.

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-rev20260123-2.0.0</version>
12-
<name>Container Analysis API v1-rev20260123-2.0.0</name>
11+
<version>v1-rev20260220-2.0.0</version>
12+
<name>Container Analysis API v1-rev20260220-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-rev20260123-2.0.0</version>
25+
<version>v1-rev20260220-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-rev20260123-2.0.0'
38+
implementation 'com.google.apis:google-api-services-containeranalysis:v1-rev20260220-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-rev20260123-2.0.0</version>
25+
<version>v1alpha1-rev20260220-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-rev20260123-2.0.0'
38+
implementation 'com.google.apis:google-api-services-containeranalysis:v1alpha1-rev20260220-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class ContainerAnalysis 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:
@@ -5647,8 +5647,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
56475647
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
56485648
* <li>Android: {@code newCompatibleTransport} from
56495649
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
5650-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
5651-
* </li>
5650+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
56525651
* </ul>
56535652
* @param jsonFactory JSON factory, which may be:
56545653
* <ul>

clients/google-api-services-containeranalysis/v1alpha1/2.0.0/com/google/api/services/containeranalysis/v1alpha1/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 of the base image.
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 of the base image.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getRegistry() {
100+
return registry;
101+
}
102+
103+
/**
104+
* The registry of the base image.
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-containeranalysis/v1alpha1/2.0.0/com/google/api/services/containeranalysis/v1alpha1/model/VulnerabilityType.java

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

33+
/**
34+
* Time this advisory was published by the source.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private String advisoryPublishTime;
39+
3340
/**
3441
* The CVSS score for this Vulnerability.
3542
* The value may be {@code null}.
@@ -79,6 +86,23 @@ public final class VulnerabilityType extends com.google.api.client.json.GenericJ
7986
@com.google.api.client.util.Key
8087
private java.lang.String severity;
8188

89+
/**
90+
* Time this advisory was published by the source.
91+
* @return value or {@code null} for none
92+
*/
93+
public String getAdvisoryPublishTime() {
94+
return advisoryPublishTime;
95+
}
96+
97+
/**
98+
* Time this advisory was published by the source.
99+
* @param advisoryPublishTime advisoryPublishTime or {@code null} for none
100+
*/
101+
public VulnerabilityType setAdvisoryPublishTime(String advisoryPublishTime) {
102+
this.advisoryPublishTime = advisoryPublishTime;
103+
return this;
104+
}
105+
82106
/**
83107
* The CVSS score for this Vulnerability.
84108
* @return value or {@code null} for none

0 commit comments

Comments
 (0)