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

com.amazonaws.services.sagemaker.model.TrackingServerSummary Maven / Gradle / Ivy

/*
 * 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.sagemaker.model;

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

/**
 * 

* The summary of the tracking server to list. *

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

* The ARN of a listed tracking server. *

*/ private String trackingServerArn; /** *

* The name of a listed tracking server. *

*/ private String trackingServerName; /** *

* The creation time of a listed tracking server. *

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

* The last modified time of a listed tracking server. *

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

* The creation status of a listed tracking server. *

*/ private String trackingServerStatus; /** *

* The activity status of a listed tracking server. *

*/ private String isActive; /** *

* The MLflow version used for a listed tracking server. *

*/ private String mlflowVersion; /** *

* The ARN of a listed tracking server. *

* * @param trackingServerArn * The ARN of a listed tracking server. */ public void setTrackingServerArn(String trackingServerArn) { this.trackingServerArn = trackingServerArn; } /** *

* The ARN of a listed tracking server. *

* * @return The ARN of a listed tracking server. */ public String getTrackingServerArn() { return this.trackingServerArn; } /** *

* The ARN of a listed tracking server. *

* * @param trackingServerArn * The ARN of a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. */ public TrackingServerSummary withTrackingServerArn(String trackingServerArn) { setTrackingServerArn(trackingServerArn); return this; } /** *

* The name of a listed tracking server. *

* * @param trackingServerName * The name of a listed tracking server. */ public void setTrackingServerName(String trackingServerName) { this.trackingServerName = trackingServerName; } /** *

* The name of a listed tracking server. *

* * @return The name of a listed tracking server. */ public String getTrackingServerName() { return this.trackingServerName; } /** *

* The name of a listed tracking server. *

* * @param trackingServerName * The name of a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. */ public TrackingServerSummary withTrackingServerName(String trackingServerName) { setTrackingServerName(trackingServerName); return this; } /** *

* The creation time of a listed tracking server. *

* * @param creationTime * The creation time of a listed tracking server. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

* The creation time of a listed tracking server. *

* * @return The creation time of a listed tracking server. */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

* The creation time of a listed tracking server. *

* * @param creationTime * The creation time of a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. */ public TrackingServerSummary withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

* The last modified time of a listed tracking server. *

