/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/vmmigration/v1/vmmigration.proto

package com.google.cloud.vmmigration.v1;

public interface CycleStepOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.vmmigration.v1.CycleStep)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Initializing replication step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.InitializingReplicationStep initializing_replication = 3;
   * </code>
   *
   * @return Whether the initializingReplication field is set.
   */
  boolean hasInitializingReplication();
  /**
   *
   *
   * <pre>
   * Initializing replication step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.InitializingReplicationStep initializing_replication = 3;
   * </code>
   *
   * @return The initializingReplication.
   */
  com.google.cloud.vmmigration.v1.InitializingReplicationStep getInitializingReplication();
  /**
   *
   *
   * <pre>
   * Initializing replication step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.InitializingReplicationStep initializing_replication = 3;
   * </code>
   */
  com.google.cloud.vmmigration.v1.InitializingReplicationStepOrBuilder
      getInitializingReplicationOrBuilder();

  /**
   *
   *
   * <pre>
   * Replicating step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ReplicatingStep replicating = 4;</code>
   *
   * @return Whether the replicating field is set.
   */
  boolean hasReplicating();
  /**
   *
   *
   * <pre>
   * Replicating step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ReplicatingStep replicating = 4;</code>
   *
   * @return The replicating.
   */
  com.google.cloud.vmmigration.v1.ReplicatingStep getReplicating();
  /**
   *
   *
   * <pre>
   * Replicating step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ReplicatingStep replicating = 4;</code>
   */
  com.google.cloud.vmmigration.v1.ReplicatingStepOrBuilder getReplicatingOrBuilder();

  /**
   *
   *
   * <pre>
   * Post processing step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.PostProcessingStep post_processing = 5;</code>
   *
   * @return Whether the postProcessing field is set.
   */
  boolean hasPostProcessing();
  /**
   *
   *
   * <pre>
   * Post processing step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.PostProcessingStep post_processing = 5;</code>
   *
   * @return The postProcessing.
   */
  com.google.cloud.vmmigration.v1.PostProcessingStep getPostProcessing();
  /**
   *
   *
   * <pre>
   * Post processing step.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.PostProcessingStep post_processing = 5;</code>
   */
  com.google.cloud.vmmigration.v1.PostProcessingStepOrBuilder getPostProcessingOrBuilder();

  /**
   *
   *
   * <pre>
   * The time the cycle step has started.
   * </pre>
   *
   * <code>.google.protobuf.Timestamp start_time = 1;</code>
   *
   * @return Whether the startTime field is set.
   */
  boolean hasStartTime();
  /**
   *
   *
   * <pre>
   * The time the cycle step has started.
   * </pre>
   *
   * <code>.google.protobuf.Timestamp start_time = 1;</code>
   *
   * @return The startTime.
   */
  com.google.protobuf.Timestamp getStartTime();
  /**
   *
   *
   * <pre>
   * The time the cycle step has started.
   * </pre>
   *
   * <code>.google.protobuf.Timestamp start_time = 1;</code>
   */
  com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder();

  /**
   *
   *
   * <pre>
   * The time the cycle step has ended.
   * </pre>
   *
   * <code>.google.protobuf.Timestamp end_time = 2;</code>
   *
   * @return Whether the endTime field is set.
   */
  boolean hasEndTime();
  /**
   *
   *
   * <pre>
   * The time the cycle step has ended.
   * </pre>
   *
   * <code>.google.protobuf.Timestamp end_time = 2;</code>
   *
   * @return The endTime.
   */
  com.google.protobuf.Timestamp getEndTime();
  /**
   *
   *
   * <pre>
   * The time the cycle step has ended.
   * </pre>
   *
   * <code>.google.protobuf.Timestamp end_time = 2;</code>
   */
  com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder();

  public com.google.cloud.vmmigration.v1.CycleStep.StepCase getStepCase();
}
