/*
 * 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/dataflow/v1beta3/templates.proto

package com.google.dataflow.v1beta3;

public interface LaunchTemplateRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.dataflow.v1beta3.LaunchTemplateRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * <pre>
   * Required. The ID of the Cloud Platform project that the job belongs to.
   * </pre>
   *
   * <code>string project_id = 1;</code>
   *
   * @return The projectId.
   */
  java.lang.String getProjectId();
  /**
   *
   *
   * <pre>
   * Required. The ID of the Cloud Platform project that the job belongs to.
   * </pre>
   *
   * <code>string project_id = 1;</code>
   *
   * @return The bytes for projectId.
   */
  com.google.protobuf.ByteString getProjectIdBytes();

  /**
   *
   *
   * <pre>
   * If true, the request is validated but not actually executed.
   * Defaults to false.
   * </pre>
   *
   * <code>bool validate_only = 2;</code>
   *
   * @return The validateOnly.
   */
  boolean getValidateOnly();

  /**
   *
   *
   * <pre>
   * A Cloud Storage path to the template from which to create
   * the job.
   * Must be valid Cloud Storage URL, beginning with 'gs://'.
   * </pre>
   *
   * <code>string gcs_path = 3;</code>
   *
   * @return Whether the gcsPath field is set.
   */
  boolean hasGcsPath();
  /**
   *
   *
   * <pre>
   * A Cloud Storage path to the template from which to create
   * the job.
   * Must be valid Cloud Storage URL, beginning with 'gs://'.
   * </pre>
   *
   * <code>string gcs_path = 3;</code>
   *
   * @return The gcsPath.
   */
  java.lang.String getGcsPath();
  /**
   *
   *
   * <pre>
   * A Cloud Storage path to the template from which to create
   * the job.
   * Must be valid Cloud Storage URL, beginning with 'gs://'.
   * </pre>
   *
   * <code>string gcs_path = 3;</code>
   *
   * @return The bytes for gcsPath.
   */
  com.google.protobuf.ByteString getGcsPathBytes();

  /**
   *
   *
   * <pre>
   * Params for launching a dynamic template.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.DynamicTemplateLaunchParams dynamic_template = 6;</code>
   *
   * @return Whether the dynamicTemplate field is set.
   */
  boolean hasDynamicTemplate();
  /**
   *
   *
   * <pre>
   * Params for launching a dynamic template.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.DynamicTemplateLaunchParams dynamic_template = 6;</code>
   *
   * @return The dynamicTemplate.
   */
  com.google.dataflow.v1beta3.DynamicTemplateLaunchParams getDynamicTemplate();
  /**
   *
   *
   * <pre>
   * Params for launching a dynamic template.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.DynamicTemplateLaunchParams dynamic_template = 6;</code>
   */
  com.google.dataflow.v1beta3.DynamicTemplateLaunchParamsOrBuilder getDynamicTemplateOrBuilder();

  /**
   *
   *
   * <pre>
   * The parameters of the template to launch. This should be part of the
   * body of the POST request.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.LaunchTemplateParameters launch_parameters = 4;</code>
   *
   * @return Whether the launchParameters field is set.
   */
  boolean hasLaunchParameters();
  /**
   *
   *
   * <pre>
   * The parameters of the template to launch. This should be part of the
   * body of the POST request.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.LaunchTemplateParameters launch_parameters = 4;</code>
   *
   * @return The launchParameters.
   */
  com.google.dataflow.v1beta3.LaunchTemplateParameters getLaunchParameters();
  /**
   *
   *
   * <pre>
   * The parameters of the template to launch. This should be part of the
   * body of the POST request.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.LaunchTemplateParameters launch_parameters = 4;</code>
   */
  com.google.dataflow.v1beta3.LaunchTemplateParametersOrBuilder getLaunchParametersOrBuilder();

  /**
   *
   *
   * <pre>
   * The [regional endpoint]
   * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to
   * which to direct the request.
   * </pre>
   *
   * <code>string location = 5;</code>
   *
   * @return The location.
   */
  java.lang.String getLocation();
  /**
   *
   *
   * <pre>
   * The [regional endpoint]
   * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to
   * which to direct the request.
   * </pre>
   *
   * <code>string location = 5;</code>
   *
   * @return The bytes for location.
   */
  com.google.protobuf.ByteString getLocationBytes();

  public com.google.dataflow.v1beta3.LaunchTemplateRequest.TemplateCase getTemplateCase();
}
