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.
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.
2509 2510 2511 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2509 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
2482 2483 2484 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2482 def customer @customer end |
#name ⇒ String
Resource name of the user.
Corresponds to the JSON property name
2487 2488 2489 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2487 def name @name end |
#org_unit_id ⇒ String
Organization unit of the user.
Corresponds to the JSON property orgUnitId
2492 2493 2494 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2492 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
2497 2498 2499 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2497 def user_device @user_device end |
#user_email ⇒ String
Email address of the user.
Corresponds to the JSON property userEmail
2502 2503 2504 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2502 def user_email @user_email end |
#user_id ⇒ String
Directory ID of the user.
Corresponds to the JSON property userId
2507 2508 2509 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2507 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2514 2515 2516 2517 2518 2519 2520 2521 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2514 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 |