-
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.
[Public] Adding support for Developer Bastion (#25132)
* Public Preview Developer Bastion * Public Preview Developer Bastion * Bastion Developer Sku
- Loading branch information
Showing
5 changed files
with
195 additions
and
0 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
17 changes: 17 additions & 0 deletions
17
...urce-manager/Microsoft.Network/stable/2023-05-01/examples/BastionHostDeveloperDelete.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,17 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2023-05-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg2", | ||
"bastionHostName": "bastionhostdeveloper" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": { | ||
"headers": { | ||
"location": "https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/bastionHosts/{bastionHostName}/operationResults/{operationId}?api-version={api-version}" | ||
} | ||
}, | ||
"204": {} | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
...esource-manager/Microsoft.Network/stable/2023-05-01/examples/BastionHostDeveloperGet.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,37 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2023-05-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg1", | ||
"bastionHostName": "bastionhostdeveloper'" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "bastionhostdeveloper'", | ||
"id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/bastionHosts/bastionhostdeveloper'", | ||
"type": "Microsoft.Network/bastionHosts", | ||
"etag": "w/\\00000000-0000-0000-0000-000000000000\\", | ||
"location": "West US", | ||
"sku": { | ||
"name": "Developer" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"virtualNetwork": { | ||
"id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/vnet2" | ||
}, | ||
"networkAcls": { | ||
"ipRules": [ | ||
{ | ||
"addressPrefix": "1.1.1.1/16" | ||
} | ||
] | ||
}, | ||
"dnsName": "omnibrain.uswest.bastionglobal.azure.com", | ||
"ipConfigurations": [] | ||
} | ||
} | ||
} | ||
} | ||
} |
82 changes: 82 additions & 0 deletions
82
...esource-manager/Microsoft.Network/stable/2023-05-01/examples/BastionHostDeveloperPut.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,82 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2023-05-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "rg2", | ||
"bastionHostName": "bastionhostdeveloper", | ||
"sku": { | ||
"name": "Developer" | ||
}, | ||
"parameters": { | ||
"properties": { | ||
"virtualNetwork": { | ||
"id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/vnet2" | ||
}, | ||
"networkAcls": { | ||
"ipRules": [ | ||
{ | ||
"addressPrefix": "1.1.1.1/16" | ||
} | ||
] | ||
}, | ||
"ipConfigurations": [] | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "bastionhostdeveloper", | ||
"id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/bastionHosts/bastionhostdeveloper'", | ||
"type": "Microsoft.Network/bastionHosts", | ||
"etag": "w/\\00000000-0000-0000-0000-000000000000\\", | ||
"location": "West US", | ||
"sku": { | ||
"name": "Developer" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"dnsName": "omnibrain.uswest.bastionglobal.azure.com", | ||
"virtualNetwork": { | ||
"id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/vnet2" | ||
}, | ||
"networkAcls": { | ||
"ipRules": [ | ||
{ | ||
"addressPrefix": "1.1.1.1/16" | ||
} | ||
] | ||
}, | ||
"ipConfigurations": [] | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"name": "bastionhostdeveloper'", | ||
"id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/bastionHosts/bastionhostdeveloper'", | ||
"type": "Microsoft.Network/bastionHosts", | ||
"etag": "w/\\00000000-0000-0000-0000-000000000000\\", | ||
"location": "West US", | ||
"sku": { | ||
"name": "Developer" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"dnsName": "omnibrain.uswest.bastionglobal.azure.com", | ||
"virtualNetwork": { | ||
"id": "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/vnet2" | ||
}, | ||
"networkAcls": { | ||
"ipRules": [ | ||
{ | ||
"addressPrefix": "1.1.1.1/16" | ||
} | ||
] | ||
}, | ||
"ipConfigurations": [] | ||
} | ||
} | ||
} | ||
} | ||
} |
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