Class TmpfsOptions
- java.lang.Object
-
- com.spotify.docker.client.messages.mount.TmpfsOptions
-
- Direct Known Subclasses:
AutoValue_TmpfsOptions
public abstract class TmpfsOptions extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TmpfsOptions.Builder
-
Constructor Summary
Constructors Constructor Description TmpfsOptions()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static TmpfsOptions.Builder
builder()
(package private) static TmpfsOptions
create(java.lang.Long sizeBytes, java.lang.Integer mode)
abstract java.lang.Integer
mode()
The mode and permission bits.abstract java.lang.Long
sizeBytes()
-
-
-
Method Detail
-
sizeBytes
@Nullable public abstract java.lang.Long sizeBytes()
-
mode
@Nullable public abstract java.lang.Integer mode()
The mode and permission bits.
-
builder
public static TmpfsOptions.Builder builder()
-
create
static TmpfsOptions create(java.lang.Long sizeBytes, java.lang.Integer mode)
-
-