Skip to content

Commit 258d43f

Browse files
1 parent 3c5e7e7 commit 258d43f

File tree

12 files changed

+226
-36
lines changed

12 files changed

+226
-36
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-rev20250911-2.0.0</version>
25+
<version>v1-rev20250925-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-rev20250911-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1-rev20250925-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: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3326,6 +3326,40 @@ public List setPageToken(java.lang.String pageToken) {
33263326
return this;
33273327
}
33283328

3329+
/**
3330+
* When set to `true`, operations that are reachable are returned as normal, and those
3331+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
3332+
* This can only be `true` when reading across collections e.g. when `parent` is set to
3333+
* `"projects/example/locations/-"`. This field is not by default supported and will
3334+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
3335+
* service or product specific documentation.
3336+
*/
3337+
@com.google.api.client.util.Key
3338+
private java.lang.Boolean returnPartialSuccess;
3339+
3340+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
3341+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
3342+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
3343+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
3344+
explicitly documented otherwise in service or product specific documentation.
3345+
*/
3346+
public java.lang.Boolean getReturnPartialSuccess() {
3347+
return returnPartialSuccess;
3348+
}
3349+
3350+
/**
3351+
* When set to `true`, operations that are reachable are returned as normal, and those
3352+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
3353+
* This can only be `true` when reading across collections e.g. when `parent` is set to
3354+
* `"projects/example/locations/-"`. This field is not by default supported and will
3355+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
3356+
* service or product specific documentation.
3357+
*/
3358+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
3359+
this.returnPartialSuccess = returnPartialSuccess;
3360+
return this;
3361+
}
3362+
33293363
@Override
33303364
public List set(String parameterName, Object value) {
33313365
return (List) super.set(parameterName, value);
@@ -23388,6 +23422,40 @@ public List setPageToken(java.lang.String pageToken) {
2338823422
return this;
2338923423
}
2339023424

23425+
/**
23426+
* When set to `true`, operations that are reachable are returned as normal, and those
23427+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
23428+
* This can only be `true` when reading across collections e.g. when `parent` is set to
23429+
* `"projects/example/locations/-"`. This field is not by default supported and will
23430+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
23431+
* service or product specific documentation.
23432+
*/
23433+
@com.google.api.client.util.Key
23434+
private java.lang.Boolean returnPartialSuccess;
23435+
23436+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
23437+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
23438+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
23439+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
23440+
explicitly documented otherwise in service or product specific documentation.
23441+
*/
23442+
public java.lang.Boolean getReturnPartialSuccess() {
23443+
return returnPartialSuccess;
23444+
}
23445+
23446+
/**
23447+
* When set to `true`, operations that are reachable are returned as normal, and those
23448+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
23449+
* This can only be `true` when reading across collections e.g. when `parent` is set to
23450+
* `"projects/example/locations/-"`. This field is not by default supported and will
23451+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
23452+
* service or product specific documentation.
23453+
*/
23454+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
23455+
this.returnPartialSuccess = returnPartialSuccess;
23456+
return this;
23457+
}
23458+
2339123459
@Override
2339223460
public List set(String parameterName, Object value) {
2339323461
return (List) super.set(parameterName, value);

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

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,27 +31,26 @@ public final class AuthzPolicyTarget extends com.google.api.client.json.GenericJ
3131

3232
/**
3333
* Required. All gateways and forwarding rules referenced by this policy and extensions must share
34-
* the same load balancing scheme. Supported values: `INTERNAL_MANAGED`, `INTERNAL_SELF_MANAGED`,
35-
* and `EXTERNAL_MANAGED`. For more information, refer to [Backend services
36-
* overview](https://cloud.google.com/load-balancing/docs/backend-service).
34+
* the same load balancing scheme. Supported values: `INTERNAL_MANAGED` and `EXTERNAL_MANAGED`.
35+
* For more information, refer to [Backend services overview](https://cloud.google.com/load-
36+
* balancing/docs/backend-service).
3737
* The value may be {@code null}.
3838
*/
3939
@com.google.api.client.util.Key
4040
private java.lang.String loadBalancingScheme;
4141

4242
/**
4343
* Required. A list of references to the Forwarding Rules on which this policy will be applied.
44-
* For policies created for Cloudrun, this field will reference the Cloud Run services.
4544
* The value may be {@code null}.
4645
*/
4746
@com.google.api.client.util.Key
4847
private java.util.List<java.lang.String> resources;
4948

5049
/**
5150
* Required. All gateways and forwarding rules referenced by this policy and extensions must share
52-
* the same load balancing scheme. Supported values: `INTERNAL_MANAGED`, `INTERNAL_SELF_MANAGED`,
53-
* and `EXTERNAL_MANAGED`. For more information, refer to [Backend services
54-
* overview](https://cloud.google.com/load-balancing/docs/backend-service).
51+
* the same load balancing scheme. Supported values: `INTERNAL_MANAGED` and `EXTERNAL_MANAGED`.
52+
* For more information, refer to [Backend services overview](https://cloud.google.com/load-
53+
* balancing/docs/backend-service).
5554
* @return value or {@code null} for none
5655
*/
5756
public java.lang.String getLoadBalancingScheme() {
@@ -60,9 +59,9 @@ public java.lang.String getLoadBalancingScheme() {
6059

6160
/**
6261
* Required. All gateways and forwarding rules referenced by this policy and extensions must share
63-
* the same load balancing scheme. Supported values: `INTERNAL_MANAGED`, `INTERNAL_SELF_MANAGED`,
64-
* and `EXTERNAL_MANAGED`. For more information, refer to [Backend services
65-
* overview](https://cloud.google.com/load-balancing/docs/backend-service).
62+
* the same load balancing scheme. Supported values: `INTERNAL_MANAGED` and `EXTERNAL_MANAGED`.
63+
* For more information, refer to [Backend services overview](https://cloud.google.com/load-
64+
* balancing/docs/backend-service).
6665
* @param loadBalancingScheme loadBalancingScheme or {@code null} for none
6766
*/
6867
public AuthzPolicyTarget setLoadBalancingScheme(java.lang.String loadBalancingScheme) {
@@ -72,7 +71,6 @@ public AuthzPolicyTarget setLoadBalancingScheme(java.lang.String loadBalancingSc
7271

7372
/**
7473
* Required. A list of references to the Forwarding Rules on which this policy will be applied.
75-
* For policies created for Cloudrun, this field will reference the Cloud Run services.
7674
* @return value or {@code null} for none
7775
*/
7876
public java.util.List<java.lang.String> getResources() {
@@ -81,7 +79,6 @@ public java.util.List<java.lang.String> getResources() {
8179

8280
/**
8381
* Required. A list of references to the Forwarding Rules on which this policy will be applied.
84-
* For policies created for Cloudrun, this field will reference the Cloud Run services.
8582
* @param resources resources or {@code null} for none
8683
*/
8784
public AuthzPolicyTarget setResources(java.util.List<java.lang.String> resources) {

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) super.set(fieldName, value);

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-rev20250911-2.0.0</version>
12-
<name>Network Security API v1-rev20250911-2.0.0</name>
11+
<version>v1-rev20250925-2.0.0</version>
12+
<name>Network Security API v1-rev20250925-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-rev20250911-2.0.0</version>
25+
<version>v1-rev20250925-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-rev20250911-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1-rev20250925-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-rev20250911-2.0.0</version>
25+
<version>v1beta1-rev20250925-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-rev20250911-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1beta1-rev20250925-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: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3326,6 +3326,40 @@ public List setPageToken(java.lang.String pageToken) {
33263326
return this;
33273327
}
33283328

3329+
/**
3330+
* When set to `true`, operations that are reachable are returned as normal, and those
3331+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
3332+
* This can only be `true` when reading across collections e.g. when `parent` is set to
3333+
* `"projects/example/locations/-"`. This field is not by default supported and will
3334+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
3335+
* service or product specific documentation.
3336+
*/
3337+
@com.google.api.client.util.Key
3338+
private java.lang.Boolean returnPartialSuccess;
3339+
3340+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
3341+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
3342+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
3343+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
3344+
explicitly documented otherwise in service or product specific documentation.
3345+
*/
3346+
public java.lang.Boolean getReturnPartialSuccess() {
3347+
return returnPartialSuccess;
3348+
}
3349+
3350+
/**
3351+
* When set to `true`, operations that are reachable are returned as normal, and those
3352+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
3353+
* This can only be `true` when reading across collections e.g. when `parent` is set to
3354+
* `"projects/example/locations/-"`. This field is not by default supported and will
3355+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
3356+
* service or product specific documentation.
3357+
*/
3358+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
3359+
this.returnPartialSuccess = returnPartialSuccess;
3360+
return this;
3361+
}
3362+
33293363
@Override
33303364
public List set(String parameterName, Object value) {
33313365
return (List) super.set(parameterName, value);
@@ -24177,6 +24211,40 @@ public List setPageToken(java.lang.String pageToken) {
2417724211
return this;
2417824212
}
2417924213

24214+
/**
24215+
* When set to `true`, operations that are reachable are returned as normal, and those
24216+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
24217+
* This can only be `true` when reading across collections e.g. when `parent` is set to
24218+
* `"projects/example/locations/-"`. This field is not by default supported and will
24219+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
24220+
* service or product specific documentation.
24221+
*/
24222+
@com.google.api.client.util.Key
24223+
private java.lang.Boolean returnPartialSuccess;
24224+
24225+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
24226+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
24227+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
24228+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
24229+
explicitly documented otherwise in service or product specific documentation.
24230+
*/
24231+
public java.lang.Boolean getReturnPartialSuccess() {
24232+
return returnPartialSuccess;
24233+
}
24234+
24235+
/**
24236+
* When set to `true`, operations that are reachable are returned as normal, and those
24237+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
24238+
* This can only be `true` when reading across collections e.g. when `parent` is set to
24239+
* `"projects/example/locations/-"`. This field is not by default supported and will
24240+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
24241+
* service or product specific documentation.
24242+
*/
24243+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
24244+
this.returnPartialSuccess = returnPartialSuccess;
24245+
return this;
24246+
}
24247+
2418024248
@Override
2418124249
public List set(String parameterName, Object value) {
2418224250
return (List) super.set(parameterName, value);

0 commit comments

Comments
 (0)