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

com.amazonaws.services.ec2.model.ModifyIpamResourceDiscoveryRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2019-2024 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.ec2.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.ModifyIpamResourceDiscoveryRequestMarshaller;

/**
 * 
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ModifyIpamResourceDiscoveryRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
        DryRunSupportedRequest {

    /**
     * 

* A resource discovery ID. *

*/ private String ipamResourceDiscoveryId; /** *

* A resource discovery description. *

*/ private String description; /** *

* Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM * is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services * Regions you select as operating Regions. *

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

* Remove operating Regions. *

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

* A resource discovery ID. *

* * @param ipamResourceDiscoveryId * A resource discovery ID. */ public void setIpamResourceDiscoveryId(String ipamResourceDiscoveryId) { this.ipamResourceDiscoveryId = ipamResourceDiscoveryId; } /** *

* A resource discovery ID. *

* * @return A resource discovery ID. */ public String getIpamResourceDiscoveryId() { return this.ipamResourceDiscoveryId; } /** *

* A resource discovery ID. *

* * @param ipamResourceDiscoveryId * A resource discovery ID. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyIpamResourceDiscoveryRequest withIpamResourceDiscoveryId(String ipamResourceDiscoveryId) { setIpamResourceDiscoveryId(ipamResourceDiscoveryId); return this; } /** *

* A resource discovery description. *

* * @param description * A resource discovery description. */ public void setDescription(String description) { this.description = description; } /** *

* A resource discovery description. *

* * @return A resource discovery description. */ public String getDescription() { return this.description; } /** *

* A resource discovery description. *

* * @param description * A resource discovery description. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyIpamResourceDiscoveryRequest withDescription(String description) { setDescription(description); return this; } /** *

* Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM * is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services * Regions you select as operating Regions. *

* * @return Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where * the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon * Web Services Regions you select as operating Regions. */ public java.util.List getAddOperatingRegions() { if (addOperatingRegions == null) { addOperatingRegions = new com.amazonaws.internal.SdkInternalList(); } return addOperatingRegions; } /** *

* Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM * is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services * Regions you select as operating Regions. *

* * @param addOperatingRegions * Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where * the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon * Web Services Regions you select as operating Regions. */ public void setAddOperatingRegions(java.util.Collection addOperatingRegions) { if (addOperatingRegions == null) { this.addOperatingRegions = null; return; } this.addOperatingRegions = new com.amazonaws.internal.SdkInternalList(addOperatingRegions); } /** *

* Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM * is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services * Regions you select as operating Regions. *

*

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

* * @param addOperatingRegions * Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where * the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon * Web Services Regions you select as operating Regions. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyIpamResourceDiscoveryRequest withAddOperatingRegions(AddIpamOperatingRegion... addOperatingRegions) { if (this.addOperatingRegions == null) { setAddOperatingRegions(new com.amazonaws.internal.SdkInternalList(addOperatingRegions.length)); } for (AddIpamOperatingRegion ele : addOperatingRegions) { this.addOperatingRegions.add(ele); } return this; } /** *

* Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where the IPAM * is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon Web Services * Regions you select as operating Regions. *

* * @param addOperatingRegions * Add operating Regions to the resource discovery. Operating Regions are Amazon Web Services Regions where * the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the Amazon * Web Services Regions you select as operating Regions. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyIpamResourceDiscoveryRequest withAddOperatingRegions(java.util.Collection addOperatingRegions) { setAddOperatingRegions(addOperatingRegions); return this; } /** *

* Remove operating Regions. *

* * @return Remove operating Regions. */ public java.util.List getRemoveOperatingRegions() { if (removeOperatingRegions == null) { removeOperatingRegions = new com.amazonaws.internal.SdkInternalList(); } return removeOperatingRegions; } /** *

* Remove operating Regions. *

* * @param removeOperatingRegions * Remove operating Regions. */ public void setRemoveOperatingRegions(java.util.Collection removeOperatingRegions) { if (removeOperatingRegions == null) { this.removeOperatingRegions = null; return; } this.removeOperatingRegions = new com.amazonaws.internal.SdkInternalList(removeOperatingRegions); } /** *

* Remove operating Regions. *

*

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

* * @param removeOperatingRegions * Remove operating Regions. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyIpamResourceDiscoveryRequest withRemoveOperatingRegions(RemoveIpamOperatingRegion... removeOperatingRegions) { if (this.removeOperatingRegions == null) { setRemoveOperatingRegions(new com.amazonaws.internal.SdkInternalList(removeOperatingRegions.length)); } for (RemoveIpamOperatingRegion ele : removeOperatingRegions) { this.removeOperatingRegions.add(ele); } return this; } /** *

* Remove operating Regions. *

* * @param removeOperatingRegions * Remove operating Regions. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyIpamResourceDiscoveryRequest withRemoveOperatingRegions(java.util.Collection removeOperatingRegions) { setRemoveOperatingRegions(removeOperatingRegions); return this; } /** * This method is intended for internal use only. Returns the marshaled request configured with additional * parameters to enable operation dry-run. */ @Override public Request getDryRunRequest() { Request request = new ModifyIpamResourceDiscoveryRequestMarshaller().marshall(this); request.addParameter("DryRun", Boolean.toString(true)); return request; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getIpamResourceDiscoveryId() != null) sb.append("IpamResourceDiscoveryId: ").append(getIpamResourceDiscoveryId()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getAddOperatingRegions() != null) sb.append("AddOperatingRegions: ").append(getAddOperatingRegions()).append(","); if (getRemoveOperatingRegions() != null) sb.append("RemoveOperatingRegions: ").append(getRemoveOperatingRegions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ModifyIpamResourceDiscoveryRequest == false) return false; ModifyIpamResourceDiscoveryRequest other = (ModifyIpamResourceDiscoveryRequest) obj; if (other.getIpamResourceDiscoveryId() == null ^ this.getIpamResourceDiscoveryId() == null) return false; if (other.getIpamResourceDiscoveryId() != null && other.getIpamResourceDiscoveryId().equals(this.getIpamResourceDiscoveryId()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getAddOperatingRegions() == null ^ this.getAddOperatingRegions() == null) return false; if (other.getAddOperatingRegions() != null && other.getAddOperatingRegions().equals(this.getAddOperatingRegions()) == false) return false; if (other.getRemoveOperatingRegions() == null ^ this.getRemoveOperatingRegions() == null) return false; if (other.getRemoveOperatingRegions() != null && other.getRemoveOperatingRegions().equals(this.getRemoveOperatingRegions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getIpamResourceDiscoveryId() == null) ? 0 : getIpamResourceDiscoveryId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getAddOperatingRegions() == null) ? 0 : getAddOperatingRegions().hashCode()); hashCode = prime * hashCode + ((getRemoveOperatingRegions() == null) ? 0 : getRemoveOperatingRegions().hashCode()); return hashCode; } @Override public ModifyIpamResourceDiscoveryRequest clone() { return (ModifyIpamResourceDiscoveryRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy