com.amazonaws.services.fms.model.PutProtocolsListRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-fms Show documentation
/*
* 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.fms.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class PutProtocolsListRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The details of the Firewall Manager protocols list to be created.
*
*/
private ProtocolsListData protocolsList;
/**
*
* The tags associated with the resource.
*
*/
private java.util.List tagList;
/**
*
* The details of the Firewall Manager protocols list to be created.
*
*
* @param protocolsList
* The details of the Firewall Manager protocols list to be created.
*/
public void setProtocolsList(ProtocolsListData protocolsList) {
this.protocolsList = protocolsList;
}
/**
*
* The details of the Firewall Manager protocols list to be created.
*
*
* @return The details of the Firewall Manager protocols list to be created.
*/
public ProtocolsListData getProtocolsList() {
return this.protocolsList;
}
/**
*
* The details of the Firewall Manager protocols list to be created.
*
*
* @param protocolsList
* The details of the Firewall Manager protocols list to be created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutProtocolsListRequest withProtocolsList(ProtocolsListData protocolsList) {
setProtocolsList(protocolsList);
return this;
}
/**
*
* The tags associated with the resource.
*
*
* @return The tags associated with the resource.
*/
public java.util.List getTagList() {
return tagList;
}
/**
*
* The tags associated with the resource.
*
*
* @param tagList
* The tags associated with the resource.
*/
public void setTagList(java.util.Collection tagList) {
if (tagList == null) {
this.tagList = null;
return;
}
this.tagList = new java.util.ArrayList(tagList);
}
/**
*
* The tags associated with the resource.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTagList(java.util.Collection)} or {@link #withTagList(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param tagList
* The tags associated with the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutProtocolsListRequest withTagList(Tag... tagList) {
if (this.tagList == null) {
setTagList(new java.util.ArrayList(tagList.length));
}
for (Tag ele : tagList) {
this.tagList.add(ele);
}
return this;
}
/**
*
* The tags associated with the resource.
*
*
* @param tagList
* The tags associated with the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutProtocolsListRequest withTagList(java.util.Collection tagList) {
setTagList(tagList);
return this;
}
/**
* 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 (getProtocolsList() != null)
sb.append("ProtocolsList: ").append(getProtocolsList()).append(",");
if (getTagList() != null)
sb.append("TagList: ").append(getTagList());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof PutProtocolsListRequest == false)
return false;
PutProtocolsListRequest other = (PutProtocolsListRequest) obj;
if (other.getProtocolsList() == null ^ this.getProtocolsList() == null)
return false;
if (other.getProtocolsList() != null && other.getProtocolsList().equals(this.getProtocolsList()) == false)
return false;
if (other.getTagList() == null ^ this.getTagList() == null)
return false;
if (other.getTagList() != null && other.getTagList().equals(this.getTagList()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getProtocolsList() == null) ? 0 : getProtocolsList().hashCode());
hashCode = prime * hashCode + ((getTagList() == null) ? 0 : getTagList().hashCode());
return hashCode;
}
@Override
public PutProtocolsListRequest clone() {
return (PutProtocolsListRequest) super.clone();
}
}