/*
 * 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/clouddms/v1/clouddms.proto

package com.google.cloud.clouddms.v1;

public interface GenerateSshScriptRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.clouddms.v1.GenerateSshScriptRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Name of the migration job resource to generate the SSH script.
   * </pre>
   *
   * <code>string migration_job = 1 [(.google.api.resource_reference) = { ... }</code>
   *
   * @return The migrationJob.
   */
  java.lang.String getMigrationJob();
  /**
   *
   *
   * <pre>
   * Name of the migration job resource to generate the SSH script.
   * </pre>
   *
   * <code>string migration_job = 1 [(.google.api.resource_reference) = { ... }</code>
   *
   * @return The bytes for migrationJob.
   */
  com.google.protobuf.ByteString getMigrationJobBytes();

  /**
   *
   *
   * <pre>
   * Required. Bastion VM Instance name to use or to create.
   * </pre>
   *
   * <code>string vm = 2 [(.google.api.field_behavior) = REQUIRED];</code>
   *
   * @return The vm.
   */
  java.lang.String getVm();
  /**
   *
   *
   * <pre>
   * Required. Bastion VM Instance name to use or to create.
   * </pre>
   *
   * <code>string vm = 2 [(.google.api.field_behavior) = REQUIRED];</code>
   *
   * @return The bytes for vm.
   */
  com.google.protobuf.ByteString getVmBytes();

  /**
   *
   *
   * <pre>
   * The VM creation configuration
   * </pre>
   *
   * <code>.google.cloud.clouddms.v1.VmCreationConfig vm_creation_config = 100;</code>
   *
   * @return Whether the vmCreationConfig field is set.
   */
  boolean hasVmCreationConfig();
  /**
   *
   *
   * <pre>
   * The VM creation configuration
   * </pre>
   *
   * <code>.google.cloud.clouddms.v1.VmCreationConfig vm_creation_config = 100;</code>
   *
   * @return The vmCreationConfig.
   */
  com.google.cloud.clouddms.v1.VmCreationConfig getVmCreationConfig();
  /**
   *
   *
   * <pre>
   * The VM creation configuration
   * </pre>
   *
   * <code>.google.cloud.clouddms.v1.VmCreationConfig vm_creation_config = 100;</code>
   */
  com.google.cloud.clouddms.v1.VmCreationConfigOrBuilder getVmCreationConfigOrBuilder();

  /**
   *
   *
   * <pre>
   * The VM selection configuration
   * </pre>
   *
   * <code>.google.cloud.clouddms.v1.VmSelectionConfig vm_selection_config = 101;</code>
   *
   * @return Whether the vmSelectionConfig field is set.
   */
  boolean hasVmSelectionConfig();
  /**
   *
   *
   * <pre>
   * The VM selection configuration
   * </pre>
   *
   * <code>.google.cloud.clouddms.v1.VmSelectionConfig vm_selection_config = 101;</code>
   *
   * @return The vmSelectionConfig.
   */
  com.google.cloud.clouddms.v1.VmSelectionConfig getVmSelectionConfig();
  /**
   *
   *
   * <pre>
   * The VM selection configuration
   * </pre>
   *
   * <code>.google.cloud.clouddms.v1.VmSelectionConfig vm_selection_config = 101;</code>
   */
  com.google.cloud.clouddms.v1.VmSelectionConfigOrBuilder getVmSelectionConfigOrBuilder();

  /**
   *
   *
   * <pre>
   * The port that will be open on the bastion host
   * </pre>
   *
   * <code>int32 vm_port = 3;</code>
   *
   * @return The vmPort.
   */
  int getVmPort();

  public com.google.cloud.clouddms.v1.GenerateSshScriptRequest.VmConfigCase getVmConfigCase();
}
