Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkservices</artifactId>
<version>v1-rev20260803-2.0.0</version>
<version>v1-rev20260807-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkservices:v1-rev20260803-2.0.0'
implementation 'com.google.apis:google-api-services-networkservices:v1-rev20260807-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,28 @@ public final class AgentConnectivityTemplate extends com.google.api.client.json.
@com.google.api.client.util.Key
private java.util.List<java.lang.String> accessTypes;

/**
* Optional. The compute environment where the agent is hosted. Exactly one type of compute must
* be chosen.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String agentCompute;

/**
* Output only. The timestamp when the resource was created.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String createTime;

/**
* Required. The deployment model for the gateway.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String deploymentModel;

/**
* Optional. A free-text description of the resource. Max length 1024 characters.
* The value may be {@code null}.
Expand Down Expand Up @@ -137,6 +152,25 @@ public AgentConnectivityTemplate setAccessTypes(java.util.List<java.lang.String>
return this;
}

/**
* Optional. The compute environment where the agent is hosted. Exactly one type of compute must
* be chosen.
* @return value or {@code null} for none
*/
public java.lang.String getAgentCompute() {
return agentCompute;
}

/**
* Optional. The compute environment where the agent is hosted. Exactly one type of compute must
* be chosen.
* @param agentCompute agentCompute or {@code null} for none
*/
public AgentConnectivityTemplate setAgentCompute(java.lang.String agentCompute) {
this.agentCompute = agentCompute;
return this;
}

/**
* Output only. The timestamp when the resource was created.
* @return value or {@code null} for none
Expand All @@ -154,6 +188,23 @@ public AgentConnectivityTemplate setCreateTime(String createTime) {
return this;
}

/**
* Required. The deployment model for the gateway.
* @return value or {@code null} for none
*/
public java.lang.String getDeploymentModel() {
return deploymentModel;
}

/**
* Required. The deployment model for the gateway.
* @param deploymentModel deploymentModel or {@code null} for none
*/
public AgentConnectivityTemplate setDeploymentModel(java.lang.String deploymentModel) {
this.deploymentModel = deploymentModel;
return this;
}

/**
* Optional. A free-text description of the resource. Max length 1024 characters.
* @return value or {@code null} for none
Expand Down
Loading
Loading