Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1StorageStatusReport
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1StorageStatusReport
- 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
Status data for storage. * This field is telemetry information and this will change over time as the device is utilized. * Data for this field is controlled via policy: ReportDeviceStorageStatus * Data Collection Frequency: Only at Upload * Default Data Reporting Frequency: 3 hours - Policy Controlled: Yes
- Cache: If the device is offline, the collected data is stored locally, and will be reported when the device is next online: No * Reported for affiliated users only: N/A * Granular permission needed: TELEMETRY_API_STORAGE_REPORT
Instance Attribute Summary collapse
-
#disk ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DiskInfo>
Output only.
-
#report_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1StorageStatusReport
constructor
A new instance of GoogleChromeManagementV1StorageStatusReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1StorageStatusReport
Returns a new instance of GoogleChromeManagementV1StorageStatusReport.
2995 2996 2997 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2995 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disk ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DiskInfo>
Output only. Reports on disk.
Corresponds to the JSON property disk
2988 2989 2990 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2988 def disk @disk end |
#report_time ⇒ String
Output only. Timestamp of when the sample was collected on device
Corresponds to the JSON property reportTime
2993 2994 2995 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2993 def report_time @report_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3000 3001 3002 3003 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3000 def update!(**args) @disk = args[:disk] if args.key?(:disk) @report_time = args[:report_time] if args.key?(:report_time) end |