Skip to content

Commit 1226110

Browse files
1 parent 22c6efe commit 1226110

File tree

10 files changed

+42
-42
lines changed

10 files changed

+42
-42
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-rev20250804-2.0.0</version>
25+
<version>v1-rev20250806-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-rev20250804-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1-rev20250806-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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ public List set(String parameterName, Object value) {
25102510
* This request holds the parameters needed by the networksecurity server. After setting any
25112511
* optional parameters, call the {@link Patch#execute()} method to invoke the remote operation.
25122512
*
2513-
* @param name Immutable. Identifier. name of resource
2513+
* @param name Immutable. Identifier. Name of resource.
25142514
* @param content the {@link com.google.api.services.networksecurity.v1.model.FirewallEndpoint}
25152515
* @return the request
25162516
*/
@@ -2538,7 +2538,7 @@ public class Patch extends NetworkSecurityRequest<com.google.api.services.networ
25382538
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
25392539
* be called to initialize this instance immediately after invoking the constructor. </p>
25402540
*
2541-
* @param name Immutable. Identifier. name of resource
2541+
* @param name Immutable. Identifier. Name of resource.
25422542
* @param content the {@link com.google.api.services.networksecurity.v1.model.FirewallEndpoint}
25432543
* @since 1.13
25442544
*/
@@ -2607,17 +2607,17 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
26072607
return (Patch) super.setUploadProtocol(uploadProtocol);
26082608
}
26092609

2610-
/** Immutable. Identifier. name of resource */
2610+
/** Immutable. Identifier. Name of resource. */
26112611
@com.google.api.client.util.Key
26122612
private java.lang.String name;
26132613

2614-
/** Immutable. Identifier. name of resource
2614+
/** Immutable. Identifier. Name of resource.
26152615
*/
26162616
public java.lang.String getName() {
26172617
return name;
26182618
}
26192619

2620-
/** Immutable. Identifier. name of resource */
2620+
/** Immutable. Identifier. Name of resource. */
26212621
public Patch setName(java.lang.String name) {
26222622
if (!getSuppressPatternChecks()) {
26232623
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),

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

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

1919
/**
20-
* Message describing Endpoint object
20+
* Message describing Endpoint object.
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:
@@ -55,7 +55,7 @@ public final class FirewallEndpoint extends com.google.api.client.json.GenericJs
5555
private java.lang.String billingProjectId;
5656

5757
/**
58-
* Output only. Create time stamp
58+
* Output only. Create time stamp.
5959
* The value may be {@code null}.
6060
*/
6161
@com.google.api.client.util.Key
@@ -76,7 +76,7 @@ public final class FirewallEndpoint extends com.google.api.client.json.GenericJs
7676
private java.util.Map<String, java.lang.String> labels;
7777

7878
/**
79-
* Immutable. Identifier. name of resource
79+
* Immutable. Identifier. Name of resource.
8080
* The value may be {@code null}.
8181
*/
8282
@com.google.api.client.util.Key
@@ -177,15 +177,15 @@ public FirewallEndpoint setBillingProjectId(java.lang.String billingProjectId) {
177177
}
178178

179179
/**
180-
* Output only. Create time stamp
180+
* Output only. Create time stamp.
181181
* @return value or {@code null} for none
182182
*/
183183
public String getCreateTime() {
184184
return createTime;
185185
}
186186

187187
/**
188-
* Output only. Create time stamp
188+
* Output only. Create time stamp.
189189
* @param createTime createTime or {@code null} for none
190190
*/
191191
public FirewallEndpoint setCreateTime(String createTime) {
@@ -228,15 +228,15 @@ public FirewallEndpoint setLabels(java.util.Map<String, java.lang.String> labels
228228
}
229229

230230
/**
231-
* Immutable. Identifier. name of resource
231+
* Immutable. Identifier. Name of resource.
232232
* @return value or {@code null} for none
233233
*/
234234
public java.lang.String getName() {
235235
return name;
236236
}
237237

238238
/**
239-
* Immutable. Identifier. name of resource
239+
* Immutable. Identifier. Name of resource.
240240
* @param name name or {@code null} for none
241241
*/
242242
public FirewallEndpoint setName(java.lang.String name) {

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

Lines changed: 5 additions & 5 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-rev20250804-2.0.0</version>
12-
<name>Network Security API v1-rev20250804-2.0.0</name>
11+
<version>v1-rev20250806-2.0.0</version>
12+
<name>Network Security API v1-rev20250806-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -89,9 +89,9 @@
8989
<windowtitle>Network Security API ${project.version}</windowtitle>
9090
<links>
9191
<link>http://docs.oracle.com/javase/7/docs/api</link>
92-
<link>https://googleapis.dev/java/google-http-client/1.47.0/</link>
92+
<link>https://googleapis.dev/java/google-http-client/2.0.0/</link>
9393
<link>https://googleapis.dev/java/google-oauth-client/1.39.0/</link>
94-
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
94+
<link>https://googleapis.dev/java/google-api-client/2.8.1/</link>
9595
</links>
9696
</configuration>
9797
</plugin>
@@ -124,7 +124,7 @@
124124
<dependency>
125125
<groupId>com.google.api-client</groupId>
126126
<artifactId>google-api-client</artifactId>
127-
<version>2.7.2</version>
127+
<version>2.8.1</version>
128128
</dependency>
129129
</dependencies>
130130

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

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

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ public List set(String parameterName, Object value) {
25102510
* This request holds the parameters needed by the networksecurity server. After setting any
25112511
* optional parameters, call the {@link Patch#execute()} method to invoke the remote operation.
25122512
*
2513-
* @param name Immutable. Identifier. name of resource
2513+
* @param name Immutable. Identifier. Name of resource.
25142514
* @param content the {@link com.google.api.services.networksecurity.v1beta1.model.FirewallEndpoint}
25152515
* @return the request
25162516
*/
@@ -2538,7 +2538,7 @@ public class Patch extends NetworkSecurityRequest<com.google.api.services.networ
25382538
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
25392539
* be called to initialize this instance immediately after invoking the constructor. </p>
25402540
*
2541-
* @param name Immutable. Identifier. name of resource
2541+
* @param name Immutable. Identifier. Name of resource.
25422542
* @param content the {@link com.google.api.services.networksecurity.v1beta1.model.FirewallEndpoint}
25432543
* @since 1.13
25442544
*/
@@ -2607,17 +2607,17 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
26072607
return (Patch) super.setUploadProtocol(uploadProtocol);
26082608
}
26092609

2610-
/** Immutable. Identifier. name of resource */
2610+
/** Immutable. Identifier. Name of resource. */
26112611
@com.google.api.client.util.Key
26122612
private java.lang.String name;
26132613

2614-
/** Immutable. Identifier. name of resource
2614+
/** Immutable. Identifier. Name of resource.
26152615
*/
26162616
public java.lang.String getName() {
26172617
return name;
26182618
}
26192619

2620-
/** Immutable. Identifier. name of resource */
2620+
/** Immutable. Identifier. Name of resource. */
26212621
public Patch setName(java.lang.String name) {
26222622
if (!getSuppressPatternChecks()) {
26232623
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),

clients/google-api-services-networksecurity/v1beta1/2.0.0/com/google/api/services/networksecurity/v1beta1/model/FirewallEndpoint.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.networksecurity.v1beta1.model;
1818

1919
/**
20-
* Message describing Endpoint object
20+
* Message describing Endpoint object.
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:
@@ -55,7 +55,7 @@ public final class FirewallEndpoint extends com.google.api.client.json.GenericJs
5555
private java.lang.String billingProjectId;
5656

5757
/**
58-
* Output only. Create time stamp
58+
* Output only. Create time stamp.
5959
* The value may be {@code null}.
6060
*/
6161
@com.google.api.client.util.Key
@@ -76,7 +76,7 @@ public final class FirewallEndpoint extends com.google.api.client.json.GenericJs
7676
private java.util.Map<String, java.lang.String> labels;
7777

7878
/**
79-
* Immutable. Identifier. name of resource
79+
* Immutable. Identifier. Name of resource.
8080
* The value may be {@code null}.
8181
*/
8282
@com.google.api.client.util.Key
@@ -177,15 +177,15 @@ public FirewallEndpoint setBillingProjectId(java.lang.String billingProjectId) {
177177
}
178178

179179
/**
180-
* Output only. Create time stamp
180+
* Output only. Create time stamp.
181181
* @return value or {@code null} for none
182182
*/
183183
public String getCreateTime() {
184184
return createTime;
185185
}
186186

187187
/**
188-
* Output only. Create time stamp
188+
* Output only. Create time stamp.
189189
* @param createTime createTime or {@code null} for none
190190
*/
191191
public FirewallEndpoint setCreateTime(String createTime) {
@@ -228,15 +228,15 @@ public FirewallEndpoint setLabels(java.util.Map<String, java.lang.String> labels
228228
}
229229

230230
/**
231-
* Immutable. Identifier. name of resource
231+
* Immutable. Identifier. Name of resource.
232232
* @return value or {@code null} for none
233233
*/
234234
public java.lang.String getName() {
235235
return name;
236236
}
237237

238238
/**
239-
* Immutable. Identifier. name of resource
239+
* Immutable. Identifier. Name of resource.
240240
* @param name name or {@code null} for none
241241
*/
242242
public FirewallEndpoint setName(java.lang.String name) {

clients/google-api-services-networksecurity/v1beta1/2.0.0/pom.xml

Lines changed: 5 additions & 5 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>v1beta1-rev20250804-2.0.0</version>
12-
<name>Network Security API v1beta1-rev20250804-2.0.0</name>
11+
<version>v1beta1-rev20250806-2.0.0</version>
12+
<name>Network Security API v1beta1-rev20250806-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -89,9 +89,9 @@
8989
<windowtitle>Network Security API ${project.version}</windowtitle>
9090
<links>
9191
<link>http://docs.oracle.com/javase/7/docs/api</link>
92-
<link>https://googleapis.dev/java/google-http-client/1.47.0/</link>
92+
<link>https://googleapis.dev/java/google-http-client/2.0.0/</link>
9393
<link>https://googleapis.dev/java/google-oauth-client/1.39.0/</link>
94-
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
94+
<link>https://googleapis.dev/java/google-api-client/2.8.1/</link>
9595
</links>
9696
</configuration>
9797
</plugin>
@@ -124,7 +124,7 @@
124124
<dependency>
125125
<groupId>com.google.api-client</groupId>
126126
<artifactId>google-api-client</artifactId>
127-
<version>2.7.2</version>
127+
<version>2.8.1</version>
128128
</dependency>
129129
</dependencies>
130130

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

0 commit comments

Comments
 (0)