• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/dataproc/v1/workflow_templates.proto
18 
19 package com.google.cloud.dataproc.v1;
20 
21 public interface WorkflowGraphOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.dataproc.v1.WorkflowGraph)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Output only. The workflow nodes.
31    * </pre>
32    *
33    * <code>
34    * repeated .google.cloud.dataproc.v1.WorkflowNode nodes = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
35    * </code>
36    */
getNodesList()37   java.util.List<com.google.cloud.dataproc.v1.WorkflowNode> getNodesList();
38   /**
39    *
40    *
41    * <pre>
42    * Output only. The workflow nodes.
43    * </pre>
44    *
45    * <code>
46    * repeated .google.cloud.dataproc.v1.WorkflowNode nodes = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
47    * </code>
48    */
getNodes(int index)49   com.google.cloud.dataproc.v1.WorkflowNode getNodes(int index);
50   /**
51    *
52    *
53    * <pre>
54    * Output only. The workflow nodes.
55    * </pre>
56    *
57    * <code>
58    * repeated .google.cloud.dataproc.v1.WorkflowNode nodes = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
59    * </code>
60    */
getNodesCount()61   int getNodesCount();
62   /**
63    *
64    *
65    * <pre>
66    * Output only. The workflow nodes.
67    * </pre>
68    *
69    * <code>
70    * repeated .google.cloud.dataproc.v1.WorkflowNode nodes = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
71    * </code>
72    */
73   java.util.List<? extends com.google.cloud.dataproc.v1.WorkflowNodeOrBuilder>
getNodesOrBuilderList()74       getNodesOrBuilderList();
75   /**
76    *
77    *
78    * <pre>
79    * Output only. The workflow nodes.
80    * </pre>
81    *
82    * <code>
83    * repeated .google.cloud.dataproc.v1.WorkflowNode nodes = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
84    * </code>
85    */
getNodesOrBuilder(int index)86   com.google.cloud.dataproc.v1.WorkflowNodeOrBuilder getNodesOrBuilder(int index);
87 }
88