Skip to content
Open
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-networkconnectivity</artifactId>
<version>v1-rev20260715-2.0.0</version>
<version>v1-rev20260908-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkconnectivity:v1-rev20260715-2.0.0'
implementation 'com.google.apis:google-api-services-networkconnectivity:v1-rev20260908-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ public final class Transport extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.util.List<java.lang.String> advertisedRoutes;

/**
* Optional. Immutable. Controls whether resources proposed by the Transport are automatically
* accepted on behalf of the user. List of actions that can be automatically accepted are: 1. VPC
* Peering creation 2. Routing VPC Spoke creation 3. Hybrid Spoke creation
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean autoAccept;

/**
* Optional. Bandwidth of the Transport. This must be one of the supported bandwidths for the
* remote profile, and must be set when no activation key is being provided.
Expand Down Expand Up @@ -70,6 +79,15 @@ public final class Transport extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String generatedActivationKey;

/**
* Optional. Immutable. The NCC Hub that the Transport should attach to. The hub must be in the
* same project as the Transport. Format: `{hub}` or
* `projects/{project}/locations/global/hubs/{hub}`
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String hub;

/**
* Optional. Labels as key value pairs.
* The value may be {@code null}.
Expand Down Expand Up @@ -117,6 +135,15 @@ public final class Transport extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String providedActivationKey;

/**
* Optional. Immutable. Controls whether a Routing VPC Spoke should be created and attached to the
* NCC Hub. This will provide Private Service Connect (PSC) connectivity through NCC. This can
* only be set when the Transport is first created.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean pscRoutingEnabled;

/**
* Optional. Immutable. The user supplied account id for the CSP associated with the remote
* profile.
Expand Down Expand Up @@ -172,6 +199,27 @@ public Transport setAdvertisedRoutes(java.util.List<java.lang.String> advertised
return this;
}

/**
* Optional. Immutable. Controls whether resources proposed by the Transport are automatically
* accepted on behalf of the user. List of actions that can be automatically accepted are: 1. VPC
* Peering creation 2. Routing VPC Spoke creation 3. Hybrid Spoke creation
* @return value or {@code null} for none
*/
public java.lang.Boolean getAutoAccept() {
return autoAccept;
}

/**
* Optional. Immutable. Controls whether resources proposed by the Transport are automatically
* accepted on behalf of the user. List of actions that can be automatically accepted are: 1. VPC
* Peering creation 2. Routing VPC Spoke creation 3. Hybrid Spoke creation
* @param autoAccept autoAccept or {@code null} for none
*/
public Transport setAutoAccept(java.lang.Boolean autoAccept) {
this.autoAccept = autoAccept;
return this;
}

/**
* Optional. Bandwidth of the Transport. This must be one of the supported bandwidths for the
* remote profile, and must be set when no activation key is being provided.
Expand Down Expand Up @@ -248,6 +296,27 @@ public Transport setGeneratedActivationKey(java.lang.String generatedActivationK
return this;
}

/**
* Optional. Immutable. The NCC Hub that the Transport should attach to. The hub must be in the
* same project as the Transport. Format: `{hub}` or
* `projects/{project}/locations/global/hubs/{hub}`
* @return value or {@code null} for none
*/
public java.lang.String getHub() {
return hub;
}

/**
* Optional. Immutable. The NCC Hub that the Transport should attach to. The hub must be in the
* same project as the Transport. Format: `{hub}` or
* `projects/{project}/locations/global/hubs/{hub}`
* @param hub hub or {@code null} for none
*/
public Transport setHub(java.lang.String hub) {
this.hub = hub;
return this;
}

/**
* Optional. Labels as key value pairs.
* @return value or {@code null} for none
Expand Down Expand Up @@ -360,6 +429,27 @@ public Transport setProvidedActivationKey(java.lang.String providedActivationKey
return this;
}

/**
* Optional. Immutable. Controls whether a Routing VPC Spoke should be created and attached to the
* NCC Hub. This will provide Private Service Connect (PSC) connectivity through NCC. This can
* only be set when the Transport is first created.
* @return value or {@code null} for none
*/
public java.lang.Boolean getPscRoutingEnabled() {
return pscRoutingEnabled;
}

/**
* Optional. Immutable. Controls whether a Routing VPC Spoke should be created and attached to the
* NCC Hub. This will provide Private Service Connect (PSC) connectivity through NCC. This can
* only be set when the Transport is first created.
* @param pscRoutingEnabled pscRoutingEnabled or {@code null} for none
*/
public Transport setPscRoutingEnabled(java.lang.Boolean pscRoutingEnabled) {
this.pscRoutingEnabled = pscRoutingEnabled;
return this;
}

/**
* Optional. Immutable. The user supplied account id for the CSP associated with the remote
* profile.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-networkconnectivity</artifactId>
<version>v1-rev20260715-2.0.0</version>
<name>Network Connectivity API v1-rev20260715-2.0.0</name>
<version>v1-rev20260908-2.0.0</version>
<name>Network Connectivity API v1-rev20260908-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
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-networkconnectivity</artifactId>
<version>v1-rev20260715-2.0.0</version>
<version>v1-rev20260908-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-networkconnectivity:v1-rev20260715-2.0.0'
implementation 'com.google.apis:google-api-services-networkconnectivity:v1-rev20260908-2.0.0'
}
```

Expand Down
Loading