Skip to content

Commit 60015e2

Browse files
Mohana-Krishna-Nalijnlycklama
authored andcommitted
Adding Provisioning,PendingCommit values in the ConfigurationState.. (#25618)
* Adding Provisioning,PendingCommit values in the ConfigurationState.. * Changes in the Internet Gateway Rules. * 1. Reverting the changes in the InternetGatewayRules. 2. Added option enum param to the body in Post Action Upgrade
1 parent 90c6f7a commit 60015e2

File tree

4 files changed

+29
-4
lines changed

4 files changed

+29
-4
lines changed

specification/managednetworkfabric/resource-manager/Microsoft.ManagedNetworkFabric/stable/2023-06-15/AccessControlLists.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@
800800
"properties": {
801801
"flags": {
802802
"type": "array",
803-
"description": "List of protocol flags that need to be matched.",
803+
"description": "List of protocol flags that need to be matched. Example: established | initial | <List-of-TCP-flags>. List of eligible TCP Flags are ack, fin, not-ack, not-fin, not-psh, not-rst, not-syn, not-urg, psh, rst, syn, urg",
804804
"items": {
805805
"type": "string",
806806
"description": "Flag of the port."

specification/managednetworkfabric/resource-manager/Microsoft.ManagedNetworkFabric/stable/2023-06-15/NetworkFabrics.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@
497497
"required": true,
498498
"description": "Network Fabric properties to update.",
499499
"schema": {
500-
"$ref": "./common.json#/definitions/UpdateVersion"
500+
"$ref": "#/definitions/UpgradeNetworkFabricProperties"
501501
}
502502
}
503503
],
@@ -2084,6 +2084,28 @@
20842084
"$ref": "./common.json#/definitions/Layer3IpPrefixProperties"
20852085
}
20862086
]
2087+
},
2088+
"UpgradeNetworkFabricProperties": {
2089+
"type": "object",
2090+
"properties": {
2091+
"action": {
2092+
"type": "string",
2093+
"description": "Action to be performed while upgrading the fabric.",
2094+
"enum": [
2095+
"Start",
2096+
"Complete"
2097+
],
2098+
"x-ms-enum": {
2099+
"name": "NetworkFabricUpgradeAction",
2100+
"modelAsString": true
2101+
}
2102+
}
2103+
},
2104+
"allOf": [
2105+
{
2106+
"$ref": "./common.json#/definitions/UpdateVersion"
2107+
}
2108+
]
20872109
}
20882110
},
20892111
"parameters": {

specification/managednetworkfabric/resource-manager/Microsoft.ManagedNetworkFabric/stable/2023-06-15/common.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@
6666
"Deprovisioning",
6767
"Deprovisioned",
6868
"ErrorDeprovisioning",
69-
"DeferredControl"
69+
"DeferredControl",
70+
"Provisioning",
71+
"PendingCommit"
7072
],
7173
"x-ms-enum": {
7274
"modelAsString": true,

specification/managednetworkfabric/resource-manager/Microsoft.ManagedNetworkFabric/stable/2023-06-15/examples/NetworkFabrics_upgrade_MaximumSet_Gen.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"api-version": "2023-06-15",
66
"networkFabricName": "example-fabric",
77
"body": {
8-
"version": "version1"
8+
"version": "3.x.x",
9+
"action": "Start"
910
}
1011
},
1112
"responses": {

0 commit comments

Comments
 (0)