Skip to content

Commit d2a8df0

Browse files
added examples
1 parent 5c81ca0 commit d2a8df0

9 files changed

Lines changed: 63 additions & 0 deletions

File tree

Commands/pscloud/_list.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ List reservations by Azure subscription ID
88

99
<!-- mgmt-plane /subscriptions/{}/providers/purestorage.block/reservations 2024-11-01 -->
1010
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/reservations 2024-11-01 -->
11+
12+
#### examples
13+
14+
- Reservations_ListBySubscription
15+
```bash
16+
pscloud list
17+
```

Commands/pscloud/_show.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ Get a reservation
77
### [2024-11-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL3B1cmVzdG9yYWdlLmJsb2NrL3Jlc2VydmF0aW9ucy97fQ==/2024-11-01.xml) **Preview**
88

99
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/reservations/{} 2024-11-01 -->
10+
11+
#### examples
12+
13+
- Reservations_Get
14+
```bash
15+
pscloud show --resource-group rgpurestorage --reservation-name storagePoolname
16+
```

Commands/pscloud/pool/_create.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ Create a storage pool
77
### [2024-11-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL3B1cmVzdG9yYWdlLmJsb2NrL3N0b3JhZ2Vwb29scy97fQ==/2024-11-01.xml) **Preview**
88

99
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/storagepools/{} 2024-11-01 -->
10+
11+
#### examples
12+
13+
- StoragePools_Create
14+
```bash
15+
pscloud pool create --resource-group rgpurestorage --storage-pool-name storagePoolname --availability-zone vknyl --vnet-injection "{subnet-id:tnlctolrxdvnkjiphlrdxq,vnet-id:zbumtytyqwewjcyckwqchiypshv}" --provisioned-bandwidth 17 --reservation-id xiowoxnbtcotutcmmrofvgdi --type None --user-assigned-identities "{key4211:{}}" --tags "{key7593:vsyiygyurvwlfaezpuqu}" --location lonlc
16+
```

Commands/pscloud/pool/_delete.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ Delete a storage pool
77
### [2024-11-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL3B1cmVzdG9yYWdlLmJsb2NrL3N0b3JhZ2Vwb29scy97fQ==/2024-11-01.xml) **Preview**
88

99
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/storagepools/{} 2024-11-01 -->
10+
11+
#### examples
12+
13+
- StoragePools_Delete
14+
```bash
15+
pscloud pool delete --resource-group rgpurestorage --storage-pool-name storagePoolname
16+
```

Commands/pscloud/pool/_get-avs-status.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ Returns the status of the storage pool connection to AVS
77
### [2024-11-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL3B1cmVzdG9yYWdlLmJsb2NrL3N0b3JhZ2Vwb29scy97fS9nZXRhdnNzdGF0dXM=/2024-11-01.xml) **Preview**
88

99
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/storagepools/{}/getavsstatus 2024-11-01 -->
10+
11+
#### examples
12+
13+
- StoragePools_GetAvsStatus
14+
```bash
15+
pscloud pool get-avs-status --resource-group rgpurestorage --storage-pool-name storagePoolname
16+
```

Commands/pscloud/pool/_get-health-status.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ Retrieve health metrics of a storage pool
77
### [2024-11-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL3B1cmVzdG9yYWdlLmJsb2NrL3N0b3JhZ2Vwb29scy97fS9nZXRoZWFsdGhzdGF0dXM=/2024-11-01.xml) **Preview**
88

99
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/storagepools/{}/gethealthstatus 2024-11-01 -->
10+
11+
#### examples
12+
13+
- StoragePools_GetHealthStatus
14+
```bash
15+
pscloud pool get-health-status --resource-group rgpurestorage --storage-pool-name storagePoolname
16+
```

Commands/pscloud/pool/_list.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ List storage pools by Azure subscription ID
88

99
<!-- mgmt-plane /subscriptions/{}/providers/purestorage.block/storagepools 2024-11-01 -->
1010
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/storagepools 2024-11-01 -->
11+
12+
#### examples
13+
14+
- StoragePools_ListBySubscription
15+
```bash
16+
pscloud pool list
17+
```

Commands/pscloud/pool/_show.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ Get a storage pool
77
### [2024-11-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL3B1cmVzdG9yYWdlLmJsb2NrL3N0b3JhZ2Vwb29scy97fQ==/2024-11-01.xml) **Preview**
88

99
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/storagepools/{} 2024-11-01 -->
10+
11+
#### examples
12+
13+
- StoragePools_Get
14+
```bash
15+
pscloud pool show --resource-group rgpurestorage --storage-pool-name storagePoolname
16+
```

Commands/pscloud/pool/_update.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ Update a storage pool
77
### [2024-11-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL3B1cmVzdG9yYWdlLmJsb2NrL3N0b3JhZ2Vwb29scy97fQ==/2024-11-01.xml) **Preview**
88

99
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/purestorage.block/storagepools/{} 2024-11-01 -->
10+
11+
#### examples
12+
13+
- StoragePools_Update
14+
```bash
15+
pscloud pool update --name spool1 --resource-group rg --provisioned-bandwidth 989
16+
```

0 commit comments

Comments
 (0)