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

package com.google.dataflow.v1beta3;

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

  /**
   *
   *
   * <pre>
   * Type of transform.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.KindType kind = 1;</code>
   *
   * @return The enum numeric value on the wire for kind.
   */
  int getKindValue();
  /**
   *
   *
   * <pre>
   * Type of transform.
   * </pre>
   *
   * <code>.google.dataflow.v1beta3.KindType kind = 1;</code>
   *
   * @return The kind.
   */
  com.google.dataflow.v1beta3.KindType getKind();

  /**
   *
   *
   * <pre>
   * SDK generated id of this transform instance.
   * </pre>
   *
   * <code>string id = 2;</code>
   *
   * @return The id.
   */
  java.lang.String getId();
  /**
   *
   *
   * <pre>
   * SDK generated id of this transform instance.
   * </pre>
   *
   * <code>string id = 2;</code>
   *
   * @return The bytes for id.
   */
  com.google.protobuf.ByteString getIdBytes();

  /**
   *
   *
   * <pre>
   * User provided name for this transform instance.
   * </pre>
   *
   * <code>string name = 3;</code>
   *
   * @return The name.
   */
  java.lang.String getName();
  /**
   *
   *
   * <pre>
   * User provided name for this transform instance.
   * </pre>
   *
   * <code>string name = 3;</code>
   *
   * @return The bytes for name.
   */
  com.google.protobuf.ByteString getNameBytes();

  /**
   *
   *
   * <pre>
   * Transform-specific display data.
   * </pre>
   *
   * <code>repeated .google.dataflow.v1beta3.DisplayData display_data = 4;</code>
   */
  java.util.List<com.google.dataflow.v1beta3.DisplayData> getDisplayDataList();
  /**
   *
   *
   * <pre>
   * Transform-specific display data.
   * </pre>
   *
   * <code>repeated .google.dataflow.v1beta3.DisplayData display_data = 4;</code>
   */
  com.google.dataflow.v1beta3.DisplayData getDisplayData(int index);
  /**
   *
   *
   * <pre>
   * Transform-specific display data.
   * </pre>
   *
   * <code>repeated .google.dataflow.v1beta3.DisplayData display_data = 4;</code>
   */
  int getDisplayDataCount();
  /**
   *
   *
   * <pre>
   * Transform-specific display data.
   * </pre>
   *
   * <code>repeated .google.dataflow.v1beta3.DisplayData display_data = 4;</code>
   */
  java.util.List<? extends com.google.dataflow.v1beta3.DisplayDataOrBuilder>
      getDisplayDataOrBuilderList();
  /**
   *
   *
   * <pre>
   * Transform-specific display data.
   * </pre>
   *
   * <code>repeated .google.dataflow.v1beta3.DisplayData display_data = 4;</code>
   */
  com.google.dataflow.v1beta3.DisplayDataOrBuilder getDisplayDataOrBuilder(int index);

  /**
   *
   *
   * <pre>
   * User  names for all collection outputs to this transform.
   * </pre>
   *
   * <code>repeated string output_collection_name = 5;</code>
   *
   * @return A list containing the outputCollectionName.
   */
  java.util.List<java.lang.String> getOutputCollectionNameList();
  /**
   *
   *
   * <pre>
   * User  names for all collection outputs to this transform.
   * </pre>
   *
   * <code>repeated string output_collection_name = 5;</code>
   *
   * @return The count of outputCollectionName.
   */
  int getOutputCollectionNameCount();
  /**
   *
   *
   * <pre>
   * User  names for all collection outputs to this transform.
   * </pre>
   *
   * <code>repeated string output_collection_name = 5;</code>
   *
   * @param index The index of the element to return.
   * @return The outputCollectionName at the given index.
   */
  java.lang.String getOutputCollectionName(int index);
  /**
   *
   *
   * <pre>
   * User  names for all collection outputs to this transform.
   * </pre>
   *
   * <code>repeated string output_collection_name = 5;</code>
   *
   * @param index The index of the value to return.
   * @return The bytes of the outputCollectionName at the given index.
   */
  com.google.protobuf.ByteString getOutputCollectionNameBytes(int index);

  /**
   *
   *
   * <pre>
   * User names for all collection inputs to this transform.
   * </pre>
   *
   * <code>repeated string input_collection_name = 6;</code>
   *
   * @return A list containing the inputCollectionName.
   */
  java.util.List<java.lang.String> getInputCollectionNameList();
  /**
   *
   *
   * <pre>
   * User names for all collection inputs to this transform.
   * </pre>
   *
   * <code>repeated string input_collection_name = 6;</code>
   *
   * @return The count of inputCollectionName.
   */
  int getInputCollectionNameCount();
  /**
   *
   *
   * <pre>
   * User names for all collection inputs to this transform.
   * </pre>
   *
   * <code>repeated string input_collection_name = 6;</code>
   *
   * @param index The index of the element to return.
   * @return The inputCollectionName at the given index.
   */
  java.lang.String getInputCollectionName(int index);
  /**
   *
   *
   * <pre>
   * User names for all collection inputs to this transform.
   * </pre>
   *
   * <code>repeated string input_collection_name = 6;</code>
   *
   * @param index The index of the value to return.
   * @return The bytes of the inputCollectionName at the given index.
   */
  com.google.protobuf.ByteString getInputCollectionNameBytes(int index);
}
