Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUser

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryUser

Returns a new instance of GoogleChromeManagementV1TelemetryUser.



3637
3638
3639
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3637

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#customerString

G Suite Customer whose enterprise enrolled the device. Corresponds to the JSON property customer

Returns:

  • (String)


3610
3611
3612
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3610

def customer
  @customer
end

#nameString

Resource name of the user. Corresponds to the JSON property name

Returns:

  • (String)


3615
3616
3617
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3615

def name
  @name
end

#org_unit_idString

Organization unit of the user. Corresponds to the JSON property orgUnitId

Returns:

  • (String)


3620
3621
3622
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3620

def org_unit_id
  @org_unit_id
end

#user_deviceArray<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserDevice>

Telemetry data collected from a managed user and device. Corresponds to the JSON property userDevice



3625
3626
3627
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3625

def user_device
  @user_device
end

#user_emailString

Email address of the user. Corresponds to the JSON property userEmail

Returns:

  • (String)


3630
3631
3632
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3630

def user_email
  @user_email
end

#user_idString

Directory ID of the user. Corresponds to the JSON property userId

Returns:

  • (String)


3635
3636
3637
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3635

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3642
3643
3644
3645
3646
3647
3648
3649
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3642

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