Class ContainerListResponse
-
- All Implemented Interfaces:
public final class ContainerListResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classContainerListResponse.BuilderA builder for ContainerListResponse.
public final classContainerListResponse.ExpiresAfterThe container will expire after this time period. The anchor is the reference point for the expiration. The minutes is the number of minutes after the anchor before the container expires.
public final classContainerListResponse.MemoryLimitThe memory limit configured for the container.
-
Method Summary
Modifier and Type Method Description final Stringid()Unique identifier for the container. final LongcreatedAt()Unix timestamp (in seconds) when the container was created. final Stringname()Name of the container. final Stringobject_()The type of this object. final Stringstatus()Status of the container (e.g., active, deleted). final Optional<ContainerListResponse.ExpiresAfter>expiresAfter()The container will expire after this time period. final Optional<Long>lastActiveAt()Unix timestamp (in seconds) when the container was last active. final Optional<ContainerListResponse.MemoryLimit>memoryLimit()The memory limit configured for the container. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<Long>_createdAt()Returns the raw JSON value of createdAt. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_object_()Returns the raw JSON value of object_. final JsonField<String>_status()Returns the raw JSON value of status. final JsonField<ContainerListResponse.ExpiresAfter>_expiresAfter()Returns the raw JSON value of expiresAfter. final JsonField<Long>_lastActiveAt()Returns the raw JSON value of lastActiveAt. final JsonField<ContainerListResponse.MemoryLimit>_memoryLimit()Returns the raw JSON value of memoryLimit. final Map<String, JsonValue>_additionalProperties()final ContainerListResponse.BuildertoBuilder()final ContainerListResponsevalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ContainerListResponse.Builderbuilder()Returns a mutable builder for constructing an instance of ContainerListResponse. -
-
Method Detail
-
expiresAfter
final Optional<ContainerListResponse.ExpiresAfter> expiresAfter()
The container will expire after this time period. The anchor is the reference point for the expiration. The minutes is the number of minutes after the anchor before the container expires.
-
lastActiveAt
final Optional<Long> lastActiveAt()
Unix timestamp (in seconds) when the container was last active.
-
memoryLimit
final Optional<ContainerListResponse.MemoryLimit> memoryLimit()
The memory limit configured for the container.
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_createdAt
final JsonField<Long> _createdAt()
Returns the raw JSON value of createdAt.
Unlike createdAt, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_object_
final JsonField<String> _object_()
Returns the raw JSON value of object_.
Unlike object_, this method doesn't throw if the JSON field has an unexpected type.
-
_status
final JsonField<String> _status()
Returns the raw JSON value of status.
Unlike status, this method doesn't throw if the JSON field has an unexpected type.
-
_expiresAfter
final JsonField<ContainerListResponse.ExpiresAfter> _expiresAfter()
Returns the raw JSON value of expiresAfter.
Unlike expiresAfter, this method doesn't throw if the JSON field has an unexpected type.
-
_lastActiveAt
final JsonField<Long> _lastActiveAt()
Returns the raw JSON value of lastActiveAt.
Unlike lastActiveAt, this method doesn't throw if the JSON field has an unexpected type.
-
_memoryLimit
final JsonField<ContainerListResponse.MemoryLimit> _memoryLimit()
Returns the raw JSON value of memoryLimit.
Unlike memoryLimit, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ContainerListResponse.Builder toBuilder()
-
validate
final ContainerListResponse validate()
-
builder
final static ContainerListResponse.Builder builder()
Returns a mutable builder for constructing an instance of ContainerListResponse.
The following fields are required:
.id() .createdAt() .name() .object_() .status()
-
-
-
-