Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo

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

Information about a device associated with telemetry data. * Granular Permission needed: TELEMETRY_API_DEVICE

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementV1TelemetryDeviceInfo

Returns a new instance of GoogleChromeManagementV1TelemetryDeviceInfo.



2484
2485
2486
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2484

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

Instance Attribute Details

#device_idString

Output only. The unique Directory API ID of the device. This value is the same as the Admin Console's Directory API ID in the ChromeOS Devices tab. Corresponds to the JSON property deviceId

Returns:

  • (String)


2477
2478
2479
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2477

def device_id
  @device_id
end

#org_unit_idString

Output only. Organization unit ID of the device. Corresponds to the JSON property orgUnitId

Returns:

  • (String)


2482
2483
2484
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2482

def org_unit_id
  @org_unit_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2489
2490
2491
2492
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2489

def update!(**args)
  @device_id = args[:device_id] if args.key?(:device_id)
  @org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
end