Skip to content

Commit 4a14613

Browse files
1 parent 4973c75 commit 4a14613

10 files changed

Lines changed: 198 additions & 12 deletions

File tree

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

clients/google-api-services-networkservices/v1/2.0.0/com/google/api/services/networkservices/v1/model/AgentGatewayNetworkConfigEgress.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class AgentGatewayNetworkConfigEgress extends com.google.api.client
3636
@com.google.api.client.util.Key
3737
private java.lang.String networkAttachment;
3838

39+
/**
40+
* Optional. TrustConfig defines the trust configuration for egress.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private AgentGatewayNetworkConfigEgressTrustConfig trustConfig;
45+
3946
/**
4047
* Optional. The URI of the Network Attachment resource.
4148
* @return value or {@code null} for none
@@ -53,6 +60,23 @@ public AgentGatewayNetworkConfigEgress setNetworkAttachment(java.lang.String net
5360
return this;
5461
}
5562

63+
/**
64+
* Optional. TrustConfig defines the trust configuration for egress.
65+
* @return value or {@code null} for none
66+
*/
67+
public AgentGatewayNetworkConfigEgressTrustConfig getTrustConfig() {
68+
return trustConfig;
69+
}
70+
71+
/**
72+
* Optional. TrustConfig defines the trust configuration for egress.
73+
* @param trustConfig trustConfig or {@code null} for none
74+
*/
75+
public AgentGatewayNetworkConfigEgress setTrustConfig(AgentGatewayNetworkConfigEgressTrustConfig trustConfig) {
76+
this.trustConfig = trustConfig;
77+
return this;
78+
}
79+
5680
@Override
5781
public AgentGatewayNetworkConfigEgress set(String fieldName, Object value) {
5882
return (AgentGatewayNetworkConfigEgress) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.networkservices.v1.model;
18+
19+
/**
20+
* TrustConfig defines the trust configuration for egress.
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 Services 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 AgentGatewayNetworkConfigEgressTrustConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. PEM encoded root certificates used to validate the identity of the upstream
34+
* servers/destinations during egress connections.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<java.lang.String> pemCertificates;
39+
40+
/**
41+
* Required. PEM encoded root certificates used to validate the identity of the upstream
42+
* servers/destinations during egress connections.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.List<java.lang.String> getPemCertificates() {
46+
return pemCertificates;
47+
}
48+
49+
/**
50+
* Required. PEM encoded root certificates used to validate the identity of the upstream
51+
* servers/destinations during egress connections.
52+
* @param pemCertificates pemCertificates or {@code null} for none
53+
*/
54+
public AgentGatewayNetworkConfigEgressTrustConfig setPemCertificates(java.util.List<java.lang.String> pemCertificates) {
55+
this.pemCertificates = pemCertificates;
56+
return this;
57+
}
58+
59+
@Override
60+
public AgentGatewayNetworkConfigEgressTrustConfig set(String fieldName, Object value) {
61+
return (AgentGatewayNetworkConfigEgressTrustConfig) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public AgentGatewayNetworkConfigEgressTrustConfig clone() {
66+
return (AgentGatewayNetworkConfigEgressTrustConfig) super.clone();
67+
}
68+
69+
}

clients/google-api-services-networkservices/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-networkservices</artifactId>
11-
<version>v1-rev20260605-2.0.0</version>
12-
<name>Network Services API v1-rev20260605-2.0.0</name>
11+
<version>v1-rev20260610-2.0.0</version>
12+
<name>Network Services API v1-rev20260610-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-networkservices/v1beta1/2.0.0/com/google/api/services/networkservices/v1beta1/model/AgentGatewayNetworkConfigEgress.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class AgentGatewayNetworkConfigEgress extends com.google.api.client
3636
@com.google.api.client.util.Key
3737
private java.lang.String networkAttachment;
3838

39+
/**
40+
* Optional. TrustConfig defines the trust configuration for egress.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private AgentGatewayNetworkConfigEgressTrustConfig trustConfig;
45+
3946
/**
4047
* Optional. The URI of the Network Attachment resource.
4148
* @return value or {@code null} for none
@@ -53,6 +60,23 @@ public AgentGatewayNetworkConfigEgress setNetworkAttachment(java.lang.String net
5360
return this;
5461
}
5562

63+
/**
64+
* Optional. TrustConfig defines the trust configuration for egress.
65+
* @return value or {@code null} for none
66+
*/
67+
public AgentGatewayNetworkConfigEgressTrustConfig getTrustConfig() {
68+
return trustConfig;
69+
}
70+
71+
/**
72+
* Optional. TrustConfig defines the trust configuration for egress.
73+
* @param trustConfig trustConfig or {@code null} for none
74+
*/
75+
public AgentGatewayNetworkConfigEgress setTrustConfig(AgentGatewayNetworkConfigEgressTrustConfig trustConfig) {
76+
this.trustConfig = trustConfig;
77+
return this;
78+
}
79+
5680
@Override
5781
public AgentGatewayNetworkConfigEgress set(String fieldName, Object value) {
5882
return (AgentGatewayNetworkConfigEgress) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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.networkservices.v1beta1.model;
18+
19+
/**
20+
* TrustConfig defines the trust configuration for egress.
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 Services 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 AgentGatewayNetworkConfigEgressTrustConfig extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. PEM encoded root certificates used to validate the identity of the upstream
34+
* servers/destinations during egress connections.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<java.lang.String> pemCertificates;
39+
40+
/**
41+
* Required. PEM encoded root certificates used to validate the identity of the upstream
42+
* servers/destinations during egress connections.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.util.List<java.lang.String> getPemCertificates() {
46+
return pemCertificates;
47+
}
48+
49+
/**
50+
* Required. PEM encoded root certificates used to validate the identity of the upstream
51+
* servers/destinations during egress connections.
52+
* @param pemCertificates pemCertificates or {@code null} for none
53+
*/
54+
public AgentGatewayNetworkConfigEgressTrustConfig setPemCertificates(java.util.List<java.lang.String> pemCertificates) {
55+
this.pemCertificates = pemCertificates;
56+
return this;
57+
}
58+
59+
@Override
60+
public AgentGatewayNetworkConfigEgressTrustConfig set(String fieldName, Object value) {
61+
return (AgentGatewayNetworkConfigEgressTrustConfig) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public AgentGatewayNetworkConfigEgressTrustConfig clone() {
66+
return (AgentGatewayNetworkConfigEgressTrustConfig) super.clone();
67+
}
68+
69+
}

clients/google-api-services-networkservices/v1beta1/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-networkservices</artifactId>
11-
<version>v1beta1-rev20260605-2.0.0</version>
12-
<name>Network Services API v1beta1-rev20260605-2.0.0</name>
11+
<version>v1beta1-rev20260610-2.0.0</version>
12+
<name>Network Services API v1beta1-rev20260610-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)