Package com.google.cloud.iot.v1
Interface UnbindDeviceFromGatewayRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UnbindDeviceFromGatewayRequest
,UnbindDeviceFromGatewayRequest.Builder
public interface UnbindDeviceFromGatewayRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDeviceId()
Required.com.google.protobuf.ByteString
getDeviceIdBytes()
Required.String
getGatewayId()
Required.com.google.protobuf.ByteString
getGatewayIdBytes()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
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 disassociate from 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 disassociate from 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.
-
-