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

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

Go to download

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

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2014-2019 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 UpdateServiceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The short name or full Amazon Resource Name (ARN) of the cluster that your service is running on. If you do not * specify a cluster, the default cluster is assumed. *

*/ private String cluster; /** *

* The name of the service to update. *

*/ private String service; /** *

* The number of instantiations of the task to place and keep running in your service. *

*/ private Integer desiredCount; /** *

* The family and revision (family:revision) or full ARN of the task * definition to run in your service. If a revision is not specified, the latest ACTIVE * revision is used. If you modify the task definition with UpdateService, Amazon ECS spawns a task * with the new version of the task definition and then stops an old task after the new version is running. *

*/ private String taskDefinition; /** *

* Optional deployment parameters that control how many tasks run during the deployment and the ordering of stopping * and starting tasks. *

*/ private DeploymentConfiguration deploymentConfiguration; /** *

* The network configuration for the service. This parameter is required for task definitions that use the * awsvpc network mode to receive their own elastic network interface, and it is not supported for * other network modes. For more information, see Task Networking in * the Amazon Elastic Container Service Developer Guide. *

* *

* Updating a service to add a subnet to a list of existing subnets does not trigger a service deployment. For * example, if your network configuration change is to keep the existing subnets and simply add another subnet to * the network configuration, this does not trigger a new service deployment. *

*
*/ private NetworkConfiguration networkConfiguration; /** *

* The platform version on which your tasks in the service are running. A platform version is only specified for * tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by * default. For more information, see AWS Fargate Platform * Versions in the Amazon Elastic Container Service Developer Guide. *

*/ private String platformVersion; /** *

* Whether to force a new deployment of the service. Deployments are not forced by default. You can use this option * to trigger a new deployment with no service definition changes. For example, you can update a service's tasks to * use a newer Docker image with the same image/tag combination (my_image:latest) or to roll Fargate * tasks onto a newer platform version. *

*/ private Boolean forceNewDeployment; /** *

* The period of time, in seconds, that the Amazon ECS service scheduler should ignore unhealthy Elastic Load * Balancing target health checks after a task has first started. This is only valid if your service is configured * to use a load balancer. If your service's tasks take a while to start and respond to Elastic Load Balancing * health checks, you can specify a health check grace period of up to 2,147,483,647 seconds. During that time, the * ECS service scheduler ignores the Elastic Load Balancing health check status. This grace period can prevent the * ECS service scheduler from marking tasks as unhealthy and stopping them before they have time to come up. *

*/ private Integer healthCheckGracePeriodSeconds; /** *

* The short name or full Amazon Resource Name (ARN) of the cluster that your service is running on. 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 that your service is running on. 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 that your service is running on. 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 that your service is running on. 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 that your service is running on. 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 that your service is running on. 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 UpdateServiceRequest withCluster(String cluster) { setCluster(cluster); return this; } /** *

* The name of the service to update. *

* * @param service * The name of the service to update. */ public void setService(String service) { this.service = service; } /** *

* The name of the service to update. *

* * @return The name of the service to update. */ public String getService() { return this.service; } /** *

* The name of the service to update. *

* * @param service * The name of the service to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceRequest withService(String service) { setService(service); return this; } /** *

* The number of instantiations of the task to place and keep running in your service. *

* * @param desiredCount * The number of instantiations of the task to place and keep running in your service. */ public void setDesiredCount(Integer desiredCount) { this.desiredCount = desiredCount; } /** *

* The number of instantiations of the task to place and keep running in your service. *

* * @return The number of instantiations of the task to place and keep running in your service. */ public Integer getDesiredCount() { return this.desiredCount; } /** *

* The number of instantiations of the task to place and keep running in your service. *

* * @param desiredCount * The number of instantiations of the task to place and keep running in your service. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceRequest withDesiredCount(Integer desiredCount) { setDesiredCount(desiredCount); return this; } /** *

* The family and revision (family:revision) or full ARN of the task * definition to run in your service. If a revision is not specified, the latest ACTIVE * revision is used. If you modify the task definition with UpdateService, Amazon ECS spawns a task * with the new version of the task definition and then stops an old task after the new version is running. *

* * @param taskDefinition * The family and revision (family:revision) or full ARN of the task * definition to run in your service. If a revision is not specified, the latest * ACTIVE revision is used. If you modify the task definition with UpdateService, * Amazon ECS spawns a task with the new version of the task definition and then stops an old task after the * new version is running. */ public void setTaskDefinition(String taskDefinition) { this.taskDefinition = taskDefinition; } /** *

* The family and revision (family:revision) or full ARN of the task * definition to run in your service. If a revision is not specified, the latest ACTIVE * revision is used. If you modify the task definition with UpdateService, Amazon ECS spawns a task * with the new version of the task definition and then stops an old task after the new version is running. *

* * @return The family and revision (family:revision) or full ARN of the task * definition to run in your service. If a revision is not specified, the latest * ACTIVE revision is used. If you modify the task definition with UpdateService, * Amazon ECS spawns a task with the new version of the task definition and then stops an old task after the * new version is running. */ public String getTaskDefinition() { return this.taskDefinition; } /** *

* The family and revision (family:revision) or full ARN of the task * definition to run in your service. If a revision is not specified, the latest ACTIVE * revision is used. If you modify the task definition with UpdateService, Amazon ECS spawns a task * with the new version of the task definition and then stops an old task after the new version is running. *

* * @param taskDefinition * The family and revision (family:revision) or full ARN of the task * definition to run in your service. If a revision is not specified, the latest * ACTIVE revision is used. If you modify the task definition with UpdateService, * Amazon ECS spawns a task with the new version of the task definition and then stops an old task after the * new version is running. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceRequest withTaskDefinition(String taskDefinition) { setTaskDefinition(taskDefinition); return this; } /** *

* Optional deployment parameters that control how many tasks run during the deployment and the ordering of stopping * and starting tasks. *

* * @param deploymentConfiguration * Optional deployment parameters that control how many tasks run during the deployment and the ordering of * stopping and starting tasks. */ public void setDeploymentConfiguration(DeploymentConfiguration deploymentConfiguration) { this.deploymentConfiguration = deploymentConfiguration; } /** *

* Optional deployment parameters that control how many tasks run during the deployment and the ordering of stopping * and starting tasks. *

* * @return Optional deployment parameters that control how many tasks run during the deployment and the ordering of * stopping and starting tasks. */ public DeploymentConfiguration getDeploymentConfiguration() { return this.deploymentConfiguration; } /** *

* Optional deployment parameters that control how many tasks run during the deployment and the ordering of stopping * and starting tasks. *

* * @param deploymentConfiguration * Optional deployment parameters that control how many tasks run during the deployment and the ordering of * stopping and starting tasks. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceRequest withDeploymentConfiguration(DeploymentConfiguration deploymentConfiguration) { setDeploymentConfiguration(deploymentConfiguration); return this; } /** *

* The network configuration for the service. This parameter is required for task definitions that use the * awsvpc network mode to receive their own elastic network interface, and it is not supported for * other network modes. For more information, see Task Networking in * the Amazon Elastic Container Service Developer Guide. *

* *

* Updating a service to add a subnet to a list of existing subnets does not trigger a service deployment. For * example, if your network configuration change is to keep the existing subnets and simply add another subnet to * the network configuration, this does not trigger a new service deployment. *

*
* * @param networkConfiguration * The network configuration for the service. This parameter is required for task definitions that use the * awsvpc network mode to receive their own elastic network interface, and it is not supported * for other network modes. For more information, see Task * Networking in the Amazon Elastic Container Service Developer Guide.

*

* Updating a service to add a subnet to a list of existing subnets does not trigger a service deployment. * For example, if your network configuration change is to keep the existing subnets and simply add another * subnet to the network configuration, this does not trigger a new service deployment. *

*/ public void setNetworkConfiguration(NetworkConfiguration networkConfiguration) { this.networkConfiguration = networkConfiguration; } /** *

* The network configuration for the service. This parameter is required for task definitions that use the * awsvpc network mode to receive their own elastic network interface, and it is not supported for * other network modes. For more information, see Task Networking in * the Amazon Elastic Container Service Developer Guide. *

* *

* Updating a service to add a subnet to a list of existing subnets does not trigger a service deployment. For * example, if your network configuration change is to keep the existing subnets and simply add another subnet to * the network configuration, this does not trigger a new service deployment. *

*
* * @return The network configuration for the service. This parameter is required for task definitions that use the * awsvpc network mode to receive their own elastic network interface, and it is not supported * for other network modes. For more information, see Task * Networking in the Amazon Elastic Container Service Developer Guide.

*

* Updating a service to add a subnet to a list of existing subnets does not trigger a service deployment. * For example, if your network configuration change is to keep the existing subnets and simply add another * subnet to the network configuration, this does not trigger a new service deployment. *

*/ public NetworkConfiguration getNetworkConfiguration() { return this.networkConfiguration; } /** *

* The network configuration for the service. This parameter is required for task definitions that use the * awsvpc network mode to receive their own elastic network interface, and it is not supported for * other network modes. For more information, see Task Networking in * the Amazon Elastic Container Service Developer Guide. *

* *

* Updating a service to add a subnet to a list of existing subnets does not trigger a service deployment. For * example, if your network configuration change is to keep the existing subnets and simply add another subnet to * the network configuration, this does not trigger a new service deployment. *

*
* * @param networkConfiguration * The network configuration for the service. This parameter is required for task definitions that use the * awsvpc network mode to receive their own elastic network interface, and it is not supported * for other network modes. For more information, see Task * Networking in the Amazon Elastic Container Service Developer Guide.

*

* Updating a service to add a subnet to a list of existing subnets does not trigger a service deployment. * For example, if your network configuration change is to keep the existing subnets and simply add another * subnet to the network configuration, this does not trigger a new service deployment. *

* @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceRequest withNetworkConfiguration(NetworkConfiguration networkConfiguration) { setNetworkConfiguration(networkConfiguration); return this; } /** *

* The platform version on which your tasks in the service are running. A platform version is only specified for * tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by * default. For more information, see AWS Fargate Platform * Versions in the Amazon Elastic Container Service Developer Guide. *

* * @param platformVersion * The platform version on which your tasks in the service are running. A platform version is only specified * for tasks using the Fargate launch type. If one is not specified, the LATEST platform version * is used by default. For more information, see AWS Fargate * Platform Versions in the Amazon Elastic Container Service Developer Guide. */ public void setPlatformVersion(String platformVersion) { this.platformVersion = platformVersion; } /** *

* The platform version on which your tasks in the service are running. A platform version is only specified for * tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by * default. For more information, see AWS Fargate Platform * Versions in the Amazon Elastic Container Service Developer Guide. *

* * @return The platform version on which your tasks in the service are running. A platform version is only specified * for tasks using the Fargate launch type. If one is not specified, the LATEST platform * version is used by default. For more information, see AWS Fargate * Platform Versions in the Amazon Elastic Container Service Developer Guide. */ public String getPlatformVersion() { return this.platformVersion; } /** *

* The platform version on which your tasks in the service are running. A platform version is only specified for * tasks using the Fargate launch type. If one is not specified, the LATEST platform version is used by * default. For more information, see AWS Fargate Platform * Versions in the Amazon Elastic Container Service Developer Guide. *

* * @param platformVersion * The platform version on which your tasks in the service are running. A platform version is only specified * for tasks using the Fargate launch type. If one is not specified, the LATEST platform version * is used by default. For more information, see AWS Fargate * Platform Versions in the Amazon Elastic Container Service Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceRequest withPlatformVersion(String platformVersion) { setPlatformVersion(platformVersion); return this; } /** *

* Whether to force a new deployment of the service. Deployments are not forced by default. You can use this option * to trigger a new deployment with no service definition changes. For example, you can update a service's tasks to * use a newer Docker image with the same image/tag combination (my_image:latest) or to roll Fargate * tasks onto a newer platform version. *

* * @param forceNewDeployment * Whether to force a new deployment of the service. Deployments are not forced by default. You can use this * option to trigger a new deployment with no service definition changes. For example, you can update a * service's tasks to use a newer Docker image with the same image/tag combination ( * my_image:latest) or to roll Fargate tasks onto a newer platform version. */ public void setForceNewDeployment(Boolean forceNewDeployment) { this.forceNewDeployment = forceNewDeployment; } /** *

* Whether to force a new deployment of the service. Deployments are not forced by default. You can use this option * to trigger a new deployment with no service definition changes. For example, you can update a service's tasks to * use a newer Docker image with the same image/tag combination (my_image:latest) or to roll Fargate * tasks onto a newer platform version. *

* * @return Whether to force a new deployment of the service. Deployments are not forced by default. You can use this * option to trigger a new deployment with no service definition changes. For example, you can update a * service's tasks to use a newer Docker image with the same image/tag combination ( * my_image:latest) or to roll Fargate tasks onto a newer platform version. */ public Boolean getForceNewDeployment() { return this.forceNewDeployment; } /** *

* Whether to force a new deployment of the service. Deployments are not forced by default. You can use this option * to trigger a new deployment with no service definition changes. For example, you can update a service's tasks to * use a newer Docker image with the same image/tag combination (my_image:latest) or to roll Fargate * tasks onto a newer platform version. *

* * @param forceNewDeployment * Whether to force a new deployment of the service. Deployments are not forced by default. You can use this * option to trigger a new deployment with no service definition changes. For example, you can update a * service's tasks to use a newer Docker image with the same image/tag combination ( * my_image:latest) or to roll Fargate tasks onto a newer platform version. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceRequest withForceNewDeployment(Boolean forceNewDeployment) { setForceNewDeployment(forceNewDeployment); return this; } /** *

* Whether to force a new deployment of the service. Deployments are not forced by default. You can use this option * to trigger a new deployment with no service definition changes. For example, you can update a service's tasks to * use a newer Docker image with the same image/tag combination (my_image:latest) or to roll Fargate * tasks onto a newer platform version. *

* * @return Whether to force a new deployment of the service. Deployments are not forced by default. You can use this * option to trigger a new deployment with no service definition changes. For example, you can update a * service's tasks to use a newer Docker image with the same image/tag combination ( * my_image:latest) or to roll Fargate tasks onto a newer platform version. */ public Boolean isForceNewDeployment() { return this.forceNewDeployment; } /** *

* The period of time, in seconds, that the Amazon ECS service scheduler should ignore unhealthy Elastic Load * Balancing target health checks after a task has first started. This is only valid if your service is configured * to use a load balancer. If your service's tasks take a while to start and respond to Elastic Load Balancing * health checks, you can specify a health check grace period of up to 2,147,483,647 seconds. During that time, the * ECS service scheduler ignores the Elastic Load Balancing health check status. This grace period can prevent the * ECS service scheduler from marking tasks as unhealthy and stopping them before they have time to come up. *

* * @param healthCheckGracePeriodSeconds * The period of time, in seconds, that the Amazon ECS service scheduler should ignore unhealthy Elastic Load * Balancing target health checks after a task has first started. This is only valid if your service is * configured to use a load balancer. If your service's tasks take a while to start and respond to Elastic * Load Balancing health checks, you can specify a health check grace period of up to 2,147,483,647 seconds. * During that time, the ECS service scheduler ignores the Elastic Load Balancing health check status. This * grace period can prevent the ECS service scheduler from marking tasks as unhealthy and stopping them * before they have time to come up. */ public void setHealthCheckGracePeriodSeconds(Integer healthCheckGracePeriodSeconds) { this.healthCheckGracePeriodSeconds = healthCheckGracePeriodSeconds; } /** *

* The period of time, in seconds, that the Amazon ECS service scheduler should ignore unhealthy Elastic Load * Balancing target health checks after a task has first started. This is only valid if your service is configured * to use a load balancer. If your service's tasks take a while to start and respond to Elastic Load Balancing * health checks, you can specify a health check grace period of up to 2,147,483,647 seconds. During that time, the * ECS service scheduler ignores the Elastic Load Balancing health check status. This grace period can prevent the * ECS service scheduler from marking tasks as unhealthy and stopping them before they have time to come up. *

* * @return The period of time, in seconds, that the Amazon ECS service scheduler should ignore unhealthy Elastic * Load Balancing target health checks after a task has first started. This is only valid if your service is * configured to use a load balancer. If your service's tasks take a while to start and respond to Elastic * Load Balancing health checks, you can specify a health check grace period of up to 2,147,483,647 seconds. * During that time, the ECS service scheduler ignores the Elastic Load Balancing health check status. This * grace period can prevent the ECS service scheduler from marking tasks as unhealthy and stopping them * before they have time to come up. */ public Integer getHealthCheckGracePeriodSeconds() { return this.healthCheckGracePeriodSeconds; } /** *

* The period of time, in seconds, that the Amazon ECS service scheduler should ignore unhealthy Elastic Load * Balancing target health checks after a task has first started. This is only valid if your service is configured * to use a load balancer. If your service's tasks take a while to start and respond to Elastic Load Balancing * health checks, you can specify a health check grace period of up to 2,147,483,647 seconds. During that time, the * ECS service scheduler ignores the Elastic Load Balancing health check status. This grace period can prevent the * ECS service scheduler from marking tasks as unhealthy and stopping them before they have time to come up. *

* * @param healthCheckGracePeriodSeconds * The period of time, in seconds, that the Amazon ECS service scheduler should ignore unhealthy Elastic Load * Balancing target health checks after a task has first started. This is only valid if your service is * configured to use a load balancer. If your service's tasks take a while to start and respond to Elastic * Load Balancing health checks, you can specify a health check grace period of up to 2,147,483,647 seconds. * During that time, the ECS service scheduler ignores the Elastic Load Balancing health check status. This * grace period can prevent the ECS service scheduler from marking tasks as unhealthy and stopping them * before they have time to come up. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateServiceRequest withHealthCheckGracePeriodSeconds(Integer healthCheckGracePeriodSeconds) { setHealthCheckGracePeriodSeconds(healthCheckGracePeriodSeconds); 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 (getService() != null) sb.append("Service: ").append(getService()).append(","); if (getDesiredCount() != null) sb.append("DesiredCount: ").append(getDesiredCount()).append(","); if (getTaskDefinition() != null) sb.append("TaskDefinition: ").append(getTaskDefinition()).append(","); if (getDeploymentConfiguration() != null) sb.append("DeploymentConfiguration: ").append(getDeploymentConfiguration()).append(","); if (getNetworkConfiguration() != null) sb.append("NetworkConfiguration: ").append(getNetworkConfiguration()).append(","); if (getPlatformVersion() != null) sb.append("PlatformVersion: ").append(getPlatformVersion()).append(","); if (getForceNewDeployment() != null) sb.append("ForceNewDeployment: ").append(getForceNewDeployment()).append(","); if (getHealthCheckGracePeriodSeconds() != null) sb.append("HealthCheckGracePeriodSeconds: ").append(getHealthCheckGracePeriodSeconds()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateServiceRequest == false) return false; UpdateServiceRequest other = (UpdateServiceRequest) obj; if (other.getCluster() == null ^ this.getCluster() == null) return false; if (other.getCluster() != null && other.getCluster().equals(this.getCluster()) == false) return false; if (other.getService() == null ^ this.getService() == null) return false; if (other.getService() != null && other.getService().equals(this.getService()) == false) return false; if (other.getDesiredCount() == null ^ this.getDesiredCount() == null) return false; if (other.getDesiredCount() != null && other.getDesiredCount().equals(this.getDesiredCount()) == false) return false; if (other.getTaskDefinition() == null ^ this.getTaskDefinition() == null) return false; if (other.getTaskDefinition() != null && other.getTaskDefinition().equals(this.getTaskDefinition()) == false) return false; if (other.getDeploymentConfiguration() == null ^ this.getDeploymentConfiguration() == null) return false; if (other.getDeploymentConfiguration() != null && other.getDeploymentConfiguration().equals(this.getDeploymentConfiguration()) == false) return false; if (other.getNetworkConfiguration() == null ^ this.getNetworkConfiguration() == null) return false; if (other.getNetworkConfiguration() != null && other.getNetworkConfiguration().equals(this.getNetworkConfiguration()) == false) return false; if (other.getPlatformVersion() == null ^ this.getPlatformVersion() == null) return false; if (other.getPlatformVersion() != null && other.getPlatformVersion().equals(this.getPlatformVersion()) == false) return false; if (other.getForceNewDeployment() == null ^ this.getForceNewDeployment() == null) return false; if (other.getForceNewDeployment() != null && other.getForceNewDeployment().equals(this.getForceNewDeployment()) == false) return false; if (other.getHealthCheckGracePeriodSeconds() == null ^ this.getHealthCheckGracePeriodSeconds() == null) return false; if (other.getHealthCheckGracePeriodSeconds() != null && other.getHealthCheckGracePeriodSeconds().equals(this.getHealthCheckGracePeriodSeconds()) == 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 + ((getService() == null) ? 0 : getService().hashCode()); hashCode = prime * hashCode + ((getDesiredCount() == null) ? 0 : getDesiredCount().hashCode()); hashCode = prime * hashCode + ((getTaskDefinition() == null) ? 0 : getTaskDefinition().hashCode()); hashCode = prime * hashCode + ((getDeploymentConfiguration() == null) ? 0 : getDeploymentConfiguration().hashCode()); hashCode = prime * hashCode + ((getNetworkConfiguration() == null) ? 0 : getNetworkConfiguration().hashCode()); hashCode = prime * hashCode + ((getPlatformVersion() == null) ? 0 : getPlatformVersion().hashCode()); hashCode = prime * hashCode + ((getForceNewDeployment() == null) ? 0 : getForceNewDeployment().hashCode()); hashCode = prime * hashCode + ((getHealthCheckGracePeriodSeconds() == null) ? 0 : getHealthCheckGracePeriodSeconds().hashCode()); return hashCode; } @Override public UpdateServiceRequest clone() { return (UpdateServiceRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy