Azure Synapse Analytics · Schema
IpFirewallRuleInfo
AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| type | string | |
| properties | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IpFirewallRuleInfo",
"title": "IpFirewallRuleInfo",
"type": "object",
"properties": {
"id": {
"type": "string",
"readOnly": true
},
"name": {
"type": "string",
"readOnly": true
},
"type": {
"type": "string",
"readOnly": true
},
"properties": {
"type": "object",
"properties": {
"endIpAddress": {
"type": "string",
"description": "The end IP address of the firewall rule (IPv4 format)."
},
"provisioningState": {
"type": "string",
"readOnly": true,
"enum": [
"Provisioning",
"Succeeded",
"Deleting",
"Failed",
"DeleteError"
]
},
"startIpAddress": {
"type": "string",
"description": "The start IP address of the firewall rule (IPv4 format)."
}
}
}
}
}