Class AutoValue_ContainerConfig_Healthcheck
- java.lang.Object
-
- com.spotify.docker.client.messages.ContainerConfig.Healthcheck
-
- com.spotify.docker.client.messages.AutoValue_ContainerConfig_Healthcheck
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_ContainerConfig_Healthcheck extends ContainerConfig.Healthcheck
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
AutoValue_ContainerConfig_Healthcheck.Builder
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Long
interval
private java.lang.Integer
retries
private java.lang.Long
startPeriod
private com.google.common.collect.ImmutableList<java.lang.String>
test
private java.lang.Long
timeout
-
Constructor Summary
Constructors Modifier Constructor Description private
AutoValue_ContainerConfig_Healthcheck(com.google.common.collect.ImmutableList<java.lang.String> test, java.lang.Long interval, java.lang.Long timeout, java.lang.Integer retries, java.lang.Long startPeriod)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
java.lang.Long
interval()
In nanoseconds.java.lang.Integer
retries()
java.lang.Long
startPeriod()
In nanoseconds.com.google.common.collect.ImmutableList<java.lang.String>
test()
java.lang.Long
timeout()
In nanoseconds.java.lang.String
toString()
-
Methods inherited from class com.spotify.docker.client.messages.ContainerConfig.Healthcheck
builder, create, create
-
-
-
-
Constructor Detail
-
AutoValue_ContainerConfig_Healthcheck
private AutoValue_ContainerConfig_Healthcheck(@Nullable com.google.common.collect.ImmutableList<java.lang.String> test, @Nullable java.lang.Long interval, @Nullable java.lang.Long timeout, @Nullable java.lang.Integer retries, @Nullable java.lang.Long startPeriod)
-
-
Method Detail
-
test
@Nullable public com.google.common.collect.ImmutableList<java.lang.String> test()
- Specified by:
test
in classContainerConfig.Healthcheck
-
interval
@Nullable public java.lang.Long interval()
Description copied from class:ContainerConfig.Healthcheck
In nanoseconds.- Specified by:
interval
in classContainerConfig.Healthcheck
-
timeout
@Nullable public java.lang.Long timeout()
Description copied from class:ContainerConfig.Healthcheck
In nanoseconds.- Specified by:
timeout
in classContainerConfig.Healthcheck
-
retries
@Nullable public java.lang.Integer retries()
- Specified by:
retries
in classContainerConfig.Healthcheck
-
startPeriod
@Nullable public java.lang.Long startPeriod()
Description copied from class:ContainerConfig.Healthcheck
In nanoseconds.- Specified by:
startPeriod
in classContainerConfig.Healthcheck
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-