INPUT_OBJECT

ClusterFilterInput

Description

Filters for the cluster list.

link GraphQL Schema definition

  • input ClusterFilterInput {
  • # Cluster UUIDs.
  • id: [UUID!]
  • # Cluster names.
  • name: [String!]
  • # Cluster types.
  • type: [ClusterTypeEnum!]
  • # Object types of snappables protected by the cluster.
  • objectType: [ObjectTypeEnum!]
  • # Cluster registration time greater than.
  • registrationTime_gt: DateTime
  • # Cluster registration time less than.
  • registrationTime_lt: DateTime
  • # Returns clusters running software version equal to or greater than the specified
  • # version.
  • minSoftwareVersion: String
  • # Location of the Rubrik cluster.
  • clusterLocation: [String!]
  • # Exclude clusters that do not have any nodes connected.
  • excludeEmptyCluster: Boolean
  • # Type of Rubrik cluster.
  • productType: [ClusterProductEnum!]
  • # The mode in which the cluster is registered.
  • registeredMode: [ClusterRegistrationMode!]
  • # The licensed product type.
  • product: Product
  • # Filter for clusters belonging to the specified organizations.
  • orgId: [UUID!]
  • # Product type specific filters for the clusters.
  • productFilters: [ClusterFilterPerProductInput!]
  • # Exclude the Rubrik cluster UUIDs.
  • excludeId: [UUID!]
  • # System status of the Rubrik cluster.
  • systemStatus: [ClusterSystemStatus!]
  • # Connection status of the Rubrik cluster.
  • connectionState: [ClusterStatus!]
  • # Include Rubrik clusters which are disconnected or in fatal state.
  • isInFatalOrDisconnectedState: Boolean
  • }

link Require by