INPUT_OBJECT

SapHanaRecoverableRangeFilterInput

Description

Input for filtering SAP HANA recoverable ranges.

link GraphQL Schema definition

  • input SapHanaRecoverableRangeFilterInput {
  • # Filter by cluster UUID.
  • clusterUuid: [UUID!]
  • # Filter by SAP HANA database ID.
  • databaseId: [String!]
  • # Filter the SAP HANA recoverable range ending after the specified time.
  • endAfterTime: DateTime
  • # Filter the SAP HANA recoverable range starting after the specified time.
  • fromTime: DateTime
  • # Filter by archival status of the SAP HANA recoverable range. By default archived
  • # recoverable ranges are excluded.
  • isArchived: Boolean
  • # Filter the SAP HANA recoverable range starting before the specified time.
  • startBeforeTime: DateTime
  • # Filter the SAP HANA recoverable range ending before the specified time.
  • toTime: DateTime
  • }