Skip to content

Commit 1434b59

Browse files
1 parent 7bec254 commit 1434b59

File tree

7 files changed

+556
-14
lines changed

7 files changed

+556
-14
lines changed

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

clients/google-api-services-networksecurity/v1/2.0.0/com/google/api/services/networksecurity/v1/NetworkSecurity.java

Lines changed: 521 additions & 0 deletions
Large diffs are not rendered by default.

clients/google-api-services-networksecurity/v1/2.0.0/com/google/api/services/networksecurity/v1/model/AddressGroup.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ public final class AddressGroup extends com.google.api.client.json.GenericJson {
7272
@com.google.api.client.util.Key
7373
private java.lang.String name;
7474

75+
/**
76+
* Optional. List of supported purposes of the Address Group.
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private java.util.List<java.lang.String> purpose;
81+
7582
/**
7683
* Output only. Server-defined fully-qualified URL for this resource.
7784
* The value may be {@code null}.
@@ -197,6 +204,23 @@ public AddressGroup setName(java.lang.String name) {
197204
return this;
198205
}
199206

207+
/**
208+
* Optional. List of supported purposes of the Address Group.
209+
* @return value or {@code null} for none
210+
*/
211+
public java.util.List<java.lang.String> getPurpose() {
212+
return purpose;
213+
}
214+
215+
/**
216+
* Optional. List of supported purposes of the Address Group.
217+
* @param purpose purpose or {@code null} for none
218+
*/
219+
public AddressGroup setPurpose(java.util.List<java.lang.String> purpose) {
220+
this.purpose = purpose;
221+
return this;
222+
}
223+
200224
/**
201225
* Output only. Server-defined fully-qualified URL for this resource.
202226
* @return value or {@code null} for none

clients/google-api-services-networksecurity/v1/2.0.0/com/google/api/services/networksecurity/v1/model/SecurityProfile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.networksecurity.v1.model;
1818

1919
/**
20-
* SecurityProfile is a resource that defines the behavior for one of many ProfileTypes. Next ID: 11
20+
* SecurityProfile is a resource that defines the behavior for one of many ProfileTypes. Next ID: 12
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Network Security API. For a detailed explanation see:

clients/google-api-services-networksecurity/v1/2.0.0/com/google/api/services/networksecurity/v1/model/SecurityProfileGroup.java

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* SecurityProfileGroup is a resource that defines the behavior for various ProfileTypes. Next ID:
21-
* 10
21+
* 11
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2424
* transmitted over HTTP when working with the Network Security API. For a detailed explanation see:
@@ -69,8 +69,7 @@ public final class SecurityProfileGroup extends com.google.api.client.json.Gener
6969
private java.lang.String name;
7070

7171
/**
72-
* Optional. Reference to a SecurityProfile with the threat prevention configuration for the
73-
* SecurityProfileGroup.
72+
* Optional. Reference to a SecurityProfile with the ThreatPrevention configuration.
7473
* The value may be {@code null}.
7574
*/
7675
@com.google.api.client.util.Key
@@ -175,17 +174,15 @@ public SecurityProfileGroup setName(java.lang.String name) {
175174
}
176175

177176
/**
178-
* Optional. Reference to a SecurityProfile with the threat prevention configuration for the
179-
* SecurityProfileGroup.
177+
* Optional. Reference to a SecurityProfile with the ThreatPrevention configuration.
180178
* @return value or {@code null} for none
181179
*/
182180
public java.lang.String getThreatPreventionProfile() {
183181
return threatPreventionProfile;
184182
}
185183

186184
/**
187-
* Optional. Reference to a SecurityProfile with the threat prevention configuration for the
188-
* SecurityProfileGroup.
185+
* Optional. Reference to a SecurityProfile with the ThreatPrevention configuration.
189186
* @param threatPreventionProfile threatPreventionProfile or {@code null} for none
190187
*/
191188
public SecurityProfileGroup setThreatPreventionProfile(java.lang.String threatPreventionProfile) {

clients/google-api-services-networksecurity/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-networksecurity</artifactId>
11-
<version>v1-rev20240626-2.0.0</version>
12-
<name>Network Security API v1-rev20240626-2.0.0</name>
11+
<version>v1-rev20240803-2.0.0</version>
12+
<name>Network Security API v1-rev20240803-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)