Skip to content

Commit 68ba30d

Browse files
authored
[Hub Generated] Review request for Microsoft.DelegatedNetwork to add version preview/2023-05-18-preview (#25016)
* Adding new preview version from last commit * update api version in all files * 06-27 specific changes * Update min prefixSize to 24 * updatin max size to be 30 * update prefixSize in examples to 27 * Adjust min to be 0 * using enum instead of min max * set x-nullable instead of default * make it optional * correcting the put example * Adding new example * Update description * remove isOPtional * spell check * fix unreferenced file * add vnetblock to correct-words.txt
1 parent 449d841 commit 68ba30d

30 files changed

+2426
-1
lines changed

custom-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3700,5 +3700,6 @@ tlsprotocols
37003700
windowsserver
37013701
centos
37023702
ulimits
3703+
vnetblock
37033704
usedCPUMHz
37043705
totalCPUMHz
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"version": "2023-06-27-preview",
5+
"title": "DNC",
6+
"description": "DNC web api provides way to create, get and delete dnc controller"
7+
},
8+
"host": "management.azure.com",
9+
"schemes": [
10+
"https"
11+
],
12+
"consumes": [
13+
"application/json"
14+
],
15+
"produces": [
16+
"application/json"
17+
],
18+
"security": [
19+
{
20+
"azure_auth": [
21+
"user_impersonation"
22+
]
23+
}
24+
],
25+
"securityDefinitions": {
26+
"azure_auth": {
27+
"type": "oauth2",
28+
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
29+
"flow": "implicit",
30+
"description": "Azure Active Directory OAuth2 Flow",
31+
"scopes": {
32+
"user_impersonation": "impersonate your user account"
33+
}
34+
}
35+
},
36+
"paths": {},
37+
"definitions": {
38+
"controllerDetails": {
39+
"description": "controller details",
40+
"type": "object",
41+
"properties": {
42+
"id": {
43+
"description": "controller arm resource id",
44+
"type": "string"
45+
}
46+
}
47+
}
48+
}
49+
}

0 commit comments

Comments
 (0)