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

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

/*
 * Copyright 2015-2020 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.AmazonWebServiceRequest;

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

    /**
     * 

* A filter that returns only model packages created after the specified time (timestamp). *

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

* A filter that returns only model packages created before the specified time (timestamp). *

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

* The maximum number of model packages to return in the response. *

*/ private Integer maxResults; /** *

* A string in the model package name. This filter returns only model packages whose name contains the specified * string. *

*/ private String nameContains; /** *

* A filter that returns only the model packages with the specified approval status. *

*/ private String modelApprovalStatus; /** *

* A filter that returns only model versions that belong to the specified model group. *

*/ private String modelPackageGroupName; /** *

* A filter that returns onlyl the model packages of the specified type. This can be one of the following values. *

*
    *
  • *

    * VERSIONED - List only versioned models. *

    *
  • *
  • *

    * UNVERSIONED - List only unversioined models. *

    *
  • *
  • *

    * BOTH - List both versioned and unversioned models. *

    *
  • *
*/ private String modelPackageType; /** *

* If the response to a previous ListModelPackages request was truncated, the response includes a * NextToken. To retrieve the next set of model packages, use the token in the next request. *

*/ private String nextToken; /** *

* The parameter by which to sort the results. The default is CreationTime. *

*/ private String sortBy; /** *

* The sort order for the results. The default is Ascending. *

*/ private String sortOrder; /** *

* A filter that returns only model packages created after the specified time (timestamp). *

* * @param creationTimeAfter * A filter that returns only model packages created after the specified time (timestamp). */ public void setCreationTimeAfter(java.util.Date creationTimeAfter) { this.creationTimeAfter = creationTimeAfter; } /** *

* A filter that returns only model packages created after the specified time (timestamp). *

* * @return A filter that returns only model packages created after the specified time (timestamp). */ public java.util.Date getCreationTimeAfter() { return this.creationTimeAfter; } /** *

* A filter that returns only model packages created after the specified time (timestamp). *

* * @param creationTimeAfter * A filter that returns only model packages created after the specified time (timestamp). * @return Returns a reference to this object so that method calls can be chained together. */ public ListModelPackagesRequest withCreationTimeAfter(java.util.Date creationTimeAfter) { setCreationTimeAfter(creationTimeAfter); return this; } /** *

* A filter that returns only model packages created before the specified time (timestamp). *

* * @param creationTimeBefore * A filter that returns only model packages created before the specified time (timestamp). */ public void setCreationTimeBefore(java.util.Date creationTimeBefore) { this.creationTimeBefore = creationTimeBefore; } /** *

* A filter that returns only model packages created before the specified time (timestamp). *

* * @return A filter that returns only model packages created before the specified time (timestamp). */ public java.util.Date getCreationTimeBefore() { return this.creationTimeBefore; } /** *

* A filter that returns only model packages created before the specified time (timestamp). *

* * @param creationTimeBefore * A filter that returns only model packages created before the specified time (timestamp). * @return Returns a reference to this object so that method calls can be chained together. */ public ListModelPackagesRequest withCreationTimeBefore(java.util.Date creationTimeBefore) { setCreationTimeBefore(creationTimeBefore); return this; } /** *

* The maximum number of model packages to return in the response. *

* * @param maxResults * The maximum number of model packages to return in the response. */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** *

* The maximum number of model packages to return in the response. *

