Class: Google::Apis::CloudiotV1beta1::DeviceConfigData

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

Overview

The data for a device configuration. Only binary data is currently supported.

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) ⇒ DeviceConfigData

Returns a new instance of DeviceConfigData



390
391
392
# File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 390

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

Instance Attribute Details

#binary_dataString

The configuration sent to the device, as bytes. Corresponds to the JSON property binaryData NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


388
389
390
# File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 388

def binary_data
  @binary_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



395
396
397
# File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 395

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