Skip to content

Commit 747442a

Browse files
1 parent c6a88ea commit 747442a

36 files changed

+2476
-1973
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-rev20250211-2.0.0</version>
25+
<version>v1-rev20250217-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-rev20250211-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1-rev20250217-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 & 562 deletions
Large diffs are not rendered by default.

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

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,13 @@ public final class AuthzPolicyAuthzRuleFromRequestSource extends com.google.api.
3131

3232
/**
3333
* Optional. A list of identities derived from the client's certificate. This field will not match
34-
* on a request unless mutual TLS is enabled for the Forwarding rule or Gateway. Each identity is
35-
* a string whose value is matched against the URI SAN, or DNS SAN or the subject field in the
36-
* client's certificate. The match can be exact, prefix, suffix or a substring match. One of
37-
* exact, prefix, suffix or contains must be specified. Limited to 5 principals.
34+
* on a request unless mutual TLS is enabled for the forwarding rule or Gateway. For Application
35+
* Load Balancers, each identity is a string whose value is matched against the URI SAN, or DNS
36+
* SAN, or SPIFFE ID, or the subject field in the client's certificate. For Cloud Service Mesh,
37+
* each identity is a string whose value is matched against the URI SAN, or DNS SAN, or the
38+
* subject field in the client's certificate. The match can be exact, prefix, suffix, or a
39+
* substring match. One of exact, prefix, suffix, or contains must be specified. Limited to 5
40+
* principals.
3841
* The value may be {@code null}.
3942
*/
4043
@com.google.api.client.util.Key
@@ -50,10 +53,13 @@ public final class AuthzPolicyAuthzRuleFromRequestSource extends com.google.api.
5053

