You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: Optional[StrictStr] =Field(default=None, description="Name of the object (e.g., a file system or snapshot).")
33
33
available_files: Optional[conlist(FileInfo)] =Field(default=None, description="All of the available files ready for download.")
34
34
end_time: Optional[conint(strict=True, ge=0)] =Field(default=None, description="When the time window ends (in milliseconds since epoch). start_time and end_time determine the number of hours for which the logs are prepared for. At most 6 hours of logs can be prepared in one request. start_time and end_time are truncated to hour boundaries.")
35
-
hardware_components: Optional[conlist(FixedReference)] =Field(default=None, description="All of the hardware components for which logs are being processed.")
35
+
hardware_components: Optional[conlist(Reference)] =Field(default=None, description="All of the hardware components for which logs are being processed.")
36
36
last_request_time: Optional[conint(strict=True, ge=0)] =Field(default=None, description="The last time log preparation was requested (in milliseconds since epoch).")
37
37
processing: Optional[StrictBool] =Field(default=None, description="Returns a value of `true` if the logs are being prepared.")
38
38
progress: Optional[Union[StrictFloat, StrictInt]] =Field(default=None, description="A representation of log preparation progress. Ranges from 0 to 1.0.")
0 commit comments