All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.route53.model.TestDNSAnswerRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Route53 module holds the client classes that are used for communicating with Amazon Route53 Service

There is a newer version: 1.11.98
Show newest version
/*
 * Copyright 2011-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file 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.
 */
package com.amazonaws.services.route53.model;

import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* Gets the value that Amazon Route 53 returns in response to a DNS request for a specified record name and type. You * can optionally specify the IP address of a DNS resolver, an EDNS0 client subnet IP address, and a subnet mask. *

*

* Parameters *

*
*
hostedzoneid
*
*

* The ID of the hosted zone that you want Amazon Route 53 to simulate a query for. *

*
*
recordname
*
*

* The name of the resource record set that you want Amazon Route 53 to simulate a query for. *

*
*
recordtype
*
*

* The type of the resource record set. *

*
*
resolverip (optional)
*
*

* If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. If you omit * this value, TestDNSAnswer uses the IP address of a DNS resolver in the AWS US East region. *

*
*
edns0clientsubnetip (optional)
*
*

* If the resolver that you specified for resolverip supports EDNS0, specify the IP address of a client in * the applicable location. *

*
*
edns0clientsubnetmask (optional)
*
*

* If you specify an IP address for edns0clientsubnetip, you can optionally specify the number of bits of * the IP address that you want the checking tool to include in the DNS query. For example, if you specify * 192.0.2.44 for edns0clientsubnetip and 24 for * edns0clientsubnetmask, the checking tool will simulate a request from 192.0.2.0/24. The * default value is 24 bits. *

*
*
*/ public class TestDNSAnswerRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The ID of the hosted zone that you want Amazon Route 53 to simulate a query for. *

*/ private String hostedZoneId; /** *

* The name of the resource record set that you want Amazon Route 53 to simulate a query for. *

*/ private String recordName; /** *

* The type of the resource record set. *

*/ private String recordType; /** *

* If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. If you * omit this value, TestDnsAnswer uses the IP address of a DNS resolver in the AWS US East region. *

*/ private String resolverIP; /** *

* If the resolver that you specified for resolverip supports EDNS0, specify the IP address of a client in the * applicable location. *

*/ private String eDNS0ClientSubnetIP; /** *

* If you specify an IP address for edns0clientsubnetip, you can optionally specify the number of bits * of the IP address that you want the checking tool to include in the DNS query. For example, if you specify * 192.0.2.44 for edns0clientsubnetip and 24 for * edns0clientsubnetmask, the checking tool will simulate a request from 192.0.2.0/24. The default * value is 24 bits. *

*/ private String eDNS0ClientSubnetMask; /** *

* The ID of the hosted zone that you want Amazon Route 53 to simulate a query for. *

* * @param hostedZoneId * The ID of the hosted zone that you want Amazon Route 53 to simulate a query for. */ public void setHostedZoneId(String hostedZoneId) { this.hostedZoneId = hostedZoneId; } /** *

* The ID of the hosted zone that you want Amazon Route 53 to simulate a query for. *

* * @return The ID of the hosted zone that you want Amazon Route 53 to simulate a query for. */ public String getHostedZoneId() { return this.hostedZoneId; } /** *

* The ID of the hosted zone that you want Amazon Route 53 to simulate a query for. *

* * @param hostedZoneId * The ID of the hosted zone that you want Amazon Route 53 to simulate a query for. * @return Returns a reference to this object so that method calls can be chained together. */ public TestDNSAnswerRequest withHostedZoneId(String hostedZoneId) { setHostedZoneId(hostedZoneId); return this; } /** *

* The name of the resource record set that you want Amazon Route 53 to simulate a query for. *

* * @param recordName * The name of the resource record set that you want Amazon Route 53 to simulate a query for. */ public void setRecordName(String recordName) { this.recordName = recordName; } /** *

* The name of the resource record set that you want Amazon Route 53 to simulate a query for. *

* * @return The name of the resource record set that you want Amazon Route 53 to simulate a query for. */ public String getRecordName() { return this.recordName; } /** *

* The name of the resource record set that you want Amazon Route 53 to simulate a query for. *

* * @param recordName * The name of the resource record set that you want Amazon Route 53 to simulate a query for. * @return Returns a reference to this object so that method calls can be chained together. */ public TestDNSAnswerRequest withRecordName(String recordName) { setRecordName(recordName); return this; } /** *

* The type of the resource record set. *

* * @param recordType * The type of the resource record set. * @see RRType */ public void setRecordType(String recordType) { this.recordType = recordType; } /** *

* The type of the resource record set. *

* * @return The type of the resource record set. * @see RRType */ public String getRecordType() { return this.recordType; } /** *

* The type of the resource record set. *

* * @param recordType * The type of the resource record set. * @return Returns a reference to this object so that method calls can be chained together. * @see RRType */ public TestDNSAnswerRequest withRecordType(String recordType) { setRecordType(recordType); return this; } /** *

* The type of the resource record set. *

* * @param recordType * The type of the resource record set. * @see RRType */ public void setRecordType(RRType recordType) { this.recordType = recordType.toString(); } /** *

* The type of the resource record set. *

* * @param recordType * The type of the resource record set. * @return Returns a reference to this object so that method calls can be chained together. * @see RRType */ public TestDNSAnswerRequest withRecordType(RRType recordType) { setRecordType(recordType); return this; } /** *

* If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. If you * omit this value, TestDnsAnswer uses the IP address of a DNS resolver in the AWS US East region. *

* * @param resolverIP * If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. * If you omit this value, TestDnsAnswer uses the IP address of a DNS resolver in the AWS US * East region. */ public void setResolverIP(String resolverIP) { this.resolverIP = resolverIP; } /** *

* If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. If you * omit this value, TestDnsAnswer uses the IP address of a DNS resolver in the AWS US East region. *

* * @return If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. * If you omit this value, TestDnsAnswer uses the IP address of a DNS resolver in the AWS US * East region. */ public String getResolverIP() { return this.resolverIP; } /** *

* If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. If you * omit this value, TestDnsAnswer uses the IP address of a DNS resolver in the AWS US East region. *

* * @param resolverIP * If you want to simulate a request from a specific DNS resolver, specify the IP address for that resolver. * If you omit this value, TestDnsAnswer uses the IP address of a DNS resolver in the AWS US * East region. * @return Returns a reference to this object so that method calls can be chained together. */ public TestDNSAnswerRequest withResolverIP(String resolverIP) { setResolverIP(resolverIP); return this; } /** *

* If the resolver that you specified for resolverip supports EDNS0, specify the IP address of a client in the * applicable location. *

* * @param eDNS0ClientSubnetIP * If the resolver that you specified for resolverip supports EDNS0, specify the IP address of a client in * the applicable location. */ public void setEDNS0ClientSubnetIP(String eDNS0ClientSubnetIP) { this.eDNS0ClientSubnetIP = eDNS0ClientSubnetIP; } /** *

* If the resolver that you specified for resolverip supports EDNS0, specify the IP address of a client in the * applicable location. *

* * @return If the resolver that you specified for resolverip supports EDNS0, specify the IP address of a client in * the applicable location. */ public String getEDNS0ClientSubnetIP() { return this.eDNS0ClientSubnetIP; } /** *

* If the resolver that you specified for resolverip supports EDNS0, specify the IP address of a client in the * applicable location. *

* * @param eDNS0ClientSubnetIP * If the resolver that you specified for resolverip supports EDNS0, specify the IP address of a client in * the applicable location. * @return Returns a reference to this object so that method calls can be chained together. */ public TestDNSAnswerRequest withEDNS0ClientSubnetIP(String eDNS0ClientSubnetIP) { setEDNS0ClientSubnetIP(eDNS0ClientSubnetIP); return this; } /** *

* If you specify an IP address for edns0clientsubnetip, you can optionally specify the number of bits * of the IP address that you want the checking tool to include in the DNS query. For example, if you specify * 192.0.2.44 for edns0clientsubnetip and 24 for * edns0clientsubnetmask, the checking tool will simulate a request from 192.0.2.0/24. The default * value is 24 bits. *

* * @param eDNS0ClientSubnetMask * If you specify an IP address for edns0clientsubnetip, you can optionally specify the number * of bits of the IP address that you want the checking tool to include in the DNS query. For example, if you * specify 192.0.2.44 for edns0clientsubnetip and 24 for * edns0clientsubnetmask, the checking tool will simulate a request from 192.0.2.0/24. The * default value is 24 bits. */ public void setEDNS0ClientSubnetMask(String eDNS0ClientSubnetMask) { this.eDNS0ClientSubnetMask = eDNS0ClientSubnetMask; } /** *

* If you specify an IP address for edns0clientsubnetip, you can optionally specify the number of bits * of the IP address that you want the checking tool to include in the DNS query. For example, if you specify * 192.0.2.44 for edns0clientsubnetip and 24 for * edns0clientsubnetmask, the checking tool will simulate a request from 192.0.2.0/24. The default * value is 24 bits. *

* * @return If you specify an IP address for edns0clientsubnetip, you can optionally specify the number * of bits of the IP address that you want the checking tool to include in the DNS query. For example, if * you specify 192.0.2.44 for edns0clientsubnetip and 24 for * edns0clientsubnetmask, the checking tool will simulate a request from 192.0.2.0/24. The * default value is 24 bits. */ public String getEDNS0ClientSubnetMask() { return this.eDNS0ClientSubnetMask; } /** *

* If you specify an IP address for edns0clientsubnetip, you can optionally specify the number of bits * of the IP address that you want the checking tool to include in the DNS query. For example, if you specify * 192.0.2.44 for edns0clientsubnetip and 24 for * edns0clientsubnetmask, the checking tool will simulate a request from 192.0.2.0/24. The default * value is 24 bits. *

* * @param eDNS0ClientSubnetMask * If you specify an IP address for edns0clientsubnetip, you can optionally specify the number * of bits of the IP address that you want the checking tool to include in the DNS query. For example, if you * specify 192.0.2.44 for edns0clientsubnetip and 24 for * edns0clientsubnetmask, the checking tool will simulate a request from 192.0.2.0/24. The * default value is 24 bits. * @return Returns a reference to this object so that method calls can be chained together. */ public TestDNSAnswerRequest withEDNS0ClientSubnetMask(String eDNS0ClientSubnetMask) { setEDNS0ClientSubnetMask(eDNS0ClientSubnetMask); return this; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getHostedZoneId() != null) sb.append("HostedZoneId: " + getHostedZoneId() + ","); if (getRecordName() != null) sb.append("RecordName: " + getRecordName() + ","); if (getRecordType() != null) sb.append("RecordType: " + getRecordType() + ","); if (getResolverIP() != null) sb.append("ResolverIP: " + getResolverIP() + ","); if (getEDNS0ClientSubnetIP() != null) sb.append("EDNS0ClientSubnetIP: " + getEDNS0ClientSubnetIP() + ","); if (getEDNS0ClientSubnetMask() != null) sb.append("EDNS0ClientSubnetMask: " + getEDNS0ClientSubnetMask()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TestDNSAnswerRequest == false) return false; TestDNSAnswerRequest other = (TestDNSAnswerRequest) obj; if (other.getHostedZoneId() == null ^ this.getHostedZoneId() == null) return false; if (other.getHostedZoneId() != null && other.getHostedZoneId().equals(this.getHostedZoneId()) == false) return false; if (other.getRecordName() == null ^ this.getRecordName() == null) return false; if (other.getRecordName() != null && other.getRecordName().equals(this.getRecordName()) == false) return false; if (other.getRecordType() == null ^ this.getRecordType() == null) return false; if (other.getRecordType() != null && other.getRecordType().equals(this.getRecordType()) == false) return false; if (other.getResolverIP() == null ^ this.getResolverIP() == null) return false; if (other.getResolverIP() != null && other.getResolverIP().equals(this.getResolverIP()) == false) return false; if (other.getEDNS0ClientSubnetIP() == null ^ this.getEDNS0ClientSubnetIP() == null) return false; if (other.getEDNS0ClientSubnetIP() != null && other.getEDNS0ClientSubnetIP().equals(this.getEDNS0ClientSubnetIP()) == false) return false; if (other.getEDNS0ClientSubnetMask() == null ^ this.getEDNS0ClientSubnetMask() == null) return false; if (other.getEDNS0ClientSubnetMask() != null && other.getEDNS0ClientSubnetMask().equals(this.getEDNS0ClientSubnetMask()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getHostedZoneId() == null) ? 0 : getHostedZoneId().hashCode()); hashCode = prime * hashCode + ((getRecordName() == null) ? 0 : getRecordName().hashCode()); hashCode = prime * hashCode + ((getRecordType() == null) ? 0 : getRecordType().hashCode()); hashCode = prime * hashCode + ((getResolverIP() == null) ? 0 : getResolverIP().hashCode()); hashCode = prime * hashCode + ((getEDNS0ClientSubnetIP() == null) ? 0 : getEDNS0ClientSubnetIP().hashCode()); hashCode = prime * hashCode + ((getEDNS0ClientSubnetMask() == null) ? 0 : getEDNS0ClientSubnetMask().hashCode()); return hashCode; } @Override public TestDNSAnswerRequest clone() { return (TestDNSAnswerRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy