Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUser
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUser
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
Telemetry data collected from a managed user. * Granular permission needed: TELEMETRY_API_USER
Instance Attribute Summary collapse
-
#customer ⇒ String
G Suite Customer whose enterprise enrolled the device.
-
#name ⇒ String
Resource name of the user.
-
#org_unit_id ⇒ String
Organization unit of the user.
-
#user_device ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserDevice>
Telemetry data collected from a managed user and device.
-
#user_email ⇒ String
Email address of the user.
-
#user_id ⇒ String
Directory ID of the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryUser
constructor
A new instance of GoogleChromeManagementV1TelemetryUser.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryUser
Returns a new instance of GoogleChromeManagementV1TelemetryUser.
3733 3734 3735 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3733 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer ⇒ String
G Suite Customer whose enterprise enrolled the device.
Corresponds to the JSON property customer
3706 3707 3708 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3706 def customer @customer end |
#name ⇒ String
Resource name of the user.
Corresponds to the JSON property name
3711 3712 3713 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3711 def name @name end |
#org_unit_id ⇒ String
Organization unit of the user.
Corresponds to the JSON property orgUnitId
3716 3717 3718 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3716 def org_unit_id @org_unit_id end |
#user_device ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserDevice>
Telemetry data collected from a managed user and device.
Corresponds to the JSON property userDevice
3721 3722 3723 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3721 def user_device @user_device end |
#user_email ⇒ String
Email address of the user.
Corresponds to the JSON property userEmail
3726 3727 3728 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3726 def user_email @user_email end |
#user_id ⇒ String
Directory ID of the user.
Corresponds to the JSON property userId
3731 3732 3733 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3731 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3738 3739 3740 3741 3742 3743 3744 3745 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3738 def update!(**args) @customer = args[:customer] if args.key?(:customer) @name = args[:name] if args.key?(:name) @org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id) @user_device = args[:user_device] if args.key?(:user_device) @user_email = args[:user_email] if args.key?(:user_email) @user_id = args[:user_id] if args.key?(:user_id) end |