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

com.amazonaws.services.ecs.model.ListTasksRequest Maven / Gradle / Ivy

/*
 * Copyright 2018-2023 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.ecs.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 ListTasksRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the ListTasks * results. If you do not specify a cluster, the default cluster is assumed. *

*/ private String cluster; /** *

* The container instance ID or full ARN of the container instance to use when filtering the ListTasks * results. Specifying a containerInstance limits the results to tasks that belong to that container * instance. *

*/ private String containerInstance; /** *

* The name of the task definition family to use when filtering the ListTasks results. Specifying a * family limits the results to tasks that belong to that family. *

*/ private String family; /** *

* The nextToken value returned from a ListTasks request indicating that more results are * available to fulfill the request and further calls will be needed. If maxResults was provided, it's * possible the number of results to be fewer than maxResults. *

* *

* This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and * not for other programmatic purposes. *

*
*/ private String nextToken; /** *

* The maximum number of task results that ListTasks returned in paginated output. When this parameter * is used, ListTasks only returns maxResults results in a single page along with a * nextToken response element. The remaining results of the initial request can be seen by sending * another ListTasks request with the returned nextToken value. This value can be between * 1 and 100. If this parameter isn't used, then ListTasks returns up to 100 results and a * nextToken value if applicable. *

*/ private Integer maxResults; /** *

* The startedBy value to filter the task results with. Specifying a startedBy value * limits the results to tasks that were started with that value. *

*

* When you specify startedBy as the filter, it must be the only filter that you use. *

*/ private String startedBy; /** *

* The name of the service to use when filtering the ListTasks results. Specifying a * serviceName limits the results to tasks that belong to that service. *

*/ private String serviceName; /** *

* The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting properly or * have died or finished. The default status filter is RUNNING, which shows tasks that Amazon ECS has * set the desired status to RUNNING. *

* *

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's lastStatus * may have a value of PENDING). *

*
*/ private String desiredStatus; /** *

* The launch type to use when filtering the ListTasks results. *

*/ private String launchType; /** *

* The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the ListTasks * results. If you do not specify a cluster, the default cluster is assumed. *

* * @param cluster * The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the * ListTasks results. If you do not specify a cluster, the default cluster is assumed. */ public void setCluster(String cluster) { this.cluster = cluster; } /** *

* The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the ListTasks * results. If you do not specify a cluster, the default cluster is assumed. *

* * @return The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the * ListTasks results. If you do not specify a cluster, the default cluster is assumed. */ public String getCluster() { return this.cluster; } /** *

* The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the ListTasks * results. If you do not specify a cluster, the default cluster is assumed. *

* * @param cluster * The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the * ListTasks results. If you do not specify a cluster, the default cluster is assumed. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTasksRequest withCluster(String cluster) { setCluster(cluster); return this; } /** *

* The container instance ID or full ARN of the container instance to use when filtering the ListTasks * results. Specifying a containerInstance limits the results to tasks that belong to that container * instance. *

* * @param containerInstance * The container instance ID or full ARN of the container instance to use when filtering the * ListTasks results. Specifying a containerInstance limits the results to tasks * that belong to that container instance. */ public void setContainerInstance(String containerInstance) { this.containerInstance = containerInstance; } /** *

* The container instance ID or full ARN of the container instance to use when filtering the ListTasks * results. Specifying a containerInstance limits the results to tasks that belong to that container * instance. *

* * @return The container instance ID or full ARN of the container instance to use when filtering the * ListTasks results. Specifying a containerInstance limits the results to tasks * that belong to that container instance. */ public String getContainerInstance() { return this.containerInstance; } /** *

* The container instance ID or full ARN of the container instance to use when filtering the ListTasks * results. Specifying a containerInstance limits the results to tasks that belong to that container * instance. *

* * @param containerInstance * The container instance ID or full ARN of the container instance to use when filtering the * ListTasks results. Specifying a containerInstance limits the results to tasks * that belong to that container instance. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTasksRequest withContainerInstance(String containerInstance) { setContainerInstance(containerInstance); return this; } /** *

* The name of the task definition family to use when filtering the ListTasks results. Specifying a * family limits the results to tasks that belong to that family. *

* * @param family * The name of the task definition family to use when filtering the ListTasks results. * Specifying a family limits the results to tasks that belong to that family. */ public void setFamily(String family) { this.family = family; } /** *

* The name of the task definition family to use when filtering the ListTasks results. Specifying a * family limits the results to tasks that belong to that family. *

* * @return The name of the task definition family to use when filtering the ListTasks results. * Specifying a family limits the results to tasks that belong to that family. */ public String getFamily() { return this.family; } /** *

* The name of the task definition family to use when filtering the ListTasks results. Specifying a * family limits the results to tasks that belong to that family. *

* * @param family * The name of the task definition family to use when filtering the ListTasks results. * Specifying a family limits the results to tasks that belong to that family. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTasksRequest withFamily(String family) { setFamily(family); return this; } /** *

* The nextToken value returned from a ListTasks request indicating that more results are * available to fulfill the request and further calls will be needed. If maxResults was provided, it's * possible the number of results to be fewer than maxResults. *

* *

* This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and * not for other programmatic purposes. *

*
* * @param nextToken * The nextToken value returned from a ListTasks request indicating that more * results are available to fulfill the request and further calls will be needed. If maxResults * was provided, it's possible the number of results to be fewer than maxResults.

*

* This token should be treated as an opaque identifier that is only used to retrieve the next items in a * list and not for other programmatic purposes. *

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

* The nextToken value returned from a ListTasks request indicating that more results are * available to fulfill the request and further calls will be needed. If maxResults was provided, it's * possible the number of results to be fewer than maxResults. *

* *

* This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and * not for other programmatic purposes. *

*
* * @return The nextToken value returned from a ListTasks request indicating that more * results are available to fulfill the request and further calls will be needed. If maxResults * was provided, it's possible the number of results to be fewer than maxResults.

*

* This token should be treated as an opaque identifier that is only used to retrieve the next items in a * list and not for other programmatic purposes. *

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

* The nextToken value returned from a ListTasks request indicating that more results are * available to fulfill the request and further calls will be needed. If maxResults was provided, it's * possible the number of results to be fewer than maxResults. *

* *

* This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and * not for other programmatic purposes. *

*
* * @param nextToken * The nextToken value returned from a ListTasks request indicating that more * results are available to fulfill the request and further calls will be needed. If maxResults * was provided, it's possible the number of results to be fewer than maxResults.

*

* This token should be treated as an opaque identifier that is only used to retrieve the next items in a * list and not for other programmatic purposes. *

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

* The maximum number of task results that ListTasks returned in paginated output. When this parameter * is used, ListTasks only returns maxResults results in a single page along with a * nextToken response element. The remaining results of the initial request can be seen by sending * another ListTasks request with the returned nextToken value. This value can be between * 1 and 100. If this parameter isn't used, then ListTasks returns up to 100 results and a * nextToken value if applicable. *

* * @param maxResults * The maximum number of task results that ListTasks returned in paginated output. When this * parameter is used, ListTasks only returns maxResults results in a single page * along with a nextToken response element. The remaining results of the initial request can be * seen by sending another ListTasks request with the returned nextToken value. * This value can be between 1 and 100. If this parameter isn't used, then ListTasks returns up * to 100 results and a nextToken value if applicable. */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** *

* The maximum number of task results that ListTasks returned in paginated output. When this parameter * is used, ListTasks only returns maxResults results in a single page along with a * nextToken response element. The remaining results of the initial request can be seen by sending * another ListTasks request with the returned nextToken value. This value can be between * 1 and 100. If this parameter isn't used, then ListTasks returns up to 100 results and a * nextToken value if applicable. *

* * @return The maximum number of task results that ListTasks returned in paginated output. When this * parameter is used, ListTasks only returns maxResults results in a single page * along with a nextToken response element. The remaining results of the initial request can be * seen by sending another ListTasks request with the returned nextToken value. * This value can be between 1 and 100. If this parameter isn't used, then ListTasks returns up * to 100 results and a nextToken value if applicable. */ public Integer getMaxResults() { return this.maxResults; } /** *

* The maximum number of task results that ListTasks returned in paginated output. When this parameter * is used, ListTasks only returns maxResults results in a single page along with a * nextToken response element. The remaining results of the initial request can be seen by sending * another ListTasks request with the returned nextToken value. This value can be between * 1 and 100. If this parameter isn't used, then ListTasks returns up to 100 results and a * nextToken value if applicable. *

* * @param maxResults * The maximum number of task results that ListTasks returned in paginated output. When this * parameter is used, ListTasks only returns maxResults results in a single page * along with a nextToken response element. The remaining results of the initial request can be * seen by sending another ListTasks request with the returned nextToken value. * This value can be between 1 and 100. If this parameter isn't used, then ListTasks returns up * to 100 results and a nextToken value if applicable. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTasksRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); return this; } /** *

* The startedBy value to filter the task results with. Specifying a startedBy value * limits the results to tasks that were started with that value. *

*

* When you specify startedBy as the filter, it must be the only filter that you use. *

* * @param startedBy * The startedBy value to filter the task results with. Specifying a startedBy * value limits the results to tasks that were started with that value.

*

* When you specify startedBy as the filter, it must be the only filter that you use. */ public void setStartedBy(String startedBy) { this.startedBy = startedBy; } /** *

* The startedBy value to filter the task results with. Specifying a startedBy value * limits the results to tasks that were started with that value. *

*

* When you specify startedBy as the filter, it must be the only filter that you use. *

* * @return The startedBy value to filter the task results with. Specifying a startedBy * value limits the results to tasks that were started with that value.

*

* When you specify startedBy as the filter, it must be the only filter that you use. */ public String getStartedBy() { return this.startedBy; } /** *

* The startedBy value to filter the task results with. Specifying a startedBy value * limits the results to tasks that were started with that value. *

*

* When you specify startedBy as the filter, it must be the only filter that you use. *

* * @param startedBy * The startedBy value to filter the task results with. Specifying a startedBy * value limits the results to tasks that were started with that value.

*

* When you specify startedBy as the filter, it must be the only filter that you use. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTasksRequest withStartedBy(String startedBy) { setStartedBy(startedBy); return this; } /** *

* The name of the service to use when filtering the ListTasks results. Specifying a * serviceName limits the results to tasks that belong to that service. *

* * @param serviceName * The name of the service to use when filtering the ListTasks results. Specifying a * serviceName limits the results to tasks that belong to that service. */ public void setServiceName(String serviceName) { this.serviceName = serviceName; } /** *

* The name of the service to use when filtering the ListTasks results. Specifying a * serviceName limits the results to tasks that belong to that service. *

* * @return The name of the service to use when filtering the ListTasks results. Specifying a * serviceName limits the results to tasks that belong to that service. */ public String getServiceName() { return this.serviceName; } /** *

* The name of the service to use when filtering the ListTasks results. Specifying a * serviceName limits the results to tasks that belong to that service. *

* * @param serviceName * The name of the service to use when filtering the ListTasks results. Specifying a * serviceName limits the results to tasks that belong to that service. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTasksRequest withServiceName(String serviceName) { setServiceName(serviceName); return this; } /** *

* The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting properly or * have died or finished. The default status filter is RUNNING, which shows tasks that Amazon ECS has * set the desired status to RUNNING. *

* *

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's lastStatus * may have a value of PENDING). *

*
* * @param desiredStatus * The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting * properly or have died or finished. The default status filter is RUNNING, which shows tasks * that Amazon ECS has set the desired status to RUNNING.

*

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's * lastStatus may have a value of PENDING). *

* @see DesiredStatus */ public void setDesiredStatus(String desiredStatus) { this.desiredStatus = desiredStatus; } /** *

* The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting properly or * have died or finished. The default status filter is RUNNING, which shows tasks that Amazon ECS has * set the desired status to RUNNING. *

* *

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's lastStatus * may have a value of PENDING). *

*
* * @return The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set * the desired status to STOPPED. This can be useful for debugging tasks that aren't starting * properly or have died or finished. The default status filter is RUNNING, which shows tasks * that Amazon ECS has set the desired status to RUNNING.

*

* Although you can filter results based on a desired status of PENDING, this doesn't return * any results. Amazon ECS never sets the desired status of a task to that value (only a task's * lastStatus may have a value of PENDING). *

* @see DesiredStatus */ public String getDesiredStatus() { return this.desiredStatus; } /** *

* The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting properly or * have died or finished. The default status filter is RUNNING, which shows tasks that Amazon ECS has * set the desired status to RUNNING. *

* *

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's lastStatus * may have a value of PENDING). *

*
* * @param desiredStatus * The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting * properly or have died or finished. The default status filter is RUNNING, which shows tasks * that Amazon ECS has set the desired status to RUNNING.

*

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's * lastStatus may have a value of PENDING). *

* @return Returns a reference to this object so that method calls can be chained together. * @see DesiredStatus */ public ListTasksRequest withDesiredStatus(String desiredStatus) { setDesiredStatus(desiredStatus); return this; } /** *

* The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting properly or * have died or finished. The default status filter is RUNNING, which shows tasks that Amazon ECS has * set the desired status to RUNNING. *

* *

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's lastStatus * may have a value of PENDING). *

*
* * @param desiredStatus * The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting * properly or have died or finished. The default status filter is RUNNING, which shows tasks * that Amazon ECS has set the desired status to RUNNING.

*

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's * lastStatus may have a value of PENDING). *

* @see DesiredStatus */ public void setDesiredStatus(DesiredStatus desiredStatus) { withDesiredStatus(desiredStatus); } /** *

* The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting properly or * have died or finished. The default status filter is RUNNING, which shows tasks that Amazon ECS has * set the desired status to RUNNING. *

* *

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's lastStatus * may have a value of PENDING). *

*
* * @param desiredStatus * The task desired status to use when filtering the ListTasks results. Specifying a * desiredStatus of STOPPED limits the results to tasks that Amazon ECS has set the * desired status to STOPPED. This can be useful for debugging tasks that aren't starting * properly or have died or finished. The default status filter is RUNNING, which shows tasks * that Amazon ECS has set the desired status to RUNNING.

*

* Although you can filter results based on a desired status of PENDING, this doesn't return any * results. Amazon ECS never sets the desired status of a task to that value (only a task's * lastStatus may have a value of PENDING). *

* @return Returns a reference to this object so that method calls can be chained together. * @see DesiredStatus */ public ListTasksRequest withDesiredStatus(DesiredStatus desiredStatus) { this.desiredStatus = desiredStatus.toString(); return this; } /** *

* The launch type to use when filtering the ListTasks results. *

* * @param launchType * The launch type to use when filtering the ListTasks results. * @see LaunchType */ public void setLaunchType(String launchType) { this.launchType = launchType; } /** *

* The launch type to use when filtering the ListTasks results. *

* * @return The launch type to use when filtering the ListTasks results. * @see LaunchType */ public String getLaunchType() { return this.launchType; } /** *

* The launch type to use when filtering the ListTasks results. *

* * @param launchType * The launch type to use when filtering the ListTasks results. * @return Returns a reference to this object so that method calls can be chained together. * @see LaunchType */ public ListTasksRequest withLaunchType(String launchType) { setLaunchType(launchType); return this; } /** *

* The launch type to use when filtering the ListTasks results. *

* * @param launchType * The launch type to use when filtering the ListTasks results. * @see LaunchType */ public void setLaunchType(LaunchType launchType) { withLaunchType(launchType); } /** *

* The launch type to use when filtering the ListTasks results. *

* * @param launchType * The launch type to use when filtering the ListTasks results. * @return Returns a reference to this object so that method calls can be chained together. * @see LaunchType */ public ListTasksRequest withLaunchType(LaunchType launchType) { this.launchType = launchType.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 (getCluster() != null) sb.append("Cluster: ").append(getCluster()).append(","); if (getContainerInstance() != null) sb.append("ContainerInstance: ").append(getContainerInstance()).append(","); if (getFamily() != null) sb.append("Family: ").append(getFamily()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()).append(","); if (getMaxResults() != null) sb.append("MaxResults: ").append(getMaxResults()).append(","); if (getStartedBy() != null) sb.append("StartedBy: ").append(getStartedBy()).append(","); if (getServiceName() != null) sb.append("ServiceName: ").append(getServiceName()).append(","); if (getDesiredStatus() != null) sb.append("DesiredStatus: ").append(getDesiredStatus()).append(","); if (getLaunchType() != null) sb.append("LaunchType: ").append(getLaunchType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListTasksRequest == false) return false; ListTasksRequest other = (ListTasksRequest) obj; if (other.getCluster() == null ^ this.getCluster() == null) return false; if (other.getCluster() != null && other.getCluster().equals(this.getCluster()) == false) return false; if (other.getContainerInstance() == null ^ this.getContainerInstance() == null) return false; if (other.getContainerInstance() != null && other.getContainerInstance().equals(this.getContainerInstance()) == false) return false; if (other.getFamily() == null ^ this.getFamily() == null) return false; if (other.getFamily() != null && other.getFamily().equals(this.getFamily()) == 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.getMaxResults() == null ^ this.getMaxResults() == null) return false; if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == false) return false; if (other.getStartedBy() == null ^ this.getStartedBy() == null) return false; if (other.getStartedBy() != null && other.getStartedBy().equals(this.getStartedBy()) == false) return false; if (other.getServiceName() == null ^ this.getServiceName() == null) return false; if (other.getServiceName() != null && other.getServiceName().equals(this.getServiceName()) == false) return false; if (other.getDesiredStatus() == null ^ this.getDesiredStatus() == null) return false; if (other.getDesiredStatus() != null && other.getDesiredStatus().equals(this.getDesiredStatus()) == false) return false; if (other.getLaunchType() == null ^ this.getLaunchType() == null) return false; if (other.getLaunchType() != null && other.getLaunchType().equals(this.getLaunchType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCluster() == null) ? 0 : getCluster().hashCode()); hashCode = prime * hashCode + ((getContainerInstance() == null) ? 0 : getContainerInstance().hashCode()); hashCode = prime * hashCode + ((getFamily() == null) ? 0 : getFamily().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode()); hashCode = prime * hashCode + ((getStartedBy() == null) ? 0 : getStartedBy().hashCode()); hashCode = prime * hashCode + ((getServiceName() == null) ? 0 : getServiceName().hashCode()); hashCode = prime * hashCode + ((getDesiredStatus() == null) ? 0 : getDesiredStatus().hashCode()); hashCode = prime * hashCode + ((getLaunchType() == null) ? 0 : getLaunchType().hashCode()); return hashCode; } @Override public ListTasksRequest clone() { return (ListTasksRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy