Skip to content

Commit fed370e

Browse files
authored
Merge pull request #25797 from microsoftgraph/binbwu/updateStorageAccountTier
[CloudPC] Add property accessTier to resource type cloudPcForensicStorageAccount
2 parents 1dc9ad4 + 8667a3d commit fed370e

File tree

2 files changed

+75
-29
lines changed

2 files changed

+75
-29
lines changed

api-reference/beta/resources/cloudpcforensicstorageaccount.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "cloudPcForensicStorageAccount resource type"
3-
description: "Represents a Cloud PC storage account for forensic analysis."
3+
description: "Represents information about a Cloud PC storage account for forensic analysis."
44
author: "xhan2077"
55
ms.localizationpriority: medium
66
ms.subservice: "cloud-pc"
@@ -19,9 +19,20 @@ Represents the storage account information that can be used to store a snapshot
1919
## Properties
2020
|Property|Type|Description|
2121
|:---|:---|:---|
22-
|storageAccountId|String|The ID of the storage account.|
23-
|storageAccountName|String|The name of the storage account.|
22+
|accessTier|[cloudPcStorageAccountAccessTier](#cloudpcstorageaccountaccesstier-values)| The access tier of the storage account. Possible values are `hot`, `cool`, `premium`, `cold`, and `unknownFutureValue`. Default value is `hot`. Read-only.|
2423
|immutableStorage|Boolean|Indicates whether immutability policies are configured for the storage account. When `true`, the storage account only accepts `hot` as the snapshot access tier. When `false`, the storage account accepts all valid access tiers. Read-Only.|
24+
|storageAccountId|String|The ID of the storage account. Read-only.|
25+
|storageAccountName|String|The name of the storage account. Read-only.|
26+
27+
### cloudPcStorageAccountAccessTier values
28+
29+
|Member|Description|
30+
|:---|:---|
31+
|hot|The storage account access tier is "hot." This tier is optimized for storing data that is accessed or modified frequently.|
32+
|cool|The storage account access tier is "cool." This tier is optimized for storing data that is infrequently accessed or modified.|
33+
|premium|The storage account access tier is "premium." This tier is optimized with low and consistent latency.|
34+
|cold|The storage account access tier is "cold." This tier is optimized for storing data that is rarely accessed or modified, but still requires fast retrieval.|
35+
|unknownFutureValue|Evolvable enumeration sentinel value. Don't use.|
2536

2637
## Relationships
2738
None.
@@ -41,6 +52,7 @@ The following JSON representation shows the resource type.
4152
"@odata.type": "#microsoft.graph.cloudPcForensicStorageAccount",
4253
"storageAccountId": "String",
4354
"storageAccountName": "String",
44-
"immutableStorage": "Boolean"
55+
"immutableStorage": "Boolean",
56+
"accessTier": "String"
4557
}
4658
```

changelog/Microsoft.CloudManagedDesktop.json

Lines changed: 59 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,64 @@
11
{
22
"changelog": [
3-
{
4-
"ChangeList": [
5-
{
6-
"Id": "d2fbdff0-4da3-4e94-829b-fcee62ccbb58",
7-
"ApiChange": "Property",
8-
"ChangedApiName": "userInitiatedDisasterRecoveryAllowed",
9-
"ChangeType": "Addition",
10-
"Description": "Added the **userInitiatedDisasterRecoveryAllowed** property to the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCrossRegionDisasterRecoverySetting?view=graph-rest-beta) resource.",
11-
"Target": "cloudPcCrossRegionDisasterRecoverySetting"
12-
},
13-
{
14-
"Id": "d2fbdff0-4da3-4e94-829b-fcee62ccbb58",
15-
"ApiChange": "Property",
16-
"ChangedApiName": "crossRegionDisasterRecoveryEnabled",
17-
"ChangeType": "Deprecation",
18-
"Description": "Deprecated the **crossRegionDisasterRecoveryEnabled** property of the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCrossRegionDisasterRecoverySetting?view=graph-rest-beta) resource. The **crossRegionDisasterRecoveryEnabled** property is deprecated and will no longer be supported effective February 11, 2025. For scenarios where **crossRegionDisasterRecoveryEnabled** is `true`, set **disasterRecoveryType** to `crossRegion`. For scenarios where **crossRegionDisasterRecoveryEnabled** is `false`, set **disasterRecoveryType** to `notconfigured`.",
19-
"Target": "cloudPcCrossRegionDisasterRecoverySetting"
20-
}
21-
],
22-
"Id": "d2fbdff0-4da3-4e94-829b-fcee62ccbb58",
23-
"Cloud": "Prod",
24-
"Version": "beta",
25-
"CreatedDateTime": "2024-12-08T06:09:33.7283612Z",
26-
"WorkloadArea": "Device and app management",
27-
"SubArea": "Cloud PC"
3+
{
4+
"ChangeList": [
5+
{
6+
"Id": "50cf0bff-857a-4f38-b021-a0095e5f502f",
7+
"ApiChange": "Enumeration",
8+
"ChangedApiName": "cloudPcStorageAccountAccessTier",
9+
"ChangeType": "Addition",
10+
"Description": "Added the **cloudPcStorageAccountAccessTier** enumeration type.",
11+
"Target": "cloudPcStorageAccountAccessTier"
12+
},
13+
{
14+
"Id": "50cf0bff-857a-4f38-b021-a0095e5f502f",
15+
"ApiChange": "Property",
16+
"ChangedApiName": "accessTier",
17+
"ChangeType": "Addition",
18+
"Description": "Added the **accessTier** property to the [cloudPcForensicStorageAccount](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcforensicstorageaccount?view=graph-rest-beta) resource.",
19+
"Target": "cloudPcForensicStorageAccount"
20+
},
21+
{
22+
"Id": "50cf0bff-857a-4f38-b021-a0095e5f502f",
23+
"ApiChange": "Property",
24+
"ChangedApiName": "immutableStorage",
25+
"ChangeType": "Addition",
26+
"Description": "Added the **immutableStorage** property to the [cloudPcForensicStorageAccount](https://learn.microsoft.com/en-us/graph/api/resources/cloudpcforensicstorageaccount?view=graph-rest-beta) resource.",
27+
"Target": "cloudPcForensicStorageAccount"
28+
}
29+
],
30+
"Id": "50cf0bff-857a-4f38-b021-a0095e5f502f",
31+
"Cloud": "Prod",
32+
"Version": "beta",
33+
"CreatedDateTime": "2025-01-22T06:12:52.5040743Z",
34+
"WorkloadArea": "Device and app management",
35+
"SubArea": "Cloud PC"
36+
},
37+
{
38+
"ChangeList": [
39+
{
40+
"Id": "d2fbdff0-4da3-4e94-829b-fcee62ccbb58",
41+
"ApiChange": "Property",
42+
"ChangedApiName": "userInitiatedDisasterRecoveryAllowed",
43+
"ChangeType": "Addition",
44+
"Description": "Added the **userInitiatedDisasterRecoveryAllowed** property to the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCrossRegionDisasterRecoverySetting?view=graph-rest-beta) resource.",
45+
"Target": "cloudPcCrossRegionDisasterRecoverySetting"
46+
},
47+
{
48+
"Id": "d2fbdff0-4da3-4e94-829b-fcee62ccbb58",
49+
"ApiChange": "Property",
50+
"ChangedApiName": "crossRegionDisasterRecoveryEnabled",
51+
"ChangeType": "Deprecation",
52+
"Description": "Deprecated the **crossRegionDisasterRecoveryEnabled** property of the [cloudPcCrossRegionDisasterRecoverySetting](https://learn.microsoft.com/en-us/graph/api/resources/cloudPcCrossRegionDisasterRecoverySetting?view=graph-rest-beta) resource. The **crossRegionDisasterRecoveryEnabled** property is deprecated and will no longer be supported effective February 11, 2025. For scenarios where **crossRegionDisasterRecoveryEnabled** is `true`, set **disasterRecoveryType** to `crossRegion`. For scenarios where **crossRegionDisasterRecoveryEnabled** is `false`, set **disasterRecoveryType** to `notconfigured`.",
53+
"Target": "cloudPcCrossRegionDisasterRecoverySetting"
54+
}
55+
],
56+
"Id": "d2fbdff0-4da3-4e94-829b-fcee62ccbb58",
57+
"Cloud": "Prod",
58+
"Version": "beta",
59+
"CreatedDateTime": "2024-12-08T06:09:33.7283612Z",
60+
"WorkloadArea": "Device and app management",
61+
"SubArea": "Cloud PC"
2862
},
2963
{
3064
"ChangeList": [

0 commit comments

Comments
 (0)