com.google.api.services.vmwareengine.v1.model.ForwardingRule 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.vmwareengine.v1.model;
/**
* A forwarding rule is a mapping of a `domain` to `name_servers`. This mapping allows VMware Engine
* to resolve domains for attached private clouds by forwarding DNS requests for a given domain to
* the specified nameservers.
*
* 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 VMware Engine 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 ForwardingRule extends com.google.api.client.json.GenericJson {
/**
* Required. Domain used to resolve a `name_servers` list.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String domain;
/**
* Required. List of DNS servers to use for domain resolution
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List nameServers;
/**
* Required. Domain used to resolve a `name_servers` list.
* @return value or {@code null} for none
*/
public java.lang.String getDomain() {
return domain;
}
/**
* Required. Domain used to resolve a `name_servers` list.
* @param domain domain or {@code null} for none
*/
public ForwardingRule setDomain(java.lang.String domain) {
this.domain = domain;
return this;
}
/**
* Required. List of DNS servers to use for domain resolution
* @return value or {@code null} for none
*/
public java.util.List getNameServers() {
return nameServers;
}
/**
* Required. List of DNS servers to use for domain resolution
* @param nameServers nameServers or {@code null} for none
*/
public ForwardingRule setNameServers(java.util.List nameServers) {
this.nameServers = nameServers;
return this;
}
@Override
public ForwardingRule set(String fieldName, Object value) {
return (ForwardingRule) super.set(fieldName, value);
}
@Override
public ForwardingRule clone() {
return (ForwardingRule) super.clone();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy