cloudPcReviewStatus resource type

Namespace: microsoft.graph

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 details about the review status of a Cloud PC.

Properties

Property Type Description
azureStorageAccountId String The resource ID of the Azure Storage account in which the Cloud PC snapshot is being saved.
azureStorageAccountName String The name of the Azure Storage account in which the Cloud PC snapshot is being saved.
azureStorageContainerName String The name of the container in an Azure Storage account in which the Cloud PC snapshot is being saved.
inReview Boolean True if the Cloud PC is set to in review by the administrator.
restorePointDateTime DateTimeOffset The specific date and time of the Cloud PC snapshot that was taken and saved automatically, when the Cloud PC is set to in review. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.
reviewStartDateTime DateTimeOffset The specific date and time when the Cloud PC was set to in review. The timestamp is shown in ISO 8601 format and Coordinated Universal Time (UTC). For example, midnight UTC on Jan 1, 2014 appears as 2014-01-01T00:00:00Z.
subscriptionId String The ID of the Azure subscription in which the Cloud PC snapshot is being saved, in GUID format.
subscriptionName String The name of the Azure subscription in which the Cloud PC snapshot is being saved.
userAccessLevel cloudPcUserAccessLevel The access level of the end user on the Cloud PC. Possible values are: unrestricted, restricted.
accessTier cloudPcBlobAccessTier The blob access tier of the Azure Storage account in which the Cloud PC snapshot is saved with. Possible values are hot, cool, cold, and archive, default value is hot.

cloudPcUserAccessLevel values

Member Value Description
unrestricted 0 No restriction. Users can access the Cloud PC.
restricted 1 Users aren't allowed to access the Cloud PC.
unknownFutureValue 999 Evolvable enumeration sentinel value. Don't use.

cloudPcBlobAccessTier values

Member Description
hot Indicates an online tier optimized for storing data that is accessed or modified frequently.
cool Indicates an online tier optimized for storing data that is infrequently accessed or modified.
cold Indicates an online tier optimized for storing data that is rarely accessed or modified, but still requires fast retrieval.
archive Indicates an offline access tier optimized for storing data that is rarely accessed, and that has flexible latency requirements that can be up to a few hours.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.cloudPcReviewStatus",
  "azureStorageAccountId": "String",
  "azureStorageAccountName": "String",
  "azureStorageContainerName": "String",
  "inReview": "Boolean",
  "restorePointDateTime": "String (timestamp)",
  "reviewStartDateTime": "String (timestamp)",
  "subscriptionId": "String",
  "subscriptionName": "String",
  "userAccessLevel": "String",
  "accessTier": "String"
}