* * @return The maximum number of model packages to return in the response. */ public Integer getMaxResults() { return this.maxResults; } /** *

* The maximum number of model packages to return in the response. *

* * @param maxResults * The maximum number of model packages to return in the response. * @return Returns a reference to this object so that method calls can be chained together. */ public ListModelPackagesRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); return this; } /** *

* A string in the model package name. This filter returns only model packages whose name contains the specified * string. *

* * @param nameContains * A string in the model package name. This filter returns only model packages whose name contains the * specified string. */ public void setNameContains(String nameContains) { this.nameContains = nameContains; } /** *

* A string in the model package name. This filter returns only model packages whose name contains the specified * string. *

* * @return A string in the model package name. This filter returns only model packages whose name contains the * specified string. */ public String getNameContains() { return this.nameContains; } /** *

* A string in the model package name. This filter returns only model packages whose name contains the specified * string. *

* * @param nameContains * A string in the model package name. This filter returns only model packages whose name contains the * specified string. * @return Returns a reference to this object so that method calls can be chained together. */ public ListModelPackagesRequest withNameContains(String nameContains) { setNameContains(nameContains); return this; } /** *

* A filter that returns only the model packages with the specified approval status. *

* * @param modelApprovalStatus * A filter that returns only the model packages with the specified approval status. * @see ModelApprovalStatus */ public void setModelApprovalStatus(String modelApprovalStatus) { this.modelApprovalStatus = modelApprovalStatus; } /** *

* A filter that returns only the model packages with the specified approval status. *

* * @return A filter that returns only the model packages with the specified approval status. * @see ModelApprovalStatus */ public String getModelApprovalStatus() { return this.modelApprovalStatus; } /** *

* A filter that returns only the model packages with the specified approval status. *

* * @param modelApprovalStatus * A filter that returns only the model packages with the specified approval status. * @return Returns a reference to this object so that method calls can be chained together. * @see ModelApprovalStatus */ public ListModelPackagesRequest withModelApprovalStatus(String modelApprovalStatus) { setModelApprovalStatus(modelApprovalStatus); return this; } /** *

* A filter that returns only the model packages with the specified approval status. *

* * @param modelApprovalStatus * A filter that returns only the model packages with the specified approval status. * @return Returns a reference to this object so that method calls can be chained together. * @see ModelApprovalStatus */ public ListModelPackagesRequest withModelApprovalStatus(ModelApprovalStatus modelApprovalStatus) { this.modelApprovalStatus = modelApprovalStatus.toString(); return this; } /** *

* A filter that returns only model versions that belong to the specified model group. *

* * @param modelPackageGroupName * A filter that returns only model versions that belong to the specified model group. */ public void setModelPackageGroupName(String modelPackageGroupName) { this.modelPackageGroupName = modelPackageGroupName; } /** *

* A filter that returns only model versions that belong to the specified model group. *

* * @return A filter that returns only model versions that belong to the specified model group. */ public String getModelPackageGroupName() { return this.modelPackageGroupName; } /** *

* A filter that returns only model versions that belong to the specified model group. *

* * @param modelPackageGroupName * A filter that returns only model versions that belong to the specified model group. * @return Returns a reference to this object so that method calls can be chained together. */ public ListModelPackagesRequest withModelPackageGroupName(String modelPackageGroupName) { setModelPackageGroupName(modelPackageGroupName); return this; } /** *

* A filter that returns onlyl the model packages of the specified type. This can be one of the following values. *

*
    *
  • *

    * VERSIONED - List only versioned models. *

    *
  • *
  • *

    * UNVERSIONED - List only unversioined models. *

    *
  • *
  • *

    * BOTH - List both versioned and unversioned models. *

    *
  • *
* * @param modelPackageType * A filter that returns onlyl the model packages of the specified type. This can be one of the following * values.

*
    *
  • *

    * VERSIONED - List only versioned models. *

    *
  • *
  • *

    * UNVERSIONED - List only unversioined models. *

    *
  • *
  • *

    * BOTH - List both versioned and unversioned models. *

    *
  • * @see ModelPackageType */ public void setModelPackageType(String modelPackageType) { this.modelPackageType = modelPackageType; } /** *

    * A filter that returns onlyl the model packages of the specified type. This can be one of the following values. *

    *
      *
    • *

      * VERSIONED - List only versioned models. *

      *
    • *
    • *

      * UNVERSIONED - List only unversioined models. *

      *
    • *
    • *

      * BOTH - List both versioned and unversioned models. *

      *
    • *
    * * @return A filter that returns onlyl the model packages of the specified type. This can be one of the following * values.

    *
      *
    • *

      * VERSIONED - List only versioned models. *

      *
    • *
    • *

      * UNVERSIONED - List only unversioined models. *

      *
    • *
    • *

      * BOTH - List both versioned and unversioned models. *

      *
    • * @see ModelPackageType */ public String getModelPackageType() { return this.modelPackageType; } /** *

      * A filter that returns onlyl the model packages of the specified type. This can be one of the following values. *

      *
        *
      • *

        * VERSIONED - List only versioned models. *

        *
      • *
      • *

        * UNVERSIONED - List only unversioined models. *

        *
      • *
      • *

        * BOTH - List both versioned and unversioned models. *

        *
      • *
      * * @param modelPackageType * A filter that returns onlyl the model packages of the specified type. This can be one of the following * values.

      *
        *
      • *

        * VERSIONED - List only versioned models. *

        *
      • *
      • *

        * UNVERSIONED - List only unversioined models. *

        *
      • *
      • *

        * BOTH - List both versioned and unversioned models. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. * @see ModelPackageType */ public ListModelPackagesRequest withModelPackageType(String modelPackageType) { setModelPackageType(modelPackageType); return this; } /** *

        * A filter that returns onlyl the model packages of the specified type. This can be one of the following values. *

        *
          *
        • *

          * VERSIONED - List only versioned models. *

          *
        • *
        • *

          * UNVERSIONED - List only unversioined models. *

          *
        • *
        • *

          * BOTH - List both versioned and unversioned models. *

          *
        • *
        * * @param modelPackageType * A filter that returns onlyl the model packages of the specified type. This can be one of the following * values.

        *
          *
        • *

          * VERSIONED - List only versioned models. *

          *
        • *
        • *

          * UNVERSIONED - List only unversioined models. *

          *
        • *
        • *

          * BOTH - List both versioned and unversioned models. *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. * @see ModelPackageType */ public ListModelPackagesRequest withModelPackageType(ModelPackageType modelPackageType) { this.modelPackageType = modelPackageType.toString(); return this; } /** *

          * If the response to a previous ListModelPackages request was truncated, the response includes a * NextToken. To retrieve the next set of model packages, use the token in the next request. *

          * * @param nextToken * If the response to a previous ListModelPackages request was truncated, the response includes * a NextToken. To retrieve the next set of model packages, use the token in the next request. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

          * If the response to a previous ListModelPackages request was truncated, the response includes a * NextToken. To retrieve the next set of model packages, use the token in the next request. *

          * * @return If the response to a previous ListModelPackages request was truncated, the response includes * a NextToken. To retrieve the next set of model packages, use the token in the next request. */ public String getNextToken() { return this.nextToken; } /** *

          * If the response to a previous ListModelPackages request was truncated, the response includes a * NextToken. To retrieve the next set of model packages, use the token in the next request. *

          * * @param nextToken * If the response to a previous ListModelPackages request was truncated, the response includes * a NextToken. To retrieve the next set of model packages, use the token in the next request. * @return Returns a reference to this object so that method calls can be chained together. */ public ListModelPackagesRequest withNextToken(String nextToken) { setNextToken(nextToken); return this; } /** *

          * The parameter by which to sort the results. The default is CreationTime. *

          * * @param sortBy * The parameter by which to sort the results. The default is CreationTime. * @see ModelPackageSortBy */ public void setSortBy(String sortBy) { this.sortBy = sortBy; } /** *

          * The parameter by which to sort the results. The default is CreationTime. *

          * * @return The parameter by which to sort the results. The default is CreationTime. * @see ModelPackageSortBy */ public String getSortBy() { return this.sortBy; } /** *

          * The parameter by which to sort the results. The default is CreationTime. *

          * * @param sortBy * The parameter by which to sort the results. The default is CreationTime. * @return Returns a reference to this object so that method calls can be chained together. * @see ModelPackageSortBy */ public ListModelPackagesRequest withSortBy(String sortBy) { setSortBy(sortBy); return this; } /** *

          * The parameter by which to sort the results. The default is CreationTime. *

          * * @param sortBy * The parameter by which to sort the results. The default is CreationTime. * @return Returns a reference to this object so that method calls can be chained together. * @see ModelPackageSortBy */ public ListModelPackagesRequest withSortBy(ModelPackageSortBy sortBy) { this.sortBy = sortBy.toString(); return this; } /** *

          * The sort order for the results. The default is Ascending. *

          * * @param sortOrder * The sort order for the results. The default is Ascending. * @see SortOrder */ public void setSortOrder(String sortOrder) { this.sortOrder = sortOrder; } /** *

          * The sort order for the results. The default is Ascending. *

          * * @return The sort order for the results. The default is Ascending. * @see SortOrder */ public String getSortOrder() { return this.sortOrder; } /** *

          * The sort order for the results. The default is Ascending. *

          * * @param sortOrder * The sort order for the results. The default is Ascending. * @return Returns a reference to this object so that method calls can be chained together. * @see SortOrder */ public ListModelPackagesRequest withSortOrder(String sortOrder) { setSortOrder(sortOrder); return this; } /** *

          * The sort order for the results. The default is Ascending. *

          * * @param sortOrder * The sort order for the results. The default is Ascending. * @return Returns a reference to this object so that method calls can be chained together. * @see SortOrder */ public ListModelPackagesRequest withSortOrder(SortOrder sortOrder) { this.sortOrder = sortOrder.toString(); 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 (getCreationTimeAfter() != null) sb.append("CreationTimeAfter: ").append(getCreationTimeAfter()).append(","); if (getCreationTimeBefore() != null) sb.append("CreationTimeBefore: ").append(getCreationTimeBefore()).append(","); if (getMaxResults() != null) sb.append("MaxResults: ").append(getMaxResults()).append(","); if (getNameContains() != null) sb.append("NameContains: ").append(getNameContains()).append(","); if (getModelApprovalStatus() != null) sb.append("ModelApprovalStatus: ").append(getModelApprovalStatus()).append(","); if (getModelPackageGroupName() != null) sb.append("ModelPackageGroupName: ").append(getModelPackageGroupName()).append(","); if (getModelPackageType() != null) sb.append("ModelPackageType: ").append(getModelPackageType()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()).append(","); if (getSortBy() != null) sb.append("SortBy: ").append(getSortBy()).append(","); if (getSortOrder() != null) sb.append("SortOrder: ").append(getSortOrder()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListModelPackagesRequest == false) return false; ListModelPackagesRequest other = (ListModelPackagesRequest) obj; if (other.getCreationTimeAfter() == null ^ this.getCreationTimeAfter() == null) return false; if (other.getCreationTimeAfter() != null && other.getCreationTimeAfter().equals(this.getCreationTimeAfter()) == false) return false; if (other.getCreationTimeBefore() == null ^ this.getCreationTimeBefore() == null) return false; if (other.getCreationTimeBefore() != null && other.getCreationTimeBefore().equals(this.getCreationTimeBefore()) == false) return false; if (other.getMaxResults() == null ^ this.getMaxResults() == null) return false; if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == false) return false; if (other.getNameContains() == null ^ this.getNameContains() == null) return false; if (other.getNameContains() != null && other.getNameContains().equals(this.getNameContains()) == false) return false; if (other.getModelApprovalStatus() == null ^ this.getModelApprovalStatus() == null) return false; if (other.getModelApprovalStatus() != null && other.getModelApprovalStatus().equals(this.getModelApprovalStatus()) == false) return false; if (other.getModelPackageGroupName() == null ^ this.getModelPackageGroupName() == null) return false; if (other.getModelPackageGroupName() != null && other.getModelPackageGroupName().equals(this.getModelPackageGroupName()) == false) return false; if (other.getModelPackageType() == null ^ this.getModelPackageType() == null) return false; if (other.getModelPackageType() != null && other.getModelPackageType().equals(this.getModelPackageType()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; if (other.getSortBy() == null ^ this.getSortBy() == null) return false; if (other.getSortBy() != null && other.getSortBy().equals(this.getSortBy()) == false) return false; if (other.getSortOrder() == null ^ this.getSortOrder() == null) return false; if (other.getSortOrder() != null && other.getSortOrder().equals(this.getSortOrder()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCreationTimeAfter() == null) ? 0 : getCreationTimeAfter().hashCode()); hashCode = prime * hashCode + ((getCreationTimeBefore() == null) ? 0 : getCreationTimeBefore().hashCode()); hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode()); hashCode = prime * hashCode + ((getNameContains() == null) ? 0 : getNameContains().hashCode()); hashCode = prime * hashCode + ((getModelApprovalStatus() == null) ? 0 : getModelApprovalStatus().hashCode()); hashCode = prime * hashCode + ((getModelPackageGroupName() == null) ? 0 : getModelPackageGroupName().hashCode()); hashCode = prime * hashCode + ((getModelPackageType() == null) ? 0 : getModelPackageType().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); hashCode = prime * hashCode + ((getSortBy() == null) ? 0 : getSortBy().hashCode()); hashCode = prime * hashCode + ((getSortOrder() == null) ? 0 : getSortOrder().hashCode()); return hashCode; } @Override public ListModelPackagesRequest clone() { return (ListModelPackagesRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy