• 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/iot/v1/device_manager.proto
18 
19 package com.google.cloud.iot.v1;
20 
21 public interface ListDeviceRegistriesResponseOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.iot.v1.ListDeviceRegistriesResponse)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The registries that matched the query.
31    * </pre>
32    *
33    * <code>repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;</code>
34    */
getDeviceRegistriesList()35   java.util.List<com.google.cloud.iot.v1.DeviceRegistry> getDeviceRegistriesList();
36   /**
37    *
38    *
39    * <pre>
40    * The registries that matched the query.
41    * </pre>
42    *
43    * <code>repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;</code>
44    */
getDeviceRegistries(int index)45   com.google.cloud.iot.v1.DeviceRegistry getDeviceRegistries(int index);
46   /**
47    *
48    *
49    * <pre>
50    * The registries that matched the query.
51    * </pre>
52    *
53    * <code>repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;</code>
54    */
getDeviceRegistriesCount()55   int getDeviceRegistriesCount();
56   /**
57    *
58    *
59    * <pre>
60    * The registries that matched the query.
61    * </pre>
62    *
63    * <code>repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;</code>
64    */
65   java.util.List<? extends com.google.cloud.iot.v1.DeviceRegistryOrBuilder>
getDeviceRegistriesOrBuilderList()66       getDeviceRegistriesOrBuilderList();
67   /**
68    *
69    *
70    * <pre>
71    * The registries that matched the query.
72    * </pre>
73    *
74    * <code>repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;</code>
75    */
getDeviceRegistriesOrBuilder(int index)76   com.google.cloud.iot.v1.DeviceRegistryOrBuilder getDeviceRegistriesOrBuilder(int index);
77 
78   /**
79    *
80    *
81    * <pre>
82    * If not empty, indicates that there may be more registries that match the
83    * request; this value should be passed in a new
84    * `ListDeviceRegistriesRequest`.
85    * </pre>
86    *
87    * <code>string next_page_token = 2;</code>
88    *
89    * @return The nextPageToken.
90    */
getNextPageToken()91   java.lang.String getNextPageToken();
92   /**
93    *
94    *
95    * <pre>
96    * If not empty, indicates that there may be more registries that match the
97    * request; this value should be passed in a new
98    * `ListDeviceRegistriesRequest`.
99    * </pre>
100    *
101    * <code>string next_page_token = 2;</code>
102    *
103    * @return The bytes for nextPageToken.
104    */
getNextPageTokenBytes()105   com.google.protobuf.ByteString getNextPageTokenBytes();
106 }
107