Skip to content

Commit e5557ac

Browse files
1 parent 2b56314 commit e5557ac

File tree

14 files changed

+478
-12
lines changed

14 files changed

+478
-12
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-rev20250528-2.0.0</version>
25+
<version>v1-rev20250616-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-rev20250528-2.0.0'
38+
implementation 'com.google.apis:google-api-services-containeranalysis:v1-rev20250616-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: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,6 +1115,31 @@ public List setPageToken(java.lang.String pageToken) {
11151115
return this;
11161116
}
11171117

1118+
/**
1119+
* If set, the request will return all reachable Notes and report all unreachable regions
1120+
* in the `unreachable` field in the response. Only applicable for requests in the global
1121+
* region.
1122+
*/
1123+
@com.google.api.client.util.Key
1124+
private java.lang.Boolean returnPartialSuccess;
1125+
1126+
/** If set, the request will return all reachable Notes and report all unreachable regions in the
1127+
`unreachable` field in the response. Only applicable for requests in the global region.
1128+
*/
1129+
public java.lang.Boolean getReturnPartialSuccess() {
1130+
return returnPartialSuccess;
1131+
}
1132+
1133+
/**
1134+
* If set, the request will return all reachable Notes and report all unreachable regions
1135+
* in the `unreachable` field in the response. Only applicable for requests in the global
1136+
* region.
1137+
*/
1138+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
1139+
this.returnPartialSuccess = returnPartialSuccess;
1140+
return this;
1141+
}
1142+
11181143
@Override
11191144
public List set(String parameterName, Object value) {
11201145
return (List) super.set(parameterName, value);
@@ -2852,6 +2877,32 @@ public GetVulnerabilitySummary setFilter(java.lang.String filter) {
28522877
return this;
28532878
}
28542879

2880+
/**
2881+
* If set, the request will return all reachable occurrence summaries and report all
2882+
* unreachable regions in the `unreachable` field in the response. Only applicable for
2883+
* requests in the global region.
2884+
*/
2885+
@com.google.api.client.util.Key
2886+
private java.lang.Boolean returnPartialSuccess;
2887+
2888+
/** If set, the request will return all reachable occurrence summaries and report all unreachable
2889+
regions in the `unreachable` field in the response. Only applicable for requests in the global
2890+
region.
2891+
*/
2892+
public java.lang.Boolean getReturnPartialSuccess() {
2893+
return returnPartialSuccess;
2894+
}
2895+
2896+
/**
2897+
* If set, the request will return all reachable occurrence summaries and report all
2898+
* unreachable regions in the `unreachable` field in the response. Only applicable for
2899+
* requests in the global region.
2900+
*/
2901+
public GetVulnerabilitySummary setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
2902+
this.returnPartialSuccess = returnPartialSuccess;
2903+
return this;
2904+
}
2905+
28552906
@Override
28562907
public GetVulnerabilitySummary set(String parameterName, Object value) {
28572908
return (GetVulnerabilitySummary) super.set(parameterName, value);
@@ -3052,6 +3103,31 @@ public List setPageToken(java.lang.String pageToken) {
30523103
return this;
30533104
}
30543105

3106+
/**
3107+
* If set, the request will return all reachable Occurrences and report all unreachable
3108+
* regions in the `unreachable` field in the response. Only applicable for requests in the
3109+
* global region.
3110+
*/
3111+
@com.google.api.client.util.Key
3112+
private java.lang.Boolean returnPartialSuccess;
3113+
3114+
/** If set, the request will return all reachable Occurrences and report all unreachable regions in the
3115+
`unreachable` field in the response. Only applicable for requests in the global region.
3116+
*/
3117+
public java.lang.Boolean getReturnPartialSuccess() {
3118+
return returnPartialSuccess;
3119+
}
3120+
3121+
/**
3122+
* If set, the request will return all reachable Occurrences and report all unreachable
3123+
* regions in the `unreachable` field in the response. Only applicable for requests in the
3124+
* global region.
3125+
*/
3126+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
3127+
this.returnPartialSuccess = returnPartialSuccess;
3128+
return this;
3129+
}
3130+
30553131
@Override
30563132
public List set(String parameterName, Object value) {
30573133
return (List) super.set(parameterName, value);
@@ -4623,6 +4699,31 @@ public List setPageToken(java.lang.String pageToken) {
46234699
return this;
46244700
}
46254701

4702+
/**
4703+
* If set, the request will return all reachable Notes and report all unreachable regions in
4704+
* the `unreachable` field in the response. Only applicable for requests in the global
4705+
* region.
4706+
*/
4707+
@com.google.api.client.util.Key
4708+
private java.lang.Boolean returnPartialSuccess;
4709+
4710+
/** If set, the request will return all reachable Notes and report all unreachable regions in the
4711+
`unreachable` field in the response. Only applicable for requests in the global region.
4712+
*/
4713+
public java.lang.Boolean getReturnPartialSuccess() {
4714+
return returnPartialSuccess;
4715+
}
4716+
4717+
/**
4718+
* If set, the request will return all reachable Notes and report all unreachable regions in
4719+
* the `unreachable` field in the response. Only applicable for requests in the global
4720+
* region.
4721+
*/
4722+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
4723+
this.returnPartialSuccess = returnPartialSuccess;
4724+
return this;
4725+
}
4726+
46264727
@Override
46274728
public List set(String parameterName, Object value) {
46284729
return (List) super.set(parameterName, value);
@@ -6360,6 +6461,32 @@ public GetVulnerabilitySummary setFilter(java.lang.String filter) {
63606461
return this;
63616462
}
63626463

6464+
/**
6465+
* If set, the request will return all reachable occurrence summaries and report all
6466+
* unreachable regions in the `unreachable` field in the response. Only applicable for
6467+
* requests in the global region.
6468+
*/
6469+
@com.google.api.client.util.Key
6470+
private java.lang.Boolean returnPartialSuccess;
6471+
6472+
/** If set, the request will return all reachable occurrence summaries and report all unreachable
6473+
regions in the `unreachable` field in the response. Only applicable for requests in the global
6474+
region.
6475+
*/
6476+
public java.lang.Boolean getReturnPartialSuccess() {
6477+
return returnPartialSuccess;
6478+
}
6479+
6480+
/**
6481+
* If set, the request will return all reachable occurrence summaries and report all
6482+
* unreachable regions in the `unreachable` field in the response. Only applicable for
6483+
* requests in the global region.
6484+
*/
6485+
public GetVulnerabilitySummary setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
6486+
this.returnPartialSuccess = returnPartialSuccess;
6487+
return this;
6488+
}
6489+
63636490
@Override
63646491
public GetVulnerabilitySummary set(String parameterName, Object value) {
63656492
return (GetVulnerabilitySummary) super.set(parameterName, value);
@@ -6560,6 +6687,31 @@ public List setPageToken(java.lang.String pageToken) {
65606687
return this;
65616688
}
65626689

6690+
/**
6691+
* If set, the request will return all reachable Occurrences and report all unreachable
6692+
* regions in the `unreachable` field in the response. Only applicable for requests in the
6693+
* global region.
6694+
*/
6695+
@com.google.api.client.util.Key
6696+
private java.lang.Boolean returnPartialSuccess;
6697+
6698+
/** If set, the request will return all reachable Occurrences and report all unreachable regions in the
6699+
`unreachable` field in the response. Only applicable for requests in the global region.
6700+
*/
6701+
public java.lang.Boolean getReturnPartialSuccess() {
6702+
return returnPartialSuccess;
6703+
}
6704+
6705+
/**
6706+
* If set, the request will return all reachable Occurrences and report all unreachable
6707+
* regions in the `unreachable` field in the response. Only applicable for requests in the
6708+
* global region.
6709+
*/
6710+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
6711+
this.returnPartialSuccess = returnPartialSuccess;
6712+
return this;
6713+
}
6714+
65636715
@Override
65646716
public List set(String parameterName, Object value) {
65656717
return (List) super.set(parameterName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ public final class ListNotesResponse extends com.google.api.client.json.GenericJ
4545
@com.google.api.client.util.Key
4646
private java.util.List<Note> notes;
4747

48+
/**
49+
* Unordered list. Unreachable regions. Populated for requests from the global region when
50+
* `return_partial_success` is set. Format: projects//locations/
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<java.lang.String> unreachable;
55+
4856
/**
4957
* The next pagination token in the list response. It should be used as `page_token` for the
5058
* following request. An empty value means no more results.
@@ -81,6 +89,25 @@ public ListNotesResponse setNotes(java.util.List<Note> notes) {
8189
return this;
8290
}
8391

92+
/**
93+
* Unordered list. Unreachable regions. Populated for requests from the global region when
94+
* `return_partial_success` is set. Format: projects//locations/
95+
* @return value or {@code null} for none
96+
*/
97+
public java.util.List<java.lang.String> getUnreachable() {
98+
return unreachable;
99+
}
100+
101+
/**
102+
* Unordered list. Unreachable regions. Populated for requests from the global region when
103+
* `return_partial_success` is set. Format: projects//locations/
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListNotesResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
84111
@Override
85112
public ListNotesResponse set(String fieldName, Object value) {
86113
return (ListNotesResponse) super.set(fieldName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ public final class ListOccurrencesResponse extends com.google.api.client.json.Ge
4545
@com.google.api.client.util.Key
4646
private java.util.List<Occurrence> occurrences;
4747

48+
/**
49+
* Unordered list. Unreachable regions. Populated for requests from the global region when
50+
* `return_partial_success` is set. Format: projects//locations/
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<java.lang.String> unreachable;
55+
4856
/**
4957
* The next pagination token in the list response. It should be used as `page_token` for the
5058
* following request. An empty value means no more results.
@@ -81,6 +89,25 @@ public ListOccurrencesResponse setOccurrences(java.util.List<Occurrence> occurre
8189
return this;
8290
}
8391

92+
/**
93+
* Unordered list. Unreachable regions. Populated for requests from the global region when
94+
* `return_partial_success` is set. Format: projects//locations/
95+
* @return value or {@code null} for none
96+
*/
97+
public java.util.List<java.lang.String> getUnreachable() {
98+
return unreachable;
99+
}
100+
101+
/**
102+
* Unordered list. Unreachable regions. Populated for requests from the global region when
103+
* `return_partial_success` is set. Format: projects//locations/
104+
* @param unreachable unreachable or {@code null} for none
105+
*/
106+
public ListOccurrencesResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
107+
this.unreachable = unreachable;
108+
return this;
109+
}
110+
84111
@Override
85112
public ListOccurrencesResponse set(String fieldName, Object value) {
86113
return (ListOccurrencesResponse) super.set(fieldName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ public final class VulnerabilityOccurrencesSummary extends com.google.api.client
4343
com.google.api.client.util.Data.nullOf(FixableTotalByDigest.class);
4444
}
4545

46+
/**
47+
* Unordered list. Unreachable regions. Populated for requests from the global region when
48+
* `return_partial_success` is set. Format: projects//locations/
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.util.List<java.lang.String> unreachable;
53+
4654
/**
4755
* A listing by resource of the number of fixable and total vulnerabilities.
4856
* @return value or {@code null} for none
@@ -60,6 +68,25 @@ public VulnerabilityOccurrencesSummary setCounts(java.util.List<FixableTotalByDi
6068
return this;
6169
}
6270

71+
/**
72+
* Unordered list. Unreachable regions. Populated for requests from the global region when
73+
* `return_partial_success` is set. Format: projects//locations/
74+
* @return value or {@code null} for none
75+
*/
76+
public java.util.List<java.lang.String> getUnreachable() {
77+
return unreachable;
78+
}
79+
80+
/**
81+
* Unordered list. Unreachable regions. Populated for requests from the global region when
82+
* `return_partial_success` is set. Format: projects//locations/
83+
* @param unreachable unreachable or {@code null} for none
84+
*/
85+
public VulnerabilityOccurrencesSummary setUnreachable(java.util.List<java.lang.String> unreachable) {
86+
this.unreachable = unreachable;
87+
return this;
88+
}
89+
6390
@Override
6491
public VulnerabilityOccurrencesSummary set(String fieldName, Object value) {
6592
return (VulnerabilityOccurrencesSummary) super.set(fieldName, value);

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

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

0 commit comments

Comments
 (0)