/* * 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 a container instance host device. *
** This object isn't applicable to jobs that are running on Fargate resources and shouldn't be provided. *
** The path for the device on the host container instance. *
*/ private String hostPath; /** *
* The path inside the container that's used to expose the host device. By default, the hostPath
value
* is used.
*
* The explicit permissions to provide to the container for the device. By default, the container has permissions
* for read
, write
, and mknod
for the device.
*
* The path for the device on the host container instance. *
* * @param hostPath * The path for the device on the host container instance. */ public void setHostPath(String hostPath) { this.hostPath = hostPath; } /** ** The path for the device on the host container instance. *
* * @return The path for the device on the host container instance. */ public String getHostPath() { return this.hostPath; } /** ** The path for the device on the host container instance. *
* * @param hostPath * The path for the device on the host container instance. * @return Returns a reference to this object so that method calls can be chained together. */ public Device withHostPath(String hostPath) { setHostPath(hostPath); return this; } /** *
* The path inside the container that's used to expose the host device. By default, the hostPath
value
* is used.
*
hostPath
* value is used.
*/
public void setContainerPath(String containerPath) {
this.containerPath = containerPath;
}
/**
*
* The path inside the container that's used to expose the host device. By default, the hostPath
value
* is used.
*
hostPath
value is used.
*/
public String getContainerPath() {
return this.containerPath;
}
/**
*
* The path inside the container that's used to expose the host device. By default, the hostPath
value
* is used.
*
hostPath
* value is used.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Device withContainerPath(String containerPath) {
setContainerPath(containerPath);
return this;
}
/**
*
* The explicit permissions to provide to the container for the device. By default, the container has permissions
* for read
, write
, and mknod
for the device.
*
read
, write
, and mknod
for the device.
* @see DeviceCgroupPermission
*/
public java.util.List
* The explicit permissions to provide to the container for the device. By default, the container has permissions
* for read
, write
, and mknod
for the device.
*
read
, write
, and mknod
for the device.
* @see DeviceCgroupPermission
*/
public void setPermissions(java.util.Collection
* The explicit permissions to provide to the container for the device. By default, the container has permissions
* for read
, write
, and mknod
for the device.
*
* NOTE: This method appends the values to the existing list (if any). Use * {@link #setPermissions(java.util.Collection)} or {@link #withPermissions(java.util.Collection)} if you want to * override the existing values. *
* * @param permissions * The explicit permissions to provide to the container for the device. By default, the container has * permissions forread
, write
, and mknod
for the device.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DeviceCgroupPermission
*/
public Device withPermissions(String... permissions) {
if (this.permissions == null) {
setPermissions(new java.util.ArrayList
* The explicit permissions to provide to the container for the device. By default, the container has permissions
* for read
, write
, and mknod
for the device.
*
read
, write
, and mknod
for the device.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DeviceCgroupPermission
*/
public Device withPermissions(java.util.Collection
* The explicit permissions to provide to the container for the device. By default, the container has permissions
* for read
, write
, and mknod
for the device.
*
read
, write
, and mknod
for the device.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DeviceCgroupPermission
*/
public Device withPermissions(DeviceCgroupPermission... permissions) {
java.util.ArrayList