OBJECT
ScheduledReport
Description
Metadata for rendering a scheduled report.
link GraphQL Schema definition
- type ScheduledReport {
- # ID of the schedule of the custom report.
- Long! :
- # Title of the report.
- String! :
- # Rubrik user that created the report. If the user does not exist anymore, this
- # stores a dummy inactive user.
- User! :
- # Rubrik user that last edited this schedule. If the user does not exist anymore,
- # this stores a dummy inactive user.
- User! :
- # The custom report ID corresponding to this scheduled report.
- Int! :
- # Creation time of the schedule.
- DateTime! :
- # Last update time of the schedule.
- DateTime! :
- # Time of the day for daily report delivery if the schedule has daily
- # configuration.
- LocalTime :
- # Time of the day for weekly report delivery if the schedule has weekly
- # configuration.
- LocalTime :
- # Date of the month for report delivery if the schedule has monthly configuration.
- Int :
- # Time of the day for monthly report delivery if the schedule has monthly
- # configuration.
- LocalTime :
- # List of attachment types for report delivery.
- ReportAttachmentType!]! : [
- # List of Rubrik users that are the intended recipients of the scheduled report.
- # Inactive users are not part of this list.
- User!]! : [
- # List of email addresses of (non-Rubrik user) recipients of the scheduled report.
- String!]! : [
- # Time zone of the schedule time in IANA format.
- String! :
- # Weekdays for report delivery if weekly schedule is enabled.
- WeekDay!] : [
- }
link Require by
- CreateScheduledReportReplyRepresents the response for creating a scheduled report.
- Query
- ScheduledReportConnectionPaginated list of ScheduledReport objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- ScheduledReportEdgeWrapper around the ScheduledReport object. This wrapper is used for pagination.
- UpdateScheduledReportReplyRepresents the response for editing a scheduled report.