Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!----> |
| 3 | <!--################################################################################ --> |
Gunnar Mills | 6f44b75 | 2020-02-06 16:50:51 -0600 | [diff] [blame] | 4 | <!--# Redfish Schema: ManagerNetworkProtocol v1.5.0 --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 5 | <!--# --> |
| 6 | <!--# For a detailed change log, see the README file contained in the DSP8010 bundle, --> |
| 7 | <!--# available at http://www.dmtf.org/standards/redfish --> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame^] | 8 | <!--# Copyright 2014-2020 DMTF. --> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 9 | <!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright --> |
| 10 | <!--################################################################################ --> |
| 11 | <!----> |
| 12 | <edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0"> |
| 13 | |
| 14 | <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml"> |
| 15 | <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/> |
| 16 | </edmx:Reference> |
| 17 | <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml"> |
| 18 | <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/> |
| 19 | </edmx:Reference> |
| 20 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml"> |
| 21 | <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/> |
| 22 | <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/> |
| 23 | </edmx:Reference> |
| 24 | <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml"> |
| 25 | <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/> |
| 26 | </edmx:Reference> |
| 27 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml"> |
| 28 | <edmx:Include Namespace="Resource"/> |
| 29 | <edmx:Include Namespace="Resource.v1_0_0"/> |
| 30 | </edmx:Reference> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 31 | <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CertificateCollection_v1.xml"> |
| 32 | <edmx:Include Namespace="CertificateCollection"/> |
| 33 | </edmx:Reference> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 34 | |
| 35 | <edmx:DataServices> |
| 36 | |
| 37 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol"> |
| 38 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 39 | |
| 40 | <EntityType Name="ManagerNetworkProtocol" BaseType="Resource.v1_0_0.Resource" Abstract="true"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 41 | <Annotation Term="OData.Description" String="The network service settings for the manager."/> |
| 42 | <Annotation Term="OData.LongDescription" String="This Resource shall represent the network service settings for the manager."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 43 | <Annotation Term="Capabilities.InsertRestrictions"> |
| 44 | <Record> |
| 45 | <PropertyValue Property="Insertable" Bool="false"/> |
| 46 | </Record> |
| 47 | </Annotation> |
| 48 | <Annotation Term="Capabilities.UpdateRestrictions"> |
| 49 | <Record> |
| 50 | <PropertyValue Property="Updatable" Bool="true"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 51 | <Annotation Term="OData.Description" String="Writable properties, such as protocol and virtual media settings, can be updated for manager network protocols."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 52 | </Record> |
| 53 | </Annotation> |
| 54 | <Annotation Term="Capabilities.DeleteRestrictions"> |
| 55 | <Record> |
| 56 | <PropertyValue Property="Deletable" Bool="false"/> |
| 57 | </Record> |
| 58 | </Annotation> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 59 | <Annotation Term="Redfish.Uris"> |
| 60 | <Collection> |
| 61 | <String>/redfish/v1/Managers/{ManagerId}/NetworkProtocol</String> |
| 62 | </Collection> |
| 63 | </Annotation> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 64 | </EntityType> |
| 65 | |
| 66 | </Schema> |
| 67 | |
| 68 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_0"> |
| 69 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 70 | <Annotation Term="Redfish.Release" String="1.0"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 71 | |
| 72 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.ManagerNetworkProtocol"> |
| 73 | <Property Name="HostName" Type="Edm.String"> |
| 74 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 75 | <Annotation Term="OData.Description" String="The DNS host name of this manager, without any domain information."/> |
| 76 | <Annotation Term="OData.LongDescription" String="This property shall contain the host name without any domain information."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 77 | </Property> |
| 78 | <Property Name="FQDN" Type="Edm.String"> |
| 79 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 80 | <Annotation Term="OData.Description" String="The fully qualified domain name for the manager obtained by DNS including the host name and top-level domain name."/> |
| 81 | <Annotation Term="OData.LongDescription" String="This property shall contain the fully qualified domain name for the manager."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 82 | </Property> |
| 83 | <Property Name="HTTP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 84 | <Annotation Term="OData.Description" String="The settings for this manager's HTTP protocol support."/> |
| 85 | <Annotation Term="OData.LongDescription" String="This object shall contain the HTTP protocol settings for the manager. The default Port property value should be `80` for compatibility with established client implementations."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 86 | </Property> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 87 | <Property Name="HTTPS" Type="ManagerNetworkProtocol.v1_0_0.HTTPSProtocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 88 | <Annotation Term="OData.Description" String="The settings for this manager's HTTPS protocol support."/> |
| 89 | <Annotation Term="OData.LongDescription" String="This object shall contain the HTTPS/SSL protocol settings for this manager. The default Port property value should be `443` for compatibility with established client implementations."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 90 | </Property> |
Gunnar Mills | 6f44b75 | 2020-02-06 16:50:51 -0600 | [diff] [blame] | 91 | <Property Name="SNMP" Type="ManagerNetworkProtocol.v1_0_0.SNMPProtocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 92 | <Annotation Term="OData.Description" String="The settings for this manager's SNMP support."/> |
| 93 | <Annotation Term="OData.LongDescription" String="This object shall contain the SNMP protocol settings for this manager. The default Port property value should be `161` for compatibility with established client implementations."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 94 | </Property> |
| 95 | <Property Name="VirtualMedia" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 96 | <Annotation Term="OData.Description" String="The settings for this manager's virtual media support."/> |
| 97 | <Annotation Term="OData.LongDescription" String="This object shall contain the virtual media protocol settings for this manager. The Port property shall contain the TCP port assigned for Virtual Media usage."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 98 | </Property> |
| 99 | <Property Name="Telnet" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 100 | <Annotation Term="OData.Description" String="The settings for this manager's Telnet protocol support."/> |
| 101 | <Annotation Term="OData.LongDescription" String="This object shall contain the Telnet protocol settings for this manager. The default Port property value should be `23` for compatibility with established client implementations."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 102 | </Property> |
| 103 | <Property Name="SSDP" Type="ManagerNetworkProtocol.v1_0_0.SSDProtocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 104 | <Annotation Term="OData.Description" String="The settings for this manager's SSDP support."/> |
| 105 | <Annotation Term="OData.LongDescription" String="This object shall contain the SSDP protocol settings for this manager. Simple Service Discovery Protocol (SSDP) is for network discovery of devices supporting the Redfish Service. The default Port property value should be `1900` for compatibility with established client implementations."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 106 | </Property> |
| 107 | <Property Name="IPMI" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 108 | <Annotation Term="OData.Description" String="The settings for this manager's IPMI-over-LAN protocol support."/> |
| 109 | <Annotation Term="OData.LongDescription" String="This object shall contain the IPMI over LAN protocol settings for the manager. The default Port property value should be `623` for compatibility with established client implementations."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 110 | </Property> |
| 111 | <Property Name="SSH" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 112 | <Annotation Term="OData.Description" String="The settings for this manager's Secure Shell (SSH) protocol support."/> |
| 113 | <Annotation Term="OData.LongDescription" String="This object shall contain the Secure Shell (SSH) protocol settings for the manager. The default value should be 22 for compatibility with established client implementations."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 114 | </Property> |
| 115 | <Property Name="KVMIP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 116 | <Annotation Term="OData.Description" String="The settings for this manager's KVM-IP protocol support."/> |
| 117 | <Annotation Term="OData.LongDescription" String="This object shall contain the KVM-IP (Keyboard, Video, Mouse over IP) protocol settings for the manager."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 118 | </Property> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 119 | <Property Name="Status" Type="Resource.Status" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 120 | <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/> |
| 121 | <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 122 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 123 | </EntityType> |
| 124 | |
| 125 | <ComplexType Name="Protocol"> |
| 126 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 127 | <Annotation Term="OData.Description" String="The settings for a network protocol associated with a manager."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 128 | <Annotation Term="OData.LongDescription" String="This type shall describe information about a protocol setting for a manager."/> |
| 129 | <Property Name="ProtocolEnabled" Type="Edm.Boolean"> |
| 130 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 131 | <Annotation Term="OData.Description" String="An indication of whether the protocol is enabled."/> |
| 132 | <Annotation Term="OData.LongDescription" String="This property shall indicate whether the protocol is enabled."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 133 | </Property> |
| 134 | <Property Name="Port" Type="Edm.Int64"> |
| 135 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 136 | <Annotation Term="OData.Description" String="The protocol port."/> |
| 137 | <Annotation Term="OData.LongDescription" String="This property shall contain the port assigned to the protocol."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 138 | <Annotation Term="Validation.Minimum" Int="0"/> |
| 139 | </Property> |
| 140 | </ComplexType> |
| 141 | |
| 142 | <ComplexType Name="SSDProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.Protocol"> |
| 143 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 144 | <Property Name="NotifyMulticastIntervalSeconds" Type="Edm.Int64"> |
| 145 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 146 | <Annotation Term="OData.Description" String="The time interval, in seconds, between transmissions of the multicast NOTIFY ALIVE message from this service for SSDP."/> |
| 147 | <Annotation Term="OData.LongDescription" String="This property shall contain the time interval, in seconds, between transmissions of the multicast NOTIFY ALIVE message. A setting of 0 seconds shall disable this functionality. The recommended value is 600 seconds."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 148 | <Annotation Term="Measures.Unit" String="s"/> |
| 149 | <Annotation Term="Validation.Minimum" Int="0"/> |
| 150 | </Property> |
| 151 | <Property Name="NotifyTTL" Type="Edm.Int64"> |
| 152 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 153 | <Annotation Term="OData.Description" String="The time-to-live hop count for SSDP multicast NOTIFY messages."/> |
| 154 | <Annotation Term="OData.LongDescription" String="This property shall contain the time-to-live hop count used for multicast NOTIFY messages. The recommended value is 2."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 155 | <Annotation Term="Validation.Minimum" Int="1"/> |
| 156 | </Property> |
| 157 | <Property Name="NotifyIPv6Scope" Type="ManagerNetworkProtocol.v1_0_0.NotifyIPv6Scope"> |
| 158 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 159 | <Annotation Term="OData.Description" String="The IPv6 scope for multicast NOTIFY messages for SSDP."/> |
| 160 | <Annotation Term="OData.LongDescription" String="This property shall contain the IPv6 scope for multicast NOTIFY messages. The valid enumerations are a subset of the available IPv6 scope types."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 161 | </Property> |
| 162 | </ComplexType> |
| 163 | |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 164 | <ComplexType Name="HTTPSProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.Protocol"/> |
| 165 | |
Gunnar Mills | 6f44b75 | 2020-02-06 16:50:51 -0600 | [diff] [blame] | 166 | <ComplexType Name="SNMPProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.Protocol"/> |
| 167 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 168 | <EnumType Name="NotifyIPv6Scope"> |
| 169 | <Member Name="Link"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 170 | <Annotation Term="OData.Description" String="SSDP NOTIFY messages are sent to addresses in the IPv6 local link scope."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 171 | </Member> |
| 172 | <Member Name="Site"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 173 | <Annotation Term="OData.Description" String="SSDP NOTIFY messages are sent to addresses in the IPv6 local site scope."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 174 | </Member> |
| 175 | <Member Name="Organization"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 176 | <Annotation Term="OData.Description" String="SSDP NOTIFY messages are sent to addresses in the IPv6 local organization scope."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 177 | </Member> |
| 178 | </EnumType> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 179 | </Schema> |
| 180 | |
| 181 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_2"> |
| 182 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 183 | <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| 184 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.ManagerNetworkProtocol"/> |
| 185 | </Schema> |
| 186 | |
| 187 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_3"> |
| 188 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 189 | <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| 190 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_2.ManagerNetworkProtocol"/> |
| 191 | </Schema> |
| 192 | |
| 193 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_4"> |
| 194 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 195 | <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| 196 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_3.ManagerNetworkProtocol"/> |
| 197 | </Schema> |
| 198 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 199 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_5"> |
| 200 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 201 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/> |
| 202 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_4.ManagerNetworkProtocol"/> |
| 203 | </Schema> |
| 204 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 205 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_6"> |
| 206 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 207 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/> |
| 208 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_5.ManagerNetworkProtocol"/> |
| 209 | </Schema> |
| 210 | |
| 211 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_0_7"> |
| 212 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 213 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 214 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_6.ManagerNetworkProtocol"/> |
| 215 | </Schema> |
| 216 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 217 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_0"> |
| 218 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 219 | <Annotation Term="Redfish.Release" String="2016.3"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 220 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_0_3.ManagerNetworkProtocol"> |
| 221 | <Property Name="DHCP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 222 | <Annotation Term="OData.Description" String="The settings for this manager's DHCPv4 protocol support."/> |
| 223 | <Annotation Term="OData.LongDescription" String="This object shall contain the DHCPv4 protocol settings for the manager."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 224 | </Property> |
| 225 | </EntityType> |
| 226 | </Schema> |
| 227 | |
| 228 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_1"> |
| 229 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 230 | <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> |
| 231 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_0.ManagerNetworkProtocol"/> |
| 232 | </Schema> |
| 233 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 234 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_2"> |
| 235 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 236 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number. It was also created to clarify that the DHCP property is for DHCPv4."/> |
| 237 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_1.ManagerNetworkProtocol"/> |
| 238 | </Schema> |
| 239 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 240 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_3"> |
| 241 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 242 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/> |
| 243 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_2.ManagerNetworkProtocol"/> |
| 244 | </Schema> |
| 245 | |
| 246 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_1_4"> |
| 247 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 248 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 249 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_3.ManagerNetworkProtocol"/> |
| 250 | </Schema> |
| 251 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 252 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_0"> |
| 253 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 254 | <Annotation Term="Redfish.Release" String="2017.1"/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 255 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_1_1.ManagerNetworkProtocol"> |
| 256 | <Property Name="NTP" Type="ManagerNetworkProtocol.v1_2_0.NTPProtocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 257 | <Annotation Term="OData.Description" String="The settings for this manager's NTP protocol support."/> |
| 258 | <Annotation Term="OData.LongDescription" String="This object shall contain the NTP protocol settings for the manager."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 259 | </Property> |
| 260 | <Property Name="Actions" Type="ManagerNetworkProtocol.v1_2_0.Actions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 261 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 262 | <Annotation Term="OData.LongDescription" String="The actions property shall contain the available actions for this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 263 | </Property> |
| 264 | </EntityType> |
| 265 | |
| 266 | <ComplexType Name="NTPProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.Protocol"> |
| 267 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 268 | <Property Name="NTPServers" Type="Collection(Edm.String)"> |
| 269 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 270 | <Annotation Term="OData.Description" String="Indicates to which NTP servers this manager is subscribed."/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 271 | <Annotation Term="OData.LongDescription" String="This property shall contain all the NTP servers for which this manager is using to obtain time."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 272 | </Property> |
| 273 | </ComplexType> |
| 274 | |
| 275 | <ComplexType Name="Actions"> |
| 276 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 277 | <Annotation Term="OData.Description" String="The available actions for this Resource."/> |
| 278 | <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 279 | <Property Name="Oem" Type="ManagerNetworkProtocol.v1_2_0.OemActions" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 280 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 281 | <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 282 | </Property> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 283 | </ComplexType> |
| 284 | |
| 285 | <ComplexType Name="OemActions"> |
| 286 | <Annotation Term="OData.AdditionalProperties" Bool="true"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 287 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/> |
| 288 | <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/> |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 289 | </ComplexType> |
| 290 | </Schema> |
| 291 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 292 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_1"> |
| 293 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 294 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number. It was also created to clarify that the DHCP property is for DHCPv4."/> |
| 295 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_0.ManagerNetworkProtocol"/> |
| 296 | </Schema> |
| 297 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 298 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_2"> |
| 299 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 300 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/> |
| 301 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_1.ManagerNetworkProtocol"/> |
| 302 | </Schema> |
| 303 | |
| 304 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_2_3"> |
| 305 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 306 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 307 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_2.ManagerNetworkProtocol"/> |
| 308 | </Schema> |
| 309 | |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 310 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_0"> |
| 311 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 312 | <Annotation Term="Redfish.Release" String="2018.2"/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 313 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_2_1.ManagerNetworkProtocol"> |
| 314 | <Property Name="DHCPv6" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 315 | <Annotation Term="OData.Description" String="The settings for this manager's DHCPv6 protocol support."/> |
| 316 | <Annotation Term="OData.LongDescription" String="This object shall contain the DHCPv6 protocol settings for the manager."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 317 | </Property> |
| 318 | <Property Name="RDP" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 319 | <Annotation Term="OData.Description" String="The settings for this manager's Remote Desktop Protocol support."/> |
| 320 | <Annotation Term="OData.LongDescription" String="This object shall contain the Remote Desktop Protocol settings for the manager."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 321 | </Property> |
| 322 | <Property Name="RFB" Type="ManagerNetworkProtocol.v1_0_0.Protocol" Nullable="false"> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 323 | <Annotation Term="OData.Description" String="The settings for this manager's Remote Frame Buffer protocol support, which can support VNC."/> |
| 324 | <Annotation Term="OData.LongDescription" String="This object shall contain the Remote Frame Buffer protocol settings for the manager."/> |
Ed Tanous | 530520e | 2019-01-02 13:41:37 -0800 | [diff] [blame] | 325 | </Property> |
| 326 | </EntityType> |
| 327 | </Schema> |
| 328 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 329 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_1"> |
| 330 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 331 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/> |
| 332 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_0.ManagerNetworkProtocol"/> |
| 333 | </Schema> |
| 334 | |
| 335 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_3_2"> |
| 336 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 337 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 338 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_1.ManagerNetworkProtocol"/> |
| 339 | </Schema> |
| 340 | |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 341 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_0"> |
| 342 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 343 | <Annotation Term="Redfish.Release" String="2018.3"/> |
| 344 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_3_0.ManagerNetworkProtocol"/> |
| 345 | |
| 346 | <ComplexType Name="HTTPSProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.HTTPSProtocol"> |
| 347 | <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false"> |
| 348 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 349 | <Annotation Term="OData.Description" String="The link to a collection of certificates used for HTTPS by this manager."/> |
| 350 | <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource Collection of type CertificateCollection."/> |
Marri Devender Rao | d45d2d0 | 2019-01-21 10:11:34 -0600 | [diff] [blame] | 351 | <Annotation Term="OData.AutoExpandReferences"/> |
| 352 | </NavigationProperty> |
| 353 | </ComplexType> |
| 354 | </Schema> |
| 355 | |
Ed Tanous | cb10313 | 2019-10-08 11:34:22 -0700 | [diff] [blame] | 356 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_1"> |
| 357 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 358 | <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/> |
| 359 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_0.ManagerNetworkProtocol"/> |
| 360 | </Schema> |
| 361 | |
| 362 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_4_2"> |
| 363 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 364 | <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> |
| 365 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_1.ManagerNetworkProtocol"/> |
| 366 | </Schema> |
| 367 | |
Gunnar Mills | 6f44b75 | 2020-02-06 16:50:51 -0600 | [diff] [blame] | 368 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_5_0"> |
| 369 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 370 | <Annotation Term="Redfish.Release" String="2019.3"/> |
| 371 | |
| 372 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_4_2.ManagerNetworkProtocol"/> |
| 373 | |
| 374 | <ComplexType Name="SNMPProtocol" BaseType="ManagerNetworkProtocol.v1_0_0.SNMPProtocol"> |
| 375 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 376 | <Property Name="EnableSNMPv1" Type="Edm.Boolean"> |
| 377 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 378 | <Annotation Term="OData.Description" String="Indicates if access via SNMPv1 is enabled."/> |
| 379 | <Annotation Term="OData.LongDescription" String="This property shall indicate if access to the SNMP service on this manager using the SNMPv1 protocol is enabled."/> |
| 380 | </Property> |
| 381 | <Property Name="EnableSNMPv2c" Type="Edm.Boolean"> |
| 382 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 383 | <Annotation Term="OData.Description" String="Indicates if access via SNMPv2c is enabled."/> |
| 384 | <Annotation Term="OData.LongDescription" String="This property shall indicate if access to the SNMP service on this manager using the SNMPv2c protocol is enabled."/> |
| 385 | </Property> |
| 386 | <Property Name="EnableSNMPv3" Type="Edm.Boolean"> |
| 387 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 388 | <Annotation Term="OData.Description" String="Indicates if access via SNMPv3 is enabled."/> |
| 389 | <Annotation Term="OData.LongDescription" String="This property shall indicate if access to the SNMP service on this manager using the SNMPv3 protocol is enabled."/> |
| 390 | </Property> |
| 391 | <Property Name="CommunityStrings" Type="Collection(ManagerNetworkProtocol.v1_5_0.SNMPCommunity)"> |
| 392 | <Annotation Term="OData.Description" String="The SNMP community strings."/> |
| 393 | <Annotation Term="OData.LongDescription" String="This property shall contain an array of the SNMP community strings used to access an SNMP manager."/> |
| 394 | </Property> |
| 395 | <Property Name="CommunityAccessMode" Type="ManagerNetworkProtocol.v1_5_0.SNMPCommunityAccessMode"> |
| 396 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 397 | <Annotation Term="OData.Description" String="The access level of the SNMP community."/> |
| 398 | <Annotation Term="OData.LongDescription" String="This property shall contain the access/privilege level of the SNMP community used to access an SNMP manager."/> |
| 399 | </Property> |
| 400 | <Property Name="EngineId" Type="ManagerNetworkProtocol.v1_5_0.EngineId"> |
| 401 | <Annotation Term="OData.Description" String="The engine ID."/> |
| 402 | <Annotation Term="OData.LongDescription" String="This property shall contain the RFC3411-defined engine ID."/> |
| 403 | </Property> |
| 404 | <Property Name="HideCommunityStrings" Type="Edm.Boolean"> |
| 405 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 406 | <Annotation Term="OData.Description" String="Indicates if the community strings should be hidden."/> |
| 407 | <Annotation Term="OData.LongDescription" String="This property shall indicate if the community strings should be hidden in responses."/> |
| 408 | </Property> |
| 409 | <Property Name="AuthenticationProtocol" Type="ManagerNetworkProtocol.v1_5_0.SNMPAuthenticationProtocols"> |
| 410 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 411 | <Annotation Term="OData.Description" String="The authentication protocol for SNMP."/> |
| 412 | <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP authentication protocol."/> |
| 413 | </Property> |
| 414 | <Property Name="EncryptionProtocol" Type="ManagerNetworkProtocol.v1_5_0.SNMPEncryptionProtocols"> |
| 415 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 416 | <Annotation Term="OData.Description" String="The encryption protocol for SNMPv3."/> |
| 417 | <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 encryption protocol."/> |
| 418 | </Property> |
| 419 | </ComplexType> |
| 420 | |
| 421 | <ComplexType Name="SNMPCommunity"> |
| 422 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 423 | <Annotation Term="OData.Description" String="An SNMP community strings."/> |
| 424 | <Annotation Term="OData.LongDescription" String="This object shall contain an SNMP community string used to access an SNMP manager."/> |
| 425 | <Property Name="Name" Type="Edm.String"> |
| 426 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 427 | <Annotation Term="OData.Description" String="The name of the SNMP community."/> |
| 428 | <Annotation Term="OData.LongDescription" String="This property shall contain a display name describing the SNMP community."/> |
| 429 | </Property> |
| 430 | <Property Name="CommunityString" Type="Edm.String"> |
| 431 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 432 | <Annotation Term="OData.Description" String="The SNMP community string."/> |
| 433 | <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP community string used for accessing an SNMP service on this manager. If HideCommunityStrings is `true`, this value shall be `null` in responses."/> |
| 434 | </Property> |
| 435 | <Property Name="AccessMode" Type="ManagerNetworkProtocol.v1_5_0.SNMPCommunityAccessMode"> |
| 436 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 437 | <Annotation Term="OData.Description" String="The access level of the SNMP community."/> |
| 438 | <Annotation Term="OData.LongDescription" String="This property shall contain the access/privilege level of the SNMP community used to access an SNMP manager."/> |
| 439 | </Property> |
| 440 | </ComplexType> |
| 441 | |
| 442 | <ComplexType Name="EngineId"> |
| 443 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 444 | <Annotation Term="OData.Description" String="The engine ID."/> |
| 445 | <Annotation Term="OData.LongDescription" String="This object shall contain the RFC3411-defined engine ID."/> |
| 446 | <Property Name="PrivateEnterpriseId" Type="Edm.String"> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame^] | 447 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Gunnar Mills | 6f44b75 | 2020-02-06 16:50:51 -0600 | [diff] [blame] | 448 | <Annotation Term="OData.Description" String="The private enterprise ID."/> |
| 449 | <Annotation Term="OData.LongDescription" String="This property shall contain an RFC3411-defined private enterprise ID."/> |
| 450 | <Annotation Term="Validation.Pattern" String="^([A-Fa-f0-9]{2} ){3}[A-Fa-f0-9]{2}$"/> |
| 451 | </Property> |
| 452 | <Property Name="EnterpriseSpecificMethod" Type="Edm.String"> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame^] | 453 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
Gunnar Mills | 6f44b75 | 2020-02-06 16:50:51 -0600 | [diff] [blame] | 454 | <Annotation Term="OData.Description" String="The enterprise specific method."/> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame^] | 455 | <Annotation Term="OData.LongDescription" String="This property shall contain the enterprise specific method as described in item 2 of the snmpEngineID syntax of RFC3411. The full RFC3411-defined snmpEngineID is form from the concatenation of the value in the PrivateEnterpriseId property and the value in this property. If the most significant bit in PrivateEnterpriseId is set to one, this property shall not be present."/> |
Gunnar Mills | 6f44b75 | 2020-02-06 16:50:51 -0600 | [diff] [blame] | 456 | <Annotation Term="Validation.Pattern" String="^([A-Fa-f0-9]{2} ){7}[A-Fa-f0-9]{2}$"/> |
| 457 | </Property> |
| 458 | </ComplexType> |
| 459 | |
| 460 | <EnumType Name="SNMPCommunityAccessMode"> |
| 461 | <Member Name="Full"> |
| 462 | <Annotation Term="OData.Description" String="READ-WRITE access mode."/> |
| 463 | <Annotation Term="OData.LongDescription" String="This value shall indicate the RFC1157-defined READ-WRITE access mode."/> |
| 464 | </Member> |
| 465 | <Member Name="Limited"> |
| 466 | <Annotation Term="OData.Description" String="READ-ONLY access mode."/> |
| 467 | <Annotation Term="OData.LongDescription" String="This value shall indicate the RFC1157-defined READ-ONLY access mode."/> |
| 468 | </Member> |
| 469 | </EnumType> |
| 470 | |
| 471 | <EnumType Name="SNMPAuthenticationProtocols"> |
| 472 | <Member Name="Account"> |
| 473 | <Annotation Term="OData.Description" String="Authentication is determined by account settings."/> |
| 474 | <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access is determined based on the corresponding account settings."/> |
| 475 | </Member> |
| 476 | <Member Name="CommunityString"> |
| 477 | <Annotation Term="OData.Description" String="SNMP community string authentication."/> |
| 478 | <Annotation Term="OData.LongDescription" String="This value shall indicate authentication uses SNMP community strings."/> |
| 479 | </Member> |
| 480 | <Member Name="HMAC_MD5"> |
| 481 | <Annotation Term="OData.Description" String="HMAC-MD5-96 authentication."/> |
| 482 | <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC3414-defined HMAC-MD5-96 authentication protocol."/> |
| 483 | </Member> |
| 484 | <Member Name="HMAC_SHA96"> |
| 485 | <Annotation Term="OData.Description" String="HMAC-SHA-96 authentication."/> |
| 486 | <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC3414-defined HMAC-SHA-96 authentication protocol."/> |
| 487 | </Member> |
| 488 | </EnumType> |
| 489 | |
| 490 | <EnumType Name="SNMPEncryptionProtocols"> |
| 491 | <Member Name="None"> |
| 492 | <Annotation Term="OData.Description" String="No encryption."/> |
| 493 | <Annotation Term="OData.LongDescription" String="This value shall indicate there is no encryption."/> |
| 494 | </Member> |
| 495 | <Member Name="Account"> |
| 496 | <Annotation Term="OData.Description" String="Encryption is determined by account settings."/> |
| 497 | <Annotation Term="OData.LongDescription" String="This value shall indicate encryption is determined based on the corresponding account settings."/> |
| 498 | </Member> |
| 499 | <Member Name="CBC_DES"> |
| 500 | <Annotation Term="OData.Description" String="CBC-DES encryption."/> |
| 501 | <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol."/> |
| 502 | </Member> |
| 503 | <Member Name="CFB128_AES128"> |
| 504 | <Annotation Term="OData.Description" String="CFB128-AES-128 encryption."/> |
| 505 | <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CFB128-AES-128 encryption protocol."/> |
| 506 | </Member> |
| 507 | </EnumType> |
| 508 | </Schema> |
| 509 | |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame^] | 510 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_5_1"> |
| 511 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 512 | <Annotation Term="OData.Description" String="This version was created to update the description for the EnterpriseSpecificMethod property. It was also created to fix the permissions on the SNMP engine ID properties."/> |
| 513 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_5_0.ManagerNetworkProtocol"/> |
| 514 | </Schema> |
| 515 | |
| 516 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerNetworkProtocol.v1_6_0"> |
| 517 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 518 | <Annotation Term="Redfish.Release" String="2020.1"/> |
| 519 | |
| 520 | <EntityType Name="ManagerNetworkProtocol" BaseType="ManagerNetworkProtocol.v1_5_1.ManagerNetworkProtocol"/> |
| 521 | |
| 522 | <ComplexType Name="EngineId" BaseType="ManagerNetworkProtocol.v1_5_0.EngineId"> |
| 523 | <Property Name="ArchitectureId" Type="Edm.String"> |
| 524 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 525 | <Annotation Term="OData.Description" String="The architecture identifier."/> |
| 526 | <Annotation Term="OData.LongDescription" String="This property shall contain the architecture identifier as described in item 3 of the snmpEngineID syntax of RFC3411. The full RFC3411-defined snmpEngineID is form from the concatenation of the value in the PrivateEnterpriseId property and the value in this property. If the most significant bit in PrivateEnterpriseId is set to zero, this property shall not be present."/> |
| 527 | <Annotation Term="Validation.Pattern" String="^([A-Fa-f0-9]{2} ){0,27}[A-Fa-f0-9]{2}$"/> |
| 528 | </Property> |
| 529 | </ComplexType> |
| 530 | </Schema> |
| 531 | |
Jason M. Bills | ea4aa75 | 2018-06-05 13:29:11 -0700 | [diff] [blame] | 532 | </edmx:DataServices> |
| 533 | </edmx:Edmx> |