Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"principalId": "eeeeeeee-9999-4444-8888-333333333333"
}
},
"principalId": "f4b0f1c2-xxxx-43db-xxxx-ccd99e1afd22",
"principalId": "00000000-1111-2222-3333-444444444444",
"tenantId": "00000000-1111-2222-3333-444444444444"
},
"properties": {
Expand Down Expand Up @@ -157,7 +157,7 @@
"principalId": "eeeeeeee-9999-4444-8888-333333333333"
}
},
"principalId": "f4b0f1c2-xxxx-43db-xxxx-ccd99e1afd22",
"principalId": "00000000-1111-2222-3333-444444444444",
"tenantId": "00000000-1111-2222-3333-444444444444"
},
"properties": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
"id": "/subscriptions/01234567-89ab-4def-0123-456789abcdef/resourceGroups/ExampleResourceGroup/providers/Microsoft.Synapse/workspaces/ExampleWorkspace/firewallRules/ExampleIpFirewallRule",
"type": "Microsoft.Synapse/workspaces/firewallRules",
"name": "ExampleIpFirewallRule",
"location": "West US 2",
"tags": {},
"properties": {
"startIpAddress": "10.0.0.0",
"endIpAddress": "10.0.0.254",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"responses": {
"200": {},
"202": {
"headers": {
"azure-asyncoperation": "https://ms.web.azuresynapse.net"
},
"body": {
"status": "InProgress"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
"responses": {
"200": {
"schema": {
"type": "object"
"$ref": "#/definitions/IpFirewallRuleInfo"
},
"description": "OK"
},
Expand Down Expand Up @@ -244,7 +244,7 @@
"application/json"
],
"x-ms-examples": {
"Create an IP firewall rule": {
"Get IP firewall rule": {
"$ref": "./examples/GetIpFirewallRule.json"
}
}
Expand Down Expand Up @@ -354,7 +354,12 @@
"properties": {
"endIpAddress": {
"description": "The end IP address of the firewall rule. Must be IPv4 format. Must be greater than or equal to startIpAddress",
"type": "string"
"type": "string",
"x-ms-mutability": [
"create",
"read",
"update"
]
},
"provisioningState": {
"description": "Resource provisioning state",
Expand All @@ -374,7 +379,12 @@
},
"startIpAddress": {
"description": "The start IP address of the firewall rule. Must be IPv4 format",
"type": "string"
"type": "string",
"x-ms-mutability": [
"create",
"read",
"update"
]
}
}
},
Expand Down