Skip to content

Commit 44e5139

Browse files
1 parent f71804b commit 44e5139

File tree

7 files changed

+68
-20
lines changed

7 files changed

+68
-20
lines changed

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

clients/google-api-services-websecurityscanner/v1/2.0.0/com/google/api/services/websecurityscanner/v1/WebSecurityScanner.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ public List set(String parameterName, Object value) {
803803
* This request holds the parameters needed by the websecurityscanner server. After setting any
804804
* optional parameters, call the {@link Patch#execute()} method to invoke the remote operation.
805805
*
806-
* @param name The resource name of the ScanConfig. The name follows the format of
806+
* @param name Identifier. The resource name of the ScanConfig. The name follows the format of
807807
* 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by the
808808
* system.
809809
* @param content the {@link com.google.api.services.websecurityscanner.v1.model.ScanConfig}
@@ -833,7 +833,7 @@ public class Patch extends WebSecurityScannerRequest<com.google.api.services.web
833833
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
834834
* be called to initialize this instance immediately after invoking the constructor. </p>
835835
*
836-
* @param name The resource name of the ScanConfig. The name follows the format of
836+
* @param name Identifier. The resource name of the ScanConfig. The name follows the format of
837837
* 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by the
838838
* system.
839839
* @param content the {@link com.google.api.services.websecurityscanner.v1.model.ScanConfig}
@@ -905,22 +905,22 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
905905
}
906906

907907
/**
908-
* The resource name of the ScanConfig. The name follows the format of
908+
* Identifier. The resource name of the ScanConfig. The name follows the format of
909909
* 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by
910910
* the system.
911911
*/
912912
@com.google.api.client.util.Key
913913
private java.lang.String name;
914914

915-
/** The resource name of the ScanConfig. The name follows the format of
915+
/** Identifier. The resource name of the ScanConfig. The name follows the format of
916916
'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by the system.
917917
*/
918918
public java.lang.String getName() {
919919
return name;
920920
}
921921

922922
/**
923-
* The resource name of the ScanConfig. The name follows the format of
923+
* Identifier. The resource name of the ScanConfig. The name follows the format of
924924
* 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by
925925
* the system.
926926
*/

clients/google-api-services-websecurityscanner/v1/2.0.0/com/google/api/services/websecurityscanner/v1/model/ScanConfig.java

Lines changed: 51 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ public final class ScanConfig extends com.google.api.client.json.GenericJson {
6767
@com.google.api.client.util.Key
6868
private java.lang.Boolean ignoreHttpStatusErrors;
6969

70+
/**
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private ScanRun latestRun;
75+
7076
/**
7177
* Whether the scan config is managed by Web Security Scanner, output only.
7278
* The value may be {@code null}.
@@ -84,7 +90,7 @@ public final class ScanConfig extends com.google.api.client.json.GenericJson {
8490
private java.lang.Integer maxQps;
8591

8692
/**
87-
* The resource name of the ScanConfig. The name follows the format of
93+
* Identifier. The resource name of the ScanConfig. The name follows the format of
8894
* 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by the
8995
* system.
9096
* The value may be {@code null}.
@@ -121,6 +127,14 @@ public final class ScanConfig extends com.google.api.client.json.GenericJson {
121127
@com.google.api.client.util.Key
122128
private java.lang.Boolean staticIpScan;
123129

130+
/**
131+
* Set of Google Cloud platforms targeted by the scan. If empty, APP_ENGINE will be used as a
132+
* default.
133+
* The value may be {@code null}.
134+
*/
135+
@com.google.api.client.util.Key
136+
private java.util.List<java.lang.String> targetPlatforms;
137+
124138
/**
125139
* The user agent used during scanning.
126140
* The value may be {@code null}.
@@ -217,6 +231,21 @@ public ScanConfig setIgnoreHttpStatusErrors(java.lang.Boolean ignoreHttpStatusEr
217231
return this;
218232
}
219233

234+
/**
235+
* @return value or {@code null} for none
236+
*/
237+
public ScanRun getLatestRun() {
238+
return latestRun;
239+
}
240+
241+
/**
242+
* @param latestRun latestRun or {@code null} for none
243+
*/
244+
public ScanConfig setLatestRun(ScanRun latestRun) {
245+
this.latestRun = latestRun;
246+
return this;
247+
}
248+
220249
/**
221250
* Whether the scan config is managed by Web Security Scanner, output only.
222251
* @return value or {@code null} for none
@@ -256,7 +285,7 @@ public ScanConfig setMaxQps(java.lang.Integer maxQps) {
256285
}
257286

258287
/**
259-
* The resource name of the ScanConfig. The name follows the format of
288+
* Identifier. The resource name of the ScanConfig. The name follows the format of
260289
* 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by the
261290
* system.
262291
* @return value or {@code null} for none
@@ -266,7 +295,7 @@ public java.lang.String getName() {
266295
}
267296

268297
/**
269-
* The resource name of the ScanConfig. The name follows the format of
298+
* Identifier. The resource name of the ScanConfig. The name follows the format of
270299
* 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are generated by the
271300
* system.
272301
* @param name name or {@code null} for none
@@ -346,6 +375,25 @@ public ScanConfig setStaticIpScan(java.lang.Boolean staticIpScan) {
346375
return this;
347376
}
348377

378+
/**
379+
* Set of Google Cloud platforms targeted by the scan. If empty, APP_ENGINE will be used as a
380+
* default.
381+
* @return value or {@code null} for none
382+
*/
383+
public java.util.List<java.lang.String> getTargetPlatforms() {
384+
return targetPlatforms;
385+
}
386+
387+
/**
388+
* Set of Google Cloud platforms targeted by the scan. If empty, APP_ENGINE will be used as a
389+
* default.
390+
* @param targetPlatforms targetPlatforms or {@code null} for none
391+
*/
392+
public ScanConfig setTargetPlatforms(java.util.List<java.lang.String> targetPlatforms) {
393+
this.targetPlatforms = targetPlatforms;
394+
return this;
395+
}
396+
349397
/**
350398
* The user agent used during scanning.
351399
* @return value or {@code null} for none

clients/google-api-services-websecurityscanner/v1/2.0.0/pom.xml

Lines changed: 4 additions & 4 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-websecurityscanner</artifactId>
11-
<version>v1-rev20231021-2.0.0</version>
12-
<name>Web Security Scanner API v1-rev20231021-2.0.0</name>
11+
<version>v1-rev20250105-2.0.0</version>
12+
<name>Web Security Scanner API v1-rev20250105-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.0/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.0</version>
128+
<version>2.7.1</version>
129129
</dependency>
130130
</dependencies>
131131

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

clients/google-api-services-websecurityscanner/v1alpha/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.0/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.0</version>
128+
<version>2.7.1</version>
129129
</dependency>
130130
</dependencies>
131131

clients/google-api-services-websecurityscanner/v1beta/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
9393
<link>https://googleapis.dev/java/google-http-client/1.45.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.37.0/</link>
95-
<link>https://googleapis.dev/java/google-api-client/2.7.0/</link>
95+
<link>https://googleapis.dev/java/google-api-client/2.7.1/</link>
9696
</links>
9797
</configuration>
9898
</plugin>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.google.api-client</groupId>
127127
<artifactId>google-api-client</artifactId>
128-
<version>2.7.0</version>
128+
<version>2.7.1</version>
129129
</dependency>
130130
</dependencies>
131131

0 commit comments

Comments
 (0)