com.amazonaws.services.inspector.model.TelemetryMetadata Maven / Gradle / Ivy
Show all versions of aws-java-sdk-inspector 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.inspector.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The metadata about the Amazon Inspector application data metrics collected by the agent. This data type is used as
* the response element in the GetTelemetryMetadata action.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class TelemetryMetadata implements Serializable, Cloneable, StructuredPojo {
/**
*
* A specific type of behavioral data that is collected by the agent.
*
*/
private String messageType;
/**
*
* The count of messages that the agent sends to the Amazon Inspector service.
*
*/
private Long count;
/**
*
* The data size of messages that the agent sends to the Amazon Inspector service.
*
*/
private Long dataSize;
/**
*
* A specific type of behavioral data that is collected by the agent.
*
*
* @param messageType
* A specific type of behavioral data that is collected by the agent.
*/
public void setMessageType(String messageType) {
this.messageType = messageType;
}
/**
*
* A specific type of behavioral data that is collected by the agent.
*
*
* @return A specific type of behavioral data that is collected by the agent.
*/
public String getMessageType() {
return this.messageType;
}
/**
*
* A specific type of behavioral data that is collected by the agent.
*
*
* @param messageType
* A specific type of behavioral data that is collected by the agent.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TelemetryMetadata withMessageType(String messageType) {
setMessageType(messageType);
return this;
}
/**
*
* The count of messages that the agent sends to the Amazon Inspector service.
*
*
* @param count
* The count of messages that the agent sends to the Amazon Inspector service.
*/
public void setCount(Long count) {
this.count = count;
}
/**
*
* The count of messages that the agent sends to the Amazon Inspector service.
*
*
* @return The count of messages that the agent sends to the Amazon Inspector service.
*/
public Long getCount() {
return this.count;
}
/**
*
* The count of messages that the agent sends to the Amazon Inspector service.
*
*
* @param count
* The count of messages that the agent sends to the Amazon Inspector service.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TelemetryMetadata withCount(Long count) {
setCount(count);
return this;
}
/**
*
* The data size of messages that the agent sends to the Amazon Inspector service.
*
*
* @param dataSize
* The data size of messages that the agent sends to the Amazon Inspector service.
*/
public void setDataSize(Long dataSize) {
this.dataSize = dataSize;
}
/**
*
* The data size of messages that the agent sends to the Amazon Inspector service.
*
*
* @return The data size of messages that the agent sends to the Amazon Inspector service.
*/
public Long getDataSize() {
return this.dataSize;
}
/**
*
* The data size of messages that the agent sends to the Amazon Inspector service.
*
*
* @param dataSize
* The data size of messages that the agent sends to the Amazon Inspector service.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TelemetryMetadata withDataSize(Long dataSize) {
setDataSize(dataSize);
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 (getMessageType() != null)
sb.append("MessageType: ").append(getMessageType()).append(",");
if (getCount() != null)
sb.append("Count: ").append(getCount()).append(",");
if (getDataSize() != null)
sb.append("DataSize: ").append(getDataSize());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof TelemetryMetadata == false)
return false;
TelemetryMetadata other = (TelemetryMetadata) obj;
if (other.getMessageType() == null ^ this.getMessageType() == null)
return false;
if (other.getMessageType() != null && other.getMessageType().equals(this.getMessageType()) == false)
return false;
if (other.getCount() == null ^ this.getCount() == null)
return false;
if (other.getCount() != null && other.getCount().equals(this.getCount()) == false)
return false;
if (other.getDataSize() == null ^ this.getDataSize() == null)
return false;
if (other.getDataSize() != null && other.getDataSize().equals(this.getDataSize()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMessageType() == null) ? 0 : getMessageType().hashCode());
hashCode = prime * hashCode + ((getCount() == null) ? 0 : getCount().hashCode());
hashCode = prime * hashCode + ((getDataSize() == null) ? 0 : getDataSize().hashCode());
return hashCode;
}
@Override
public TelemetryMetadata clone() {
try {
return (TelemetryMetadata) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.inspector.model.transform.TelemetryMetadataMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}