NetApp · Schema
NetworkInterface
A network interface (LIF) providing data or management access
CloudData ManagementHybrid CloudInfrastructureStorageFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | Network interface UUID |
| name | string | Interface name |
| ip | object | IP address configuration |
| state | string | Operational state of the interface |
| enabled | boolean | Whether the interface is administratively enabled |
| scope | string | Interface scope |
| service_policy | object | Service policy governing the interface |
| location | object | Current location of the interface |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "NetworkInterface",
"type": "object",
"description": "A network interface (LIF) providing data or management access",
"properties": {
"uuid": {
"type": "string",
"description": "Network interface UUID"
},
"name": {
"type": "string",
"description": "Interface name"
},
"ip": {
"type": "object",
"description": "IP address configuration"
},
"state": {
"type": "string",
"description": "Operational state of the interface"
},
"enabled": {
"type": "boolean",
"description": "Whether the interface is administratively enabled"
},
"scope": {
"type": "string",
"description": "Interface scope"
},
"service_policy": {
"type": "object",
"description": "Service policy governing the interface"
},
"location": {
"type": "object",
"description": "Current location of the interface"
}
}
}