* * @param lastModifiedTime * The last modified time of a listed tracking server. */ public void setLastModifiedTime(java.util.Date lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } /** *

* The last modified time of a listed tracking server. *

* * @return The last modified time of a listed tracking server. */ public java.util.Date getLastModifiedTime() { return this.lastModifiedTime; } /** *

* The last modified time of a listed tracking server. *

* * @param lastModifiedTime * The last modified time of a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. */ public TrackingServerSummary withLastModifiedTime(java.util.Date lastModifiedTime) { setLastModifiedTime(lastModifiedTime); return this; } /** *

* The creation status of a listed tracking server. *

* * @param trackingServerStatus * The creation status of a listed tracking server. * @see TrackingServerStatus */ public void setTrackingServerStatus(String trackingServerStatus) { this.trackingServerStatus = trackingServerStatus; } /** *

* The creation status of a listed tracking server. *

* * @return The creation status of a listed tracking server. * @see TrackingServerStatus */ public String getTrackingServerStatus() { return this.trackingServerStatus; } /** *

* The creation status of a listed tracking server. *

* * @param trackingServerStatus * The creation status of a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. * @see TrackingServerStatus */ public TrackingServerSummary withTrackingServerStatus(String trackingServerStatus) { setTrackingServerStatus(trackingServerStatus); return this; } /** *

* The creation status of a listed tracking server. *

* * @param trackingServerStatus * The creation status of a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. * @see TrackingServerStatus */ public TrackingServerSummary withTrackingServerStatus(TrackingServerStatus trackingServerStatus) { this.trackingServerStatus = trackingServerStatus.toString(); return this; } /** *

* The activity status of a listed tracking server. *

* * @param isActive * The activity status of a listed tracking server. * @see IsTrackingServerActive */ public void setIsActive(String isActive) { this.isActive = isActive; } /** *

* The activity status of a listed tracking server. *

* * @return The activity status of a listed tracking server. * @see IsTrackingServerActive */ public String getIsActive() { return this.isActive; } /** *

* The activity status of a listed tracking server. *

* * @param isActive * The activity status of a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. * @see IsTrackingServerActive */ public TrackingServerSummary withIsActive(String isActive) { setIsActive(isActive); return this; } /** *

* The activity status of a listed tracking server. *

* * @param isActive * The activity status of a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. * @see IsTrackingServerActive */ public TrackingServerSummary withIsActive(IsTrackingServerActive isActive) { this.isActive = isActive.toString(); return this; } /** *

* The MLflow version used for a listed tracking server. *

* * @param mlflowVersion * The MLflow version used for a listed tracking server. */ public void setMlflowVersion(String mlflowVersion) { this.mlflowVersion = mlflowVersion; } /** *

* The MLflow version used for a listed tracking server. *

* * @return The MLflow version used for a listed tracking server. */ public String getMlflowVersion() { return this.mlflowVersion; } /** *

* The MLflow version used for a listed tracking server. *

* * @param mlflowVersion * The MLflow version used for a listed tracking server. * @return Returns a reference to this object so that method calls can be chained together. */ public TrackingServerSummary withMlflowVersion(String mlflowVersion) { setMlflowVersion(mlflowVersion); 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 (getTrackingServerArn() != null) sb.append("TrackingServerArn: ").append(getTrackingServerArn()).append(","); if (getTrackingServerName() != null) sb.append("TrackingServerName: ").append(getTrackingServerName()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getLastModifiedTime() != null) sb.append("LastModifiedTime: ").append(getLastModifiedTime()).append(","); if (getTrackingServerStatus() != null) sb.append("TrackingServerStatus: ").append(getTrackingServerStatus()).append(","); if (getIsActive() != null) sb.append("IsActive: ").append(getIsActive()).append(","); if (getMlflowVersion() != null) sb.append("MlflowVersion: ").append(getMlflowVersion()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TrackingServerSummary == false) return false; TrackingServerSummary other = (TrackingServerSummary) obj; if (other.getTrackingServerArn() == null ^ this.getTrackingServerArn() == null) return false; if (other.getTrackingServerArn() != null && other.getTrackingServerArn().equals(this.getTrackingServerArn()) == false) return false; if (other.getTrackingServerName() == null ^ this.getTrackingServerName() == null) return false; if (other.getTrackingServerName() != null && other.getTrackingServerName().equals(this.getTrackingServerName()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getLastModifiedTime() == null ^ this.getLastModifiedTime() == null) return false; if (other.getLastModifiedTime() != null && other.getLastModifiedTime().equals(this.getLastModifiedTime()) == false) return false; if (other.getTrackingServerStatus() == null ^ this.getTrackingServerStatus() == null) return false; if (other.getTrackingServerStatus() != null && other.getTrackingServerStatus().equals(this.getTrackingServerStatus()) == false) return false; if (other.getIsActive() == null ^ this.getIsActive() == null) return false; if (other.getIsActive() != null && other.getIsActive().equals(this.getIsActive()) == false) return false; if (other.getMlflowVersion() == null ^ this.getMlflowVersion() == null) return false; if (other.getMlflowVersion() != null && other.getMlflowVersion().equals(this.getMlflowVersion()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTrackingServerArn() == null) ? 0 : getTrackingServerArn().hashCode()); hashCode = prime * hashCode + ((getTrackingServerName() == null) ? 0 : getTrackingServerName().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getLastModifiedTime() == null) ? 0 : getLastModifiedTime().hashCode()); hashCode = prime * hashCode + ((getTrackingServerStatus() == null) ? 0 : getTrackingServerStatus().hashCode()); hashCode = prime * hashCode + ((getIsActive() == null) ? 0 : getIsActive().hashCode()); hashCode = prime * hashCode + ((getMlflowVersion() == null) ? 0 : getMlflowVersion().hashCode()); return hashCode; } @Override public TrackingServerSummary clone() { try { return (TrackingServerSummary) 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.sagemaker.model.transform.TrackingServerSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy