Class: Google::Apis::CloudiotV1::UnbindDeviceFromGatewayRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudiot_v1/classes.rb,
generated/google/apis/cloudiot_v1/representations.rb,
generated/google/apis/cloudiot_v1/representations.rb

Overview

Request for UnbindDeviceFromGateway.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UnbindDeviceFromGatewayRequest

Returns a new instance of UnbindDeviceFromGatewayRequest.



1271
1272
1273
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 1271

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#device_idString

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. Corresponds to the JSON property deviceId

Returns:

  • (String)


1263
1264
1265
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 1263

def device_id
  @device_id
end

#gateway_idString

Required. The value of gateway_id can be either the device numeric ID or the user-defined device identifier. Corresponds to the JSON property gatewayId

Returns:

  • (String)


1269
1270
1271
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 1269

def gateway_id
  @gateway_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1276
1277
1278
1279
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 1276

def update!(**args)
  @device_id = args[:device_id] if args.key?(:device_id)
  @gateway_id = args[:gateway_id] if args.key?(:gateway_id)
end