Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1PeripheralsReport
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1PeripheralsReport
- 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
Peripherals report.
Instance Attribute Summary collapse
-
#report_time ⇒ String
Output only.
-
#usb_peripheral_report ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1UsbPeripheralReport>
Reports of all usb connected devices.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1PeripheralsReport
constructor
A new instance of GoogleChromeManagementV1PeripheralsReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1PeripheralsReport
Returns a new instance of GoogleChromeManagementV1PeripheralsReport.
2028 2029 2030 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2028 def initialize(**args) update!(**args) end |
Instance Attribute Details
#report_time ⇒ String
Output only. Timestamp of when the report was collected.
Corresponds to the JSON property reportTime
2021 2022 2023 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2021 def report_time @report_time end |
#usb_peripheral_report ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1UsbPeripheralReport>
Reports of all usb connected devices.
Corresponds to the JSON property usbPeripheralReport
2026 2027 2028 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2026 def usb_peripheral_report @usb_peripheral_report end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2033 2034 2035 2036 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2033 def update!(**args) @report_time = args[:report_time] if args.key?(:report_time) @usb_peripheral_report = args[:usb_peripheral_report] if args.key?(:usb_peripheral_report) end |