Class: Google::Apis::CloudiotV1::BindDeviceToGatewayRequest

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 BindDeviceToGateway.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BindDeviceToGatewayRequest

Returns a new instance of BindDeviceToGatewayRequest.



42
43
44
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 42

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

Instance Attribute Details

#device_idString

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

Returns:

  • (String)


34
35
36
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 34

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)


40
41
42
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 40

def gateway_id
  @gateway_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



47
48
49
50
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 47

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