Skip to content

Commit 91480ab

Browse files
authored
Merge pull request #1036 from idanielsteven/main
NetworkCloud extension updates for the 2026-07-01 GA API
2 parents 20912e4 + ad23b9e commit 91480ab

294 files changed

Lines changed: 36062 additions & 12 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Commands/networkcloud/accessbridge/_create.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,14 @@ Create a new access bridge or update the properties of the existing access bridg
2525
```bash
2626
networkcloud accessbridge create --resource-group resourceGroupName --access-bridge-name Bastion --location location --tags "{key1:myvalue1,key2:myvalue2}" --extended-location "{type:CustomLocation,name:/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName}" --ipv4-connected-prefix 198.51.100.0/24 --ipv6-connected-prefix 2001:db8::/64 --network-id /subscriptions/123e4567-e89b-12d3-a456-426655440000/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName/internalNetworks/internalNetworkName --security-rules "[{description:'Allow management plane egress',port:24562-24570,ipv4-addresses:[10.10.20.10-10.10.20.20],ipv6-addresses:['2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff'],direction:Outbound}]"
2727
```
28+
29+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYWNjZXNzYnJpZGdlcy97fQ==/2026-07-01.xml) **Stable**
30+
31+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/accessbridges/{} 2026-07-01 -->
32+
33+
#### examples
34+
35+
- Create or update access bridge
36+
```bash
37+
networkcloud accessbridge create --resource-group resourceGroupName --access-bridge-name Bastion --location location --tags "{key1:myvalue1,key2:myvalue2}" --extended-location "{type:CustomLocation,name:/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName}" --ipv4-connected-prefix 198.51.100.0/24 --ipv6-connected-prefix 2001:db8::/64 --network-id /subscriptions/123e4567-e89b-12d3-a456-426655440000/providers/Microsoft.ManagedNetworkFabric/l3IsolationDomains/l3IsolationDomainName/internalNetworks/internalNetworkName --security-rules "[{description:'Allow management plane egress',port:24562-24570,ipv4-addresses:[10.10.20.10-10.10.20.20],ipv6-addresses:['2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff'],direction:Outbound}]"
38+
```

Commands/networkcloud/accessbridge/_delete.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,14 @@ Delete the specified access bridge.
2525
```bash
2626
networkcloud accessbridge delete --resource-group resourceGroupName --access-bridge-name Bastion
2727
```
28+
29+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYWNjZXNzYnJpZGdlcy97fQ==/2026-07-01.xml) **Stable**
30+
31+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/accessbridges/{} 2026-07-01 -->
32+
33+
#### examples
34+
35+
- Delete access bridge
36+
```bash
37+
networkcloud accessbridge delete --resource-group resourceGroupName --access-bridge-name Bastion
38+
```

Commands/networkcloud/accessbridge/_list.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,15 @@ List a list of access bridges in the provided subscription.
2727
```bash
2828
networkcloud accessbridge list
2929
```
30+
31+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYWNjZXNzYnJpZGdlcw==/2026-07-01.xml) **Stable**
32+
33+
<!-- mgmt-plane /subscriptions/{}/providers/microsoft.networkcloud/accessbridges 2026-07-01 -->
34+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/accessbridges 2026-07-01 -->
35+
36+
#### examples
37+
38+
- List access bridges for subscription
39+
```bash
40+
networkcloud accessbridge list
41+
```

Commands/networkcloud/accessbridge/_show.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,14 @@ Get the properties of the provided access bridge.
2525
```bash
2626
networkcloud accessbridge show --resource-group resourceGroupName --access-bridge-name Bastion
2727
```
28+
29+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYWNjZXNzYnJpZGdlcy97fQ==/2026-07-01.xml) **Stable**
30+
31+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/accessbridges/{} 2026-07-01 -->
32+
33+
#### examples
34+
35+
- Get access bridge
36+
```bash
37+
networkcloud accessbridge show --resource-group resourceGroupName --access-bridge-name Bastion
38+
```

