Class: Google::Apis::AndroiddeviceprovisioningV1::DeviceReference
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::DeviceReference
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androiddeviceprovisioning_v1/classes.rb,
lib/google/apis/androiddeviceprovisioning_v1/representations.rb,
lib/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
-
#device_id ⇒ Fixnum
The ID of the device.
-
#device_identifier ⇒ Google::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier
Encapsulates hardware and product IDs to identify a manufactured device.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeviceReference
constructor
A new instance of DeviceReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeviceReference
Returns a new instance of DeviceReference.
756 757 758 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 756 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_id ⇒ Fixnum
The ID of the device.
Corresponds to the JSON property deviceId
747 748 749 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 747 def device_id @device_id end |
#device_identifier ⇒ Google::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
754 755 756 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 754 def device_identifier @device_identifier end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
761 762 763 764 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 761 def update!(**args) @device_id = args[:device_id] if args.key?(:device_id) @device_identifier = args[:device_identifier] if args.key?(:device_identifier) end |