Skip to content

Commit 5a7a8c1

Browse files
author
Cameron Nichols
committed
Add Route Table Usage Mode to AvNM Routing Configuration and update property description
1 parent 4356092 commit 5a7a8c1

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

specification/network/resource-manager/Microsoft.Network/stable/2024-10-01/examples/NetworkManagerRoutingConfigurationGet.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
},
2323
"properties": {
2424
"description": "A sample policy",
25+
"routeTableUsageMode": "ManagedOnly",
2526
"provisioningState": "Succeeded",
2627
"resourceGuid": "00000000-0000-0000-0000-000000000000"
2728
}

specification/network/resource-manager/Microsoft.Network/stable/2024-10-01/examples/NetworkManagerRoutingConfigurationList.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
},
2424
"properties": {
2525
"description": "A sample policy",
26+
"routeTableUsageMode": "ManagedOnly",
2627
"provisioningState": "Succeeded",
2728
"resourceGuid": "00000000-0000-0000-0000-000000000000"
2829
}

specification/network/resource-manager/Microsoft.Network/stable/2024-10-01/examples/NetworkManagerRoutingConfigurationPut.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"networkManagerName": "testNetworkManager",
88
"routingConfiguration": {
99
"properties": {
10-
"description": "A sample policy"
10+
"description": "A sample policy",
11+
"routeTableUsageMode": "ManagedOnly"
1112
}
1213
}
1314
},
@@ -27,6 +28,7 @@
2728
},
2829
"properties": {
2930
"description": "A sample policy",
31+
"routeTableUsageMode": "ManagedOnly",
3032
"provisioningState": "Succeeded",
3133
"resourceGuid": "00000000-0000-0000-0000-000000000000"
3234
}
@@ -47,6 +49,7 @@
4749
},
4850
"properties": {
4951
"description": "A sample policy",
52+
"routeTableUsageMode": "ManagedOnly",
5053
"provisioningState": "Succeeded",
5154
"resourceGuid": "00000000-0000-0000-0000-000000000000"
5255
}

specification/network/resource-manager/Microsoft.Network/stable/2024-10-01/networkManagerRoutingConfiguration.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -642,6 +642,18 @@
642642
"type": "string",
643643
"readOnly": true,
644644
"description": "Unique identifier for this resource."
645+
},
646+
"routeTableUsageMode": {
647+
"type": "string",
648+
"enum": [
649+
"ManagedOnly",
650+
"UseExisting"
651+
],
652+
"x-ms-enum": {
653+
"name": "RouteTableUsageMode",
654+
"modelAsString": true
655+
},
656+
"description": "Route table usage mode defines which route table will be used by the configuration. If not defined, this will default to 'ManagedOnly'."
645657
}
646658
},
647659
"description": "Defines the routing configuration properties."

0 commit comments

Comments
 (0)