5154
/**
5255
* Optional. A list of identities derived from the client's certificate. This field will not match
53-
* on a request unless mutual TLS is enabled for the Forwarding rule or Gateway. Each identity is
54-
* a string whose value is matched against the URI SAN, or DNS SAN or the subject field in the
55-
* client's certificate. The match can be exact, prefix, suffix or a substring match. One of
56-
* exact, prefix, suffix or contains must be specified. Limited to 5 principals.
56+
* on a request unless mutual TLS is enabled for the forwarding rule or Gateway. For Application
57+
* Load Balancers, each identity is a string whose value is matched against the URI SAN, or DNS
58+
* SAN, or SPIFFE ID, or the subject field in the client's certificate. For Cloud Service Mesh,
59+
* each identity is a string whose value is matched against the URI SAN, or DNS SAN, or the
60+
* subject field in the client's certificate. The match can be exact, prefix, suffix, or a
61+
* substring match. One of exact, prefix, suffix, or contains must be specified. Limited to 5
62+
* principals.
5763
* @return value or {@code null} for none
5864
*/
5965
public java.util.List<AuthzPolicyAuthzRuleStringMatch> getPrincipals() {
@@ -62,10 +68,13 @@ public java.util.List<AuthzPolicyAuthzRuleStringMatch> getPrincipals() {
6268

6369
/**
6470
* Optional. A list of identities derived from the client's certificate. This field will not match
65-
* on a request unless mutual TLS is enabled for the Forwarding rule or Gateway. Each identity is
66-
* a string whose value is matched against the URI SAN, or DNS SAN or the subject field in the
67-
* client's certificate. The match can be exact, prefix, suffix or a substring match. One of
68-
* exact, prefix, suffix or contains must be specified. Limited to 5 principals.
71+
* on a request unless mutual TLS is enabled for the forwarding rule or Gateway. For Application
72+
* Load Balancers, each identity is a string whose value is matched against the URI SAN, or DNS
73+
* SAN, or SPIFFE ID, or the subject field in the client's certificate. For Cloud Service Mesh,
74+
* each identity is a string whose value is matched against the URI SAN, or DNS SAN, or the
75+
* subject field in the client's certificate. The match can be exact, prefix, suffix, or a
76+
* substring match. One of exact, prefix, suffix, or contains must be specified. Limited to 5
77+
* principals.
6978
* @param principals principals or {@code null} for none
7079
*/
7180
public AuthzPolicyAuthzRuleFromRequestSource setPrincipals(java.util.List<AuthzPolicyAuthzRuleStringMatch> principals) {

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ public final class ListAddressGroupsResponse extends com.google.api.client.json.
5151
@com.google.api.client.util.Key
5252
private java.lang.String nextPageToken;
5353

54+
/**
55+
* Locations that could not be reached.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.util.List<java.lang.String> unreachable;
60+
5461
/**
5562
* List of AddressGroups resources.
5663
* @return value or {@code null} for none
@@ -89,6 +96,23 @@ public ListAddressGroupsResponse setNextPageToken(java.lang.String nextPageToken
8996
return this;
9097
}
9198

99+
/**
100+
* Locations that could not be reached.
101+
* @return value or {@code null} for none
102+
*/
103+
public java.util.List<java.lang.String> getUnreachable() {
104+
return unreachable;
105+
}
106+
107+
/**
108+
* Locations that could not be reached.
109+
* @param unreachable unreachable or {@code null} for none
110+
*/
111+
public ListAddressGroupsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
112+
this.unreachable = unreachable;
113+
return this;
114+
}
115+
92116
@Override
93117
public ListAddressGroupsResponse set(String fieldName, Object value) {
94118
return (ListAddressGroupsResponse) super.set(fieldName, value);

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

Lines changed: 10 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 for response to listing MirroringDeploymentGroups
20+
* Response message for ListMirroringDeploymentGroups.
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:
@@ -30,29 +30,30 @@
3030
public final class ListMirroringDeploymentGroupsResponse extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The list of MirroringDeploymentGroup
33+
* The deployment groups from the specified parent.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.util.List<MirroringDeploymentGroup> mirroringDeploymentGroups;
3838

3939
/**
40-
* A token identifying a page of results the server should return.
40+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
41+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
4142
* The value may be {@code null}.
4243
*/
4344
@com.google.api.client.util.Key
4445
private java.lang.String nextPageToken;
4546

4647
/**
47-
* The list of MirroringDeploymentGroup
48+
* The deployment groups from the specified parent.
4849
* @return value or {@code null} for none
4950
*/
5051
public java.util.List<MirroringDeploymentGroup> getMirroringDeploymentGroups() {
5152
return mirroringDeploymentGroups;
5253
}
5354

5455
/**
55-
* The list of MirroringDeploymentGroup
56+
* The deployment groups from the specified parent.
5657
* @param mirroringDeploymentGroups mirroringDeploymentGroups or {@code null} for none
5758
*/
5859
public ListMirroringDeploymentGroupsResponse setMirroringDeploymentGroups(java.util.List<MirroringDeploymentGroup> mirroringDeploymentGroups) {
@@ -61,15 +62,17 @@ public ListMirroringDeploymentGroupsResponse setMirroringDeploymentGroups(java.u
6162
}
6263

6364
/**
64-
* A token identifying a page of results the server should return.
65+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
66+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
6567
* @return value or {@code null} for none
6668
*/
6769
public java.lang.String getNextPageToken() {
6870
return nextPageToken;
6971
}
7072

7173
/**
72-
* A token identifying a page of results the server should return.
74+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
75+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
7376
* @param nextPageToken nextPageToken or {@code null} for none
7477
*/
7578
public ListMirroringDeploymentGroupsResponse setNextPageToken(java.lang.String nextPageToken) {

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

Lines changed: 10 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 for response to listing MirroringDeployments
20+
* Response message for ListMirroringDeployments.
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:
@@ -30,14 +30,15 @@
3030
public final class ListMirroringDeploymentsResponse extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The list of MirroringDeployment
33+
* The deployments from the specified parent.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.util.List<MirroringDeployment> mirroringDeployments;
3838

3939
/**
40-
* A token identifying a page of results the server should return.
40+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
41+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
4142
* The value may be {@code null}.
4243
*/
4344
@com.google.api.client.util.Key
@@ -51,15 +52,15 @@ public final class ListMirroringDeploymentsResponse extends com.google.api.clien
5152
private java.util.List<java.lang.String> unreachable;
5253

5354
/**
54-
* The list of MirroringDeployment
55+
* The deployments from the specified parent.
5556
* @return value or {@code null} for none
5657
*/
5758
public java.util.List<MirroringDeployment> getMirroringDeployments() {
5859
return mirroringDeployments;
5960
}
6061

6162
/**
62-
* The list of MirroringDeployment
63+
* The deployments from the specified parent.
6364
* @param mirroringDeployments mirroringDeployments or {@code null} for none
6465
*/
6566
public ListMirroringDeploymentsResponse setMirroringDeployments(java.util.List<MirroringDeployment> mirroringDeployments) {
@@ -68,15 +69,17 @@ public ListMirroringDeploymentsResponse setMirroringDeployments(java.util.List<M
6869
}
6970

7071
/**
71-
* A token identifying a page of results the server should return.
72+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
73+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
7274
* @return value or {@code null} for none
7375
*/
7476
public java.lang.String getNextPageToken() {
7577
return nextPageToken;
7678
}
7779

7880
/**
79-
* A token identifying a page of results the server should return.
81+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
82+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
8083
* @param nextPageToken nextPageToken or {@code null} for none
8184
*/
8285
public ListMirroringDeploymentsResponse setNextPageToken(java.lang.String nextPageToken) {

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

Lines changed: 10 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-
* Response message for listing associations.
20+
* Response message for ListMirroringEndpointGroupAssociations.
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:
@@ -30,29 +30,30 @@
3030
public final class ListMirroringEndpointGroupAssociationsResponse extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The list of associations returned.
33+
* The associations from the specified parent.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.util.List<MirroringEndpointGroupAssociation> mirroringEndpointGroupAssociations;
3838

3939
/**
40-
* A token identifying a page of results the server should return. See https://google.aip.dev/158.
40+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
41+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
4142
* The value may be {@code null}.
4243
*/
4344
@com.google.api.client.util.Key
4445
private java.lang.String nextPageToken;
4546

4647
/**
47-
* The list of associations returned.
48+
* The associations from the specified parent.
4849
* @return value or {@code null} for none
4950
*/
5051
public java.util.List<MirroringEndpointGroupAssociation> getMirroringEndpointGroupAssociations() {
5152
return mirroringEndpointGroupAssociations;
5253
}
5354

5455
/**
55-
* The list of associations returned.
56+
* The associations from the specified parent.
5657
* @param mirroringEndpointGroupAssociations mirroringEndpointGroupAssociations or {@code null} for none
5758
*/
5859
public ListMirroringEndpointGroupAssociationsResponse setMirroringEndpointGroupAssociations(java.util.List<MirroringEndpointGroupAssociation> mirroringEndpointGroupAssociations) {
@@ -61,15 +62,17 @@ public ListMirroringEndpointGroupAssociationsResponse setMirroringEndpointGroupA
6162
}
6263

6364
/**
64-
* A token identifying a page of results the server should return. See https://google.aip.dev/158.
65+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
66+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
6567
* @return value or {@code null} for none
6668
*/
6769
public java.lang.String getNextPageToken() {
6870
return nextPageToken;
6971
}
7072

7173
/**
72-
* A token identifying a page of results the server should return. See https://google.aip.dev/158.
74+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
75+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
7376
* @param nextPageToken nextPageToken or {@code null} for none
7477
*/
7578
public ListMirroringEndpointGroupAssociationsResponse setNextPageToken(java.lang.String nextPageToken) {

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

Lines changed: 10 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 for response to listing MirroringEndpointGroups
20+
* Response message for ListMirroringEndpointGroups.
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:
@@ -30,29 +30,30 @@
3030
public final class ListMirroringEndpointGroupsResponse extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The list of MirroringEndpointGroup
33+
* The endpoint groups from the specified parent.
3434
* The value may be {@code null}.
3535
*/
3636
@com.google.api.client.util.Key
3737
private java.util.List<MirroringEndpointGroup> mirroringEndpointGroups;
3838

3939
/**
40-
* A token identifying a page of results the server should return.
40+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
41+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
4142
* The value may be {@code null}.
4243
*/
4344
@com.google.api.client.util.Key
4445
private java.lang.String nextPageToken;
4546

4647
/**
47-
* The list of MirroringEndpointGroup
48+
* The endpoint groups from the specified parent.
4849
* @return value or {@code null} for none
4950
*/
5051
public java.util.List<MirroringEndpointGroup> getMirroringEndpointGroups() {
5152
return mirroringEndpointGroups;
5253
}
5354

5455
/**
55-
* The list of MirroringEndpointGroup
56+
* The endpoint groups from the specified parent.
5657
* @param mirroringEndpointGroups mirroringEndpointGroups or {@code null} for none
5758
*/
5859
public ListMirroringEndpointGroupsResponse setMirroringEndpointGroups(java.util.List<MirroringEndpointGroup> mirroringEndpointGroups) {
@@ -61,15 +62,17 @@ public ListMirroringEndpointGroupsResponse setMirroringEndpointGroups(java.util.
6162
}
6263

6364
/**
64-
* A token identifying a page of results the server should return.
65+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
66+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
6567
* @return value or {@code null} for none
6668
*/
6769
public java.lang.String getNextPageToken() {
6870
return nextPageToken;
6971
}
7072

7173
/**
72-
* A token identifying a page of results the server should return.
74+
* A token that can be sent as `page_token` to retrieve the next page. If this field is omitted,
75+
* there are no subsequent pages. See https://google.aip.dev/158 for more details.
7376
* @param nextPageToken nextPageToken or {@code null} for none
7477
*/
7578
public ListMirroringEndpointGroupsResponse setNextPageToken(java.lang.String nextPageToken) {

0 commit comments

Comments
 (0)