Update schemas to 2023.2
To quote from The Redfish release [1]
2022.3 Redfish Schema Bundle – This .zip file contains the current
versions of all Redfish schemas. The bundle includes 40 schema updates
and developer resources.
Added Compute Express Link (CXL) support (NEW)
Extensions to Fabric, PCIeDevice, Processor, Memory, ComputerSystem,
and Chassis schemas Defined by DMTF alliance partner Compute Express
Link (CXL) Consortium
Extensions to Fabric, PCIeDevice, Processor, Memory, ComputerSystem,
and Chassis schemas New CXLLogicalDevice schema
Added MultiFactorAuth to AccountService to configure a service for
multi-factor authentication
HTTP Basic authentication is not available for accounts configured
for multi-factor authentication
For client certificate authentication, the client provides their
identity certificate during TLS handshaking
For RSA SecurID, Google Authenticator, and Microsoft Authenticator,
clients provide a new Token property in the session creation request
Added Heater and HeaterMetrics resources
[1] https://www.dmtf.org/content/redfish-release-20223-now-available
Change-Id: Iefe80866bfb83e65ab98b2cf4ee2eacce5238c5b
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/static/redfish/v1/JsonSchemas/EthernetInterface/EthernetInterface.json b/static/redfish/v1/JsonSchemas/EthernetInterface/EthernetInterface.json
index dc58260..202c54f 100644
--- a/static/redfish/v1/JsonSchemas/EthernetInterface/EthernetInterface.json
+++ b/static/redfish/v1/JsonSchemas/EthernetInterface/EthernetInterface.json
@@ -1,5 +1,5 @@
{
- "$id": "http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_10_0.json",
+ "$id": "http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_11_0.json",
"$ref": "#/definitions/EthernetInterface",
"$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
"copyright": "Copyright 2014-2023 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
@@ -561,6 +561,20 @@
"longDescription": "This property shall contain the permanent MAC address of this interface, or port. Typically, this value is programmed during manufacturing. This address is not assignable.",
"readonly": true
},
+ "RoutingScope": {
+ "anyOf": [
+ {
+ "$ref": "#/definitions/RoutingScope"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The routing scope for this interface.",
+ "longDescription": "This property shall contain the routing scope for this interface. This property shall only be present if this interface belongs to a virtual machine or container.",
+ "readonly": true,
+ "versionAdded": "v1_11_0"
+ },
"SpeedMbps": {
"description": "The current speed, in Mbit/s, of this interface.",
"longDescription": "This property shall contain the link speed of the interface, in Mbit/s. This property shall be writable only when the AutoNeg property is `false`.",
@@ -859,6 +873,27 @@
"properties": {},
"type": "object"
},
+ "RoutingScope": {
+ "enum": [
+ "External",
+ "HostOnly",
+ "Internal",
+ "Limited"
+ ],
+ "enumDescriptions": {
+ "External": "Externally accessible.",
+ "HostOnly": "Only accessible to a dedicated interface on the host.",
+ "Internal": "Only accessible to internal networking on the host, such as when virtual machines or containers are allowed to communicate with each other on the same host system as well as a dedicated interface on the hosting system.",
+ "Limited": "Accessible through IP translation provided by the hosting system."
+ },
+ "enumLongDescriptions": {
+ "External": "This value shall indicate this interface is externally accessible as if it were physically on the same network as the hosting system.",
+ "HostOnly": "This value shall indicate this interface is only accessible to a dedicated interface on the hosting system.",
+ "Internal": "This value shall indicate this interface is only accessible to internal networking on the host, such as when virtual machines or containers are allowed to communicate with each other on the same host system as well as a dedicated interface on the hosting system.",
+ "Limited": "This value shall indicate this interface is accessible through IP translation provided by the hosting system, such as a NAT (network address translation)."
+ },
+ "type": "string"
+ },
"StatelessAddressAutoConfiguration": {
"additionalProperties": false,
"description": "Stateless address autoconfiguration (SLAAC) parameters for this interface.",
@@ -926,6 +961,6 @@
}
},
"owningEntity": "DMTF",
- "release": "2023.1",
- "title": "#EthernetInterface.v1_10_0.EthernetInterface"
+ "release": "2023.2",
+ "title": "#EthernetInterface.v1_11_0.EthernetInterface"
}
\ No newline at end of file