1*2bde4061SEd Tanous<?xml version="1.0" encoding="UTF-8"?>
2*2bde4061SEd Tanous<!---->
3*2bde4061SEd Tanous<!--################################################################################       -->
4*2bde4061SEd Tanous<!--# Redfish Schema:  ConnectionMethod v1.1.0                                             -->
5*2bde4061SEd Tanous<!--#                                                                                      -->
6*2bde4061SEd Tanous<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7*2bde4061SEd Tanous<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8*2bde4061SEd Tanous<!--# Copyright 2014-2023 DMTF.                                                            -->
9*2bde4061SEd Tanous<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10*2bde4061SEd Tanous<!--################################################################################       -->
11*2bde4061SEd Tanous<!---->
12*2bde4061SEd Tanous<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13*2bde4061SEd Tanous
14*2bde4061SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15*2bde4061SEd Tanous    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16*2bde4061SEd Tanous  </edmx:Reference>
17*2bde4061SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18*2bde4061SEd Tanous    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19*2bde4061SEd Tanous  </edmx:Reference>
20*2bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
21*2bde4061SEd Tanous    <edmx:Include Namespace="Resource"/>
22*2bde4061SEd Tanous    <edmx:Include Namespace="Resource.v1_0_0"/>
23*2bde4061SEd Tanous  </edmx:Reference>
24*2bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25*2bde4061SEd Tanous    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26*2bde4061SEd Tanous  </edmx:Reference>
27*2bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/AggregationSource_v1.xml">
28*2bde4061SEd Tanous    <edmx:Include Namespace="AggregationSource"/>
29*2bde4061SEd Tanous  </edmx:Reference>
30*2bde4061SEd Tanous
31*2bde4061SEd Tanous  <edmx:DataServices>
32*2bde4061SEd Tanous
33*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ConnectionMethod">
34*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
35*2bde4061SEd Tanous
36*2bde4061SEd Tanous      <EntityType Name="ConnectionMethod" BaseType="Resource.v1_0_0.Resource" Abstract="true">
37*2bde4061SEd Tanous        <Annotation Term="OData.Description" String="The ConnectionMethod schema describes the protocol, provider, or other method used to communicate to a given access point for a Redfish aggregation service."/>
38*2bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This resource shall represent a connection method for a Redfish implementation."/>
39*2bde4061SEd Tanous        <Annotation Term="Capabilities.InsertRestrictions">
40*2bde4061SEd Tanous          <Record>
41*2bde4061SEd Tanous            <PropertyValue Property="Insertable" Bool="false"/>
42*2bde4061SEd Tanous          </Record>
43*2bde4061SEd Tanous        </Annotation>
44*2bde4061SEd Tanous        <Annotation Term="Capabilities.UpdateRestrictions">
45*2bde4061SEd Tanous          <Record>
46*2bde4061SEd Tanous            <PropertyValue Property="Updatable" Bool="false"/>
47*2bde4061SEd Tanous          </Record>
48*2bde4061SEd Tanous        </Annotation>
49*2bde4061SEd Tanous        <Annotation Term="Capabilities.DeleteRestrictions">
50*2bde4061SEd Tanous          <Record>
51*2bde4061SEd Tanous            <PropertyValue Property="Deletable" Bool="false"/>
52*2bde4061SEd Tanous          </Record>
53*2bde4061SEd Tanous        </Annotation>
54*2bde4061SEd Tanous        <Annotation Term="Redfish.Uris">
55*2bde4061SEd Tanous          <Collection>
56*2bde4061SEd Tanous            <String>/redfish/v1/AggregationService/ConnectionMethods/{ConnectionMethodId}</String>
57*2bde4061SEd Tanous          </Collection>
58*2bde4061SEd Tanous        </Annotation>
59*2bde4061SEd Tanous      </EntityType>
60*2bde4061SEd Tanous
61*2bde4061SEd Tanous    </Schema>
62*2bde4061SEd Tanous
63*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ConnectionMethod.v1_0_0">
64*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
65*2bde4061SEd Tanous      <Annotation Term="Redfish.Release" String="2020.2"/>
66*2bde4061SEd Tanous
67*2bde4061SEd Tanous      <EntityType Name="ConnectionMethod" BaseType="ConnectionMethod.ConnectionMethod">
68*2bde4061SEd Tanous        <Property Name="ConnectionMethodType" Type="ConnectionMethod.v1_0_0.ConnectionMethodType">
69*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
70*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The type of connection method."/>
71*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain an identifier of the connection method."/>
72*2bde4061SEd Tanous        </Property>
73*2bde4061SEd Tanous        <Property Name="ConnectionMethodVariant" Type="Edm.String">
74*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
75*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The variant of connection method."/>
76*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain an additional identifier of the connection method.  This property shall be present if ConnectionMethodType is `OEM`."/>
77*2bde4061SEd Tanous        </Property>
78*2bde4061SEd Tanous        <Property Name="Links" Type="ConnectionMethod.v1_0_0.Links" Nullable="false">
79*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
80*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
81*2bde4061SEd Tanous        </Property>
82*2bde4061SEd Tanous        <Property Name="Actions" Type="ConnectionMethod.v1_0_0.Actions" Nullable="false">
83*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The available actions for this resource."/>
84*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
85*2bde4061SEd Tanous        </Property>
86*2bde4061SEd Tanous      </EntityType>
87*2bde4061SEd Tanous
88*2bde4061SEd Tanous      <ComplexType Name="Links" BaseType="Resource.Links">
89*2bde4061SEd Tanous        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
90*2bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
91*2bde4061SEd Tanous        <NavigationProperty Name="AggregationSources" Type="Collection(AggregationSource.AggregationSource)">
92*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
93*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="An array of links to the access points using this connection method."/>
94*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type AggregationSource that are using this connection method."/>
95*2bde4061SEd Tanous          <Annotation Term="OData.AutoExpandReferences"/>
96*2bde4061SEd Tanous        </NavigationProperty>
97*2bde4061SEd Tanous      </ComplexType>
98*2bde4061SEd Tanous
99*2bde4061SEd Tanous      <ComplexType Name="Actions">
100*2bde4061SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
101*2bde4061SEd Tanous        <Annotation Term="OData.Description" String="The available actions for this resource."/>
102*2bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
103*2bde4061SEd Tanous        <Property Name="Oem" Type="ConnectionMethod.v1_0_0.OemActions" Nullable="false">
104*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
105*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
106*2bde4061SEd Tanous        </Property>
107*2bde4061SEd Tanous      </ComplexType>
108*2bde4061SEd Tanous
109*2bde4061SEd Tanous      <ComplexType Name="OemActions">
110*2bde4061SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
111*2bde4061SEd Tanous        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
112*2bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
113*2bde4061SEd Tanous      </ComplexType>
114*2bde4061SEd Tanous
115*2bde4061SEd Tanous      <EnumType Name="ConnectionMethodType">
116*2bde4061SEd Tanous        <Member Name="Redfish">
117*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="Redfish connection method."/>
118*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection method is Redfish."/>
119*2bde4061SEd Tanous        </Member>
120*2bde4061SEd Tanous        <Member Name="SNMP">
121*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="SNMP connection method."/>
122*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection method is SNMP."/>
123*2bde4061SEd Tanous        </Member>
124*2bde4061SEd Tanous        <Member Name="IPMI15">
125*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="IPMI 1.5 connection method."/>
126*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection method is IPMI 1.5."/>
127*2bde4061SEd Tanous        </Member>
128*2bde4061SEd Tanous        <Member Name="IPMI20">
129*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="IPMI 2.0 connection method."/>
130*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection method is IPMI 2.0."/>
131*2bde4061SEd Tanous        </Member>
132*2bde4061SEd Tanous        <Member Name="NETCONF">
133*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="NETCONF connection method."/>
134*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection method is NETCONF."/>
135*2bde4061SEd Tanous        </Member>
136*2bde4061SEd Tanous        <Member Name="OEM">
137*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="OEM connection method."/>
138*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection method is OEM.  The ConnectionMethodVariant property shall contain further identification information."/>
139*2bde4061SEd Tanous        </Member>
140*2bde4061SEd Tanous      </EnumType>
141*2bde4061SEd Tanous    </Schema>
142*2bde4061SEd Tanous
143*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ConnectionMethod.v1_1_0">
144*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
145*2bde4061SEd Tanous      <Annotation Term="Redfish.Release" String="2022.3"/>
146*2bde4061SEd Tanous
147*2bde4061SEd Tanous      <EntityType Name="ConnectionMethod" BaseType="ConnectionMethod.v1_0_0.ConnectionMethod">
148*2bde4061SEd Tanous        <Property Name="TunnelingProtocol" Type="ConnectionMethod.v1_1_0.TunnelingProtocolType">
149*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
150*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The tunneling protocol used for this connection method."/>
151*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the tunneling protocol used for this connection method."/>
152*2bde4061SEd Tanous        </Property>
153*2bde4061SEd Tanous      </EntityType>
154*2bde4061SEd Tanous
155*2bde4061SEd Tanous      <EnumType Name="TunnelingProtocolType">
156*2bde4061SEd Tanous        <Member Name="SSH">
157*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="SSH tunneling."/>
158*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate that the tunneling protocol is SSH."/>
159*2bde4061SEd Tanous        </Member>
160*2bde4061SEd Tanous        <Member Name="OEM">
161*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="OEM tunneling."/>
162*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate that the tunneling protocol is OEM-specific."/>
163*2bde4061SEd Tanous        </Member>
164*2bde4061SEd Tanous      </EnumType>
165*2bde4061SEd Tanous    </Schema>
166*2bde4061SEd Tanous
167*2bde4061SEd Tanous  </edmx:DataServices>
168*2bde4061SEd Tanous</edmx:Edmx>
169