Skip to content

Commit ed1a07e

Browse files
1 parent b2c5131 commit ed1a07e

File tree

10 files changed

+228
-36
lines changed

10 files changed

+228
-36
lines changed

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

clients/google-api-services-securitycenter/v1beta1/2.0.0/com/google/api/services/securitycenter/v1beta1/model/Attack.java

Lines changed: 54 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,33 @@ public final class Attack extends com.google.api.client.json.GenericJson {
3838
private java.lang.String classification;
3939

4040
/**
41-
* Total BPS (bytes per second) volume of attack.
41+
* Total BPS (bytes per second) volume of attack. Deprecated - refer to volume_bps_long instead.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
4545
private java.lang.Integer volumeBps;
4646

4747
/**
48-
* Total PPS (packets per second) volume of attack.
48+
* Total BPS (bytes per second) volume of attack.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
52+
private java.lang.Long volumeBpsLong;
53+
54+
/**
55+
* Total PPS (packets per second) volume of attack. Deprecated - refer to volume_pps_long instead.
4956
* The value may be {@code null}.
5057
*/
5158
@com.google.api.client.util.Key
5259
private java.lang.Integer volumePps;
5360

61+
/**
62+
* Total PPS (packets per second) volume of attack.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
66+
private java.lang.Long volumePpsLong;
67+
5468
/**
5569
* Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
5670
* @return value or {@code null} for none
@@ -69,15 +83,15 @@ public Attack setClassification(java.lang.String classification) {
6983
}
7084

7185
/**
72-
* Total BPS (bytes per second) volume of attack.
86+
* Total BPS (bytes per second) volume of attack. Deprecated - refer to volume_bps_long instead.
7387
* @return value or {@code null} for none
7488
*/
7589
public java.lang.Integer getVolumeBps() {
7690
return volumeBps;
7791
}
7892

7993
/**
80-
* Total BPS (bytes per second) volume of attack.
94+
* Total BPS (bytes per second) volume of attack. Deprecated - refer to volume_bps_long instead.
8195
* @param volumeBps volumeBps or {@code null} for none
8296
*/
8397
public Attack setVolumeBps(java.lang.Integer volumeBps) {
@@ -86,22 +100,56 @@ public Attack setVolumeBps(java.lang.Integer volumeBps) {
86100
}
87101

88102
/**
89-
* Total PPS (packets per second) volume of attack.
103+
* Total BPS (bytes per second) volume of attack.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.Long getVolumeBpsLong() {
107+
return volumeBpsLong;
108+
}
109+
110+
/**
111+
* Total BPS (bytes per second) volume of attack.
112+
* @param volumeBpsLong volumeBpsLong or {@code null} for none
113+
*/
114+
public Attack setVolumeBpsLong(java.lang.Long volumeBpsLong) {
115+
this.volumeBpsLong = volumeBpsLong;
116+
return this;
117+
}
118+
119+
/**
120+
* Total PPS (packets per second) volume of attack. Deprecated - refer to volume_pps_long instead.
90121
* @return value or {@code null} for none
91122
*/
92123
public java.lang.Integer getVolumePps() {
93124
return volumePps;
94125
}
95126

96127
/**
97-
* Total PPS (packets per second) volume of attack.
128+
* Total PPS (packets per second) volume of attack. Deprecated - refer to volume_pps_long instead.
98129
* @param volumePps volumePps or {@code null} for none
99130
*/
100131
public Attack setVolumePps(java.lang.Integer volumePps) {
101132
this.volumePps = volumePps;
102133
return this;
103134
}
104135

136+
/**
137+
* Total PPS (packets per second) volume of attack.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.Long getVolumePpsLong() {
141+
return volumePpsLong;
142+
}
143+
144+
/**
145+
* Total PPS (packets per second) volume of attack.
146+
* @param volumePpsLong volumePpsLong or {@code null} for none
147+
*/
148+
public Attack setVolumePpsLong(java.lang.Long volumePpsLong) {
149+
this.volumePpsLong = volumePpsLong;
150+
return this;
151+
}
152+
105153
@Override
106154
public Attack set(String fieldName, Object value) {
107155
return (Attack) super.set(fieldName, value);

clients/google-api-services-securitycenter/v1beta1/2.0.0/com/google/api/services/securitycenter/v1beta1/model/GoogleCloudSecuritycenterV2Attack.java

Lines changed: 54 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,33 @@ public final class GoogleCloudSecuritycenterV2Attack extends com.google.api.clie
3838
private java.lang.String classification;
3939

4040
/**
41-
* Total BPS (bytes per second) volume of attack.
41+
* Total BPS (bytes per second) volume of attack. Deprecated - refer to volume_bps_long instead.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
4545
private java.lang.Integer volumeBps;
4646

4747
/**
48-
* Total PPS (packets per second) volume of attack.
48+
* Total BPS (bytes per second) volume of attack.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
52+
private java.lang.Long volumeBpsLong;
53+
54+
/**
55+
* Total PPS (packets per second) volume of attack. Deprecated - refer to volume_pps_long instead.
4956
* The value may be {@code null}.
5057
*/
5158
@com.google.api.client.util.Key
5259
private java.lang.Integer volumePps;
5360

61+
/**
62+
* Total PPS (packets per second) volume of attack.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
66+
private java.lang.Long volumePpsLong;
67+
5468
/**
5569
* Type of attack, for example, 'SYN-flood', 'NTP-udp', or 'CHARGEN-udp'.
5670
* @return value or {@code null} for none
@@ -69,15 +83,15 @@ public GoogleCloudSecuritycenterV2Attack setClassification(java.lang.String clas
6983
}
7084

7185
/**
72-
* Total BPS (bytes per second) volume of attack.
86+
* Total BPS (bytes per second) volume of attack. Deprecated - refer to volume_bps_long instead.
7387
* @return value or {@code null} for none
7488
*/
7589
public java.lang.Integer getVolumeBps() {
7690
return volumeBps;
7791
}
7892

7993
/**
80-
* Total BPS (bytes per second) volume of attack.
94+
* Total BPS (bytes per second) volume of attack. Deprecated - refer to volume_bps_long instead.
8195
* @param volumeBps volumeBps or {@code null} for none
8296
*/
8397
public GoogleCloudSecuritycenterV2Attack setVolumeBps(java.lang.Integer volumeBps) {
@@ -86,22 +100,56 @@ public GoogleCloudSecuritycenterV2Attack setVolumeBps(java.lang.Integer volumeBp
86100
}
87101

88102
/**
89-
* Total PPS (packets per second) volume of attack.
103+
* Total BPS (bytes per second) volume of attack.
104+
* @return value or {@code null} for none
105+
*/
106+
public java.lang.Long getVolumeBpsLong() {
107+
return volumeBpsLong;
108+
}
109+
110+
/**
111+
* Total BPS (bytes per second) volume of attack.
112+
* @param volumeBpsLong volumeBpsLong or {@code null} for none
113+
*/
114+
public GoogleCloudSecuritycenterV2Attack setVolumeBpsLong(java.lang.Long volumeBpsLong) {
115+
this.volumeBpsLong = volumeBpsLong;
116+
return this;
117+
}
118+
119+
/**
120+
* Total PPS (packets per second) volume of attack. Deprecated - refer to volume_pps_long instead.
90121
* @return value or {@code null} for none
91122
*/
92123
public java.lang.Integer getVolumePps() {
93124
return volumePps;
94125
}
95126

96127
/**
97-
* Total PPS (packets per second) volume of attack.
128+
* Total PPS (packets per second) volume of attack. Deprecated - refer to volume_pps_long instead.
98129
* @param volumePps volumePps or {@code null} for none
99130
*/
100131
public GoogleCloudSecuritycenterV2Attack setVolumePps(java.lang.Integer volumePps) {
101132
this.volumePps = volumePps;
102133
return this;
103134
}
104135

136+
/**
137+
* Total PPS (packets per second) volume of attack.
138+
* @return value or {@code null} for none
139+
*/
140+
public java.lang.Long getVolumePpsLong() {
141+
return volumePpsLong;
142+
}
143+
144+
/**
145+
* Total PPS (packets per second) volume of attack.
146+
* @param volumePpsLong volumePpsLong or {@code null} for none
147+
*/
148+
public GoogleCloudSecuritycenterV2Attack setVolumePpsLong(java.lang.Long volumePpsLong) {
149+
this.volumePpsLong = volumePpsLong;
150+
return this;
151+
}
152+
105153
@Override
106154
public GoogleCloudSecuritycenterV2Attack set(String fieldName, Object value) {
107155
return (GoogleCloudSecuritycenterV2Attack) super.set(fieldName, value);

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

1515
<inceptionYear>2011</inceptionYear>

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

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

0 commit comments

Comments
 (0)