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

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

Go to download

The AWS Java SDK for Amazon SageMaker module holds the client classes that are used for communicating with Amazon SageMaker Service

The 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.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 ListNotebookInstancesRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* If the previous call to the ListNotebookInstances is truncated, the response includes a * NextToken. You can use this token in your subsequent ListNotebookInstances request to * fetch the next set of notebook instances. *

* *

* You might specify a filter or a sort order in your request. When response is truncated, you must use the same * values for the filer and sort order in the next request. *

*
*/ private String nextToken; /** *

* The maximum number of notebook instances to return. *

*/ private Integer maxResults; /** *

* The field to sort results by. The default is Name. *

*/ private String sortBy; /** *

* The sort order for results. *

*/ private String sortOrder; /** *

* A string in the notebook instances' name. This filter returns only notebook instances whose name contains the * specified string. *

*/ private String nameContains; /** *

* A filter that returns only notebook instances that were created before the specified time (timestamp). *

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

* A filter that returns only notebook instances that were created after the specified time (timestamp). *

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

* A filter that returns only notebook instances that were modified before the specified time (timestamp). *

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

* A filter that returns only notebook instances that were modified after the specified time (timestamp). *

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

* A filter that returns only notebook instances with the specified status. *

*/ private String statusEquals; /** *

* A string in the name of a notebook instances lifecycle configuration associated with this notebook instance. This * filter returns only notebook instances associated with a lifecycle configuration with a name that contains the * specified string. *

*/ private String notebookInstanceLifecycleConfigNameContains; /** *

* A string in the name or URL of a Git repository associated with this notebook instance. This filter returns only * notebook instances associated with a git repository with a name that contains the specified string. *

*/ private String defaultCodeRepositoryContains; /** *

* A filter that returns only notebook instances with associated with the specified git repository. *

*/ private String additionalCodeRepositoryEquals; /** *

* If the previous call to the ListNotebookInstances is truncated, the response includes a * NextToken. You can use this token in your subsequent ListNotebookInstances request to * fetch the next set of notebook instances. *

* *

* You might specify a filter or a sort order in your request. When response is truncated, you must use the same * values for the filer and sort order in the next request. *

*
* * @param nextToken * If the previous call to the ListNotebookInstances is truncated, the response includes a * NextToken. You can use this token in your subsequent ListNotebookInstances * request to fetch the next set of notebook instances.

*

* You might specify a filter or a sort order in your request. When response is truncated, you must use the * same values for the filer and sort order in the next request. *

*/ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

* If the previous call to the ListNotebookInstances is truncated, the response includes a * NextToken. You can use this token in your subsequent ListNotebookInstances request to * fetch the next set of notebook instances. *

* *

* You might specify a filter or a sort order in your request. When response is truncated, you must use the same * values for the filer and sort order in the next request. *

*
* * @return If the previous call to the ListNotebookInstances is truncated, the response includes a * NextToken. You can use this token in your subsequent ListNotebookInstances * request to fetch the next set of notebook instances.

*

* You might specify a filter or a sort order in your request. When response is truncated, you must use the * same values for the filer and sort order in the next request. *

*/ public String getNextToken() { return this.nextToken; } /** *

* If the previous call to the ListNotebookInstances is truncated, the response includes a * NextToken. You can use this token in your subsequent ListNotebookInstances request to * fetch the next set of notebook instances. *

* *

* You might specify a filter or a sort order in your request. When response is truncated, you must use the same * values for the filer and sort order in the next request. *

*
* * @param nextToken * If the previous call to the ListNotebookInstances is truncated, the response includes a * NextToken. You can use this token in your subsequent ListNotebookInstances * request to fetch the next set of notebook instances.

*

* You might specify a filter or a sort order in your request. When response is truncated, you must use the * same values for the filer and sort order in the next request. *

* @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookInstancesRequest withNextToken(String nextToken) { setNextToken(nextToken); return this; } /** *

* The maximum number of notebook instances to return. *

* * @param maxResults * The maximum number of notebook instances to return. */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** *

