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

com.amazonaws.services.batch.model.JobDetail Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Batch module holds the client classes that are used for communicating with AWS Batch.

There is a newer version: 1.12.772
Show 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.batch.model;

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

/**
 * 

* An object that represents an Batch job. *

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

* The Amazon Resource Name (ARN) of the job. *

*/ private String jobArn; /** *

* The job name. *

*/ private String jobName; /** *

* The job ID. *

*/ private String jobId; /** *

* The Amazon Resource Name (ARN) of the job queue that the job is associated with. *

*/ private String jobQueue; /** *

* The current status for the job. *

* *

* If your jobs don't progress to STARTING, see Jobs stuck * in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

*
*/ private String status; /** *

* The share identifier for the job. *

*/ private String shareIdentifier; /** *

* The scheduling policy of the job definition. This only affects jobs in job queues with a fair share policy. Jobs * with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. *

*/ private Integer schedulingPriority; /** *

* A list of job attempts that are associated with this job. *

*/ private java.util.List attempts; /** *

* A short, human-readable string to provide more details for the current status of the job. *

*
    *
  • *

    * CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY - All compute environments have insufficient capacity to * service the job. *

    *
  • *
  • *

    * MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE - All compute environments have a * maxVcpu setting that is smaller than the job requirements. *

    *
  • *
  • *

    * MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT - All compute environments have no connected instances * that meet the job requirements. *

    *
  • *
  • *

    * MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS - All compute environments have problems with the service * role permissions. *

    *
  • *
*/ private String statusReason; /** *

* The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this * is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. For * array child jobs, this is when the child job was spawned by its parent and entered the PENDING * state. *

*/ private Long createdAt; /** *

* The retry strategy to use for this job if an attempt fails. *

*/ private RetryStrategy retryStrategy; /** *

* The Unix timestamp (in milliseconds) for when the job was started. More specifically, it's when the job * transitioned from the STARTING state to the RUNNING state. *

*/ private Long startedAt; /** *

* The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it's when the job * transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or * FAILED. *

*/ private Long stoppedAt; /** *

* A list of job IDs that this job depends on. *

*/ private java.util.List dependsOn; /** *

* The Amazon Resource Name (ARN) of the job definition that this job uses. *

*/ private String jobDefinition; /** *

* Additional parameters that are passed to the job that replace parameter substitution placeholders or override any * corresponding parameter defaults from the job definition. *

*/ private java.util.Map parameters; /** *

* An object that represents the details for the container that's associated with the job. If the details are for a * multiple-container job, this object will be empty. *

*/ private ContainerDetail container; /** *

* An object that represents the details of a node that's associated with a multi-node parallel job. *

*/ private NodeDetails nodeDetails; /** *

* An object that represents the node properties of a multi-node parallel job. *

* *

* This isn't applicable to jobs that are running on Fargate resources. *

*
*/ private NodeProperties nodeProperties; /** *

* The array properties of the job, if it's an array job. *

*/ private ArrayPropertiesDetail arrayProperties; /** *

* The timeout configuration for the job. *

*/ private JobTimeout timeout; /** *

* The tags that are applied to the job. *

*/ private java.util.Map tags; /** *

* Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If * no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are * created. For tags with the same name, job tags are given priority over job definitions tags. If the total number * of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. *

*/ private Boolean propagateTags; /** *

* The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. *

*/ private java.util.List platformCapabilities; /** *

* An object with various properties that are specific to Amazon EKS based jobs. *

*/ private EksPropertiesDetail eksProperties; /** *

* A list of job attempts that are associated with this job. *

*/ private java.util.List eksAttempts; /** *

* An object with properties that are specific to Amazon ECS-based jobs. *

*/ private EcsPropertiesDetail ecsProperties; /** *

* Indicates whether the job is canceled. *

*/ private Boolean isCancelled; /** *

* Indicates whether the job is terminated. *

*/ private Boolean isTerminated; /** *

* The Amazon Resource Name (ARN) of the job. *

* * @param jobArn * The Amazon Resource Name (ARN) of the job. */ public void setJobArn(String jobArn) { this.jobArn = jobArn; } /** *

* The Amazon Resource Name (ARN) of the job. *

* * @return The Amazon Resource Name (ARN) of the job. */ public String getJobArn() { return this.jobArn; } /** *

* The Amazon Resource Name (ARN) of the job. *

* * @param jobArn * The Amazon Resource Name (ARN) of the job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withJobArn(String jobArn) { setJobArn(jobArn); return this; } /** *

* The job name. *

* * @param jobName * The job name. */ public void setJobName(String jobName) { this.jobName = jobName; } /** *

* The job name. *

* * @return The job name. */ public String getJobName() { return this.jobName; } /** *

* The job name. *

* * @param jobName * The job name. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withJobName(String jobName) { setJobName(jobName); return this; } /** *

* The job ID. *

* * @param jobId * The job ID. */ public void setJobId(String jobId) { this.jobId = jobId; } /** *

* The job ID. *

* * @return The job ID. */ public String getJobId() { return this.jobId; } /** *

* The job ID. *

* * @param jobId * The job ID. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withJobId(String jobId) { setJobId(jobId); return this; } /** *

* The Amazon Resource Name (ARN) of the job queue that the job is associated with. *

* * @param jobQueue * The Amazon Resource Name (ARN) of the job queue that the job is associated with. */ public void setJobQueue(String jobQueue) { this.jobQueue = jobQueue; } /** *

* The Amazon Resource Name (ARN) of the job queue that the job is associated with. *

* * @return The Amazon Resource Name (ARN) of the job queue that the job is associated with. */ public String getJobQueue() { return this.jobQueue; } /** *

* The Amazon Resource Name (ARN) of the job queue that the job is associated with. *

* * @param jobQueue * The Amazon Resource Name (ARN) of the job queue that the job is associated with. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withJobQueue(String jobQueue) { setJobQueue(jobQueue); return this; } /** *

* The current status for the job. *

* *

* If your jobs don't progress to STARTING, see Jobs stuck * in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

*
* * @param status * The current status for the job.

*

* If your jobs don't progress to STARTING, see Jobs * stuck in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

* @see JobStatus */ public void setStatus(String status) { this.status = status; } /** *

* The current status for the job. *

* *

* If your jobs don't progress to STARTING, see Jobs stuck * in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

*
* * @return The current status for the job.

*

* If your jobs don't progress to STARTING, see Jobs * stuck in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

* @see JobStatus */ public String getStatus() { return this.status; } /** *

* The current status for the job. *

* *

* If your jobs don't progress to STARTING, see Jobs stuck * in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

*
* * @param status * The current status for the job.

*

* If your jobs don't progress to STARTING, see Jobs * stuck in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

* @return Returns a reference to this object so that method calls can be chained together. * @see JobStatus */ public JobDetail withStatus(String status) { setStatus(status); return this; } /** *

* The current status for the job. *

* *

* If your jobs don't progress to STARTING, see Jobs stuck * in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

*
* * @param status * The current status for the job.

*

* If your jobs don't progress to STARTING, see Jobs * stuck in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

* @see JobStatus */ public void setStatus(JobStatus status) { withStatus(status); } /** *

* The current status for the job. *

* *

* If your jobs don't progress to STARTING, see Jobs stuck * in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

*
* * @param status * The current status for the job.

*

* If your jobs don't progress to STARTING, see Jobs * stuck in RUNNABLE status in the troubleshooting section of the Batch User Guide. *

* @return Returns a reference to this object so that method calls can be chained together. * @see JobStatus */ public JobDetail withStatus(JobStatus status) { this.status = status.toString(); return this; } /** *

* The share identifier for the job. *

* * @param shareIdentifier * The share identifier for the job. */ public void setShareIdentifier(String shareIdentifier) { this.shareIdentifier = shareIdentifier; } /** *

* The share identifier for the job. *

* * @return The share identifier for the job. */ public String getShareIdentifier() { return this.shareIdentifier; } /** *

* The share identifier for the job. *

* * @param shareIdentifier * The share identifier for the job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withShareIdentifier(String shareIdentifier) { setShareIdentifier(shareIdentifier); return this; } /** *

* The scheduling policy of the job definition. This only affects jobs in job queues with a fair share policy. Jobs * with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. *

* * @param schedulingPriority * The scheduling policy of the job definition. This only affects jobs in job queues with a fair share * policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. */ public void setSchedulingPriority(Integer schedulingPriority) { this.schedulingPriority = schedulingPriority; } /** *

* The scheduling policy of the job definition. This only affects jobs in job queues with a fair share policy. Jobs * with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. *

* * @return The scheduling policy of the job definition. This only affects jobs in job queues with a fair share * policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling * priority. */ public Integer getSchedulingPriority() { return this.schedulingPriority; } /** *

* The scheduling policy of the job definition. This only affects jobs in job queues with a fair share policy. Jobs * with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. *

* * @param schedulingPriority * The scheduling policy of the job definition. This only affects jobs in job queues with a fair share * policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withSchedulingPriority(Integer schedulingPriority) { setSchedulingPriority(schedulingPriority); return this; } /** *

* A list of job attempts that are associated with this job. *

* * @return A list of job attempts that are associated with this job. */ public java.util.List getAttempts() { return attempts; } /** *

* A list of job attempts that are associated with this job. *

* * @param attempts * A list of job attempts that are associated with this job. */ public void setAttempts(java.util.Collection attempts) { if (attempts == null) { this.attempts = null; return; } this.attempts = new java.util.ArrayList(attempts); } /** *

* A list of job attempts that are associated with this job. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setAttempts(java.util.Collection)} or {@link #withAttempts(java.util.Collection)} if you want to override * the existing values. *

* * @param attempts * A list of job attempts that are associated with this job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withAttempts(AttemptDetail... attempts) { if (this.attempts == null) { setAttempts(new java.util.ArrayList(attempts.length)); } for (AttemptDetail ele : attempts) { this.attempts.add(ele); } return this; } /** *

* A list of job attempts that are associated with this job. *

* * @param attempts * A list of job attempts that are associated with this job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withAttempts(java.util.Collection attempts) { setAttempts(attempts); return this; } /** *

* A short, human-readable string to provide more details for the current status of the job. *

*
    *
  • *

    * CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY - All compute environments have insufficient capacity to * service the job. *

    *
  • *
  • *

    * MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE - All compute environments have a * maxVcpu setting that is smaller than the job requirements. *

    *
  • *
  • *

    * MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT - All compute environments have no connected instances * that meet the job requirements. *

    *
  • *
  • *

    * MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS - All compute environments have problems with the service * role permissions. *

    *
  • *
* * @param statusReason * A short, human-readable string to provide more details for the current status of the job.

*
    *
  • *

    * CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY - All compute environments have insufficient capacity * to service the job. *

    *
  • *
  • *

    * MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE - All compute environments have a * maxVcpu setting that is smaller than the job requirements. *

    *
  • *
  • *

    * MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT - All compute environments have no connected * instances that meet the job requirements. *

    *
  • *
  • *

    * MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS - All compute environments have problems with the * service role permissions. *

    *
  • */ public void setStatusReason(String statusReason) { this.statusReason = statusReason; } /** *

    * A short, human-readable string to provide more details for the current status of the job. *

    *
      *
    • *

      * CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY - All compute environments have insufficient capacity to * service the job. *

      *
    • *
    • *

      * MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE - All compute environments have a * maxVcpu setting that is smaller than the job requirements. *

      *
    • *
    • *

      * MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT - All compute environments have no connected instances * that meet the job requirements. *

      *
    • *
    • *

      * MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS - All compute environments have problems with the service * role permissions. *

      *
    • *
    * * @return A short, human-readable string to provide more details for the current status of the job.

    *
      *
    • *

      * CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY - All compute environments have insufficient * capacity to service the job. *

      *
    • *
    • *

      * MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE - All compute environments have a * maxVcpu setting that is smaller than the job requirements. *

      *
    • *
    • *

      * MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT - All compute environments have no connected * instances that meet the job requirements. *

      *
    • *
    • *

      * MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS - All compute environments have problems with the * service role permissions. *

      *
    • */ public String getStatusReason() { return this.statusReason; } /** *

      * A short, human-readable string to provide more details for the current status of the job. *

      *
        *
      • *

        * CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY - All compute environments have insufficient capacity to * service the job. *

        *
      • *
      • *

        * MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE - All compute environments have a * maxVcpu setting that is smaller than the job requirements. *

        *
      • *
      • *

        * MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT - All compute environments have no connected instances * that meet the job requirements. *

        *
      • *
      • *

        * MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS - All compute environments have problems with the service * role permissions. *

        *
      • *
      * * @param statusReason * A short, human-readable string to provide more details for the current status of the job.

      *
        *
      • *

        * CAPACITY:INSUFFICIENT_INSTANCE_CAPACITY - All compute environments have insufficient capacity * to service the job. *

        *
      • *
      • *

        * MISCONFIGURATION:COMPUTE_ENVIRONMENT_MAX_RESOURCE - All compute environments have a * maxVcpu setting that is smaller than the job requirements. *

        *
      • *
      • *

        * MISCONFIGURATION:JOB_RESOURCE_REQUIREMENT - All compute environments have no connected * instances that meet the job requirements. *

        *
      • *
      • *

        * MISCONFIGURATION:SERVICE_ROLE_PERMISSIONS - All compute environments have problems with the * service role permissions. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withStatusReason(String statusReason) { setStatusReason(statusReason); return this; } /** *

        * The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this * is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. For * array child jobs, this is when the child job was spawned by its parent and entered the PENDING * state. *

        * * @param createdAt * The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array * jobs, this is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. * For array child jobs, this is when the child job was spawned by its parent and entered the * PENDING state. */ public void setCreatedAt(Long createdAt) { this.createdAt = createdAt; } /** *

        * The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this * is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. For * array child jobs, this is when the child job was spawned by its parent and entered the PENDING * state. *

        * * @return The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array * jobs, this is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. * For array child jobs, this is when the child job was spawned by its parent and entered the * PENDING state. */ public Long getCreatedAt() { return this.createdAt; } /** *

        * The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array jobs, this * is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. For * array child jobs, this is when the child job was spawned by its parent and entered the PENDING * state. *

        * * @param createdAt * The Unix timestamp (in milliseconds) for when the job was created. For non-array jobs and parent array * jobs, this is when the job entered the SUBMITTED state. This is specifically at the time SubmitJob was called. * For array child jobs, this is when the child job was spawned by its parent and entered the * PENDING state. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withCreatedAt(Long createdAt) { setCreatedAt(createdAt); return this; } /** *

        * The retry strategy to use for this job if an attempt fails. *

        * * @param retryStrategy * The retry strategy to use for this job if an attempt fails. */ public void setRetryStrategy(RetryStrategy retryStrategy) { this.retryStrategy = retryStrategy; } /** *

        * The retry strategy to use for this job if an attempt fails. *

        * * @return The retry strategy to use for this job if an attempt fails. */ public RetryStrategy getRetryStrategy() { return this.retryStrategy; } /** *

        * The retry strategy to use for this job if an attempt fails. *

        * * @param retryStrategy * The retry strategy to use for this job if an attempt fails. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withRetryStrategy(RetryStrategy retryStrategy) { setRetryStrategy(retryStrategy); return this; } /** *

        * The Unix timestamp (in milliseconds) for when the job was started. More specifically, it's when the job * transitioned from the STARTING state to the RUNNING state. *

        * * @param startedAt * The Unix timestamp (in milliseconds) for when the job was started. More specifically, it's when the job * transitioned from the STARTING state to the RUNNING state. */ public void setStartedAt(Long startedAt) { this.startedAt = startedAt; } /** *

        * The Unix timestamp (in milliseconds) for when the job was started. More specifically, it's when the job * transitioned from the STARTING state to the RUNNING state. *

        * * @return The Unix timestamp (in milliseconds) for when the job was started. More specifically, it's when the job * transitioned from the STARTING state to the RUNNING state. */ public Long getStartedAt() { return this.startedAt; } /** *

        * The Unix timestamp (in milliseconds) for when the job was started. More specifically, it's when the job * transitioned from the STARTING state to the RUNNING state. *

        * * @param startedAt * The Unix timestamp (in milliseconds) for when the job was started. More specifically, it's when the job * transitioned from the STARTING state to the RUNNING state. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withStartedAt(Long startedAt) { setStartedAt(startedAt); return this; } /** *

        * The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it's when the job * transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or * FAILED. *

        * * @param stoppedAt * The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it's when the job * transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or * FAILED. */ public void setStoppedAt(Long stoppedAt) { this.stoppedAt = stoppedAt; } /** *

        * The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it's when the job * transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or * FAILED. *

        * * @return The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it's when the job * transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or * FAILED. */ public Long getStoppedAt() { return this.stoppedAt; } /** *

        * The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it's when the job * transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or * FAILED. *

        * * @param stoppedAt * The Unix timestamp (in milliseconds) for when the job was stopped. More specifically, it's when the job * transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or * FAILED. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withStoppedAt(Long stoppedAt) { setStoppedAt(stoppedAt); return this; } /** *

        * A list of job IDs that this job depends on. *

        * * @return A list of job IDs that this job depends on. */ public java.util.List getDependsOn() { return dependsOn; } /** *

        * A list of job IDs that this job depends on. *

        * * @param dependsOn * A list of job IDs that this job depends on. */ public void setDependsOn(java.util.Collection dependsOn) { if (dependsOn == null) { this.dependsOn = null; return; } this.dependsOn = new java.util.ArrayList(dependsOn); } /** *

        * A list of job IDs that this job depends on. *

        *

        * NOTE: This method appends the values to the existing list (if any). Use * {@link #setDependsOn(java.util.Collection)} or {@link #withDependsOn(java.util.Collection)} if you want to * override the existing values. *

        * * @param dependsOn * A list of job IDs that this job depends on. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withDependsOn(JobDependency... dependsOn) { if (this.dependsOn == null) { setDependsOn(new java.util.ArrayList(dependsOn.length)); } for (JobDependency ele : dependsOn) { this.dependsOn.add(ele); } return this; } /** *

        * A list of job IDs that this job depends on. *

        * * @param dependsOn * A list of job IDs that this job depends on. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withDependsOn(java.util.Collection dependsOn) { setDependsOn(dependsOn); return this; } /** *

        * The Amazon Resource Name (ARN) of the job definition that this job uses. *

        * * @param jobDefinition * The Amazon Resource Name (ARN) of the job definition that this job uses. */ public void setJobDefinition(String jobDefinition) { this.jobDefinition = jobDefinition; } /** *

        * The Amazon Resource Name (ARN) of the job definition that this job uses. *

        * * @return The Amazon Resource Name (ARN) of the job definition that this job uses. */ public String getJobDefinition() { return this.jobDefinition; } /** *

        * The Amazon Resource Name (ARN) of the job definition that this job uses. *

        * * @param jobDefinition * The Amazon Resource Name (ARN) of the job definition that this job uses. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withJobDefinition(String jobDefinition) { setJobDefinition(jobDefinition); return this; } /** *

        * Additional parameters that are passed to the job that replace parameter substitution placeholders or override any * corresponding parameter defaults from the job definition. *

        * * @return Additional parameters that are passed to the job that replace parameter substitution placeholders or * override any corresponding parameter defaults from the job definition. */ public java.util.Map getParameters() { return parameters; } /** *

        * Additional parameters that are passed to the job that replace parameter substitution placeholders or override any * corresponding parameter defaults from the job definition. *

        * * @param parameters * Additional parameters that are passed to the job that replace parameter substitution placeholders or * override any corresponding parameter defaults from the job definition. */ public void setParameters(java.util.Map parameters) { this.parameters = parameters; } /** *

        * Additional parameters that are passed to the job that replace parameter substitution placeholders or override any * corresponding parameter defaults from the job definition. *

        * * @param parameters * Additional parameters that are passed to the job that replace parameter substitution placeholders or * override any corresponding parameter defaults from the job definition. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withParameters(java.util.Map parameters) { setParameters(parameters); return this; } /** * Add a single Parameters entry * * @see JobDetail#withParameters * @returns a reference to this object so that method calls can be chained together. */ public JobDetail addParametersEntry(String key, String value) { if (null == this.parameters) { this.parameters = new java.util.HashMap(); } if (this.parameters.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.parameters.put(key, value); return this; } /** * Removes all the entries added into Parameters. * * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail clearParametersEntries() { this.parameters = null; return this; } /** *

        * An object that represents the details for the container that's associated with the job. If the details are for a * multiple-container job, this object will be empty. *

        * * @param container * An object that represents the details for the container that's associated with the job. If the details are * for a multiple-container job, this object will be empty. */ public void setContainer(ContainerDetail container) { this.container = container; } /** *

        * An object that represents the details for the container that's associated with the job. If the details are for a * multiple-container job, this object will be empty. *

        * * @return An object that represents the details for the container that's associated with the job. If the details * are for a multiple-container job, this object will be empty. */ public ContainerDetail getContainer() { return this.container; } /** *

        * An object that represents the details for the container that's associated with the job. If the details are for a * multiple-container job, this object will be empty. *

        * * @param container * An object that represents the details for the container that's associated with the job. If the details are * for a multiple-container job, this object will be empty. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withContainer(ContainerDetail container) { setContainer(container); return this; } /** *

        * An object that represents the details of a node that's associated with a multi-node parallel job. *

        * * @param nodeDetails * An object that represents the details of a node that's associated with a multi-node parallel job. */ public void setNodeDetails(NodeDetails nodeDetails) { this.nodeDetails = nodeDetails; } /** *

        * An object that represents the details of a node that's associated with a multi-node parallel job. *

        * * @return An object that represents the details of a node that's associated with a multi-node parallel job. */ public NodeDetails getNodeDetails() { return this.nodeDetails; } /** *

        * An object that represents the details of a node that's associated with a multi-node parallel job. *

        * * @param nodeDetails * An object that represents the details of a node that's associated with a multi-node parallel job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withNodeDetails(NodeDetails nodeDetails) { setNodeDetails(nodeDetails); return this; } /** *

        * An object that represents the node properties of a multi-node parallel job. *

        * *

        * This isn't applicable to jobs that are running on Fargate resources. *

        *
        * * @param nodeProperties * An object that represents the node properties of a multi-node parallel job.

        *

        * This isn't applicable to jobs that are running on Fargate resources. *

        */ public void setNodeProperties(NodeProperties nodeProperties) { this.nodeProperties = nodeProperties; } /** *

        * An object that represents the node properties of a multi-node parallel job. *

        * *

        * This isn't applicable to jobs that are running on Fargate resources. *

        *
        * * @return An object that represents the node properties of a multi-node parallel job.

        *

        * This isn't applicable to jobs that are running on Fargate resources. *

        */ public NodeProperties getNodeProperties() { return this.nodeProperties; } /** *

        * An object that represents the node properties of a multi-node parallel job. *

        * *

        * This isn't applicable to jobs that are running on Fargate resources. *

        *
        * * @param nodeProperties * An object that represents the node properties of a multi-node parallel job.

        *

        * This isn't applicable to jobs that are running on Fargate resources. *

        * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withNodeProperties(NodeProperties nodeProperties) { setNodeProperties(nodeProperties); return this; } /** *

        * The array properties of the job, if it's an array job. *

        * * @param arrayProperties * The array properties of the job, if it's an array job. */ public void setArrayProperties(ArrayPropertiesDetail arrayProperties) { this.arrayProperties = arrayProperties; } /** *

        * The array properties of the job, if it's an array job. *

        * * @return The array properties of the job, if it's an array job. */ public ArrayPropertiesDetail getArrayProperties() { return this.arrayProperties; } /** *

        * The array properties of the job, if it's an array job. *

        * * @param arrayProperties * The array properties of the job, if it's an array job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withArrayProperties(ArrayPropertiesDetail arrayProperties) { setArrayProperties(arrayProperties); return this; } /** *

        * The timeout configuration for the job. *

        * * @param timeout * The timeout configuration for the job. */ public void setTimeout(JobTimeout timeout) { this.timeout = timeout; } /** *

        * The timeout configuration for the job. *

        * * @return The timeout configuration for the job. */ public JobTimeout getTimeout() { return this.timeout; } /** *

        * The timeout configuration for the job. *

        * * @param timeout * The timeout configuration for the job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withTimeout(JobTimeout timeout) { setTimeout(timeout); return this; } /** *

        * The tags that are applied to the job. *

        * * @return The tags that are applied to the job. */ public java.util.Map getTags() { return tags; } /** *

        * The tags that are applied to the job. *

        * * @param tags * The tags that are applied to the job. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

        * The tags that are applied to the job. *

        * * @param tags * The tags that are applied to the job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see JobDetail#withTags * @returns a reference to this object so that method calls can be chained together. */ public JobDetail addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail clearTagsEntries() { this.tags = null; return this; } /** *

        * Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If * no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are * created. For tags with the same name, job tags are given priority over job definitions tags. If the total number * of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. *

        * * @param propagateTags * Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS * task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when * the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. * If the total number of combined tags from the job and job definition is over 50, the job is moved to the * FAILED state. */ public void setPropagateTags(Boolean propagateTags) { this.propagateTags = propagateTags; } /** *

        * Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If * no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are * created. For tags with the same name, job tags are given priority over job definitions tags. If the total number * of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. *

        * * @return Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS * task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when * the tasks are created. For tags with the same name, job tags are given priority over job definitions * tags. If the total number of combined tags from the job and job definition is over 50, the job is moved * to the FAILED state. */ public Boolean getPropagateTags() { return this.propagateTags; } /** *

        * Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If * no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are * created. For tags with the same name, job tags are given priority over job definitions tags. If the total number * of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. *

        * * @param propagateTags * Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS * task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when * the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. * If the total number of combined tags from the job and job definition is over 50, the job is moved to the * FAILED state. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withPropagateTags(Boolean propagateTags) { setPropagateTags(propagateTags); return this; } /** *

        * Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If * no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are * created. For tags with the same name, job tags are given priority over job definitions tags. If the total number * of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. *

        * * @return Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS * task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when * the tasks are created. For tags with the same name, job tags are given priority over job definitions * tags. If the total number of combined tags from the job and job definition is over 50, the job is moved * to the FAILED state. */ public Boolean isPropagateTags() { return this.propagateTags; } /** *

        * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. *

        * * @return The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. * @see PlatformCapability */ public java.util.List getPlatformCapabilities() { return platformCapabilities; } /** *

        * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. *

        * * @param platformCapabilities * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. * @see PlatformCapability */ public void setPlatformCapabilities(java.util.Collection platformCapabilities) { if (platformCapabilities == null) { this.platformCapabilities = null; return; } this.platformCapabilities = new java.util.ArrayList(platformCapabilities); } /** *

        * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. *

        *

        * NOTE: This method appends the values to the existing list (if any). Use * {@link #setPlatformCapabilities(java.util.Collection)} or {@link #withPlatformCapabilities(java.util.Collection)} * if you want to override the existing values. *

        * * @param platformCapabilities * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. * @return Returns a reference to this object so that method calls can be chained together. * @see PlatformCapability */ public JobDetail withPlatformCapabilities(String... platformCapabilities) { if (this.platformCapabilities == null) { setPlatformCapabilities(new java.util.ArrayList(platformCapabilities.length)); } for (String ele : platformCapabilities) { this.platformCapabilities.add(ele); } return this; } /** *

        * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. *

        * * @param platformCapabilities * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. * @return Returns a reference to this object so that method calls can be chained together. * @see PlatformCapability */ public JobDetail withPlatformCapabilities(java.util.Collection platformCapabilities) { setPlatformCapabilities(platformCapabilities); return this; } /** *

        * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. *

        * * @param platformCapabilities * The platform capabilities required by the job definition. If no value is specified, it defaults to * EC2. Jobs run on Fargate resources specify FARGATE. * @return Returns a reference to this object so that method calls can be chained together. * @see PlatformCapability */ public JobDetail withPlatformCapabilities(PlatformCapability... platformCapabilities) { java.util.ArrayList platformCapabilitiesCopy = new java.util.ArrayList(platformCapabilities.length); for (PlatformCapability value : platformCapabilities) { platformCapabilitiesCopy.add(value.toString()); } if (getPlatformCapabilities() == null) { setPlatformCapabilities(platformCapabilitiesCopy); } else { getPlatformCapabilities().addAll(platformCapabilitiesCopy); } return this; } /** *

        * An object with various properties that are specific to Amazon EKS based jobs. *

        * * @param eksProperties * An object with various properties that are specific to Amazon EKS based jobs. */ public void setEksProperties(EksPropertiesDetail eksProperties) { this.eksProperties = eksProperties; } /** *

        * An object with various properties that are specific to Amazon EKS based jobs. *

        * * @return An object with various properties that are specific to Amazon EKS based jobs. */ public EksPropertiesDetail getEksProperties() { return this.eksProperties; } /** *

        * An object with various properties that are specific to Amazon EKS based jobs. *

        * * @param eksProperties * An object with various properties that are specific to Amazon EKS based jobs. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withEksProperties(EksPropertiesDetail eksProperties) { setEksProperties(eksProperties); return this; } /** *

        * A list of job attempts that are associated with this job. *

        * * @return A list of job attempts that are associated with this job. */ public java.util.List getEksAttempts() { return eksAttempts; } /** *

        * A list of job attempts that are associated with this job. *

        * * @param eksAttempts * A list of job attempts that are associated with this job. */ public void setEksAttempts(java.util.Collection eksAttempts) { if (eksAttempts == null) { this.eksAttempts = null; return; } this.eksAttempts = new java.util.ArrayList(eksAttempts); } /** *

        * A list of job attempts that are associated with this job. *

        *

        * NOTE: This method appends the values to the existing list (if any). Use * {@link #setEksAttempts(java.util.Collection)} or {@link #withEksAttempts(java.util.Collection)} if you want to * override the existing values. *

        * * @param eksAttempts * A list of job attempts that are associated with this job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withEksAttempts(EksAttemptDetail... eksAttempts) { if (this.eksAttempts == null) { setEksAttempts(new java.util.ArrayList(eksAttempts.length)); } for (EksAttemptDetail ele : eksAttempts) { this.eksAttempts.add(ele); } return this; } /** *

        * A list of job attempts that are associated with this job. *

        * * @param eksAttempts * A list of job attempts that are associated with this job. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withEksAttempts(java.util.Collection eksAttempts) { setEksAttempts(eksAttempts); return this; } /** *

        * An object with properties that are specific to Amazon ECS-based jobs. *

        * * @param ecsProperties * An object with properties that are specific to Amazon ECS-based jobs. */ public void setEcsProperties(EcsPropertiesDetail ecsProperties) { this.ecsProperties = ecsProperties; } /** *

        * An object with properties that are specific to Amazon ECS-based jobs. *

        * * @return An object with properties that are specific to Amazon ECS-based jobs. */ public EcsPropertiesDetail getEcsProperties() { return this.ecsProperties; } /** *

        * An object with properties that are specific to Amazon ECS-based jobs. *

        * * @param ecsProperties * An object with properties that are specific to Amazon ECS-based jobs. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withEcsProperties(EcsPropertiesDetail ecsProperties) { setEcsProperties(ecsProperties); return this; } /** *

        * Indicates whether the job is canceled. *

        * * @param isCancelled * Indicates whether the job is canceled. */ public void setIsCancelled(Boolean isCancelled) { this.isCancelled = isCancelled; } /** *

        * Indicates whether the job is canceled. *

        * * @return Indicates whether the job is canceled. */ public Boolean getIsCancelled() { return this.isCancelled; } /** *

        * Indicates whether the job is canceled. *

        * * @param isCancelled * Indicates whether the job is canceled. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withIsCancelled(Boolean isCancelled) { setIsCancelled(isCancelled); return this; } /** *

        * Indicates whether the job is canceled. *

        * * @return Indicates whether the job is canceled. */ public Boolean isCancelled() { return this.isCancelled; } /** *

        * Indicates whether the job is terminated. *

        * * @param isTerminated * Indicates whether the job is terminated. */ public void setIsTerminated(Boolean isTerminated) { this.isTerminated = isTerminated; } /** *

        * Indicates whether the job is terminated. *

        * * @return Indicates whether the job is terminated. */ public Boolean getIsTerminated() { return this.isTerminated; } /** *

        * Indicates whether the job is terminated. *

        * * @param isTerminated * Indicates whether the job is terminated. * @return Returns a reference to this object so that method calls can be chained together. */ public JobDetail withIsTerminated(Boolean isTerminated) { setIsTerminated(isTerminated); return this; } /** *

        * Indicates whether the job is terminated. *

        * * @return Indicates whether the job is terminated. */ public Boolean isTerminated() { return this.isTerminated; } /** * 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 (getJobArn() != null) sb.append("JobArn: ").append(getJobArn()).append(","); if (getJobName() != null) sb.append("JobName: ").append(getJobName()).append(","); if (getJobId() != null) sb.append("JobId: ").append(getJobId()).append(","); if (getJobQueue() != null) sb.append("JobQueue: ").append(getJobQueue()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getShareIdentifier() != null) sb.append("ShareIdentifier: ").append(getShareIdentifier()).append(","); if (getSchedulingPriority() != null) sb.append("SchedulingPriority: ").append(getSchedulingPriority()).append(","); if (getAttempts() != null) sb.append("Attempts: ").append(getAttempts()).append(","); if (getStatusReason() != null) sb.append("StatusReason: ").append(getStatusReason()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getRetryStrategy() != null) sb.append("RetryStrategy: ").append(getRetryStrategy()).append(","); if (getStartedAt() != null) sb.append("StartedAt: ").append(getStartedAt()).append(","); if (getStoppedAt() != null) sb.append("StoppedAt: ").append(getStoppedAt()).append(","); if (getDependsOn() != null) sb.append("DependsOn: ").append(getDependsOn()).append(","); if (getJobDefinition() != null) sb.append("JobDefinition: ").append(getJobDefinition()).append(","); if (getParameters() != null) sb.append("Parameters: ").append(getParameters()).append(","); if (getContainer() != null) sb.append("Container: ").append(getContainer()).append(","); if (getNodeDetails() != null) sb.append("NodeDetails: ").append(getNodeDetails()).append(","); if (getNodeProperties() != null) sb.append("NodeProperties: ").append(getNodeProperties()).append(","); if (getArrayProperties() != null) sb.append("ArrayProperties: ").append(getArrayProperties()).append(","); if (getTimeout() != null) sb.append("Timeout: ").append(getTimeout()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getPropagateTags() != null) sb.append("PropagateTags: ").append(getPropagateTags()).append(","); if (getPlatformCapabilities() != null) sb.append("PlatformCapabilities: ").append(getPlatformCapabilities()).append(","); if (getEksProperties() != null) sb.append("EksProperties: ").append(getEksProperties()).append(","); if (getEksAttempts() != null) sb.append("EksAttempts: ").append(getEksAttempts()).append(","); if (getEcsProperties() != null) sb.append("EcsProperties: ").append(getEcsProperties()).append(","); if (getIsCancelled() != null) sb.append("IsCancelled: ").append(getIsCancelled()).append(","); if (getIsTerminated() != null) sb.append("IsTerminated: ").append(getIsTerminated()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof JobDetail == false) return false; JobDetail other = (JobDetail) obj; if (other.getJobArn() == null ^ this.getJobArn() == null) return false; if (other.getJobArn() != null && other.getJobArn().equals(this.getJobArn()) == false) return false; if (other.getJobName() == null ^ this.getJobName() == null) return false; if (other.getJobName() != null && other.getJobName().equals(this.getJobName()) == false) return false; if (other.getJobId() == null ^ this.getJobId() == null) return false; if (other.getJobId() != null && other.getJobId().equals(this.getJobId()) == false) return false; if (other.getJobQueue() == null ^ this.getJobQueue() == null) return false; if (other.getJobQueue() != null && other.getJobQueue().equals(this.getJobQueue()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getShareIdentifier() == null ^ this.getShareIdentifier() == null) return false; if (other.getShareIdentifier() != null && other.getShareIdentifier().equals(this.getShareIdentifier()) == false) return false; if (other.getSchedulingPriority() == null ^ this.getSchedulingPriority() == null) return false; if (other.getSchedulingPriority() != null && other.getSchedulingPriority().equals(this.getSchedulingPriority()) == false) return false; if (other.getAttempts() == null ^ this.getAttempts() == null) return false; if (other.getAttempts() != null && other.getAttempts().equals(this.getAttempts()) == false) return false; if (other.getStatusReason() == null ^ this.getStatusReason() == null) return false; if (other.getStatusReason() != null && other.getStatusReason().equals(this.getStatusReason()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getRetryStrategy() == null ^ this.getRetryStrategy() == null) return false; if (other.getRetryStrategy() != null && other.getRetryStrategy().equals(this.getRetryStrategy()) == false) return false; if (other.getStartedAt() == null ^ this.getStartedAt() == null) return false; if (other.getStartedAt() != null && other.getStartedAt().equals(this.getStartedAt()) == false) return false; if (other.getStoppedAt() == null ^ this.getStoppedAt() == null) return false; if (other.getStoppedAt() != null && other.getStoppedAt().equals(this.getStoppedAt()) == false) return false; if (other.getDependsOn() == null ^ this.getDependsOn() == null) return false; if (other.getDependsOn() != null && other.getDependsOn().equals(this.getDependsOn()) == false) return false; if (other.getJobDefinition() == null ^ this.getJobDefinition() == null) return false; if (other.getJobDefinition() != null && other.getJobDefinition().equals(this.getJobDefinition()) == false) return false; if (other.getParameters() == null ^ this.getParameters() == null) return false; if (other.getParameters() != null && other.getParameters().equals(this.getParameters()) == false) return false; if (other.getContainer() == null ^ this.getContainer() == null) return false; if (other.getContainer() != null && other.getContainer().equals(this.getContainer()) == false) return false; if (other.getNodeDetails() == null ^ this.getNodeDetails() == null) return false; if (other.getNodeDetails() != null && other.getNodeDetails().equals(this.getNodeDetails()) == false) return false; if (other.getNodeProperties() == null ^ this.getNodeProperties() == null) return false; if (other.getNodeProperties() != null && other.getNodeProperties().equals(this.getNodeProperties()) == false) return false; if (other.getArrayProperties() == null ^ this.getArrayProperties() == null) return false; if (other.getArrayProperties() != null && other.getArrayProperties().equals(this.getArrayProperties()) == false) return false; if (other.getTimeout() == null ^ this.getTimeout() == null) return false; if (other.getTimeout() != null && other.getTimeout().equals(this.getTimeout()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getPropagateTags() == null ^ this.getPropagateTags() == null) return false; if (other.getPropagateTags() != null && other.getPropagateTags().equals(this.getPropagateTags()) == false) return false; if (other.getPlatformCapabilities() == null ^ this.getPlatformCapabilities() == null) return false; if (other.getPlatformCapabilities() != null && other.getPlatformCapabilities().equals(this.getPlatformCapabilities()) == false) return false; if (other.getEksProperties() == null ^ this.getEksProperties() == null) return false; if (other.getEksProperties() != null && other.getEksProperties().equals(this.getEksProperties()) == false) return false; if (other.getEksAttempts() == null ^ this.getEksAttempts() == null) return false; if (other.getEksAttempts() != null && other.getEksAttempts().equals(this.getEksAttempts()) == false) return false; if (other.getEcsProperties() == null ^ this.getEcsProperties() == null) return false; if (other.getEcsProperties() != null && other.getEcsProperties().equals(this.getEcsProperties()) == false) return false; if (other.getIsCancelled() == null ^ this.getIsCancelled() == null) return false; if (other.getIsCancelled() != null && other.getIsCancelled().equals(this.getIsCancelled()) == false) return false; if (other.getIsTerminated() == null ^ this.getIsTerminated() == null) return false; if (other.getIsTerminated() != null && other.getIsTerminated().equals(this.getIsTerminated()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getJobArn() == null) ? 0 : getJobArn().hashCode()); hashCode = prime * hashCode + ((getJobName() == null) ? 0 : getJobName().hashCode()); hashCode = prime * hashCode + ((getJobId() == null) ? 0 : getJobId().hashCode()); hashCode = prime * hashCode + ((getJobQueue() == null) ? 0 : getJobQueue().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getShareIdentifier() == null) ? 0 : getShareIdentifier().hashCode()); hashCode = prime * hashCode + ((getSchedulingPriority() == null) ? 0 : getSchedulingPriority().hashCode()); hashCode = prime * hashCode + ((getAttempts() == null) ? 0 : getAttempts().hashCode()); hashCode = prime * hashCode + ((getStatusReason() == null) ? 0 : getStatusReason().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getRetryStrategy() == null) ? 0 : getRetryStrategy().hashCode()); hashCode = prime * hashCode + ((getStartedAt() == null) ? 0 : getStartedAt().hashCode()); hashCode = prime * hashCode + ((getStoppedAt() == null) ? 0 : getStoppedAt().hashCode()); hashCode = prime * hashCode + ((getDependsOn() == null) ? 0 : getDependsOn().hashCode()); hashCode = prime * hashCode + ((getJobDefinition() == null) ? 0 : getJobDefinition().hashCode()); hashCode = prime * hashCode + ((getParameters() == null) ? 0 : getParameters().hashCode()); hashCode = prime * hashCode + ((getContainer() == null) ? 0 : getContainer().hashCode()); hashCode = prime * hashCode + ((getNodeDetails() == null) ? 0 : getNodeDetails().hashCode()); hashCode = prime * hashCode + ((getNodeProperties() == null) ? 0 : getNodeProperties().hashCode()); hashCode = prime * hashCode + ((getArrayProperties() == null) ? 0 : getArrayProperties().hashCode()); hashCode = prime * hashCode + ((getTimeout() == null) ? 0 : getTimeout().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getPropagateTags() == null) ? 0 : getPropagateTags().hashCode()); hashCode = prime * hashCode + ((getPlatformCapabilities() == null) ? 0 : getPlatformCapabilities().hashCode()); hashCode = prime * hashCode + ((getEksProperties() == null) ? 0 : getEksProperties().hashCode()); hashCode = prime * hashCode + ((getEksAttempts() == null) ? 0 : getEksAttempts().hashCode()); hashCode = prime * hashCode + ((getEcsProperties() == null) ? 0 : getEcsProperties().hashCode()); hashCode = prime * hashCode + ((getIsCancelled() == null) ? 0 : getIsCancelled().hashCode()); hashCode = prime * hashCode + ((getIsTerminated() == null) ? 0 : getIsTerminated().hashCode()); return hashCode; } @Override public JobDetail clone() { try { return (JobDetail) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.batch.model.transform.JobDetailMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy