Package com.google.cloud.iot.v1
Interface BindDeviceToGatewayRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BindDeviceToGatewayRequest,BindDeviceToGatewayRequest.Builder
public interface BindDeviceToGatewayRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDeviceId()Required.com.google.protobuf.ByteStringgetDeviceIdBytes()Required.StringgetGatewayId()Required.com.google.protobuf.ByteStringgetGatewayIdBytes()Required.StringgetParent()Required.com.google.protobuf.ByteStringgetParentBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The name of the registry. For example, `projects/example-project/locations/us-central1/registries/my-registry`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The name of the registry. For example, `projects/example-project/locations/us-central1/registries/my-registry`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for parent.
-
getGatewayId
String getGatewayId()
Required. The value of `gateway_id` can be either the device numeric ID or the user-defined device identifier.
string gateway_id = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The gatewayId.
-
getGatewayIdBytes
com.google.protobuf.ByteString getGatewayIdBytes()
Required. The value of `gateway_id` can be either the device numeric ID or the user-defined device identifier.
string gateway_id = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for gatewayId.
-
getDeviceId
String getDeviceId()
Required. The device to associate with the specified gateway. The value of `device_id` can be either the device numeric ID or the user-defined device identifier.
string device_id = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The deviceId.
-
getDeviceIdBytes
com.google.protobuf.ByteString getDeviceIdBytes()
Required. The device to associate with the specified gateway. The value of `device_id` can be either the device numeric ID or the user-defined device identifier.
string device_id = 3 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for deviceId.
-
-