Package com.google.appengine.v1
Interface BasicScalingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BasicScaling
,BasicScaling.Builder
public interface BasicScalingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Duration
getIdleTimeout()
Duration of time after the last request that an instance must wait before the instance is shut down.com.google.protobuf.DurationOrBuilder
getIdleTimeoutOrBuilder()
Duration of time after the last request that an instance must wait before the instance is shut down.int
getMaxInstances()
Maximum number of instances to create for this version.boolean
hasIdleTimeout()
Duration of time after the last request that an instance must wait before the instance is shut down.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasIdleTimeout
boolean hasIdleTimeout()
Duration of time after the last request that an instance must wait before the instance is shut down.
.google.protobuf.Duration idle_timeout = 1;
- Returns:
- Whether the idleTimeout field is set.
-
getIdleTimeout
com.google.protobuf.Duration getIdleTimeout()
Duration of time after the last request that an instance must wait before the instance is shut down.
.google.protobuf.Duration idle_timeout = 1;
- Returns:
- The idleTimeout.
-
getIdleTimeoutOrBuilder
com.google.protobuf.DurationOrBuilder getIdleTimeoutOrBuilder()
Duration of time after the last request that an instance must wait before the instance is shut down.
.google.protobuf.Duration idle_timeout = 1;
-
getMaxInstances
int getMaxInstances()
Maximum number of instances to create for this version.
int32 max_instances = 2;
- Returns:
- The maxInstances.
-
-