OBJECT

CassandraColumnFamily

Description

Cassandra Column Family information.

link GraphQL Schema definition

  • type CassandraColumnFamily implements HierarchyObject, PolarisHierarchyObject, CassandraSourceDescendantType, CassandraKeyspaceDescendantType, CassandraKeyspacePhysicalChildType {
  • # UUID of the Mosaic cluster.
  • clusterUuid: UUID!
  • # Number of backups for the column family.
  • backupCount: Int
  • # Date that effective SLA was assigned / inherited.
  • protectionDate: String!
  • # Backup Params of the source.
  • backupParams: CassandraBackupParams
  • # Is the source object a relic.
  • isRelic: Boolean!
  • # The authorized operations on the object.
  • authorizedOperations: [PolarisObjectAuthorizedOperationsEnum!]!
  • # The source object ID.
  • id: UUID!
  • # Parent source connection.
  • source: CassandraSource!
  • # Parent keyspace connection.
  • keyspace: CassandraKeyspace!
  • # Mosaic cluster information.
  • cluster: Cluster!
  • # The list of snapshots taken for this workload.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # filter: Filter mosaic snapshot connection.
  • # sortBy: Sort mosaic snapshots by field.
  • # sortOrder: Sorting order for the results.
  • snapshots(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • filter: MosaicSnapshotFilterInput,
  • sortBy: MosaicSnapshotSortBy,
  • sortOrder: SortOrder
  • ): MosaicSnapshotConnection!
  • # GroupBy connection for this workload's snapshots.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # timezoneOffset: Offset based on customer timezone.
  • # filter: Filter mosaic snapshot connection.
  • # groupBy: Group mosaic snapshots by field.
  • snapshotGroupBys(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • timezoneOffset: Float,
  • filter: MosaicSnapshotFilterInput,
  • groupBy: MosaicSnapshotGroupBy!
  • ): MosaicSnapshotGroupByTypeConnection
  • # The most recent snapshot of this workload.
  • newestSnapshot: MosaicSnapshot
  • # The oldest snapshot of this workload.
  • oldestSnapshot: MosaicSnapshot
  • # The name of the hierarchy object.
  • name: String!
  • # The type of this object.
  • objectType: HierarchyObjectTypeEnum!
  • # The SLA Domain assignment type for this object.
  • slaAssignment: SlaAssignmentTypeEnum!
  • # The effective SLA Domain of the hierarchy object.
  • effectiveSlaDomain: SlaDomain!
  • # The pause status of the effective SLA Domain of the hierarchy object.
  • slaPauseStatus: Boolean!
  • # The distribution of the snapshots of the hierarchy object.
  • snapshotDistribution: SnapshotDistribution!
  • # The effective retention of the SLA Domain of the hierarchy object.
  • effectiveRetentionSlaDomain: SlaDomain
  • # The SLA Domain configured for the hierarchy object.
  • configuredSlaDomain: SlaDomain!
  • # The path node of the effective SLA Domain source.
  • effectiveSlaSourceObject: PathNode
  • # A sequential list of this object's logical ancestors.
  • logicalPath: [PathNode!]!
  • # A sequential list of this object's physical ancestors.
  • physicalPath: [PathNode!]!
  • # The number of descendant workloads of this object.
  • numWorkloadDescendants: Int!
  • # The organizations to which this hierarchy object belongs.
  • allOrgs: [Org!]!
  • }