Class: Google::Apis::AndroidenterpriseV1::Device
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::Device
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb
Overview
A Devices resource represents a mobile device managed by the EMM and belonging to a specific enterprise user.
Instance Attribute Summary collapse
-
#android_id ⇒ String
The Google Play Services Android ID for the device encoded as a lowercase hex string.
-
#management_type ⇒ String
Identifies the extent to which the device is controlled by a managed Google Play EMM in various deployment configurations.
-
#policy ⇒ Google::Apis::AndroidenterpriseV1::Policy
The device policy for a given managed device.
-
#report ⇒ Google::Apis::AndroidenterpriseV1::DeviceReport
Device report updated with the latest app states for managed apps on the device.
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.
666 667 668 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 666 def initialize(**args) update!(**args) end |
Instance Attribute Details
#android_id ⇒ String
The Google Play Services Android ID for the device encoded as a lowercase hex
string. For example, "123456789abcdef0".
Corresponds to the JSON property androidId
640 641 642 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 640 def android_id @android_id end |
#management_type ⇒ String
Identifies the extent to which the device is controlled by a managed Google Play EMM in various deployment configurations. Possible values include: - " managedDevice", a device that has the EMM's device policy controller (DPC) as the device owner. - "managedProfile", a device that has a profile managed by the DPC (DPC is profile owner) in addition to a separate, personal profile that is unavailable to the DPC. - "containerApp", no longer used (deprecated).
- "unmanagedProfile", a device that has been allowed (by the domain's admin,
using the Admin Console to enable the privilege) to use managed Google Play,
but the profile is itself not owned by a DPC.
Corresponds to the JSON property
managementType
653 654 655 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 653 def management_type @management_type end |
#policy ⇒ Google::Apis::AndroidenterpriseV1::Policy
The device policy for a given managed device.
Corresponds to the JSON property policy
658 659 660 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 658 def policy @policy end |
#report ⇒ Google::Apis::AndroidenterpriseV1::DeviceReport
Device report updated with the latest app states for managed apps on the
device.
Corresponds to the JSON property report
664 665 666 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 664 def report @report end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
671 672 673 674 675 676 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 671 def update!(**args) @android_id = args[:android_id] if args.key?(:android_id) @management_type = args[:management_type] if args.key?(:management_type) @policy = args[:policy] if args.key?(:policy) @report = args[:report] if args.key?(:report) end |