Package com.google.cloud.vmmigration.v1
Interface SchedulePolicyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SchedulePolicy
,SchedulePolicy.Builder
public interface SchedulePolicyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Duration
getIdleDuration()
The idle duration between replication stages.com.google.protobuf.DurationOrBuilder
getIdleDurationOrBuilder()
The idle duration between replication stages.boolean
getSkipOsAdaptation()
A flag to indicate whether to skip OS adaptation during the replication sync.boolean
hasIdleDuration()
The idle duration between replication stages.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasIdleDuration
boolean hasIdleDuration()
The idle duration between replication stages.
.google.protobuf.Duration idle_duration = 1;
- Returns:
- Whether the idleDuration field is set.
-
getIdleDuration
com.google.protobuf.Duration getIdleDuration()
The idle duration between replication stages.
.google.protobuf.Duration idle_duration = 1;
- Returns:
- The idleDuration.
-
getIdleDurationOrBuilder
com.google.protobuf.DurationOrBuilder getIdleDurationOrBuilder()
The idle duration between replication stages.
.google.protobuf.Duration idle_duration = 1;
-
getSkipOsAdaptation
boolean getSkipOsAdaptation()
A flag to indicate whether to skip OS adaptation during the replication sync. OS adaptation is a process where the VM's operating system undergoes changes and adaptations to fully function on Compute Engine.
bool skip_os_adaptation = 2;
- Returns:
- The skipOsAdaptation.
-
-