tenantStatusInformation resource type
Namespace: microsoft.graph.managedTenants
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents onboarding status information for a managed tenant.
Properties
Property | Type | Description |
---|---|---|
delegatedPrivilegeStatus | delegatedPrivilegeStatus | The status of the delegated admin privilege relationship between the managing entity and the managed tenant. Possible values are: none , delegatedAdminPrivileges , unknownFutureValue , granularDelegatedAdminPrivileges , delegatedAndGranularDelegetedAdminPrivileges . You must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: granularDelegatedAdminPrivileges , delegatedAndGranularDelegetedAdminPrivileges . Optional. Read-only. |
lastDelegatedPrivilegeRefreshDateTime | DateTimeOffset | The date and time the delegated admin privileges status was updated. Optional. Read-only. |
offboardedByUserId | String | The identifier for the account that offboarded the managed tenant. Optional. Read-only. |
offboardedDateTime | DateTimeOffset | The date and time when the managed tenant was offboarded. Optional. Read-only. |
onboardedByUserId | String | The identifier for the account that onboarded the managed tenant. Optional. Read-only. |
onboardedDateTime | DateTimeOffset | The date and time when the managed tenant was onboarded. Optional. Read-only. |
onboardingStatus | tenantOnboardingStatus | The onboarding status for the managed tenant.. Possible values are: ineligible , inProcess , active , inactive , unknownFutureValue . Optional. Read-only. |
tenantOnboardingEligibilityReason | tenantOnboardingEligibilityReason | Organization's onboarding eligibility reason in Microsoft 365 Lighthouse.. Possible values are: none , contractType , delegatedAdminPrivileges ,usersCount ,license and unknownFutureValue . Optional. Read-only. |
workloadStatuses | microsoft.graph.managedTenants.workloadStatus collection | The collection of workload statues for the managed tenant. Optional. Read-only. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.managedTenants.tenantStatusInformation",
"onboardingStatus": "String",
"onboardedDateTime": "String (timestamp)",
"onboardedByUserId": "String",
"offboardedDateTime": "String (timestamp)",
"offboardedByUserId": "String",
"delegatedPrivilegeStatus": "String",
"lastDelegatedPrivilegeRefreshDateTime": "String (timestamp)",
"workloadStatuses": [
{
"@odata.type": "microsoft.graph.managedTenants.workloadStatus"
}
]
}