Skip to content

Commit 1b29cbf

Browse files
1 parent d27b606 commit 1b29cbf

26 files changed

+981
-30
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-rev20250217-2.0.0</version>
25+
<version>v1-rev20250326-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-rev20250217-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1-rev20250326-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: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5362,6 +5362,29 @@ public List setName(java.lang.String name) {
53625362
return this;
53635363
}
53645364

5365+
/**
5366+
* Optional. A list of extra location types that should be used as conditions for
5367+
* controlling the visibility of the locations.
5368+
*/
5369+
@com.google.api.client.util.Key
5370+
private java.util.List<java.lang.String> extraLocationTypes;
5371+
5372+
/** Optional. A list of extra location types that should be used as conditions for controlling the
5373+
visibility of the locations.
5374+
*/
5375+
public java.util.List<java.lang.String> getExtraLocationTypes() {
5376+
return extraLocationTypes;
5377+
}
5378+
5379+
/**
5380+
* Optional. A list of extra location types that should be used as conditions for
5381+
* controlling the visibility of the locations.
5382+
*/
5383+
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
5384+
this.extraLocationTypes = extraLocationTypes;
5385+
return this;
5386+
}
5387+
53655388
/**
53665389
* A filter to narrow down results to a preferred subset. The filtering language accepts
53675390
* strings like `"displayName=tokyo"`, and is documented in more detail in
@@ -19567,6 +19590,37 @@ public List setPageToken(java.lang.String pageToken) {
1956719590
return this;
1956819591
}
1956919592

19593+
/**
19594+
* Optional. Setting this field to `true` will opt the request into returning the
19595+
* resources that are reachable, and into including the names of those that were
19596+
* unreachable in the [ListServerTlsPoliciesResponse.unreachable] field. This can only be
19597+
* `true` when reading across collections e.g. when `parent` is set to
19598+
* `"projects/example/locations/-"`.
19599+
*/
19600+
@com.google.api.client.util.Key
19601+
private java.lang.Boolean returnPartialSuccess;
19602+
19603+
/** Optional. Setting this field to `true` will opt the request into returning the resources that are
19604+
reachable, and into including the names of those that were unreachable in the
19605+
[ListServerTlsPoliciesResponse.unreachable] field. This can only be `true` when reading across
19606+
collections e.g. when `parent` is set to `"projects/example/locations/-"`.
19607+
*/
19608+
public java.lang.Boolean getReturnPartialSuccess() {
19609+
return returnPartialSuccess;
19610+
}
19611+
19612+
/**
19613+
* Optional. Setting this field to `true` will opt the request into returning the
19614+
* resources that are reachable, and into including the names of those that were
19615+
* unreachable in the [ListServerTlsPoliciesResponse.unreachable] field. This can only be
19616+
* `true` when reading across collections e.g. when `parent` is set to
19617+
* `"projects/example/locations/-"`.
19618+
*/
19619+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
19620+
this.returnPartialSuccess = returnPartialSuccess;
19621+
return this;
19622+
}
19623+
1957019624
@Override
1957119625
public List set(String parameterName, Object value) {
1957219626
return (List) super.set(parameterName, value);

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ public final class ListServerTlsPoliciesResponse extends com.google.api.client.j
4545
@com.google.api.client.util.Key
4646
private java.util.List<ServerTlsPolicy> serverTlsPolicies;
4747

48+
/**
49+
* Unreachable resources. Populated when the request opts into `return_partial_success` and
50+
* reading across collections e.g. when attempting to list all resources across all supported
51+
* locations.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.util.List<java.lang.String> unreachable;
56+
4857
/**
4958
* If there might be more results than those appearing in this response, then `next_page_token` is
5059
* included. To get the next set of results, call this method again using the value of
@@ -83,6 +92,27 @@ public ListServerTlsPoliciesResponse setServerTlsPolicies(java.util.List<ServerT
8392
return this;
8493
}
8594

95+
/**
96+
* Unreachable resources. Populated when the request opts into `return_partial_success` and
97+
* reading across collections e.g. when attempting to list all resources across all supported
98+
* locations.
99+
* @return value or {@code null} for none
100+
*/
101+
public java.util.List<java.lang.String> getUnreachable() {
102+
return unreachable;
103+
}
104+
105+
/**
106+
* Unreachable resources. Populated when the request opts into `return_partial_success` and
107+
* reading across collections e.g. when attempting to list all resources across all supported
108+
* locations.
109+
* @param unreachable unreachable or {@code null} for none
110+
*/
111+
public ListServerTlsPoliciesResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
112+
this.unreachable = unreachable;
113+
return this;
114+
}
115+
86116
@Override
87117
public ListServerTlsPoliciesResponse set(String fieldName, Object value) {
88118
return (ListServerTlsPoliciesResponse) super.set(fieldName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ public final class MirroringDeploymentGroup extends com.google.api.client.json.G
6060
@com.google.api.client.util.Key
6161
private java.util.Map<String, java.lang.String> labels;
6262

63+
/**
64+
* Output only. The list of locations where the deployment group is present.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private java.util.List<MirroringLocation> locations;
69+
6370
/**
6471
* Immutable. Identifier. The resource name of this deployment group, for example:
6572
* `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See
@@ -180,6 +187,23 @@ public MirroringDeploymentGroup setLabels(java.util.Map<String, java.lang.String
180187
return this;
181188
}
182189

190+
/**
191+
* Output only. The list of locations where the deployment group is present.
192+
* @return value or {@code null} for none
193+
*/
194+
public java.util.List<MirroringLocation> getLocations() {
195+
return locations;
196+
}
197+
198+
/**
199+
* Output only. The list of locations where the deployment group is present.
200+
* @param locations locations or {@code null} for none
201+
*/
202+
public MirroringDeploymentGroup setLocations(java.util.List<MirroringLocation> locations) {
203+
this.locations = locations;
204+
return this;
205+
}
206+
183207
/**
184208
* Immutable. Identifier. The resource name of this deployment group, for example:
185209
* `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ public final class MirroringEndpointGroup extends com.google.api.client.json.Gen
3939
@com.google.api.client.util.Key
4040
private java.util.List<MirroringEndpointGroupAssociationDetails> associations;
4141

42+
/**
43+
* Output only. List of details about the connected deployment groups to this endpoint group.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.util.List<MirroringEndpointGroupConnectedDeploymentGroup> connectedDeploymentGroups;
48+
4249
/**
4350
* Output only. The timestamp when the resource was created. See
4451
* https://google.aip.dev/148#timestamps.
@@ -121,6 +128,23 @@ public MirroringEndpointGroup setAssociations(java.util.List<MirroringEndpointGr
121128
return this;
122129
}
123130

131+
/**
132+
* Output only. List of details about the connected deployment groups to this endpoint group.
133+
* @return value or {@code null} for none
134+
*/
135+
public java.util.List<MirroringEndpointGroupConnectedDeploymentGroup> getConnectedDeploymentGroups() {
136+
return connectedDeploymentGroups;
137+
}
138+
139+
/**
140+
* Output only. List of details about the connected deployment groups to this endpoint group.
141+
* @param connectedDeploymentGroups connectedDeploymentGroups or {@code null} for none
142+
*/
143+
public MirroringEndpointGroup setConnectedDeploymentGroups(java.util.List<MirroringEndpointGroupConnectedDeploymentGroup> connectedDeploymentGroups) {
144+
this.connectedDeploymentGroups = connectedDeploymentGroups;
145+
return this;
146+
}
147+
124148
/**
125149
* Output only. The timestamp when the resource was created. See
126150
* https://google.aip.dev/148#timestamps.

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ public final class MirroringEndpointGroupAssociation extends com.google.api.clie
4848
@com.google.api.client.util.Key
4949
private java.util.Map<String, java.lang.String> labels;
5050

51+
/**
52+
* Output only. The list of locations where the association is configured. This information is
53+
* retrieved from the linked endpoint group.
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.util.List<MirroringLocation> locations;
58+
5159
/**
5260
* Output only. The list of locations where the association is present. This information is
5361
* retrieved from the linked endpoint group, and not configured as part of the association itself.
@@ -142,6 +150,25 @@ public MirroringEndpointGroupAssociation setLabels(java.util.Map<String, java.la
142150
return this;
143151
}
144152

153+
/**
154+
* Output only. The list of locations where the association is configured. This information is
155+
* retrieved from the linked endpoint group.
156+
* @return value or {@code null} for none
157+
*/
158+
public java.util.List<MirroringLocation> getLocations() {
159+
return locations;
160+
}
161+
162+
/**
163+
* Output only. The list of locations where the association is configured. This information is
164+
* retrieved from the linked endpoint group.
165+
* @param locations locations or {@code null} for none
166+
*/
167+
public MirroringEndpointGroupAssociation setLocations(java.util.List<MirroringLocation> locations) {
168+
this.locations = locations;
169+
return this;
170+
}
171+
145172
/**
146173
* Output only. The list of locations where the association is present. This information is
147174
* retrieved from the linked endpoint group, and not configured as part of the association itself.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.networksecurity.v1.model;
18+
19+
/**
20+
* The endpoint group's view of a connected deployment group.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Network Security API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class MirroringEndpointGroupConnectedDeploymentGroup extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The list of locations where the deployment group is present.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<MirroringLocation> locations;
38+
39+
/**
40+
* Output only. The connected deployment group's resource name, for example:
41+
* `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See
42+
* https://google.aip.dev/124.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String name;
47+
48+
/**
49+
* Output only. The list of locations where the deployment group is present.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.util.List<MirroringLocation> getLocations() {
53+
return locations;
54+
}
55+
56+
/**
57+
* Output only. The list of locations where the deployment group is present.
58+
* @param locations locations or {@code null} for none
59+
*/
60+
public MirroringEndpointGroupConnectedDeploymentGroup setLocations(java.util.List<MirroringLocation> locations) {
61+
this.locations = locations;
62+
return this;
63+
}
64+
65+
/**
66+
* Output only. The connected deployment group's resource name, for example:
67+
* `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See
68+
* https://google.aip.dev/124.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.String getName() {
72+
return name;
73+
}
74+
75+
/**
76+
* Output only. The connected deployment group's resource name, for example:
77+
* `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See
78+
* https://google.aip.dev/124.
79+
* @param name name or {@code null} for none
80+
*/
81+
public MirroringEndpointGroupConnectedDeploymentGroup setName(java.lang.String name) {
82+
this.name = name;
83+
return this;
84+
}
85+
86+
@Override
87+
public MirroringEndpointGroupConnectedDeploymentGroup set(String fieldName, Object value) {
88+
return (MirroringEndpointGroupConnectedDeploymentGroup) super.set(fieldName, value);
89+
}
90+
91+
@Override
92+
public MirroringEndpointGroupConnectedDeploymentGroup clone() {
93+
return (MirroringEndpointGroupConnectedDeploymentGroup) super.clone();
94+
}
95+
96+
}

0 commit comments

Comments
 (0)