OBJECT

MongodbCollection

Description

Information about MongoDB Collection.

link GraphQL Schema definition

  • type MongodbCollection implements HierarchyObject, PolarisHierarchyObject, MongodbSourceDescendantType, MongodbDatabaseDescendantType, MongodbDatabasePhysicalChildType {
  • # UUID of the Mosaic cluster.
  • clusterUuid: UUID!
  • # Number of backups for the MongoDB collection.
  • backupCount: Int
  • # Backup parameters for the MongoDB collection.
  • backupParams: MongodbBackupParams
  • # Specifies whether MongoDB collection is relic.
  • isRelic: Boolean!
  • # The authorized operations on the object.
  • authorizedOperations: [PolarisObjectAuthorizedOperationsEnum!]!
  • # The MongoDB collection ID.
  • id: UUID!
  • # Parent source connection.
  • source: MongodbSource!
  • # Parent database connection.
  • database: MongodbDatabase!
  • # Mosaic cluster information.
  • cluster: Cluster!
  • # Paginated list of snapshots for Mongodb collection.
  • #
  • # 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!
  • # Group By paginated list for mongodb 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!]!
  • }