Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions Commands/network/private-endpoint/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,24 @@ Create a private endpoint.
```bash
network private-endpoint create -n MyPE -g MyResourceGroup --vnet-name MyVnetName --subnet MySubnet --connection-name MyConnectionName --group-id MyGroupId --private-connection-resource-id MyResourceId --ip-configs [{name:Myipconfig1,group-id:MyGroupId ,member-name:MyMemberName,private-ip-address:10.0.0.4},{name:Myipconfig2,private-ip-address:10.0.0.6}]
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ByaXZhdGVlbmRwb2ludHMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/privateendpoints/{} 2025-05-01 -->

#### examples

- Create a private endpoint.
```bash
network private-endpoint create -g MyResourceGroup -n MyPE --vnet-name MyVnetName --subnet MySubnet --private-connection-resource-id "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyResourceGroup/providers/Microsoft.Network/privateLinkServices/MyPLS" --connection-name tttt -l centralus
```

- Create a private endpoint with ASGs.
```bash
network private-endpoint create -n MyPE -g MyResourceGroup --vnet-name MyVnetName --subnet MySubnet --connection-name MyConnectionName --group-id MyGroupId --private-connection-resource-id MyResourceId --asg id=MyAsgId --asg id=MyAsgId
```

- Create a private endpoint with ip-configs.
```bash
network private-endpoint create -n MyPE -g MyResourceGroup --vnet-name MyVnetName --subnet MySubnet --connection-name MyConnectionName --group-id MyGroupId --private-connection-resource-id MyResourceId --ip-configs [{name:Myipconfig1,group-id:MyGroupId ,member-name:MyMemberName,private-ip-address:10.0.0.4},{name:Myipconfig2,private-ip-address:10.0.0.6}]
```
11 changes: 11 additions & 0 deletions Commands/network/private-endpoint/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,14 @@ Delete a private endpoint.
```bash
network private-endpoint delete --name MyPrivateEndpoint --resource-group MyResourceGroup
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ByaXZhdGVlbmRwb2ludHMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/privateendpoints/{} 2025-05-01 -->

#### examples

- Delete a private endpoint.
```bash
network private-endpoint delete --name MyPrivateEndpoint --resource-group MyResourceGroup
```
12 changes: 12 additions & 0 deletions Commands/network/private-endpoint/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,15 @@ List private endpoints.
```bash
network private-endpoint list -g MyResourceGroup
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ByaXZhdGVlbmRwb2ludHM=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/providers/microsoft.network/privateendpoints 2025-05-01 -->
<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/privateendpoints 2025-05-01 -->

#### examples

- List private endpoints.
```bash
network private-endpoint list -g MyResourceGroup
```
11 changes: 11 additions & 0 deletions Commands/network/private-endpoint/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,14 @@ Get the details of a private endpoint.
```bash
network private-endpoint show --name MyPrivateEndpoint --resource-group MyResourceGroup
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ByaXZhdGVlbmRwb2ludHMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/privateendpoints/{} 2025-05-01 -->

#### examples

- Get the details of a private endpoint
```bash
network private-endpoint show --name MyPrivateEndpoint --resource-group MyResourceGroup
```
16 changes: 16 additions & 0 deletions Commands/network/private-endpoint/_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,19 @@ Update a private endpoint.
```bash
network private-endpoint update --name MyPE --resource-group MyResourceGroup --set useRemoteGateways=true
```

### [2025-05-01](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5uZXR3b3JrL3ByaXZhdGVlbmRwb2ludHMve30=/2025-05-01.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.network/privateendpoints/{} 2025-05-01 -->

#### examples

- Update a private endpoint.
```bash
network private-endpoint update -g MyResourceGroup -n MyPE --request-message "test" --tags mytag=hello
```

- Update a private endpoint.
```bash
network private-endpoint update --name MyPE --resource-group MyResourceGroup --set useRemoteGateways=true
```

Large diffs are not rendered by default.

Loading