OBJECT

Org

Description

Details of an org.

link GraphQL Schema definition

  • type Org {
  • # ID of the organization.
  • id: String!
  • # Name of the organization.
  • name: String!
  • # Description of the organization.
  • description: String!
  • # Full name of the organization.
  • fullName: String!
  • # Specifies whether to use the SSO/LDAP configuration of the global organization
  • # or to use configuration specific to this organization.
  • authDomainConfig: TenantAuthDomainConfig!
  • # Specifies whether MFA is enforced for all users in the organization.
  • shouldEnforceMfaForAll: Boolean!
  • # Specifies whether organization is forced to use Rubrik Envoy to connect their
  • # hosts.
  • isEnvoyRequired: Boolean!
  • # Allowed clusters for the organization.
  • allowedClusters: [String!]!
  • # Health of the tenant networks associated with the organization.
  • tenantNetworkHealth: TenantNetworkHealth!
  • # Specifies whether this tenant organization has configured its own identity
  • # providers.
  • hasOwnIdpConfigured: Boolean!
  • # Specifies whether service accounts are not enabled for this organization.
  • isServiceAccountDisabled: Boolean!
  • # Organization admin role.
  • orgAdminRole: Role!
  • # Existing users in the organization.
  • users: [ExistingUser!]!
  • # Permissions given to the organization.
  • permissions: [Permission!]!
  • # Self-service permissions assigned to the organization.
  • selfServicePermissions: [SelfServicePermission!]!
  • # SSO groups authorized for the organization.
  • ssoGroups: [SsoGroup!]!
  • # Physical storage used by the organization.
  • physicalStorageUsed: Long!
  • # All URLs associated with the organization.
  • allUrls: [String!]!
  • # All cluster capacity quotas enforced on the organization.
  • allClusterCapacityQuotas: [ClusterCapacityQuota!]!
  • # Specifies cross-account capabilities enabled for this organization.
  • crossAccountCapabilities: [CrossAccountCapability!]!
  • }

link Require by