Class: Google::Apis::AndroiddeviceprovisioningV1::Device
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::Device
- 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
An Android or Chrome OS device registered for zero-touch enrollment.
Instance Attribute Summary collapse
-
#claims ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::DeviceClaim>
Output only.
-
#configuration ⇒ String
Not available to resellers.
-
#device_id ⇒ Fixnum
Output only.
-
#device_identifier ⇒ Google::Apis::AndroiddeviceprovisioningV1::DeviceIdentifier
Encapsulates hardware and product IDs to identify a manufactured device.
-
#device_metadata ⇒ Google::Apis::AndroiddeviceprovisioningV1::DeviceMetadata
Metadata entries that can be attached to a
Device. -
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Device
constructor
A new instance of Device.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Device
Returns a new instance of Device.
549 550 551 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 549 def initialize(**args) update!(**args) end |
Instance Attribute Details
#claims ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::DeviceClaim>
Output only. The provisioning claims for a device. Devices claimed for zero-
touch enrollment have a claim with the type SECTION_TYPE_ZERO_TOUCH. Call
partners.devices.unclaim or partners.devices.unclaimAsync to remove the
device from zero-touch enrollment.
Corresponds to the JSON property claims
518 519 520 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 518 def claims @claims end |
#configuration ⇒ String
Not available to resellers.
Corresponds to the JSON property configuration
523 524 525 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 523 def configuration @configuration end |
#device_id ⇒ Fixnum
Output only. The ID of the device. Assigned by the server.
Corresponds to the JSON property deviceId
528 529 530 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 528 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
535 536 537 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 535 def device_identifier @device_identifier end |
#device_metadata ⇒ Google::Apis::AndroiddeviceprovisioningV1::DeviceMetadata
Metadata entries that can be attached to a Device. To learn more, read
Device metadata.
Corresponds to the JSON property deviceMetadata
541 542 543 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 541 def @device_metadata end |
#name ⇒ String
Output only. The API resource name in the format partners/[PARTNER_ID]/
devices/[DEVICE_ID]. Assigned by the server.
Corresponds to the JSON property name
547 548 549 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 547 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
554 555 556 557 558 559 560 561 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 554 def update!(**args) @claims = args[:claims] if args.key?(:claims) @configuration = args[:configuration] if args.key?(:configuration) @device_id = args[:device_id] if args.key?(:device_id) @device_identifier = args[:device_identifier] if args.key?(:device_identifier) @device_metadata = args[:device_metadata] if args.key?(:device_metadata) @name = args[:name] if args.key?(:name) end |