INPUT_OBJECT

CreateScheduledReportInput

link GraphQL Schema definition

  • input CreateScheduledReportInput {
  • # ID of the report for which a schedule needs to be created.
  • reportId: Int!
  • # Title of the report.
  • title: String!
  • # Time of the day for daily report delivery.
  • dailyTime: LocalTime
  • # Time of the day for weekly report delivery on the configured weekdays.
  • weeklyTime: LocalTime
  • # Date of the month for monthly report delivery.
  • monthlyDate: Int
  • # Time of the day for monthly report delivery on the configured monthly date.
  • monthlyTime: LocalTime
  • # List of Rubrik user IDs that are the intended recipients of the scheduled
  • # report.
  • rubrikRecipientUserIds: [String!]!
  • # List of email addresses of non-Rubrik user recipients of the scheduled report.
  • nonRubrikRecipientEmails: [String!]!
  • updateCreator: Boolean
  • # List of weekdays for weekly schedule of reports.
  • weeklyDays: [WeekDay!]
  • # List of attachment types for report emails.
  • attachmentTypes: [ReportAttachmentType!]
  • }

link Require by