Skip to content

Commit 0eacae7

Browse files
1 parent bbf2dad commit 0eacae7

30 files changed

+684
-72
lines changed

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

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.securitycenter.v1.model;
18+
19+
/**
20+
* The destination big query dataset to export findings to.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Security Command Center API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class BigQueryDestination extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The relative resource name of the destination dataset, in the form
35+
* projects/{projectId}/datasets/{datasetId}.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String dataset;
40+
41+
/**
42+
* Required. The relative resource name of the destination dataset, in the form
43+
* projects/{projectId}/datasets/{datasetId}.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.String getDataset() {
47+
return dataset;
48+
}
49+
50+
/**
51+
* Required. The relative resource name of the destination dataset, in the form
52+
* projects/{projectId}/datasets/{datasetId}.
53+
* @param dataset dataset or {@code null} for none
54+
*/
55+
public BigQueryDestination setDataset(java.lang.String dataset) {
56+
this.dataset = dataset;
57+
return this;
58+
}
59+
60+
@Override
61+
public BigQueryDestination set(String fieldName, Object value) {
62+
return (BigQueryDestination) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public BigQueryDestination clone() {
67+
return (BigQueryDestination) super.clone();
68+
}
69+
70+
}

clients/google-api-services-securitycenter/v1/2.0.0/com/google/api/services/securitycenter/v1/model/Dataset.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class Dataset extends com.google.api.client.json.GenericJson {
3838
private java.lang.String displayName;
3939

4040
/**
41-
* Resource name of dataset, e.g.
41+
* Resource name of the dataset, e.g.
4242
* projects/{project}/locations/{location}/datasets/2094040236064505856
4343
* The value may be {@code null}.
4444
*/
@@ -70,7 +70,7 @@ public Dataset setDisplayName(java.lang.String displayName) {
7070
}
7171

7272
/**
73-
* Resource name of dataset, e.g.
73+
* Resource name of the dataset, e.g.
7474
* projects/{project}/locations/{location}/datasets/2094040236064505856
7575
* @return value or {@code null} for none
7676
*/
@@ -79,7 +79,7 @@ public java.lang.String getName() {
7979
}
8080

8181
/**
82-
* Resource name of dataset, e.g.
82+
* Resource name of the dataset, e.g.
8383
* projects/{project}/locations/{location}/datasets/2094040236064505856
8484
* @param name name or {@code null} for none
8585
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.securitycenter.v1.model;
18+
19+
/**
20+
* The LRO metadata for a ExportFindings request.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Security Command Center API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ExportFindingsMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The destination big query dataset to export findings to.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private BigQueryDestination bigQueryDestination;
39+
40+
/**
41+
* Optional. Timestamp at which export was started
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private String exportStartTime;
46+
47+
/**
48+
* Required. The destination big query dataset to export findings to.
49+
* @return value or {@code null} for none
50+
*/
51+
public BigQueryDestination getBigQueryDestination() {
52+
return bigQueryDestination;
53+
}
54+
55+
/**
56+
* Required. The destination big query dataset to export findings to.
57+
* @param bigQueryDestination bigQueryDestination or {@code null} for none
58+
*/
59+
public ExportFindingsMetadata setBigQueryDestination(BigQueryDestination bigQueryDestination) {
60+
this.bigQueryDestination = bigQueryDestination;
61+
return this;
62+
}
63+
64+
/**
65+
* Optional. Timestamp at which export was started
66+
* @return value or {@code null} for none
67+
*/
68+
public String getExportStartTime() {
69+
return exportStartTime;
70+
}
71+
72+
/**
73+
* Optional. Timestamp at which export was started
74+
* @param exportStartTime exportStartTime or {@code null} for none
75+
*/
76+
public ExportFindingsMetadata setExportStartTime(String exportStartTime) {
77+
this.exportStartTime = exportStartTime;
78+
return this;
79+
}
80+
81+
@Override
82+
public ExportFindingsMetadata set(String fieldName, Object value) {
83+
return (ExportFindingsMetadata) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public ExportFindingsMetadata clone() {
88+
return (ExportFindingsMetadata) super.clone();
89+
}
90+
91+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.securitycenter.v1.model;
18+
19+
/**
20+
* The response to a ExportFindings request. Contains the LRO information.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Security Command Center API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ExportFindingsResponse extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public ExportFindingsResponse set(String fieldName, Object value) {
35+
return (ExportFindingsResponse) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public ExportFindingsResponse clone() {
40+
return (ExportFindingsResponse) super.clone();
41+
}
42+
43+
}

clients/google-api-services-securitycenter/v1/2.0.0/com/google/api/services/securitycenter/v1/model/GoogleCloudSecuritycenterV2Dataset.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ public final class GoogleCloudSecuritycenterV2Dataset extends com.google.api.cli
3838
private java.lang.String displayName;
3939

4040
/**
41-
* Resource name of dataset, e.g.
41+
* Resource name of the dataset, e.g.
4242
* projects/{project}/locations/{location}/datasets/2094040236064505856
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
4646
private java.lang.String name;
4747

4848
/**
49-
* Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod
49+
* Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod
5050
* The value may be {@code null}.
5151
*/
5252
@com.google.api.client.util.Key
@@ -70,7 +70,7 @@ public GoogleCloudSecuritycenterV2Dataset setDisplayName(java.lang.String displa
7070
}
7171

7272
/**
73-
* Resource name of dataset, e.g.
73+
* Resource name of the dataset, e.g.
7474
* projects/{project}/locations/{location}/datasets/2094040236064505856
7575
* @return value or {@code null} for none
7676
*/
@@ -79,7 +79,7 @@ public java.lang.String getName() {
7979
}
8080

8181
/**
82-
* Resource name of dataset, e.g.
82+
* Resource name of the dataset, e.g.
8383
* projects/{project}/locations/{location}/datasets/2094040236064505856
8484
* @param name name or {@code null} for none
8585
*/
@@ -89,15 +89,15 @@ public GoogleCloudSecuritycenterV2Dataset setName(java.lang.String name) {
8989
}
9090

9191
/**
92-
* Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod
92+
* Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod
9393
* @return value or {@code null} for none
9494
*/
9595
public java.lang.String getSource() {
9696
return source;
9797
}
9898

9999
/**
100-
* Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod
100+
* Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod
101101
* @param source source or {@code null} for none
102102
*/
103103
public GoogleCloudSecuritycenterV2Dataset setSource(java.lang.String source) {

clients/google-api-services-securitycenter/v1/2.0.0/com/google/api/services/securitycenter/v1/model/GoogleCloudSecuritycenterV2Pipeline.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,30 +31,30 @@
3131
public final class GoogleCloudSecuritycenterV2Pipeline extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The user defined display name of pipeline, e.g. plants-classification
34+
* The user-defined display name of pipeline, e.g. plants-classification
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private java.lang.String displayName;
3939

4040
/**
41-
* Resource name of pipeline, e.g.
41+
* Resource name of the pipeline, e.g.
4242
* projects/{project}/locations/{location}/trainingPipelines/5253428229225578496
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
4646
private java.lang.String name;
4747

4848
/**
49-
* The user defined display name of pipeline, e.g. plants-classification
49+
* The user-defined display name of pipeline, e.g. plants-classification
5050
* @return value or {@code null} for none
5151
*/
5252
public java.lang.String getDisplayName() {
5353
return displayName;
5454
}
5555

5656
/**
57-
* The user defined display name of pipeline, e.g. plants-classification
57+
* The user-defined display name of pipeline, e.g. plants-classification
5858
* @param displayName displayName or {@code null} for none
5959
*/
6060
public GoogleCloudSecuritycenterV2Pipeline setDisplayName(java.lang.String displayName) {
@@ -63,7 +63,7 @@ public GoogleCloudSecuritycenterV2Pipeline setDisplayName(java.lang.String displ
6363
}
6464

6565
/**
66-
* Resource name of pipeline, e.g.
66+
* Resource name of the pipeline, e.g.
6767
* projects/{project}/locations/{location}/trainingPipelines/5253428229225578496
6868
* @return value or {@code null} for none
6969
*/
@@ -72,7 +72,7 @@ public java.lang.String getName() {
7272
}
7373

7474
/**
75-
* Resource name of pipeline, e.g.
75+
* Resource name of the pipeline, e.g.
7676
* projects/{project}/locations/{location}/trainingPipelines/5253428229225578496
7777
* @param name name or {@code null} for none
7878
*/

clients/google-api-services-securitycenter/v1/2.0.0/com/google/api/services/securitycenter/v1/model/Pipeline.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class Pipeline extends com.google.api.client.json.GenericJson {
3838
private java.lang.String displayName;
3939

4040
/**
41-
* Resource name of pipeline, e.g.
41+
* Resource name of the pipeline, e.g.
4242
* projects/{project}/locations/{location}/trainingPipelines/5253428229225578496
4343
* The value may be {@code null}.
4444
*/
@@ -63,7 +63,7 @@ public Pipeline setDisplayName(java.lang.String displayName) {
6363
}
6464

6565
/**
66-
* Resource name of pipeline, e.g.
66+
* Resource name of the pipeline, e.g.
6767
* projects/{project}/locations/{location}/trainingPipelines/5253428229225578496
6868
* @return value or {@code null} for none
6969
*/
@@ -72,7 +72,7 @@ public java.lang.String getName() {
7272
}
7373

7474
/**
75-
* Resource name of pipeline, e.g.
75+
* Resource name of the pipeline, e.g.
7676
* projects/{project}/locations/{location}/trainingPipelines/5253428229225578496
7777
* @param name name or {@code null} for none
7878
*/

clients/google-api-services-securitycenter/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-securitycenter</artifactId>
11-
<version>v1-rev20250609-2.0.0</version>
12-
<name>Security Command Center API v1-rev20250609-2.0.0</name>
11+
<version>v1-rev20250616-2.0.0</version>
12+
<name>Security Command Center API v1-rev20250616-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)