Commands/networkcloud/accessbridge/_update.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,14 @@ Update properties of the provided access bridge, or update tags associated with
2525
```bash
2626
etworkcloud accessbridge update --resource-group resourceGroupName --access-bridge-name Bastion --security-rules "[{description:'Allow management plane egress',port:24562-24570,ipv4-addresses:[10.10.20.10-10.10.20.20],ipv6-addresses:['2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff'],direction:Outbound}]"
2727
```
28+
29+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYWNjZXNzYnJpZGdlcy97fQ==/2026-07-01.xml) **Stable**
30+
31+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/accessbridges/{} 2026-07-01 -->
32+
33+
#### examples
34+
35+
- Patch access bridge resource
36+
```bash
37+
etworkcloud accessbridge update --resource-group resourceGroupName --access-bridge-name Bastion --security-rules "[{description:'Allow management plane egress',port:24562-24570,ipv4-addresses:[10.10.20.10-10.10.20.20],ipv6-addresses:['2001:db8:abcd:12::1000-2001:db8:abcd:12::1fff'],direction:Outbound}]"
38+
```

Commands/networkcloud/baremetalmachine/_cordon.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,14 @@ Cordon the provided bare metal machine's Kubernetes node.
168168
```bash
169169
networkcloud baremetalmachine cordon --evacuate "True" --bare-metal-machine-name "bareMetalMachineName" --resource-group "resourceGroupName"
170170
```
171+
172+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYmFyZW1ldGFsbWFjaGluZXMve30vY29yZG9u/2026-07-01.xml) **Preview**
173+
174+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/baremetalmachines/{}/cordon 2026-07-01 -->
175+
176+
#### examples
177+
178+
- Cordon bare metal machine
179+
```bash
180+
networkcloud baremetalmachine cordon --evacuate "True" --bare-metal-machine-name "bareMetalMachineName" --resource-group "resourceGroupName"
181+
```

Commands/networkcloud/baremetalmachine/_create.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,7 @@ All customer initiated requests will be rejected as the life cycle of this resou
6464
### [2026-05-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYmFyZW1ldGFsbWFjaGluZXMve30=/2026-05-01-preview.xml) **Preview**
6565

6666
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/baremetalmachines/{} 2026-05-01-preview -->
67+
68+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYmFyZW1ldGFsbWFjaGluZXMve30=/2026-07-01.xml) **Preview**
69+
70+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/baremetalmachines/{} 2026-07-01 -->

Commands/networkcloud/baremetalmachine/_delete.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,7 @@ All customer initiated requests will be rejected as the life cycle of this resou
6464
### [2026-05-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYmFyZW1ldGFsbWFjaGluZXMve30=/2026-05-01-preview.xml) **Preview**
6565

6666
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/baremetalmachines/{} 2026-05-01-preview -->
67+
68+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYmFyZW1ldGFsbWFjaGluZXMve30=/2026-07-01.xml) **Preview**
69+
70+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/baremetalmachines/{} 2026-07-01 -->

Commands/networkcloud/baremetalmachine/_list.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,3 +258,20 @@ List bare metal machines in the provided resource group or subscription.
258258
```bash
259259
networkcloud baremetalmachine list
260260
```
261+
262+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYmFyZW1ldGFsbWFjaGluZXM=/2026-07-01.xml) **Preview**
263+
264+
<!-- mgmt-plane /subscriptions/{}/providers/microsoft.networkcloud/baremetalmachines 2026-07-01 -->
265+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/baremetalmachines 2026-07-01 -->
266+
267+
#### examples
268+
269+
- List bare metal machines for resource group
270+
```bash
271+
networkcloud baremetalmachine list --resource-group "resourceGroupName"
272+
```
273+
274+
- List bare metal machines for subscription
275+
```bash
276+
networkcloud baremetalmachine list
277+
```

Commands/networkcloud/baremetalmachine/_power-off.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,3 +168,14 @@ Power off the provided bare metal machine.
168168
```bash
169169
networkcloud baremetalmachine power-off --bare-metal-machine-name "bareMetalMachineName" --skip-shutdown "True" --resource-group "resourceGroupName"
170170
```
171+
172+
### [2026-07-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrY2xvdWQvYmFyZW1ldGFsbWFjaGluZXMve30vcG93ZXJvZmY=/2026-07-01.xml) **Preview**
173+
174+
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.networkcloud/baremetalmachines/{}/poweroff 2026-07-01 -->
175+
176+
#### examples
177+
178+
- Power off bare metal machine
179+
```bash
180+
networkcloud baremetalmachine power-off --bare-metal-machine-name "bareMetalMachineName" --skip-shutdown "True" --resource-group "resourceGroupName"
181+
```

0 commit comments

Comments
 (0)