com.amazonaws.services.ec2.model.StartNetworkInsightsAnalysisRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2016-2021 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.StartNetworkInsightsAnalysisRequestMarshaller;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class StartNetworkInsightsAnalysisRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
DryRunSupportedRequest {
/**
*
* The ID of the path.
*
*/
private String networkInsightsPathId;
/**
*
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
*
*/
private com.amazonaws.internal.SdkInternalList filterInArns;
/**
*
* The tags to apply.
*
*/
private com.amazonaws.internal.SdkInternalList tagSpecifications;
/**
*
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*
*/
private String clientToken;
/**
*
* The ID of the path.
*
*
* @param networkInsightsPathId
* The ID of the path.
*/
public void setNetworkInsightsPathId(String networkInsightsPathId) {
this.networkInsightsPathId = networkInsightsPathId;
}
/**
*
* The ID of the path.
*
*
* @return The ID of the path.
*/
public String getNetworkInsightsPathId() {
return this.networkInsightsPathId;
}
/**
*
* The ID of the path.
*
*
* @param networkInsightsPathId
* The ID of the path.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartNetworkInsightsAnalysisRequest withNetworkInsightsPathId(String networkInsightsPathId) {
setNetworkInsightsPathId(networkInsightsPathId);
return this;
}
/**
*
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
*
*
* @return The Amazon Resource Names (ARN) of the resources that the path must traverse.
*/
public java.util.List getFilterInArns() {
if (filterInArns == null) {
filterInArns = new com.amazonaws.internal.SdkInternalList();
}
return filterInArns;
}
/**
*
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
*
*
* @param filterInArns
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
*/
public void setFilterInArns(java.util.Collection filterInArns) {
if (filterInArns == null) {
this.filterInArns = null;
return;
}
this.filterInArns = new com.amazonaws.internal.SdkInternalList(filterInArns);
}
/**
*
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setFilterInArns(java.util.Collection)} or {@link #withFilterInArns(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param filterInArns
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartNetworkInsightsAnalysisRequest withFilterInArns(String... filterInArns) {
if (this.filterInArns == null) {
setFilterInArns(new com.amazonaws.internal.SdkInternalList(filterInArns.length));
}
for (String ele : filterInArns) {
this.filterInArns.add(ele);
}
return this;
}
/**
*
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
*
*
* @param filterInArns
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartNetworkInsightsAnalysisRequest withFilterInArns(java.util.Collection filterInArns) {
setFilterInArns(filterInArns);
return this;
}
/**
*
* The tags to apply.
*
*
* @return The tags to apply.
*/
public java.util.List getTagSpecifications() {
if (tagSpecifications == null) {
tagSpecifications = new com.amazonaws.internal.SdkInternalList();
}
return tagSpecifications;
}
/**
*
* The tags to apply.
*
*
* @param tagSpecifications
* The tags to apply.
*/
public void setTagSpecifications(java.util.Collection tagSpecifications) {
if (tagSpecifications == null) {
this.tagSpecifications = null;
return;
}
this.tagSpecifications = new com.amazonaws.internal.SdkInternalList(tagSpecifications);
}
/**
*
* The tags to apply.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTagSpecifications(java.util.Collection)} or {@link #withTagSpecifications(java.util.Collection)} if
* you want to override the existing values.
*
*
* @param tagSpecifications
* The tags to apply.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartNetworkInsightsAnalysisRequest withTagSpecifications(TagSpecification... tagSpecifications) {
if (this.tagSpecifications == null) {
setTagSpecifications(new com.amazonaws.internal.SdkInternalList(tagSpecifications.length));
}
for (TagSpecification ele : tagSpecifications) {
this.tagSpecifications.add(ele);
}
return this;
}
/**
*
* The tags to apply.
*
*
* @param tagSpecifications
* The tags to apply.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartNetworkInsightsAnalysisRequest withTagSpecifications(java.util.Collection tagSpecifications) {
setTagSpecifications(tagSpecifications);
return this;
}
/**
*
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*
*
* @param clientToken
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*/
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
}
/**
*
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*
*
* @return Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*/
public String getClientToken() {
return this.clientToken;
}
/**
*
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
*
*
* @param clientToken
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more
* information, see How to ensure
* idempotency.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartNetworkInsightsAnalysisRequest withClientToken(String clientToken) {
setClientToken(clientToken);
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 StartNetworkInsightsAnalysisRequestMarshaller().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 (getNetworkInsightsPathId() != null)
sb.append("NetworkInsightsPathId: ").append(getNetworkInsightsPathId()).append(",");
if (getFilterInArns() != null)
sb.append("FilterInArns: ").append(getFilterInArns()).append(",");
if (getTagSpecifications() != null)
sb.append("TagSpecifications: ").append(getTagSpecifications()).append(",");
if (getClientToken() != null)
sb.append("ClientToken: ").append(getClientToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof StartNetworkInsightsAnalysisRequest == false)
return false;
StartNetworkInsightsAnalysisRequest other = (StartNetworkInsightsAnalysisRequest) obj;
if (other.getNetworkInsightsPathId() == null ^ this.getNetworkInsightsPathId() == null)
return false;
if (other.getNetworkInsightsPathId() != null && other.getNetworkInsightsPathId().equals(this.getNetworkInsightsPathId()) == false)
return false;
if (other.getFilterInArns() == null ^ this.getFilterInArns() == null)
return false;
if (other.getFilterInArns() != null && other.getFilterInArns().equals(this.getFilterInArns()) == false)
return false;
if (other.getTagSpecifications() == null ^ this.getTagSpecifications() == null)
return false;
if (other.getTagSpecifications() != null && other.getTagSpecifications().equals(this.getTagSpecifications()) == false)
return false;
if (other.getClientToken() == null ^ this.getClientToken() == null)
return false;
if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNetworkInsightsPathId() == null) ? 0 : getNetworkInsightsPathId().hashCode());
hashCode = prime * hashCode + ((getFilterInArns() == null) ? 0 : getFilterInArns().hashCode());
hashCode = prime * hashCode + ((getTagSpecifications() == null) ? 0 : getTagSpecifications().hashCode());
hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode());
return hashCode;
}
@Override
public StartNetworkInsightsAnalysisRequest clone() {
return (StartNetworkInsightsAnalysisRequest) super.clone();
}
}