diff --git a/clients/google-api-services-networkconnectivity/v1/2.0.0/README.md b/clients/google-api-services-networkconnectivity/v1/2.0.0/README.md index 418fb7f1427..897929b54fc 100644 --- a/clients/google-api-services-networkconnectivity/v1/2.0.0/README.md +++ b/clients/google-api-services-networkconnectivity/v1/2.0.0/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-networkconnectivity - v1-rev20260715-2.0.0 + v1-rev20260908-2.0.0 @@ -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' } ``` diff --git a/clients/google-api-services-networkconnectivity/v1/2.0.0/com/google/api/services/networkconnectivity/v1/model/Transport.java b/clients/google-api-services-networkconnectivity/v1/2.0.0/com/google/api/services/networkconnectivity/v1/model/Transport.java index d41df13b585..1e9fd7beece 100644 --- a/clients/google-api-services-networkconnectivity/v1/2.0.0/com/google/api/services/networkconnectivity/v1/model/Transport.java +++ b/clients/google-api-services-networkconnectivity/v1/2.0.0/com/google/api/services/networkconnectivity/v1/model/Transport.java @@ -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 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. @@ -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}. @@ -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. @@ -172,6 +199,27 @@ public Transport setAdvertisedRoutes(java.util.List 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. @@ -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 @@ -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. diff --git a/clients/google-api-services-networkconnectivity/v1/2.0.0/pom.xml b/clients/google-api-services-networkconnectivity/v1/2.0.0/pom.xml index dd32e9c4373..bc223dc71ef 100644 --- a/clients/google-api-services-networkconnectivity/v1/2.0.0/pom.xml +++ b/clients/google-api-services-networkconnectivity/v1/2.0.0/pom.xml @@ -8,8 +8,8 @@ com.google.apis google-api-services-networkconnectivity - v1-rev20260715-2.0.0 - Network Connectivity API v1-rev20260715-2.0.0 + v1-rev20260908-2.0.0 + Network Connectivity API v1-rev20260908-2.0.0 jar 2011 diff --git a/clients/google-api-services-networkconnectivity/v1/README.md b/clients/google-api-services-networkconnectivity/v1/README.md index 418fb7f1427..897929b54fc 100644 --- a/clients/google-api-services-networkconnectivity/v1/README.md +++ b/clients/google-api-services-networkconnectivity/v1/README.md @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file: com.google.apis google-api-services-networkconnectivity - v1-rev20260715-2.0.0 + v1-rev20260908-2.0.0 @@ -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' } ```