-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add private only feature to azure bastion service
- Loading branch information
1 parent
59bd02e
commit 4a6b080
Showing
10 changed files
with
266 additions
and
9 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
53 changes: 53 additions & 0 deletions
53
...e-manager/Microsoft.Network/stable/2024-05-01/examples/BastionHostGetWithPrivateOnly.json
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
Check failure on line 1 in specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/BastionHostGetWithPrivateOnly.json Azure Pipelines / Swagger PrettierCheckspecification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/BastionHostGetWithPrivateOnly.json#L1
|
||
"parameters": { | ||
"api-version": "2024-01-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"bastionHostName": "bastionhosttenant" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "bastionhosttenant", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/bastionHosts/bastionhosttenant'", | ||
"type": "Microsoft.Network/bastionHosts", | ||
"etag": "w/\\00000000-0000-0000-0000-000000000000\\", | ||
"location": "West US", | ||
"tags": { | ||
"key1": "value1" | ||
}, | ||
"sku": { | ||
"name": "Premium" | ||
}, | ||
"zones": [], | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"dnsName": "bst-9d89d361-100e-4c01-b92d-466548c476dc.bastion.azure.com", | ||
"scaleUnits": 2, | ||
"disableCopyPaste": false, | ||
"enableTunneling": false, | ||
"enableIpConnect": false, | ||
"enableShareableLink": false, | ||
"enableKerberos": false, | ||
"enableSessionRecording": false, | ||
"enablePrivateOnlyBastion": true, | ||
"ipConfigurations": [ | ||
{ | ||
"name": "bastionHostIpConfiguration", | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/bastionHosts/bastionhosttenant/bastionHostIpConfigurations/bastionHostIpConfiguration", | ||
"etag": "w/\\00000000-0000-0000-0000-000000000000\\", | ||
"type": "Microsoft.Network/bastionHosts/bastionHostIpConfigurations", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"privateIPAllocationMethod": "Dynamic", | ||
"subnet": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/vnet2/subnets/BastionHostSubnet" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.