diff --git a/clients/google-api-services-networkmanagement/v1/2.0.0/README.md b/clients/google-api-services-networkmanagement/v1/2.0.0/README.md
index 60a85f12314..54e63025fac 100644
--- a/clients/google-api-services-networkmanagement/v1/2.0.0/README.md
+++ b/clients/google-api-services-networkmanagement/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
This is the Java data model class that specifies how to parse/serialize into the JSON that is + * transmitted over HTTP when working with the Network Management API. For a detailed explanation + * see: + * https://developers.google.com/api-client-library/java/google-http-java-client/json + *
+ * + * @author Google, Inc. + */ +@SuppressWarnings("javadoc") +public final class DirectVpcIngressConnectionInfo extends com.google.api.client.json.GenericJson { + + /** + * URI of the VPC network for direct ingress. Format: + * `projects/{project_id}/global/networks/{network_id}` + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String networkUri; + + /** + * Region in which the Direct VPC ingress is deployed. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String region; + + /** + * Selected destination IP address, from the selected IP range. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String selectedIpAddress; + + /** + * Selected IP range. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String selectedIpRange; + + /** + * URI of the subnetwork for direct ingress. Format: + * `projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}` + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String subnetworkUri; + + /** + * URI of the VPC network for direct ingress. Format: + * `projects/{project_id}/global/networks/{network_id}` + * @return value or {@code null} for none + */ + public java.lang.String getNetworkUri() { + return networkUri; + } + + /** + * URI of the VPC network for direct ingress. Format: + * `projects/{project_id}/global/networks/{network_id}` + * @param networkUri networkUri or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setNetworkUri(java.lang.String networkUri) { + this.networkUri = networkUri; + return this; + } + + /** + * Region in which the Direct VPC ingress is deployed. + * @return value or {@code null} for none + */ + public java.lang.String getRegion() { + return region; + } + + /** + * Region in which the Direct VPC ingress is deployed. + * @param region region or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setRegion(java.lang.String region) { + this.region = region; + return this; + } + + /** + * Selected destination IP address, from the selected IP range. + * @return value or {@code null} for none + */ + public java.lang.String getSelectedIpAddress() { + return selectedIpAddress; + } + + /** + * Selected destination IP address, from the selected IP range. + * @param selectedIpAddress selectedIpAddress or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setSelectedIpAddress(java.lang.String selectedIpAddress) { + this.selectedIpAddress = selectedIpAddress; + return this; + } + + /** + * Selected IP range. + * @return value or {@code null} for none + */ + public java.lang.String getSelectedIpRange() { + return selectedIpRange; + } + + /** + * Selected IP range. + * @param selectedIpRange selectedIpRange or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setSelectedIpRange(java.lang.String selectedIpRange) { + this.selectedIpRange = selectedIpRange; + return this; + } + + /** + * URI of the subnetwork for direct ingress. Format: + * `projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}` + * @return value or {@code null} for none + */ + public java.lang.String getSubnetworkUri() { + return subnetworkUri; + } + + /** + * URI of the subnetwork for direct ingress. Format: + * `projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}` + * @param subnetworkUri subnetworkUri or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setSubnetworkUri(java.lang.String subnetworkUri) { + this.subnetworkUri = subnetworkUri; + return this; + } + + @Override + public DirectVpcIngressConnectionInfo set(String fieldName, Object value) { + return (DirectVpcIngressConnectionInfo) super.set(fieldName, value); + } + + @Override + public DirectVpcIngressConnectionInfo clone() { + return (DirectVpcIngressConnectionInfo) super.clone(); + } + +} diff --git a/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java b/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java index 6811fdedd85..e016de352f1 100644 --- a/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java +++ b/clients/google-api-services-networkmanagement/v1/2.0.0/com/google/api/services/networkmanagement/v1/model/Step.java @@ -108,6 +108,13 @@ public final class Step extends com.google.api.client.json.GenericJson { @com.google.api.client.util.Key private DirectVpcEgressConnectionInfo directVpcEgressConnection; + /** + * Display information of a serverless direct VPC ingress connection for Cloud Run. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private DirectVpcIngressConnectionInfo directVpcIngressConnection; + /** * Display information of a DMS Private Connection. * The value may be {@code null}. @@ -530,6 +537,23 @@ public Step setDirectVpcEgressConnection(DirectVpcEgressConnectionInfo directVpc return this; } + /** + * Display information of a serverless direct VPC ingress connection for Cloud Run. + * @return value or {@code null} for none + */ + public DirectVpcIngressConnectionInfo getDirectVpcIngressConnection() { + return directVpcIngressConnection; + } + + /** + * Display information of a serverless direct VPC ingress connection for Cloud Run. + * @param directVpcIngressConnection directVpcIngressConnection or {@code null} for none + */ + public Step setDirectVpcIngressConnection(DirectVpcIngressConnectionInfo directVpcIngressConnection) { + this.directVpcIngressConnection = directVpcIngressConnection; + return this; + } + /** * Display information of a DMS Private Connection. * @return value or {@code null} for none diff --git a/clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml b/clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml index 80b66c870eb..8053a4e5f0f 100644 --- a/clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml +++ b/clients/google-api-services-networkmanagement/v1/2.0.0/pom.xml @@ -8,8 +8,8 @@This is the Java data model class that specifies how to parse/serialize into the JSON that is + * transmitted over HTTP when working with the Network Management API. For a detailed explanation + * see: + * https://developers.google.com/api-client-library/java/google-http-java-client/json + *
+ * + * @author Google, Inc. + */ +@SuppressWarnings("javadoc") +public final class DirectVpcIngressConnectionInfo extends com.google.api.client.json.GenericJson { + + /** + * URI of the VPC network for direct ingress. Format: + * `projects/{project_id}/global/networks/{network_id}` + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String networkUri; + + /** + * Region in which the Direct VPC ingress is deployed. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String region; + + /** + * Selected destination IP address, from the selected IP range. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String selectedIpAddress; + + /** + * Selected IP range. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String selectedIpRange; + + /** + * URI of the subnetwork for direct ingress. Format: + * `projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}` + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String subnetworkUri; + + /** + * URI of the VPC network for direct ingress. Format: + * `projects/{project_id}/global/networks/{network_id}` + * @return value or {@code null} for none + */ + public java.lang.String getNetworkUri() { + return networkUri; + } + + /** + * URI of the VPC network for direct ingress. Format: + * `projects/{project_id}/global/networks/{network_id}` + * @param networkUri networkUri or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setNetworkUri(java.lang.String networkUri) { + this.networkUri = networkUri; + return this; + } + + /** + * Region in which the Direct VPC ingress is deployed. + * @return value or {@code null} for none + */ + public java.lang.String getRegion() { + return region; + } + + /** + * Region in which the Direct VPC ingress is deployed. + * @param region region or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setRegion(java.lang.String region) { + this.region = region; + return this; + } + + /** + * Selected destination IP address, from the selected IP range. + * @return value or {@code null} for none + */ + public java.lang.String getSelectedIpAddress() { + return selectedIpAddress; + } + + /** + * Selected destination IP address, from the selected IP range. + * @param selectedIpAddress selectedIpAddress or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setSelectedIpAddress(java.lang.String selectedIpAddress) { + this.selectedIpAddress = selectedIpAddress; + return this; + } + + /** + * Selected IP range. + * @return value or {@code null} for none + */ + public java.lang.String getSelectedIpRange() { + return selectedIpRange; + } + + /** + * Selected IP range. + * @param selectedIpRange selectedIpRange or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setSelectedIpRange(java.lang.String selectedIpRange) { + this.selectedIpRange = selectedIpRange; + return this; + } + + /** + * URI of the subnetwork for direct ingress. Format: + * `projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}` + * @return value or {@code null} for none + */ + public java.lang.String getSubnetworkUri() { + return subnetworkUri; + } + + /** + * URI of the subnetwork for direct ingress. Format: + * `projects/{project_id}/regions/{region}/subnetworks/{subnetwork_id}` + * @param subnetworkUri subnetworkUri or {@code null} for none + */ + public DirectVpcIngressConnectionInfo setSubnetworkUri(java.lang.String subnetworkUri) { + this.subnetworkUri = subnetworkUri; + return this; + } + + @Override + public DirectVpcIngressConnectionInfo set(String fieldName, Object value) { + return (DirectVpcIngressConnectionInfo) super.set(fieldName, value); + } + + @Override + public DirectVpcIngressConnectionInfo clone() { + return (DirectVpcIngressConnectionInfo) super.clone(); + } + +} diff --git a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Step.java b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Step.java index 07dfeda5887..17db40c150a 100644 --- a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Step.java +++ b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/com/google/api/services/networkmanagement/v1beta1/model/Step.java @@ -108,6 +108,13 @@ public final class Step extends com.google.api.client.json.GenericJson { @com.google.api.client.util.Key private DirectVpcEgressConnectionInfo directVpcEgressConnection; + /** + * Display information of a serverless direct VPC ingress connection. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private DirectVpcIngressConnectionInfo directVpcIngressConnection; + /** * Display information of a DMS Private Connection. * The value may be {@code null}. @@ -530,6 +537,23 @@ public Step setDirectVpcEgressConnection(DirectVpcEgressConnectionInfo directVpc return this; } + /** + * Display information of a serverless direct VPC ingress connection. + * @return value or {@code null} for none + */ + public DirectVpcIngressConnectionInfo getDirectVpcIngressConnection() { + return directVpcIngressConnection; + } + + /** + * Display information of a serverless direct VPC ingress connection. + * @param directVpcIngressConnection directVpcIngressConnection or {@code null} for none + */ + public Step setDirectVpcIngressConnection(DirectVpcIngressConnectionInfo directVpcIngressConnection) { + this.directVpcIngressConnection = directVpcIngressConnection; + return this; + } + /** * Display information of a DMS Private Connection. * @return value or {@code null} for none diff --git a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/pom.xml b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/pom.xml index e0017a65934..d63eb8c3524 100644 --- a/clients/google-api-services-networkmanagement/v1beta1/2.0.0/pom.xml +++ b/clients/google-api-services-networkmanagement/v1beta1/2.0.0/pom.xml @@ -8,8 +8,8 @@