Class: Google::Apis::AndroiddeviceprovisioningV1::DeviceReference

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

Overview

A DeviceReference is an API abstraction that lets you supply a device argument to a method using one of the following identifier types:

  • A numeric API resource ID.
  • Real-world hardware IDs, such as IMEI number, belonging to the manufactured device. Methods that operate on devices take a DeviceReference as a parameter type because it's more flexible for the caller. To learn more about device identifiers, read Identifiers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DeviceReference

Returns a new instance of DeviceReference.



669
670
671
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 669

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

Instance Attribute Details

#device_idFixnum

The ID of the device. Corresponds to the JSON property deviceId

Returns:

  • (Fixnum)


660
661
662
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 660

def device_id
  @device_id
end

#device_identifierGoogle::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier

Encapsulates hardware and product IDs to identify a manufactured device. To understand requirements on identifier sets, read Identifiers. Corresponds to the JSON property deviceIdentifier



667
668
669
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 667

def device_identifier
  @device_identifier
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



674
675
676
677
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 674

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