Package com.google.cloud.iot.v1
Interface ListDeviceRegistriesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDeviceRegistriesResponse
,ListDeviceRegistriesResponse.Builder
public interface ListDeviceRegistriesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeviceRegistry
getDeviceRegistries(int index)
The registries that matched the query.int
getDeviceRegistriesCount()
The registries that matched the query.List<DeviceRegistry>
getDeviceRegistriesList()
The registries that matched the query.DeviceRegistryOrBuilder
getDeviceRegistriesOrBuilder(int index)
The registries that matched the query.List<? extends DeviceRegistryOrBuilder>
getDeviceRegistriesOrBuilderList()
The registries that matched the query.String
getNextPageToken()
If not empty, indicates that there may be more registries that match the request; this value should be passed in a new `ListDeviceRegistriesRequest`.com.google.protobuf.ByteString
getNextPageTokenBytes()
If not empty, indicates that there may be more registries that match the request; this value should be passed in a new `ListDeviceRegistriesRequest`.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDeviceRegistriesList
List<DeviceRegistry> getDeviceRegistriesList()
The registries that matched the query.
repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;
-
getDeviceRegistries
DeviceRegistry getDeviceRegistries(int index)
The registries that matched the query.
repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;
-
getDeviceRegistriesCount
int getDeviceRegistriesCount()
The registries that matched the query.
repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;
-
getDeviceRegistriesOrBuilderList
List<? extends DeviceRegistryOrBuilder> getDeviceRegistriesOrBuilderList()
The registries that matched the query.
repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;
-
getDeviceRegistriesOrBuilder
DeviceRegistryOrBuilder getDeviceRegistriesOrBuilder(int index)
The registries that matched the query.
repeated .google.cloud.iot.v1.DeviceRegistry device_registries = 1;
-
getNextPageToken
String getNextPageToken()
If not empty, indicates that there may be more registries that match the request; this value should be passed in a new `ListDeviceRegistriesRequest`.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If not empty, indicates that there may be more registries that match the request; this value should be passed in a new `ListDeviceRegistriesRequest`.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-