/*
 * 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 GetTemplateRequestOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.dataflow.v1beta3.GetTemplateRequest)
    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>
   * Required. 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 = 2;</code>
   *
   * @return Whether the gcsPath field is set.
   */
  boolean hasGcsPath();
  /**
   *
   *
   * <pre>
   * Required. 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 = 2;</code>
   *
   * @return The gcsPath.
   */
  java.lang.String getGcsPath();
  /**
   *
   *
   * <pre>
   * Required. 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 = 2;</code>
   *
   * @return The bytes for gcsPath.
   */
  com.google.protobuf.ByteString getGcsPathBytes();

  /**
   *
   *
   * <pre>
   * The view to retrieve. Defaults to METADATA_ONLY.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.GetTemplateRequest.TemplateView view = 3;</code>
   *
   * @return The enum numeric value on the wire for view.
   */
  int getViewValue();
  /**
   *
   *
   * <pre>
   * The view to retrieve. Defaults to METADATA_ONLY.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.GetTemplateRequest.TemplateView view = 3;</code>
   *
   * @return The view.
   */
  com.google.dataflow.v1beta3.GetTemplateRequest.TemplateView getView();

  /**
   *
   *
   * <pre>
   * The [regional endpoint]
   * (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to
   * which to direct the request.
   * </pre>
   *
   * <code>string location = 4;</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 = 4;</code>
   *
   * @return The bytes for location.
   */
  com.google.protobuf.ByteString getLocationBytes();

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