* The maximum number of notebook instances to return. *

* * @return The maximum number of notebook instances to return. */ public Integer getMaxResults() { return this.maxResults; } /** *

* The maximum number of notebook instances to return. *

* * @param maxResults * The maximum number of notebook instances to return. * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookInstancesRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); return this; } /** *

* The field to sort results by. The default is Name. *

* * @param sortBy * The field to sort results by. The default is Name. * @see NotebookInstanceSortKey */ public void setSortBy(String sortBy) { this.sortBy = sortBy; } /** *

* The field to sort results by. The default is Name. *

* * @return The field to sort results by. The default is Name. * @see NotebookInstanceSortKey */ public String getSortBy() { return this.sortBy; } /** *

* The field to sort results by. The default is Name. *

* * @param sortBy * The field to sort results by. The default is Name. * @return Returns a reference to this object so that method calls can be chained together. * @see NotebookInstanceSortKey */ public ListNotebookInstancesRequest withSortBy(String sortBy) { setSortBy(sortBy); return this; } /** *

* The field to sort results by. The default is Name. *

* * @param sortBy * The field to sort results by. The default is Name. * @return Returns a reference to this object so that method calls can be chained together. * @see NotebookInstanceSortKey */ public ListNotebookInstancesRequest withSortBy(NotebookInstanceSortKey sortBy) { this.sortBy = sortBy.toString(); return this; } /** *

* The sort order for results. *

* * @param sortOrder * The sort order for results. * @see NotebookInstanceSortOrder */ public void setSortOrder(String sortOrder) { this.sortOrder = sortOrder; } /** *

* The sort order for results. *

* * @return The sort order for results. * @see NotebookInstanceSortOrder */ public String getSortOrder() { return this.sortOrder; } /** *

* The sort order for results. *

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

* The sort order for results. *

* * @param sortOrder * The sort order for results. * @return Returns a reference to this object so that method calls can be chained together. * @see NotebookInstanceSortOrder */ public ListNotebookInstancesRequest withSortOrder(NotebookInstanceSortOrder sortOrder) { this.sortOrder = sortOrder.toString(); return this; } /** *

* A string in the notebook instances' name. This filter returns only notebook instances whose name contains the * specified string. *

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

* A string in the notebook instances' name. This filter returns only notebook instances whose name contains the * specified string. *

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

* A string in the notebook instances' name. This filter returns only notebook instances whose name contains the * specified string. *

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

* A filter that returns only notebook instances that were created before the specified time (timestamp). *

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

* A filter that returns only notebook instances that were created before the specified time (timestamp). *

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

* A filter that returns only notebook instances that were created before the specified time (timestamp). *

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

* A filter that returns only notebook instances that were created after the specified time (timestamp). *

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

* A filter that returns only notebook instances that were created after the specified time (timestamp). *

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

* A filter that returns only notebook instances that were created after the specified time (timestamp). *

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

* A filter that returns only notebook instances that were modified before the specified time (timestamp). *

* * @param lastModifiedTimeBefore * A filter that returns only notebook instances that were modified before the specified time (timestamp). */ public void setLastModifiedTimeBefore(java.util.Date lastModifiedTimeBefore) { this.lastModifiedTimeBefore = lastModifiedTimeBefore; } /** *

* A filter that returns only notebook instances that were modified before the specified time (timestamp). *

* * @return A filter that returns only notebook instances that were modified before the specified time (timestamp). */ public java.util.Date getLastModifiedTimeBefore() { return this.lastModifiedTimeBefore; } /** *

* A filter that returns only notebook instances that were modified before the specified time (timestamp). *

* * @param lastModifiedTimeBefore * A filter that returns only notebook instances that were modified before the specified time (timestamp). * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookInstancesRequest withLastModifiedTimeBefore(java.util.Date lastModifiedTimeBefore) { setLastModifiedTimeBefore(lastModifiedTimeBefore); return this; } /** *

* A filter that returns only notebook instances that were modified after the specified time (timestamp). *

* * @param lastModifiedTimeAfter * A filter that returns only notebook instances that were modified after the specified time (timestamp). */ public void setLastModifiedTimeAfter(java.util.Date lastModifiedTimeAfter) { this.lastModifiedTimeAfter = lastModifiedTimeAfter; } /** *

* A filter that returns only notebook instances that were modified after the specified time (timestamp). *

* * @return A filter that returns only notebook instances that were modified after the specified time (timestamp). */ public java.util.Date getLastModifiedTimeAfter() { return this.lastModifiedTimeAfter; } /** *

* A filter that returns only notebook instances that were modified after the specified time (timestamp). *

* * @param lastModifiedTimeAfter * A filter that returns only notebook instances that were modified after the specified time (timestamp). * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookInstancesRequest withLastModifiedTimeAfter(java.util.Date lastModifiedTimeAfter) { setLastModifiedTimeAfter(lastModifiedTimeAfter); return this; } /** *

* A filter that returns only notebook instances with the specified status. *

* * @param statusEquals * A filter that returns only notebook instances with the specified status. * @see NotebookInstanceStatus */ public void setStatusEquals(String statusEquals) { this.statusEquals = statusEquals; } /** *

* A filter that returns only notebook instances with the specified status. *

* * @return A filter that returns only notebook instances with the specified status. * @see NotebookInstanceStatus */ public String getStatusEquals() { return this.statusEquals; } /** *

* A filter that returns only notebook instances with the specified status. *

* * @param statusEquals * A filter that returns only notebook instances with the specified status. * @return Returns a reference to this object so that method calls can be chained together. * @see NotebookInstanceStatus */ public ListNotebookInstancesRequest withStatusEquals(String statusEquals) { setStatusEquals(statusEquals); return this; } /** *

* A filter that returns only notebook instances with the specified status. *

* * @param statusEquals * A filter that returns only notebook instances with the specified status. * @return Returns a reference to this object so that method calls can be chained together. * @see NotebookInstanceStatus */ public ListNotebookInstancesRequest withStatusEquals(NotebookInstanceStatus statusEquals) { this.statusEquals = statusEquals.toString(); return this; } /** *

* A string in the name of a notebook instances lifecycle configuration associated with this notebook instance. This * filter returns only notebook instances associated with a lifecycle configuration with a name that contains the * specified string. *

* * @param notebookInstanceLifecycleConfigNameContains * A string in the name of a notebook instances lifecycle configuration associated with this notebook * instance. This filter returns only notebook instances associated with a lifecycle configuration with a * name that contains the specified string. */ public void setNotebookInstanceLifecycleConfigNameContains(String notebookInstanceLifecycleConfigNameContains) { this.notebookInstanceLifecycleConfigNameContains = notebookInstanceLifecycleConfigNameContains; } /** *

* A string in the name of a notebook instances lifecycle configuration associated with this notebook instance. This * filter returns only notebook instances associated with a lifecycle configuration with a name that contains the * specified string. *

* * @return A string in the name of a notebook instances lifecycle configuration associated with this notebook * instance. This filter returns only notebook instances associated with a lifecycle configuration with a * name that contains the specified string. */ public String getNotebookInstanceLifecycleConfigNameContains() { return this.notebookInstanceLifecycleConfigNameContains; } /** *

* A string in the name of a notebook instances lifecycle configuration associated with this notebook instance. This * filter returns only notebook instances associated with a lifecycle configuration with a name that contains the * specified string. *

* * @param notebookInstanceLifecycleConfigNameContains * A string in the name of a notebook instances lifecycle configuration associated with this notebook * instance. This filter returns only notebook instances associated with a lifecycle configuration with a * name that contains the specified string. * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookInstancesRequest withNotebookInstanceLifecycleConfigNameContains(String notebookInstanceLifecycleConfigNameContains) { setNotebookInstanceLifecycleConfigNameContains(notebookInstanceLifecycleConfigNameContains); return this; } /** *

* A string in the name or URL of a Git repository associated with this notebook instance. This filter returns only * notebook instances associated with a git repository with a name that contains the specified string. *

* * @param defaultCodeRepositoryContains * A string in the name or URL of a Git repository associated with this notebook instance. This filter * returns only notebook instances associated with a git repository with a name that contains the specified * string. */ public void setDefaultCodeRepositoryContains(String defaultCodeRepositoryContains) { this.defaultCodeRepositoryContains = defaultCodeRepositoryContains; } /** *

* A string in the name or URL of a Git repository associated with this notebook instance. This filter returns only * notebook instances associated with a git repository with a name that contains the specified string. *

* * @return A string in the name or URL of a Git repository associated with this notebook instance. This filter * returns only notebook instances associated with a git repository with a name that contains the specified * string. */ public String getDefaultCodeRepositoryContains() { return this.defaultCodeRepositoryContains; } /** *

* A string in the name or URL of a Git repository associated with this notebook instance. This filter returns only * notebook instances associated with a git repository with a name that contains the specified string. *

* * @param defaultCodeRepositoryContains * A string in the name or URL of a Git repository associated with this notebook instance. This filter * returns only notebook instances associated with a git repository with a name that contains the specified * string. * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookInstancesRequest withDefaultCodeRepositoryContains(String defaultCodeRepositoryContains) { setDefaultCodeRepositoryContains(defaultCodeRepositoryContains); return this; } /** *

* A filter that returns only notebook instances with associated with the specified git repository. *

* * @param additionalCodeRepositoryEquals * A filter that returns only notebook instances with associated with the specified git repository. */ public void setAdditionalCodeRepositoryEquals(String additionalCodeRepositoryEquals) { this.additionalCodeRepositoryEquals = additionalCodeRepositoryEquals; } /** *

* A filter that returns only notebook instances with associated with the specified git repository. *

* * @return A filter that returns only notebook instances with associated with the specified git repository. */ public String getAdditionalCodeRepositoryEquals() { return this.additionalCodeRepositoryEquals; } /** *

* A filter that returns only notebook instances with associated with the specified git repository. *

* * @param additionalCodeRepositoryEquals * A filter that returns only notebook instances with associated with the specified git repository. * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookInstancesRequest withAdditionalCodeRepositoryEquals(String additionalCodeRepositoryEquals) { setAdditionalCodeRepositoryEquals(additionalCodeRepositoryEquals); 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 (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()).append(","); if (getMaxResults() != null) sb.append("MaxResults: ").append(getMaxResults()).append(","); if (getSortBy() != null) sb.append("SortBy: ").append(getSortBy()).append(","); if (getSortOrder() != null) sb.append("SortOrder: ").append(getSortOrder()).append(","); if (getNameContains() != null) sb.append("NameContains: ").append(getNameContains()).append(","); if (getCreationTimeBefore() != null) sb.append("CreationTimeBefore: ").append(getCreationTimeBefore()).append(","); if (getCreationTimeAfter() != null) sb.append("CreationTimeAfter: ").append(getCreationTimeAfter()).append(","); if (getLastModifiedTimeBefore() != null) sb.append("LastModifiedTimeBefore: ").append(getLastModifiedTimeBefore()).append(","); if (getLastModifiedTimeAfter() != null) sb.append("LastModifiedTimeAfter: ").append(getLastModifiedTimeAfter()).append(","); if (getStatusEquals() != null) sb.append("StatusEquals: ").append(getStatusEquals()).append(","); if (getNotebookInstanceLifecycleConfigNameContains() != null) sb.append("NotebookInstanceLifecycleConfigNameContains: ").append(getNotebookInstanceLifecycleConfigNameContains()).append(","); if (getDefaultCodeRepositoryContains() != null) sb.append("DefaultCodeRepositoryContains: ").append(getDefaultCodeRepositoryContains()).append(","); if (getAdditionalCodeRepositoryEquals() != null) sb.append("AdditionalCodeRepositoryEquals: ").append(getAdditionalCodeRepositoryEquals()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListNotebookInstancesRequest == false) return false; ListNotebookInstancesRequest other = (ListNotebookInstancesRequest) obj; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == 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.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; if (other.getNameContains() == null ^ this.getNameContains() == null) return false; if (other.getNameContains() != null && other.getNameContains().equals(this.getNameContains()) == 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.getCreationTimeAfter() == null ^ this.getCreationTimeAfter() == null) return false; if (other.getCreationTimeAfter() != null && other.getCreationTimeAfter().equals(this.getCreationTimeAfter()) == false) return false; if (other.getLastModifiedTimeBefore() == null ^ this.getLastModifiedTimeBefore() == null) return false; if (other.getLastModifiedTimeBefore() != null && other.getLastModifiedTimeBefore().equals(this.getLastModifiedTimeBefore()) == false) return false; if (other.getLastModifiedTimeAfter() == null ^ this.getLastModifiedTimeAfter() == null) return false; if (other.getLastModifiedTimeAfter() != null && other.getLastModifiedTimeAfter().equals(this.getLastModifiedTimeAfter()) == false) return false; if (other.getStatusEquals() == null ^ this.getStatusEquals() == null) return false; if (other.getStatusEquals() != null && other.getStatusEquals().equals(this.getStatusEquals()) == false) return false; if (other.getNotebookInstanceLifecycleConfigNameContains() == null ^ this.getNotebookInstanceLifecycleConfigNameContains() == null) return false; if (other.getNotebookInstanceLifecycleConfigNameContains() != null && other.getNotebookInstanceLifecycleConfigNameContains().equals(this.getNotebookInstanceLifecycleConfigNameContains()) == false) return false; if (other.getDefaultCodeRepositoryContains() == null ^ this.getDefaultCodeRepositoryContains() == null) return false; if (other.getDefaultCodeRepositoryContains() != null && other.getDefaultCodeRepositoryContains().equals(this.getDefaultCodeRepositoryContains()) == false) return false; if (other.getAdditionalCodeRepositoryEquals() == null ^ this.getAdditionalCodeRepositoryEquals() == null) return false; if (other.getAdditionalCodeRepositoryEquals() != null && other.getAdditionalCodeRepositoryEquals().equals(this.getAdditionalCodeRepositoryEquals()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode()); hashCode = prime * hashCode + ((getSortBy() == null) ? 0 : getSortBy().hashCode()); hashCode = prime * hashCode + ((getSortOrder() == null) ? 0 : getSortOrder().hashCode()); hashCode = prime * hashCode + ((getNameContains() == null) ? 0 : getNameContains().hashCode()); hashCode = prime * hashCode + ((getCreationTimeBefore() == null) ? 0 : getCreationTimeBefore().hashCode()); hashCode = prime * hashCode + ((getCreationTimeAfter() == null) ? 0 : getCreationTimeAfter().hashCode()); hashCode = prime * hashCode + ((getLastModifiedTimeBefore() == null) ? 0 : getLastModifiedTimeBefore().hashCode()); hashCode = prime * hashCode + ((getLastModifiedTimeAfter() == null) ? 0 : getLastModifiedTimeAfter().hashCode()); hashCode = prime * hashCode + ((getStatusEquals() == null) ? 0 : getStatusEquals().hashCode()); hashCode = prime * hashCode + ((getNotebookInstanceLifecycleConfigNameContains() == null) ? 0 : getNotebookInstanceLifecycleConfigNameContains().hashCode()); hashCode = prime * hashCode + ((getDefaultCodeRepositoryContains() == null) ? 0 : getDefaultCodeRepositoryContains().hashCode()); hashCode = prime * hashCode + ((getAdditionalCodeRepositoryEquals() == null) ? 0 : getAdditionalCodeRepositoryEquals().hashCode()); return hashCode; } @Override public ListNotebookInstancesRequest clone() { return (ListNotebookInstancesRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy