com.google.api.services.accesscontextmanager.v1.model.VpcSubNetwork Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.accesscontextmanager.v1.model;
/**
* Sub-segment ranges inside of a VPC Network.
*
* 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 Access Context Manager 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 VpcSubNetwork extends com.google.api.client.json.GenericJson {
/**
* Required. Network name. If the network is not part of the organization, the
* `compute.network.get` permission must be granted to the caller. Format:
* `//compute.googleapis.com/projects/{PROJECT_ID}/global/networks/{NETWORK_NAME}` Example:
* `//compute.googleapis.com/projects/my-project/global/networks/network-1`
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String network;
/**
* CIDR block IP subnetwork specification. The IP address must be an IPv4 address and can be a
* public or private IP address. Note that for a CIDR IP address block, the specified IP address
* portion must be properly truncated (i.e. all the host bits must be zero) or the input is
* considered malformed. For example, "192.0.2.0/24" is accepted but "192.0.2.1/24" is not. If
* empty, all IP addresses are allowed.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List vpcIpSubnetworks;
/**
* Required. Network name. If the network is not part of the organization, the
* `compute.network.get` permission must be granted to the caller. Format:
* `//compute.googleapis.com/projects/{PROJECT_ID}/global/networks/{NETWORK_NAME}` Example:
* `//compute.googleapis.com/projects/my-project/global/networks/network-1`
* @return value or {@code null} for none
*/
public java.lang.String getNetwork() {
return network;
}
/**
* Required. Network name. If the network is not part of the organization, the
* `compute.network.get` permission must be granted to the caller. Format:
* `//compute.googleapis.com/projects/{PROJECT_ID}/global/networks/{NETWORK_NAME}` Example:
* `//compute.googleapis.com/projects/my-project/global/networks/network-1`
* @param network network or {@code null} for none
*/
public VpcSubNetwork setNetwork(java.lang.String network) {
this.network = network;
return this;
}
/**
* CIDR block IP subnetwork specification. The IP address must be an IPv4 address and can be a
* public or private IP address. Note that for a CIDR IP address block, the specified IP address
* portion must be properly truncated (i.e. all the host bits must be zero) or the input is
* considered malformed. For example, "192.0.2.0/24" is accepted but "192.0.2.1/24" is not. If
* empty, all IP addresses are allowed.
* @return value or {@code null} for none
*/
public java.util.List getVpcIpSubnetworks() {
return vpcIpSubnetworks;
}
/**
* CIDR block IP subnetwork specification. The IP address must be an IPv4 address and can be a
* public or private IP address. Note that for a CIDR IP address block, the specified IP address
* portion must be properly truncated (i.e. all the host bits must be zero) or the input is
* considered malformed. For example, "192.0.2.0/24" is accepted but "192.0.2.1/24" is not. If
* empty, all IP addresses are allowed.
* @param vpcIpSubnetworks vpcIpSubnetworks or {@code null} for none
*/
public VpcSubNetwork setVpcIpSubnetworks(java.util.List vpcIpSubnetworks) {
this.vpcIpSubnetworks = vpcIpSubnetworks;
return this;
}
@Override
public VpcSubNetwork set(String fieldName, Object value) {
return (VpcSubNetwork) super.set(fieldName, value);
}
@Override
public VpcSubNetwork clone() {
return (VpcSubNetwork) super.clone();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy