• 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/vmwareengine/v1/vmwareengine.proto
18 
19 package com.google.cloud.vmwareengine.v1;
20 
21 public interface ListNetworkPoliciesResponseOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.vmwareengine.v1.ListNetworkPoliciesResponse)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * A list of network policies.
31    * </pre>
32    *
33    * <code>repeated .google.cloud.vmwareengine.v1.NetworkPolicy network_policies = 1;</code>
34    */
getNetworkPoliciesList()35   java.util.List<com.google.cloud.vmwareengine.v1.NetworkPolicy> getNetworkPoliciesList();
36   /**
37    *
38    *
39    * <pre>
40    * A list of network policies.
41    * </pre>
42    *
43    * <code>repeated .google.cloud.vmwareengine.v1.NetworkPolicy network_policies = 1;</code>
44    */
getNetworkPolicies(int index)45   com.google.cloud.vmwareengine.v1.NetworkPolicy getNetworkPolicies(int index);
46   /**
47    *
48    *
49    * <pre>
50    * A list of network policies.
51    * </pre>
52    *
53    * <code>repeated .google.cloud.vmwareengine.v1.NetworkPolicy network_policies = 1;</code>
54    */
getNetworkPoliciesCount()55   int getNetworkPoliciesCount();
56   /**
57    *
58    *
59    * <pre>
60    * A list of network policies.
61    * </pre>
62    *
63    * <code>repeated .google.cloud.vmwareengine.v1.NetworkPolicy network_policies = 1;</code>
64    */
65   java.util.List<? extends com.google.cloud.vmwareengine.v1.NetworkPolicyOrBuilder>
getNetworkPoliciesOrBuilderList()66       getNetworkPoliciesOrBuilderList();
67   /**
68    *
69    *
70    * <pre>
71    * A list of network policies.
72    * </pre>
73    *
74    * <code>repeated .google.cloud.vmwareengine.v1.NetworkPolicy network_policies = 1;</code>
75    */
getNetworkPoliciesOrBuilder(int index)76   com.google.cloud.vmwareengine.v1.NetworkPolicyOrBuilder getNetworkPoliciesOrBuilder(int index);
77 
78   /**
79    *
80    *
81    * <pre>
82    * A token, which can be send as `page_token` to retrieve the next page.
83    * If this field is omitted, there are no subsequent pages.
84    * </pre>
85    *
86    * <code>string next_page_token = 2;</code>
87    *
88    * @return The nextPageToken.
89    */
getNextPageToken()90   java.lang.String getNextPageToken();
91   /**
92    *
93    *
94    * <pre>
95    * A token, which can be send as `page_token` to retrieve the next page.
96    * If this field is omitted, there are no subsequent pages.
97    * </pre>
98    *
99    * <code>string next_page_token = 2;</code>
100    *
101    * @return The bytes for nextPageToken.
102    */
getNextPageTokenBytes()103   com.google.protobuf.ByteString getNextPageTokenBytes();
104 
105   /**
106    *
107    *
108    * <pre>
109    * Locations that could not be reached when making an aggregated query using
110    * wildcards.
111    * </pre>
112    *
113    * <code>repeated string unreachable = 3;</code>
114    *
115    * @return A list containing the unreachable.
116    */
getUnreachableList()117   java.util.List<java.lang.String> getUnreachableList();
118   /**
119    *
120    *
121    * <pre>
122    * Locations that could not be reached when making an aggregated query using
123    * wildcards.
124    * </pre>
125    *
126    * <code>repeated string unreachable = 3;</code>
127    *
128    * @return The count of unreachable.
129    */
getUnreachableCount()130   int getUnreachableCount();
131   /**
132    *
133    *
134    * <pre>
135    * Locations that could not be reached when making an aggregated query using
136    * wildcards.
137    * </pre>
138    *
139    * <code>repeated string unreachable = 3;</code>
140    *
141    * @param index The index of the element to return.
142    * @return The unreachable at the given index.
143    */
getUnreachable(int index)144   java.lang.String getUnreachable(int index);
145   /**
146    *
147    *
148    * <pre>
149    * Locations that could not be reached when making an aggregated query using
150    * wildcards.
151    * </pre>
152    *
153    * <code>repeated string unreachable = 3;</code>
154    *
155    * @param index The index of the value to return.
156    * @return The bytes of the unreachable at the given index.
157    */
getUnreachableBytes(int index)158   com.google.protobuf.ByteString getUnreachableBytes(int index);
159 }
160