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

com.amazonaws.services.devopsguru.model.Event Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon DevOps Guru module holds the client classes that are used for communicating with Amazon DevOps Guru 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.devopsguru.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* An Amazon Web Services resource event. Amazon Web Services resource events and metrics are analyzed by DevOps Guru to * find anomalous behavior and provide recommendations to improve your operational solutions. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Event implements Serializable, Cloneable, StructuredPojo { private ResourceCollection resourceCollection; /** *

* The ID of the event. *

*/ private String id; /** *

* A Timestamp that specifies the time the event occurred. *

*/ private java.util.Date time; /** *

* The Amazon Web Services source that emitted the event. *

*/ private String eventSource; /** *

* The name of the event. *

*/ private String name; /** *

* The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found the * event. *

*/ private String dataSource; /** *

* The class of the event. The class specifies what the event is related to, such as an infrastructure change, a * deployment, or a schema change. *

*/ private String eventClass; /** *

* An EventResource object that contains information about the resource that emitted the event. *

*/ private java.util.List resources; /** * @param resourceCollection */ public void setResourceCollection(ResourceCollection resourceCollection) { this.resourceCollection = resourceCollection; } /** * @return */ public ResourceCollection getResourceCollection() { return this.resourceCollection; } /** * @param resourceCollection * @return Returns a reference to this object so that method calls can be chained together. */ public Event withResourceCollection(ResourceCollection resourceCollection) { setResourceCollection(resourceCollection); return this; } /** *

* The ID of the event. *

* * @param id * The ID of the event. */ public void setId(String id) { this.id = id; } /** *

* The ID of the event. *

* * @return The ID of the event. */ public String getId() { return this.id; } /** *

* The ID of the event. *

* * @param id * The ID of the event. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withId(String id) { setId(id); return this; } /** *

* A Timestamp that specifies the time the event occurred. *

* * @param time * A Timestamp that specifies the time the event occurred. */ public void setTime(java.util.Date time) { this.time = time; } /** *

* A Timestamp that specifies the time the event occurred. *

* * @return A Timestamp that specifies the time the event occurred. */ public java.util.Date getTime() { return this.time; } /** *

* A Timestamp that specifies the time the event occurred. *

* * @param time * A Timestamp that specifies the time the event occurred. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withTime(java.util.Date time) { setTime(time); return this; } /** *

* The Amazon Web Services source that emitted the event. *

* * @param eventSource * The Amazon Web Services source that emitted the event. */ public void setEventSource(String eventSource) { this.eventSource = eventSource; } /** *

* The Amazon Web Services source that emitted the event. *

* * @return The Amazon Web Services source that emitted the event. */ public String getEventSource() { return this.eventSource; } /** *

* The Amazon Web Services source that emitted the event. *

* * @param eventSource * The Amazon Web Services source that emitted the event. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withEventSource(String eventSource) { setEventSource(eventSource); return this; } /** *

* The name of the event. *

* * @param name * The name of the event. */ public void setName(String name) { this.name = name; } /** *

* The name of the event. *

* * @return The name of the event. */ public String getName() { return this.name; } /** *

* The name of the event. *

* * @param name * The name of the event. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withName(String name) { setName(name); return this; } /** *

* The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found the * event. *

* * @param dataSource * The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found * the event. * @see EventDataSource */ public void setDataSource(String dataSource) { this.dataSource = dataSource; } /** *

* The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found the * event. *

* * @return The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis * found the event. * @see EventDataSource */ public String getDataSource() { return this.dataSource; } /** *

* The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found the * event. *

* * @param dataSource * The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found * the event. * @return Returns a reference to this object so that method calls can be chained together. * @see EventDataSource */ public Event withDataSource(String dataSource) { setDataSource(dataSource); return this; } /** *

* The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found the * event. *

* * @param dataSource * The source, AWS_CLOUD_TRAIL or AWS_CODE_DEPLOY, where DevOps Guru analysis found * the event. * @return Returns a reference to this object so that method calls can be chained together. * @see EventDataSource */ public Event withDataSource(EventDataSource dataSource) { this.dataSource = dataSource.toString(); return this; } /** *

* The class of the event. The class specifies what the event is related to, such as an infrastructure change, a * deployment, or a schema change. *

* * @param eventClass * The class of the event. The class specifies what the event is related to, such as an infrastructure * change, a deployment, or a schema change. * @see EventClass */ public void setEventClass(String eventClass) { this.eventClass = eventClass; } /** *

* The class of the event. The class specifies what the event is related to, such as an infrastructure change, a * deployment, or a schema change. *

* * @return The class of the event. The class specifies what the event is related to, such as an infrastructure * change, a deployment, or a schema change. * @see EventClass */ public String getEventClass() { return this.eventClass; } /** *

* The class of the event. The class specifies what the event is related to, such as an infrastructure change, a * deployment, or a schema change. *

* * @param eventClass * The class of the event. The class specifies what the event is related to, such as an infrastructure * change, a deployment, or a schema change. * @return Returns a reference to this object so that method calls can be chained together. * @see EventClass */ public Event withEventClass(String eventClass) { setEventClass(eventClass); return this; } /** *

* The class of the event. The class specifies what the event is related to, such as an infrastructure change, a * deployment, or a schema change. *

* * @param eventClass * The class of the event. The class specifies what the event is related to, such as an infrastructure * change, a deployment, or a schema change. * @return Returns a reference to this object so that method calls can be chained together. * @see EventClass */ public Event withEventClass(EventClass eventClass) { this.eventClass = eventClass.toString(); return this; } /** *

* An EventResource object that contains information about the resource that emitted the event. *

* * @return An EventResource object that contains information about the resource that emitted the event. */ public java.util.List getResources() { return resources; } /** *

* An EventResource object that contains information about the resource that emitted the event. *

* * @param resources * An EventResource object that contains information about the resource that emitted the event. */ public void setResources(java.util.Collection resources) { if (resources == null) { this.resources = null; return; } this.resources = new java.util.ArrayList(resources); } /** *

* An EventResource object that contains information about the resource that emitted the event. *

*

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

* * @param resources * An EventResource object that contains information about the resource that emitted the event. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withResources(EventResource... resources) { if (this.resources == null) { setResources(new java.util.ArrayList(resources.length)); } for (EventResource ele : resources) { this.resources.add(ele); } return this; } /** *

* An EventResource object that contains information about the resource that emitted the event. *

* * @param resources * An EventResource object that contains information about the resource that emitted the event. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withResources(java.util.Collection resources) { setResources(resources); 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 (getResourceCollection() != null) sb.append("ResourceCollection: ").append(getResourceCollection()).append(","); if (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getTime() != null) sb.append("Time: ").append(getTime()).append(","); if (getEventSource() != null) sb.append("EventSource: ").append(getEventSource()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getDataSource() != null) sb.append("DataSource: ").append(getDataSource()).append(","); if (getEventClass() != null) sb.append("EventClass: ").append(getEventClass()).append(","); if (getResources() != null) sb.append("Resources: ").append(getResources()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Event == false) return false; Event other = (Event) obj; if (other.getResourceCollection() == null ^ this.getResourceCollection() == null) return false; if (other.getResourceCollection() != null && other.getResourceCollection().equals(this.getResourceCollection()) == false) return false; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getTime() == null ^ this.getTime() == null) return false; if (other.getTime() != null && other.getTime().equals(this.getTime()) == false) return false; if (other.getEventSource() == null ^ this.getEventSource() == null) return false; if (other.getEventSource() != null && other.getEventSource().equals(this.getEventSource()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getDataSource() == null ^ this.getDataSource() == null) return false; if (other.getDataSource() != null && other.getDataSource().equals(this.getDataSource()) == false) return false; if (other.getEventClass() == null ^ this.getEventClass() == null) return false; if (other.getEventClass() != null && other.getEventClass().equals(this.getEventClass()) == false) return false; if (other.getResources() == null ^ this.getResources() == null) return false; if (other.getResources() != null && other.getResources().equals(this.getResources()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getResourceCollection() == null) ? 0 : getResourceCollection().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getTime() == null) ? 0 : getTime().hashCode()); hashCode = prime * hashCode + ((getEventSource() == null) ? 0 : getEventSource().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDataSource() == null) ? 0 : getDataSource().hashCode()); hashCode = prime * hashCode + ((getEventClass() == null) ? 0 : getEventClass().hashCode()); hashCode = prime * hashCode + ((getResources() == null) ? 0 : getResources().hashCode()); return hashCode; } @Override public Event clone() { try { return (Event) 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.devopsguru.model.transform.EventMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy