/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.batch.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* An object that represents the compute environment architecture for Batch jobs on Fargate. *

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

* The operating system for the compute environment. Valid values are: LINUX (default), * WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, * WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL. *

* *

* The following parameters can’t be set for Windows containers: linuxParameters, * privileged, user, ulimits, readonlyRootFilesystem, and * efsVolumeConfiguration. *

*
*

* The Batch Scheduler checks before registering a task definition with Fargate. If the job requires a Windows * container and the first compute environment is LINUX, the compute environment is skipped and the * next is checked until a Windows-based compute environment is found. *

*
*

* Fargate Spot is not supported for Windows-based containers on Fargate. A job queue will be blocked if a Fargate * Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both * FARGATE and FARGATE_SPOT compute environments to the same job queue. *

*
*/ private String operatingSystemFamily; /** *

* The vCPU architecture. The default value is X86_64. Valid values are X86_64 and * ARM64. *

* *

* This parameter must be set to X86_64 for Windows containers. *

*
*/ private String cpuArchitecture; /** *

* The operating system for the compute environment. Valid values are: LINUX (default), * WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, * WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL. *

* *

* The following parameters can’t be set for Windows containers: linuxParameters, * privileged, user, ulimits, readonlyRootFilesystem, and * efsVolumeConfiguration. *

*
*

* The Batch Scheduler checks before registering a task definition with Fargate. If the job requires a Windows * container and the first compute environment is LINUX, the compute environment is skipped and the * next is checked until a Windows-based compute environment is found. *

*
*

* Fargate Spot is not supported for Windows-based containers on Fargate. A job queue will be blocked if a Fargate * Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both * FARGATE and FARGATE_SPOT compute environments to the same job queue. *

*
* * @param operatingSystemFamily * The operating system for the compute environment. Valid values are: LINUX (default), * WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, * WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL.

*

* The following parameters can’t be set for Windows containers: linuxParameters, * privileged, user, ulimits, readonlyRootFilesystem, and * efsVolumeConfiguration. *

*
*

* The Batch Scheduler checks before registering a task definition with Fargate. If the job requires a * Windows container and the first compute environment is LINUX, the compute environment is * skipped and the next is checked until a Windows-based compute environment is found. *

*
*

* Fargate Spot is not supported for Windows-based containers on Fargate. A job queue will be blocked if a * Fargate Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you * can attach both FARGATE and FARGATE_SPOT compute environments to the same job * queue. *

*/ public void setOperatingSystemFamily(String operatingSystemFamily) { this.operatingSystemFamily = operatingSystemFamily; } /** *

* The operating system for the compute environment. Valid values are: LINUX (default), * WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, * WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL. *

* *

* The following parameters can’t be set for Windows containers: linuxParameters, * privileged, user, ulimits, readonlyRootFilesystem, and * efsVolumeConfiguration. *

*
*

* The Batch Scheduler checks before registering a task definition with Fargate. If the job requires a Windows * container and the first compute environment is LINUX, the compute environment is skipped and the * next is checked until a Windows-based compute environment is found. *

*
*

* Fargate Spot is not supported for Windows-based containers on Fargate. A job queue will be blocked if a Fargate * Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both * FARGATE and FARGATE_SPOT compute environments to the same job queue. *

*
* * @return The operating system for the compute environment. Valid values are: LINUX (default), * WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, * WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL.

*

* The following parameters can’t be set for Windows containers: linuxParameters, * privileged, user, ulimits, readonlyRootFilesystem, * and efsVolumeConfiguration. *

*
*

* The Batch Scheduler checks before registering a task definition with Fargate. If the job requires a * Windows container and the first compute environment is LINUX, the compute environment is * skipped and the next is checked until a Windows-based compute environment is found. *

*
*

* Fargate Spot is not supported for Windows-based containers on Fargate. A job queue will be blocked if a * Fargate Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you * can attach both FARGATE and FARGATE_SPOT compute environments to the same job * queue. *

*/ public String getOperatingSystemFamily() { return this.operatingSystemFamily; } /** *

* The operating system for the compute environment. Valid values are: LINUX (default), * WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, * WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL. *

* *

* The following parameters can’t be set for Windows containers: linuxParameters, * privileged, user, ulimits, readonlyRootFilesystem, and * efsVolumeConfiguration. *

*
*

* The Batch Scheduler checks before registering a task definition with Fargate. If the job requires a Windows * container and the first compute environment is LINUX, the compute environment is skipped and the * next is checked until a Windows-based compute environment is found. *

*
*

* Fargate Spot is not supported for Windows-based containers on Fargate. A job queue will be blocked if a Fargate * Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you can attach both * FARGATE and FARGATE_SPOT compute environments to the same job queue. *

*
* * @param operatingSystemFamily * The operating system for the compute environment. Valid values are: LINUX (default), * WINDOWS_SERVER_2019_CORE, WINDOWS_SERVER_2019_FULL, * WINDOWS_SERVER_2022_CORE, and WINDOWS_SERVER_2022_FULL.

*

* The following parameters can’t be set for Windows containers: linuxParameters, * privileged, user, ulimits, readonlyRootFilesystem, and * efsVolumeConfiguration. *

*
*

* The Batch Scheduler checks before registering a task definition with Fargate. If the job requires a * Windows container and the first compute environment is LINUX, the compute environment is * skipped and the next is checked until a Windows-based compute environment is found. *

*
*

* Fargate Spot is not supported for Windows-based containers on Fargate. A job queue will be blocked if a * Fargate Windows job is submitted to a job queue with only Fargate Spot compute environments. However, you * can attach both FARGATE and FARGATE_SPOT compute environments to the same job * queue. *

* @return Returns a reference to this object so that method calls can be chained together. */ public RuntimePlatform withOperatingSystemFamily(String operatingSystemFamily) { setOperatingSystemFamily(operatingSystemFamily); return this; } /** *

* The vCPU architecture. The default value is X86_64. Valid values are X86_64 and * ARM64. *

* *

* This parameter must be set to X86_64 for Windows containers. *

*
* * @param cpuArchitecture * The vCPU architecture. The default value is X86_64. Valid values are X86_64 and * ARM64.

*

* This parameter must be set to X86_64 for Windows containers. *

*/ public void setCpuArchitecture(String cpuArchitecture) { this.cpuArchitecture = cpuArchitecture; } /** *

* The vCPU architecture. The default value is X86_64. Valid values are X86_64 and * ARM64. *

* *

* This parameter must be set to X86_64 for Windows containers. *

*
* * @return The vCPU architecture. The default value is X86_64. Valid values are X86_64 and * ARM64.

*

* This parameter must be set to X86_64 for Windows containers. *

*/ public String getCpuArchitecture() { return this.cpuArchitecture; } /** *

* The vCPU architecture. The default value is X86_64. Valid values are X86_64 and * ARM64. *

* *

* This parameter must be set to X86_64 for Windows containers. *

*
* * @param cpuArchitecture * The vCPU architecture. The default value is X86_64. Valid values are X86_64 and * ARM64.

*

* This parameter must be set to X86_64 for Windows containers. *

* @return Returns a reference to this object so that method calls can be chained together. */ public RuntimePlatform withCpuArchitecture(String cpuArchitecture) { setCpuArchitecture(cpuArchitecture); 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 (getOperatingSystemFamily() != null) sb.append("OperatingSystemFamily: ").append(getOperatingSystemFamily()).append(","); if (getCpuArchitecture() != null) sb.append("CpuArchitecture: ").append(getCpuArchitecture()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RuntimePlatform == false) return false; RuntimePlatform other = (RuntimePlatform) obj; if (other.getOperatingSystemFamily() == null ^ this.getOperatingSystemFamily() == null) return false; if (other.getOperatingSystemFamily() != null && other.getOperatingSystemFamily().equals(this.getOperatingSystemFamily()) == false) return false; if (other.getCpuArchitecture() == null ^ this.getCpuArchitecture() == null) return false; if (other.getCpuArchitecture() != null && other.getCpuArchitecture().equals(this.getCpuArchitecture()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOperatingSystemFamily() == null) ? 0 : getOperatingSystemFamily().hashCode()); hashCode = prime * hashCode + ((getCpuArchitecture() == null) ? 0 : getCpuArchitecture().hashCode()); return hashCode; } @Override public RuntimePlatform clone() { try { return (RuntimePlatform) 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.RuntimePlatformMarshaller.getInstance().marshall(this, protocolMarshaller); } }