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

com.amazonaws.services.directory.model.DirectoryConnectSettings Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
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.directory.model;

import java.io.Serializable;

/**
 * 

* Contains information for the ConnectDirectory operation when an AD * Connector directory is being created. *

*/ public class DirectoryConnectSettings implements Serializable, Cloneable { /** *

* The identifier of the VPC in which the AD Connector is created. *

*/ private String vpcId; /** *

* A list of subnet identifiers in the VPC in which the AD Connector is * created. *

*/ private com.amazonaws.internal.SdkInternalList subnetIds; /** *

* A list of one or more IP addresses of DNS servers or domain controllers * in the on-premises directory. *

*/ private com.amazonaws.internal.SdkInternalList customerDnsIps; /** *

* The username of an account in the on-premises directory that is used to * connect to the directory. This account must have the following * privileges: *

*
    *
  • *

    * Read users and groups *

    *
  • *
  • *

    * Create computer objects *

    *
  • *
  • *

    * Join computers to the domain *

    *
  • *
*/ private String customerUserName; /** *

* The identifier of the VPC in which the AD Connector is created. *

* * @param vpcId * The identifier of the VPC in which the AD Connector is created. */ public void setVpcId(String vpcId) { this.vpcId = vpcId; } /** *

* The identifier of the VPC in which the AD Connector is created. *

* * @return The identifier of the VPC in which the AD Connector is created. */ public String getVpcId() { return this.vpcId; } /** *

* The identifier of the VPC in which the AD Connector is created. *

* * @param vpcId * The identifier of the VPC in which the AD Connector is created. * @return Returns a reference to this object so that method calls can be * chained together. */ public DirectoryConnectSettings withVpcId(String vpcId) { setVpcId(vpcId); return this; } /** *

* A list of subnet identifiers in the VPC in which the AD Connector is * created. *

* * @return A list of subnet identifiers in the VPC in which the AD Connector * is created. */ public java.util.List getSubnetIds() { if (subnetIds == null) { subnetIds = new com.amazonaws.internal.SdkInternalList(); } return subnetIds; } /** *

* A list of subnet identifiers in the VPC in which the AD Connector is * created. *

* * @param subnetIds * A list of subnet identifiers in the VPC in which the AD Connector * is created. */ public void setSubnetIds(java.util.Collection subnetIds) { if (subnetIds == null) { this.subnetIds = null; return; } this.subnetIds = new com.amazonaws.internal.SdkInternalList( subnetIds); } /** *

* A list of subnet identifiers in the VPC in which the AD Connector is * created. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setSubnetIds(java.util.Collection)} or * {@link #withSubnetIds(java.util.Collection)} if you want to override the * existing values. *

* * @param subnetIds * A list of subnet identifiers in the VPC in which the AD Connector * is created. * @return Returns a reference to this object so that method calls can be * chained together. */ public DirectoryConnectSettings withSubnetIds(String... subnetIds) { if (this.subnetIds == null) { setSubnetIds(new com.amazonaws.internal.SdkInternalList( subnetIds.length)); } for (String ele : subnetIds) { this.subnetIds.add(ele); } return this; } /** *

* A list of subnet identifiers in the VPC in which the AD Connector is * created. *

* * @param subnetIds * A list of subnet identifiers in the VPC in which the AD Connector * is created. * @return Returns a reference to this object so that method calls can be * chained together. */ public DirectoryConnectSettings withSubnetIds( java.util.Collection subnetIds) { setSubnetIds(subnetIds); return this; } /** *

* A list of one or more IP addresses of DNS servers or domain controllers * in the on-premises directory. *

* * @return A list of one or more IP addresses of DNS servers or domain * controllers in the on-premises directory. */ public java.util.List getCustomerDnsIps() { if (customerDnsIps == null) { customerDnsIps = new com.amazonaws.internal.SdkInternalList(); } return customerDnsIps; } /** *

* A list of one or more IP addresses of DNS servers or domain controllers * in the on-premises directory. *

* * @param customerDnsIps * A list of one or more IP addresses of DNS servers or domain * controllers in the on-premises directory. */ public void setCustomerDnsIps(java.util.Collection customerDnsIps) { if (customerDnsIps == null) { this.customerDnsIps = null; return; } this.customerDnsIps = new com.amazonaws.internal.SdkInternalList( customerDnsIps); } /** *

* A list of one or more IP addresses of DNS servers or domain controllers * in the on-premises directory. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setCustomerDnsIps(java.util.Collection)} or * {@link #withCustomerDnsIps(java.util.Collection)} if you want to override * the existing values. *

* * @param customerDnsIps * A list of one or more IP addresses of DNS servers or domain * controllers in the on-premises directory. * @return Returns a reference to this object so that method calls can be * chained together. */ public DirectoryConnectSettings withCustomerDnsIps(String... customerDnsIps) { if (this.customerDnsIps == null) { setCustomerDnsIps(new com.amazonaws.internal.SdkInternalList( customerDnsIps.length)); } for (String ele : customerDnsIps) { this.customerDnsIps.add(ele); } return this; } /** *

* A list of one or more IP addresses of DNS servers or domain controllers * in the on-premises directory. *

* * @param customerDnsIps * A list of one or more IP addresses of DNS servers or domain * controllers in the on-premises directory. * @return Returns a reference to this object so that method calls can be * chained together. */ public DirectoryConnectSettings withCustomerDnsIps( java.util.Collection customerDnsIps) { setCustomerDnsIps(customerDnsIps); return this; } /** *

* The username of an account in the on-premises directory that is used to * connect to the directory. This account must have the following * privileges: *

*
    *
  • *

    * Read users and groups *

    *
  • *
  • *

    * Create computer objects *

    *
  • *
  • *

    * Join computers to the domain *

    *
  • *
* * @param customerUserName * The username of an account in the on-premises directory that is * used to connect to the directory. This account must have the * following privileges:

*
    *
  • *

    * Read users and groups *

    *
  • *
  • *

    * Create computer objects *

    *
  • *
  • *

    * Join computers to the domain *

    *
  • */ public void setCustomerUserName(String customerUserName) { this.customerUserName = customerUserName; } /** *

    * The username of an account in the on-premises directory that is used to * connect to the directory. This account must have the following * privileges: *

    *
      *
    • *

      * Read users and groups *

      *
    • *
    • *

      * Create computer objects *

      *
    • *
    • *

      * Join computers to the domain *

      *
    • *
    * * @return The username of an account in the on-premises directory that is * used to connect to the directory. This account must have the * following privileges:

    *
      *
    • *

      * Read users and groups *

      *
    • *
    • *

      * Create computer objects *

      *
    • *
    • *

      * Join computers to the domain *

      *
    • */ public String getCustomerUserName() { return this.customerUserName; } /** *

      * The username of an account in the on-premises directory that is used to * connect to the directory. This account must have the following * privileges: *

      *
        *
      • *

        * Read users and groups *

        *
      • *
      • *

        * Create computer objects *

        *
      • *
      • *

        * Join computers to the domain *

        *
      • *
      * * @param customerUserName * The username of an account in the on-premises directory that is * used to connect to the directory. This account must have the * following privileges:

      *
        *
      • *

        * Read users and groups *

        *
      • *
      • *

        * Create computer objects *

        *
      • *
      • *

        * Join computers to the domain *

        *
      • * @return Returns a reference to this object so that method calls can be * chained together. */ public DirectoryConnectSettings withCustomerUserName(String customerUserName) { setCustomerUserName(customerUserName); 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 (getVpcId() != null) sb.append("VpcId: " + getVpcId() + ","); if (getSubnetIds() != null) sb.append("SubnetIds: " + getSubnetIds() + ","); if (getCustomerDnsIps() != null) sb.append("CustomerDnsIps: " + getCustomerDnsIps() + ","); if (getCustomerUserName() != null) sb.append("CustomerUserName: " + getCustomerUserName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DirectoryConnectSettings == false) return false; DirectoryConnectSettings other = (DirectoryConnectSettings) obj; if (other.getVpcId() == null ^ this.getVpcId() == null) return false; if (other.getVpcId() != null && other.getVpcId().equals(this.getVpcId()) == false) return false; if (other.getSubnetIds() == null ^ this.getSubnetIds() == null) return false; if (other.getSubnetIds() != null && other.getSubnetIds().equals(this.getSubnetIds()) == false) return false; if (other.getCustomerDnsIps() == null ^ this.getCustomerDnsIps() == null) return false; if (other.getCustomerDnsIps() != null && other.getCustomerDnsIps().equals(this.getCustomerDnsIps()) == false) return false; if (other.getCustomerUserName() == null ^ this.getCustomerUserName() == null) return false; if (other.getCustomerUserName() != null && other.getCustomerUserName().equals( this.getCustomerUserName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().hashCode()); hashCode = prime * hashCode + ((getSubnetIds() == null) ? 0 : getSubnetIds().hashCode()); hashCode = prime * hashCode + ((getCustomerDnsIps() == null) ? 0 : getCustomerDnsIps() .hashCode()); hashCode = prime * hashCode + ((getCustomerUserName() == null) ? 0 : getCustomerUserName() .hashCode()); return hashCode; } @Override public DirectoryConnectSettings clone() { try { return (DirectoryConnectSettings) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy