/*
 * 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 AvailableUpdatesOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.vmmigration.v1.AvailableUpdates)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * The newest deployable version of the appliance.
   * The current appliance can't be updated into this version, and the owner
   * must manually deploy this OVA to a new appliance.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ApplianceVersion new_deployable_appliance = 1;</code>
   *
   * @return Whether the newDeployableAppliance field is set.
   */
  boolean hasNewDeployableAppliance();
  /**
   *
   *
   * <pre>
   * The newest deployable version of the appliance.
   * The current appliance can't be updated into this version, and the owner
   * must manually deploy this OVA to a new appliance.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ApplianceVersion new_deployable_appliance = 1;</code>
   *
   * @return The newDeployableAppliance.
   */
  com.google.cloud.vmmigration.v1.ApplianceVersion getNewDeployableAppliance();
  /**
   *
   *
   * <pre>
   * The newest deployable version of the appliance.
   * The current appliance can't be updated into this version, and the owner
   * must manually deploy this OVA to a new appliance.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ApplianceVersion new_deployable_appliance = 1;</code>
   */
  com.google.cloud.vmmigration.v1.ApplianceVersionOrBuilder getNewDeployableApplianceOrBuilder();

  /**
   *
   *
   * <pre>
   * The latest version for in place update.
   * The current appliance can be updated to this version using the API or m4c
   * CLI.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ApplianceVersion in_place_update = 2;</code>
   *
   * @return Whether the inPlaceUpdate field is set.
   */
  boolean hasInPlaceUpdate();
  /**
   *
   *
   * <pre>
   * The latest version for in place update.
   * The current appliance can be updated to this version using the API or m4c
   * CLI.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ApplianceVersion in_place_update = 2;</code>
   *
   * @return The inPlaceUpdate.
   */
  com.google.cloud.vmmigration.v1.ApplianceVersion getInPlaceUpdate();
  /**
   *
   *
   * <pre>
   * The latest version for in place update.
   * The current appliance can be updated to this version using the API or m4c
   * CLI.
   * </pre>
   *
   * <code>.google.cloud.vmmigration.v1.ApplianceVersion in_place_update = 2;</code>
   */
  com.google.cloud.vmmigration.v1.ApplianceVersionOrBuilder getInPlaceUpdateOrBuilder();
}
