Class: Google::Apis::AndroidenterpriseV1::NewDeviceEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidenterpriseV1::NewDeviceEvent
- 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
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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ NewDeviceEvent
Returns a new instance of NewDeviceEvent
1571 1572 1573 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1571 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
1550 1551 1552 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1550 def device_id @device_id end |
#dpc_package_name ⇒ String
Policy app on the device.
Corresponds to the JSON property dpcPackageName
1555 1556 1557 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1555 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
1564 1565 1566 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1564 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
1569 1570 1571 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1569 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1576 1577 1578 1579 1580 1581 |
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1576 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 |