-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
IpCommunities.json
519 lines (519 loc) · 17 KB
/
IpCommunities.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
{
"swagger": "2.0",
"info": {
"title": "Azure Network Fabric Management Service API",
"description": "Self service experience for Azure Network Fabric API.",
"version": "2023-06-15"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow.",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/ipCommunities/{ipCommunityName}": {
"put": {
"tags": [
"IpCommunities"
],
"operationId": "IpCommunities_Create",
"summary": "Create an IP Community.",
"description": "Implements an IP Community PUT method.",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/IpCommunityNameParameter"
},
{
"in": "body",
"name": "body",
"required": true,
"description": "Request payload.",
"schema": {
"$ref": "#/definitions/IpCommunity"
}
}
],
"responses": {
"200": {
"description": "Success.",
"schema": {
"$ref": "#/definitions/IpCommunity"
}
},
"201": {
"description": "Created.",
"schema": {
"$ref": "#/definitions/IpCommunity"
},
"headers": {
"Azure-AsyncOperation": {
"type": "string",
"description": "The URL to retrieve the status of the asynchronous operation."
}
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "azure-async-operation"
},
"x-ms-examples": {
"IpCommunities_Create_MaximumSet_Gen": {
"$ref": "./examples/IpCommunities_Create_MaximumSet_Gen.json"
}
}
},
"get": {
"tags": [
"IpCommunities"
],
"operationId": "IpCommunities_Get",
"summary": "Gets an IP Community.",
"description": "Implements an IP Community GET method.",
"produces": [
"application/json"
],
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/IpCommunityNameParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/IpCommunity"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"IpCommunities_Get_MaximumSet_Gen": {
"$ref": "./examples/IpCommunities_Get_MaximumSet_Gen.json"
}
}
},
"patch": {
"tags": [
"IpCommunities"
],
"operationId": "IpCommunities_Update",
"summary": "Updates an IP Community.",
"description": "API to update certain properties of the IP Community resource.",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/IpCommunityNameParameter"
},
{
"in": "body",
"name": "body",
"required": true,
"description": "IP Community properties to update.",
"schema": {
"$ref": "#/definitions/IpCommunityPatch"
}
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/IpCommunity"
}
},
"202": {
"description": "Accepted",
"headers": {
"Location": {
"description": "The URL to retrieve the status of the asynchronous operation.",
"type": "string"
}
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
},
"x-ms-examples": {
"IpCommunities_Update_MaximumSet_Gen": {
"$ref": "./examples/IpCommunities_Update_MaximumSet_Gen.json"
}
}
},
"delete": {
"tags": [
"IpCommunities"
],
"operationId": "IpCommunities_Delete",
"summary": "Deletes an IP Community.",
"description": "Implements IP Community DELETE method.",
"produces": [
"application/json"
],
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/IpCommunityNameParameter"
}
],
"responses": {
"202": {
"description": "Accepted",
"headers": {
"Azure-AsyncOperation": {
"description": "Tracking URL for long running operation.",
"type": "string"
}
}
},
"204": {
"description": "No Content"
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
},
"x-ms-examples": {
"IpCommunities_Delete_MaximumSet_Gen": {
"$ref": "./examples/IpCommunities_Delete_MaximumSet_Gen.json"
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedNetworkFabric/ipCommunities": {
"get": {
"operationId": "IpCommunities_ListByResourceGroup",
"summary": "List IP Communities by resource group.",
"description": "Implements IP Communities list by resource group GET method.",
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Lists all IP Communities under the resource group.",
"schema": {
"$ref": "#/definitions/IpCommunitiesListResult"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"IpCommunities_ListByResourceGroup_MaximumSet_Gen": {
"$ref": "./examples/IpCommunities_ListByResourceGroup_MaximumSet_Gen.json"
}
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.ManagedNetworkFabric/ipCommunities": {
"get": {
"operationId": "IpCommunities_ListBySubscription",
"summary": "List IP Communities by subscription.",
"description": "Implements IP Communities list by subscription GET method.",
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Lists all IP Communities under the subscription.",
"schema": {
"$ref": "#/definitions/IpCommunitiesListResult"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"IpCommunities_ListBySubscription_MaximumSet_Gen": {
"$ref": "./examples/IpCommunities_ListBySubscription_MaximumSet_Gen.json"
}
}
}
}
},
"definitions": {
"IpCommunityProperties": {
"type": "object",
"allOf": [
{
"$ref": "./common.json#/definitions/AnnotationResource",
"description": "Common properties for annotated type."
},
{
"description": "IP Community patchable properties.",
"$ref": "#/definitions/IpCommunityPatchableProperties"
}
],
"required": [
"ipCommunityRules"
],
"properties": {
"configurationState": {
"description": "Configuration state of the resource.",
"$ref": "./common.json#/definitions/ConfigurationState"
},
"provisioningState": {
"description": "Provisioning state of the resource.",
"$ref": "./common.json#/definitions/ProvisioningState"
},
"administrativeState": {
"description": "Administrative state of the resource.",
"$ref": "./common.json#/definitions/AdministrativeState"
}
},
"description": "IP Community Properties defines the resource properties."
},
"IpCommunity": {
"type": "object",
"x-ms-azure-resource": true,
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource"
}
],
"properties": {
"properties": {
"x-ms-client-flatten": true,
"description": "Resource properties.",
"$ref": "#/definitions/IpCommunityProperties"
}
},
"required": [
"properties"
],
"description": "The IP Community resource definition."
},
"IpCommunitiesListResult": {
"type": "object",
"description": "List of IP Communities.",
"properties": {
"value": {
"type": "array",
"description": "List of IP Community resources.",
"items": {
"$ref": "#/definitions/IpCommunity"
}
},
"nextLink": {
"type": "string",
"description": "Url to follow for getting next page of resources."
}
}
},
"IpCommunityPatch": {
"type": "object",
"x-ms-azure-resource": true,
"properties": {
"properties": {
"x-ms-client-flatten": true,
"description": "IP Community patchable properties.",
"$ref": "#/definitions/IpCommunityPatchableProperties"
}
},
"allOf": [
{
"$ref": "./common.json#/definitions/TagsUpdate"
}
],
"description": "The IP Community patch resource definition."
},
"IpCommunityPatchableProperties": {
"type": "object",
"description": "IP Community patchable properties.",
"properties": {
"ipCommunityRules": {
"type": "array",
"description": "List of IP Community Rules.",
"items": {
"$ref": "#/definitions/IpCommunityRule"
}
}
}
},
"IpCommunityRule": {
"type": "object",
"description": "IP Community patchable properties.",
"properties": {
"action": {
"description": "Action to be taken on the configuration. Example: Permit | Deny.",
"$ref": "./common.json#/definitions/CommunityActionTypes"
},
"sequenceNumber": {
"type": "integer",
"format": "int64",
"minimum": 1,
"maximum": 4294967295,
"description": "Sequence to insert to/delete from existing route. Prefix lists are evaluated starting with the lowest sequence number and continue down the list until a match is made. Once a match is made, the permit or deny statement is applied to that network and the rest of the list is ignored."
},
"wellKnownCommunities": {
"type": "array",
"description": "Supported well known Community List.",
"uniqueItems": true,
"items": {
"description": "\n`Internet` - Advertise routes to internet community.\n `LocalAS` - Advertise routes to only localAS peers.\n `NoAdvertise` - Don't advertise routes to any peer.\n`NoExport` - Don't export to next AS.\n`GShut` - Graceful Shutdown (GSHUT) withdraw routes before terminating BGP connection.\n",
"type": "string",
"minLength": 1,
"enum": [
"Internet",
"LocalAS",
"NoAdvertise",
"NoExport",
"GShut"
],
"x-ms-enum": {
"modelAsString": true,
"name": "wellKnownCommunities"
}
}
},
"communityMembers": {
"type": "array",
"minItems": 1,
"description": "List the community members of IP Community.",
"items": {
"minLength": 1,
"description": "Community member of the IP Community. The expected formats are AA:NN >> example 65535:65535, <integer32> >> example 4294967040. The possible values of AA, NN are 0-65535 and <integer32> are 1-4294967040.",
"type": "string"
}
}
},
"required": [
"action",
"sequenceNumber",
"communityMembers"
]
}
},
"parameters": {
"IpCommunityNameParameter": {
"type": "string",
"description": "Name of the IP Community.",
"in": "path",
"name": "ipCommunityName",
"required": true,
"x-ms-parameter-location": "method"
}
}
}