-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d81c4f0
commit 66fa1e4
Showing
6 changed files
with
54 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 15 additions & 12 deletions
27
src/EventHub/EventHub.Autorest/examples/Get-AzEventHubPrivateEndpointConnection.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: Get an Event Hub Namespace Private Endpoint Connection | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzEventHubPrivateEndpointConnection -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name 00000000000 | ||
``` | ||
|
||
```output | ||
{{ Add output here (remove the output block if the example doesn't have an output) }} | ||
ConnectionState : Approved | ||
Description : | ||
Id : /subscriptions/subscriptionId/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/namespaces/myNamespace/privateEndpointC | ||
onnections/00000000000 | ||
Location : Australia East | ||
Name : 00000000000 | ||
PrivateEndpointId : /subscriptions/subscriptionId/resourceGroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/privateEndpointName | ||
ProvisioningState : Succeeded | ||
ResourceGroupName : myResourceGroup | ||
``` | ||
|
||
{{ Add description here }} | ||
Gets details of private endpoint connection `00000000000` created under EventHub namespace `myNamespace`. | ||
|
||
### Example 2: {{ Add title here }} | ||
### Example 2: List all private endpoint connections on an EventHub namespace | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzEventHubPrivateEndpointConnection -ResourceGroupName myResourceGroup -NamespaceName myNamespace | ||
``` | ||
|
||
```output | ||
{{ Add output here (remove the output block if the example doesn't have an output) }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
Lists all private endpoint connections of EventHub namespace `myNamespace`. |
25 changes: 9 additions & 16 deletions
25
src/EventHub/EventHub.Autorest/examples/Get-AzEventHubPrivateLink.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: Get private links associated with an EventHub namespace | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzEventHubPrivateLink -ResourceGroupName myResourceGroup -NamespaceName myNamespace | ||
``` | ||
|
||
```output | ||
{{ Add output here (remove the output block if the example doesn't have an output) }} | ||
GroupId : namespace | ||
Id : subscriptions/subscriptionId/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/namespaces/myNamespace/privateLinkResources/namespace | ||
Name : namespace | ||
RequiredMember : {namespace} | ||
RequiredZoneName : {privatelink.servicebus.windows.net} | ||
Type : Microsoft.EventHub/namespaces/privateLinkResources | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
``` | ||
|
||
```output | ||
{{ Add output here (remove the output block if the example doesn't have an output) }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
Gets private link resources available on EventHubs namespace `myNamespace`. |
22 changes: 3 additions & 19 deletions
22
...entHub/EventHub.Autorest/examples/Remove-AzEventHubPrivateEndpointConnection.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,6 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: Remove a private endpoint connection from an eventhub namespace | ||
```powershell | ||
{{ Add code here }} | ||
Remove-AzEventHubPrivateEndpointConnection -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name 00000000000 | ||
``` | ||
|
||
```output | ||
{{ Add output here (remove the output block if the example doesn't have an output) }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
``` | ||
|
||
```output | ||
{{ Add output here (remove the output block if the example doesn't have an output) }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
Deletes private endpoint connection `00000000000` from an event hub namespace `myNamespace`. |