Class: Google::Apis::AndroidenterpriseV1::NewDeviceEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::NewDeviceEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/androidenterprise_v1/classes.rb,
lib/google/apis/androidenterprise_v1/representations.rb,
lib/google/apis/androidenterprise_v1/representations.rb
Overview
An event generated when a new device is ready to be managed.
Instance Attribute Summary collapse
-
#device_id ⇒ String
The Android ID of the device.
-
#dpc_package_name ⇒ String
Policy app on the device.
-
#management_type ⇒ String
Identifies the extent to which the device is controlled by an Android EMM in various deployment configurations.
-
#user_id ⇒ String
The ID of the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NewDeviceEvent
constructor
A new instance of NewDeviceEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NewDeviceEvent
Returns a new instance of NewDeviceEvent.
1639 1640 1641 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 1639 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_id ⇒ String
The Android ID of the device. This field will always be present.
Corresponds to the JSON property deviceId
1619 1620 1621 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 1619 def device_id @device_id end |
#dpc_package_name ⇒ String
Policy app on the device.
Corresponds to the JSON property dpcPackageName
1624 1625 1626 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 1624 def dpc_package_name @dpc_package_name end |
#management_type ⇒ String
Identifies the extent to which the device is controlled by an Android EMM in
various deployment configurations. Possible values include: - "managedDevice",
a device where the DPC is set as device owner, - "managedProfile", a device
where the DPC is set as profile owner.
Corresponds to the JSON property managementType
1632 1633 1634 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 1632 def management_type @management_type end |
#user_id ⇒ String
The ID of the user. This field will always be present.
Corresponds to the JSON property userId
1637 1638 1639 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 1637 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1644 1645 1646 1647 1648 1649 |
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 1644 def update!(**args) @device_id = args[:device_id] if args.key?(:device_id) @dpc_package_name = args[:dpc_package_name] if args.key?(:dpc_package_name) @management_type = args[:management_type] if args.key?(:management_type) @user_id = args[:user_id] if args.key?(:user_id) end |