OBJECT

MongoSource

Description

Information about MongoDB Source.

link GraphQL Schema definition

  • type MongoSource implements HierarchyObject, CdmHierarchyObject {
  • # UUID of the CDM cluster.
  • clusterUuid: UUID!
  • # IP of the MongoDB source.
  • primaryClusterUuid: UUID!
  • # CDM ID of the MongoDB source.
  • cdmId: String!
  • # Specifies whether the MongoDB source is a relic in CDM.
  • isRelic: Boolean!
  • # Type of the MongoDB source.
  • sourceType: MongoSourceType!
  • # List of source nodes.
  • sourceNodes: [CdmMongoNode!]!
  • # Status of the MongoDB source.
  • status: MongoSourceStatus!
  • # MongoDB username.
  • username: String!
  • # SSL Options.
  • sslParams: CdmMongoSslParams
  • # Timestamp of the latest successful MongoDB source refresh.
  • lastRefreshTime: DateTime
  • # List of ignored secondary MongoDB source nodes.
  • ignoreSecondaryNodes: [CdmMongoNode!]
  • # Discovery status of the MongoDB source.
  • discoveryStatus: MongoDiscoveryStatus!
  • # List of descendants.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # sortBy: Sort hierarchy objects by hierarchy field.
  • # sortOrder: Sorting order for the results.
  • # typeFilter: Types of objects to include.
  • # filter: The hierarchy object filter.
  • # workloadHierarchy: Each enumeration value represents the
  • # hierarchy of a specific workload type for RBAC and SLA Domain assignments. The
  • # None value represents the hierarchy of all workload types.
  • descendantConnection(
  • first: Int,
  • after: String,
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • typeFilter: [HierarchyObjectTypeEnum!],
  • filter: [Filter!],
  • workloadHierarchy: WorkloadLevelHierarchy
  • ): MongoSourceDescendantTypeConnection!
  • # List of physical children.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # sortBy: Sort hierarchy objects by hierarchy field.
  • # sortOrder: Sorting order for the results.
  • # typeFilter: Types of objects to include.
  • # filter: The hierarchy object filter.
  • # workloadHierarchy: Each enumeration value represents the
  • # hierarchy of a specific workload type for RBAC and SLA Domain assignments. The
  • # None value represents the hierarchy of all workload types.
  • physicalChildConnection(
  • first: Int,
  • after: String,
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • typeFilter: [HierarchyObjectTypeEnum!],
  • filter: [Filter!],
  • workloadHierarchy: WorkloadLevelHierarchy
  • ): MongoSourcePhysicalChildTypeConnection!
  • # Information about CDM cluster for this MongoDB cluster.
  • cluster: Cluster!
  • # Count of active collections for this MongoDB source.
  • activeCollectionCount: Int!
  • # Count of protected collections for this MongoDB source.
  • protectedCollectionCount: Int!
  • # The list of data hosts associated with this MongoDB source.
  • #
  • # Arguments
  • # sortBy: Sort hierarchy objects by hierarchy field.
  • # sortOrder: Sorting order for the results.
  • # filter: The hierarchy object filter.
  • dataHosts(
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • filter: [Filter!]
  • ): PhysicalHostConnection!
  • # The FID of the hierarchy object.
  • id: UUID!
  • # 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!]!
  • # The source cluster of this object. Returned as a data location because there is
  • # no guarantee that Rubrik has knowledge about the source cluster.
  • primaryClusterLocation: DataLocation!
  • # SLA Domain assignment of the object during the process of being communicated
  • # over to Rubrik CDM.
  • pendingSla: SlaDomain
  • # Mapping from object ID to pending object deletion status.
  • pendingObjectDeletionStatus: PendingSnapshotsOfObjectDeletion
  • # Objects either replicated by this object or related to this object by
  • # replication.
  • replicatedObjects: [CdmHierarchyObject!]!
  • # Cross-account objects either replicated by this object or related to this object
  • # by replication.
  • crossAccountReplicatedObjectInfos: [CrossAccountReplicatedObjectInfo!]
  • # Latest user note information.
  • latestUserNote: LatestUserNote
  • # The number of objects either replicated by this object or related to this object
  • # by replication.
  • replicatedObjectCount: Int!
  • # The authorized operations on the object.
  • authorizedOperations: [Operation!]!
  • }