Skip to content

Commit 466ed76

Browse files
1 parent 412db1b commit 466ed76

18 files changed

Lines changed: 6504 additions & 3033 deletions

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

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

Lines changed: 4532 additions & 3027 deletions
Large diffs are not rendered by default.

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

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,28 @@ public final class AgentConnectivityTemplate extends com.google.api.client.json.
4646
@com.google.api.client.util.Key
4747
private java.util.List<java.lang.String> accessTypes;
4848

49+
/**
50+
* Optional. The compute environment where the agent is hosted. Exactly one type of compute must
51+
* be chosen.
52+
* The value may be {@code null}.
53+
*/
54+
@com.google.api.client.util.Key
55+
private java.lang.String agentCompute;
56+
4957
/**
5058
* Output only. The timestamp when the resource was created.
5159
* The value may be {@code null}.
5260
*/
5361
@com.google.api.client.util.Key
5462
private String createTime;
5563

64+
/**
65+
* Required. The deployment model for the gateway.
66+
* The value may be {@code null}.
67+
*/
68+
@com.google.api.client.util.Key
69+
private java.lang.String deploymentModel;
70+
5671
/**
5772
* Optional. A free-text description of the resource. Max length 1024 characters.
5873
* The value may be {@code null}.
@@ -137,6 +152,25 @@ public AgentConnectivityTemplate setAccessTypes(java.util.List<java.lang.String>
137152
return this;
138153
}
139154

155+
/**
156+
* Optional. The compute environment where the agent is hosted. Exactly one type of compute must
157+
* be chosen.
158+
* @return value or {@code null} for none
159+
*/
160+
public java.lang.String getAgentCompute() {
161+
return agentCompute;
162+
}
163+
164+
/**
165+
* Optional. The compute environment where the agent is hosted. Exactly one type of compute must
166+
* be chosen.
167+
* @param agentCompute agentCompute or {@code null} for none
168+
*/
169+
public AgentConnectivityTemplate setAgentCompute(java.lang.String agentCompute) {
170+
this.agentCompute = agentCompute;
171+
return this;
172+
}
173+
140174
/**
141175
* Output only. The timestamp when the resource was created.
142176
* @return value or {@code null} for none
@@ -154,6 +188,23 @@ public AgentConnectivityTemplate setCreateTime(String createTime) {
154188
return this;
155189
}
156190

191+
/**
192+
* Required. The deployment model for the gateway.
193+
* @return value or {@code null} for none
194+
*/
195+
public java.lang.String getDeploymentModel() {
196+
return deploymentModel;
197+
}
198+
199+
/**
200+
* Required. The deployment model for the gateway.
201+
* @param deploymentModel deploymentModel or {@code null} for none
202+
*/
203+
public AgentConnectivityTemplate setDeploymentModel(java.lang.String deploymentModel) {
204+
this.deploymentModel = deploymentModel;
205+
return this;
206+
}
207+
157208
/**
158209
* Optional. A free-text description of the resource. Max length 1024 characters.
159210
* @return value or {@code null} for none

0 commit comments

Comments
 (0)