1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  AggregationSource v1.4.1                                            -->
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                                   -->
8<!--# Copyright 2014-2024 DMTF.                                                            -->
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/Resource_v1.xml">
21    <edmx:Include Namespace="Resource"/>
22    <edmx:Include Namespace="Resource.v1_0_0"/>
23  </edmx:Reference>
24  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
27  </edmx:Reference>
28  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/ConnectionMethod_v1.xml">
29    <edmx:Include Namespace="ConnectionMethod"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/KeyCollection_v1.xml">
32    <edmx:Include Namespace="KeyCollection"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Key_v1.xml">
35    <edmx:Include Namespace="Key"/>
36  </edmx:Reference>
37
38  <edmx:DataServices>
39
40    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource">
41      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
42      <Annotation Term="Redfish.Language" String="en"/>
43
44      <EntityType Name="AggregationSource" BaseType="Resource.v1_0_0.Resource" Abstract="true">
45        <Annotation Term="OData.Description" String="The `AggregationSource` schema is used to represent the source of information for a subset of the resources provided by a Redfish service.  It can be thought of as a provider of information.  As such, most such interfaces have requirements to support the gathering of information like address and account used to access the information."/>
46        <Annotation Term="OData.LongDescription" String="This resource shall represent an aggregation source for a Redfish implementation."/>
47        <Annotation Term="Capabilities.InsertRestrictions">
48          <Record>
49            <PropertyValue Property="Insertable" Bool="false"/>
50          </Record>
51        </Annotation>
52        <Annotation Term="Capabilities.UpdateRestrictions">
53          <Record>
54            <PropertyValue Property="Updatable" Bool="true"/>
55          </Record>
56        </Annotation>
57        <Annotation Term="Capabilities.DeleteRestrictions">
58          <Record>
59            <PropertyValue Property="Deletable" Bool="true"/>
60          </Record>
61        </Annotation>
62        <Annotation Term="Redfish.Uris">
63          <Collection>
64            <String>/redfish/v1/AggregationService/AggregationSources/{AggregationSourceId}</String>
65          </Collection>
66        </Annotation>
67      </EntityType>
68
69      <Action Name="GenerateSSHIdentityKeyPair" IsBound="true">
70        <Annotation Term="OData.Description" String="This action generates a new SSH identity key-pair to be used with this aggregation source.  The generated public key is stored in the `Key` resource referenced by the `PublicIdentityKey` property in `SSHSettings`.  Any existing key-pair is deleted and replaced by the new key-pair."/>
71        <Annotation Term="OData.LongDescription" String="This action shall generate a new SSH identity key-pair to be used with this aggregation source.  The service shall store the generated public key in the `Key` resource referenced by the `PublicIdentityKey` property in `SSHSettings`.  If the aggregation source already has an associated SSH identity key-pair, the service shall delete the key-pair and replace it with the new key-pair."/>
72        <Parameter Name="AggregationSource" Type="AggregationSource.v1_0_0.Actions"/>
73        <Parameter Name="KeyType" Type="Key.SSHKeyType" Nullable="false">
74          <Annotation Term="OData.Description" String="The type of SSH key."/>
75          <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of SSH key."/>
76        </Parameter>
77        <Parameter Name="KeyLength" Type="Edm.Int64">
78          <Annotation Term="OData.Description" String="The length of the SSH key, in bits, if the KeyType parameter contains `RSA`."/>
79          <Annotation Term="OData.LongDescription" String="This parameter shall contain the length of the SSH key, in bits.  This parameter shall be required if the `KeyType` parameter contains `RSA` and shall be rejected for other values."/>
80        </Parameter>
81        <Parameter Name="Curve" Type="Key.ECDSACurveType">
82          <Annotation Term="OData.Description" String="The curve to use with the SSH key if the KeyType parameter contains `ECDSA`."/>
83          <Annotation Term="OData.LongDescription" String="This parameter shall contain the curve to use with the SSH key.  This parameter shall be required if the `KeyType` parameter contains `ECDSA` and shall be rejected for other values."/>
84        </Parameter>
85        <Annotation Term="Redfish.Revisions">
86          <Collection>
87            <Record>
88              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
89              <PropertyValue Property="Version" String="v1_3_0"/>
90            </Record>
91          </Collection>
92        </Annotation>
93      </Action>
94
95      <Action Name="RemoveSSHIdentityKeyPair" IsBound="true">
96        <Annotation Term="OData.Description" String="This action removes the SSH identity key-pair used with this aggregation source."/>
97        <Annotation Term="OData.LongDescription" String="This action shall remove the private SSH identity key-pair used with this aggregation source."/>
98        <Parameter Name="AggregationSource" Type="AggregationSource.v1_0_0.Actions"/>
99        <Annotation Term="Redfish.Revisions">
100          <Collection>
101            <Record>
102              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
103              <PropertyValue Property="Version" String="v1_3_0"/>
104            </Record>
105          </Collection>
106        </Annotation>
107      </Action>
108    </Schema>
109
110    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_0_0">
111      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
112      <Annotation Term="Redfish.Release" String="2020.2"/>
113
114      <EntityType Name="AggregationSource" BaseType="AggregationSource.AggregationSource">
115        <Property Name="HostName" Type="Edm.String">
116          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
117          <Annotation Term="OData.Description" String="The URI of the system to be accessed."/>
118          <Annotation Term="OData.LongDescription" String="This property shall contain the URI of the system to be aggregated.  This property shall not be required when the aggregation source is configured to only receive notifications from the aggregated system and the `AggregationType` property contains the value `NotificationsOnly`."/>
119          <Annotation Term="OData.IsURL"/>
120        </Property>
121        <Property Name="UserName" Type="Edm.String">
122          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
123          <Annotation Term="OData.Description" String="The username for accessing the aggregation source."/>
124          <Annotation Term="OData.LongDescription" String="This property shall contain the username for accessing the aggregation source."/>
125        </Property>
126        <Property Name="Password" Type="Edm.String">
127          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
128          <Annotation Term="OData.Description" String="The password for accessing the aggregation source.  The value is `null` in responses."/>
129          <Annotation Term="OData.LongDescription" String="This property shall contain a password for accessing the aggregation source.  The value shall be `null` in responses."/>
130        </Property>
131        <Property Name="Links" Type="AggregationSource.v1_0_0.Links" Nullable="false">
132          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
133          <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."/>
134        </Property>
135        <Property Name="Actions" Type="AggregationSource.v1_0_0.Actions" Nullable="false">
136          <Annotation Term="OData.Description" String="The available actions for this resource."/>
137          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
138        </Property>
139      </EntityType>
140
141      <ComplexType Name="Links" BaseType="Resource.Links">
142        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
143        <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."/>
144        <NavigationProperty Name="ConnectionMethod" Type="ConnectionMethod.ConnectionMethod" Nullable="false">
145          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
146          <Annotation Term="OData.Description" String="An array of links to the connection methods used to contact this aggregation source."/>
147          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type `ConnectionMethod` that are used to connect to the aggregation source."/>
148          <Annotation Term="OData.AutoExpandReferences"/>
149        </NavigationProperty>
150        <NavigationProperty Name="ResourcesAccessed" Type="Collection(Resource.Resource)">
151          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
152          <Annotation Term="OData.Description" String="An array links to the resources added to the service through this aggregation source.  It is recommended that this be the minimal number of properties needed to find the resources that would be lost when the aggregation source is deleted."/>
153          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the resources added to the service through the aggregation source.  It is recommended that this be the minimal number of properties needed to find the resources that would be lost when the aggregation source is deleted.  For example, this could be the pointers to the members of the root-level collections or the manager of a BMC."/>
154          <Annotation Term="OData.AutoExpandReferences"/>
155        </NavigationProperty>
156      </ComplexType>
157
158      <ComplexType Name="Actions">
159        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
160        <Annotation Term="OData.Description" String="The available actions for this resource."/>
161        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
162        <Property Name="Oem" Type="AggregationSource.v1_0_0.OemActions" Nullable="false">
163          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
164          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
165        </Property>
166      </ComplexType>
167
168      <ComplexType Name="OemActions">
169        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
170        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
171        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
172      </ComplexType>
173    </Schema>
174
175    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_0_1">
176      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
177      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
178      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_0_0.AggregationSource"/>
179    </Schema>
180
181    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_0_2">
182      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
183      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
184      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_0_1.AggregationSource"/>
185    </Schema>
186
187    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_0_3">
188      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
189      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
190      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_0_2.AggregationSource"/>
191    </Schema>
192
193    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_1_0">
194      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
195      <Annotation Term="Redfish.Release" String="2020.4"/>
196
197      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_0_0.AggregationSource">
198        <Property Name="SNMP" Type="AggregationSource.v1_1_0.SNMPSettings" Nullable="false">
199          <Annotation Term="OData.Description" String="SNMP settings of the aggregation source."/>
200          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP settings of the aggregation source."/>
201        </Property>
202      </EntityType>
203
204      <ComplexType Name="SNMPSettings">
205        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
206        <Annotation Term="OData.Description" String="Settings for an SNMP aggregation source."/>
207        <Annotation Term="OData.LongDescription" String="This type shall contain the settings for an SNMP aggregation source."/>
208        <Property Name="AuthenticationKey" Type="Edm.String">
209          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
210          <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
211          <Annotation Term="OData.LongDescription" String="This property shall contain the key for SNMPv3 authentication.  The value shall be `null` in responses.  This property accepts a passphrase or a hex-encoded key.  If the string starts with `Passphrase:`, the remainder of the string shall be the passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  If the string starts with `Hex:`, then the remainder of the string shall be the key encoded in hexadecimal notation.  If the string starts with neither, the full string shall be a passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  The passphrase can contain any printable characters except for the double quotation mark."/>
212          <Annotation Term="Validation.Pattern" String="(^[ !#-~]+$)|(^Passphrase:[ ^[ !#-~]+$)|(^Hex:[0-9A-Fa-f]{24,96})|(^\*+$)"/>
213        </Property>
214        <Property Name="AuthenticationProtocol" Type="AggregationSource.v1_1_0.SNMPAuthenticationProtocols">
215          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
216          <Annotation Term="OData.Description" String="The authentication protocol for SNMPv3."/>
217          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 authentication protocol."/>
218        </Property>
219        <Property Name="EncryptionKey" Type="Edm.String">
220          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
221          <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
222          <Annotation Term="OData.LongDescription" String="This property shall contain the key for SNMPv3 encryption.  The value shall be `null` in responses.  This property accepts a passphrase or a hex-encoded key.  If the string starts with `Passphrase:`, the remainder of the string shall be the passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  If the string starts with `Hex:`, then the remainder of the string shall be the key encoded in hexadecimal notation.  If the string starts with neither, the full string shall be a passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  The passphrase can contain any printable characters except for the double quotation mark."/>
223          <Annotation Term="Validation.Pattern" String="(^[A-Za-z0-9]+$)|(^\*+$)"/>
224        </Property>
225        <Property Name="EncryptionProtocol" Type="AggregationSource.v1_1_0.SNMPEncryptionProtocols">
226          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
227          <Annotation Term="OData.Description" String="The encryption protocol for SNMPv3."/>
228          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 encryption protocol."/>
229        </Property>
230        <Property Name="AuthenticationKeySet" Type="Edm.Boolean" Nullable="false">
231          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
232          <Annotation Term="OData.Description" String="Indicates if the `AuthenticationKey` property is set."/>
233          <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the `AuthenticationKey` property.  Otherwise, the property shall contain `false`."/>
234        </Property>
235        <Property Name="EncryptionKeySet" Type="Edm.Boolean" Nullable="false">
236          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
237          <Annotation Term="OData.Description" String="Indicates if the `EncryptionKey` property is set."/>
238          <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the `EncryptionKey` property.  Otherwise, the property shall contain `false`."/>
239        </Property>
240      </ComplexType>
241
242      <EnumType Name="SNMPAuthenticationProtocols">
243        <Member Name="None">
244          <Annotation Term="OData.Description" String="No authentication."/>
245          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is not required."/>
246        </Member>
247        <Member Name="CommunityString">
248          <Annotation Term="OData.Description" String="Trap community string authentication."/>
249          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication using SNMP community strings and the value of `TrapCommunity`."/>
250        </Member>
251        <Member Name="HMAC_MD5">
252          <Annotation Term="OData.Description" String="HMAC-MD5-96 authentication."/>
253          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-MD5-96 authentication protocol."/>
254        </Member>
255        <Member Name="HMAC_SHA96">
256          <Annotation Term="OData.Description" String="HMAC-SHA-96 authentication."/>
257          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-SHA-96 authentication protocol."/>
258        </Member>
259        <Member Name="HMAC128_SHA224">
260          <Annotation Term="OData.Description" String="HMAC-128-SHA-224 authentication."/>
261          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC128SHA224AuthProtocol."/>
262        </Member>
263        <Member Name="HMAC192_SHA256">
264          <Annotation Term="OData.Description" String="HMAC-192-SHA-256 authentication."/>
265          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC192SHA256AuthProtocol."/>
266        </Member>
267        <Member Name="HMAC256_SHA384">
268          <Annotation Term="OData.Description" String="HMAC-256-SHA-384 authentication."/>
269          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC256SHA384AuthProtocol."/>
270        </Member>
271        <Member Name="HMAC384_SHA512">
272          <Annotation Term="OData.Description" String="HMAC-384-SHA-512 authentication."/>
273          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC384SHA512AuthProtocol."/>
274        </Member>
275      </EnumType>
276
277      <EnumType Name="SNMPEncryptionProtocols">
278        <Member Name="None">
279          <Annotation Term="OData.Description" String="No encryption."/>
280          <Annotation Term="OData.LongDescription" String="This value shall indicate there is no encryption."/>
281        </Member>
282        <Member Name="CBC_DES">
283          <Annotation Term="OData.Description" String="CBC-DES encryption."/>
284          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol."/>
285        </Member>
286        <Member Name="CFB128_AES128">
287          <Annotation Term="OData.Description" String="CFB128-AES-128 encryption."/>
288          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3826-defined CFB128-AES-128 encryption protocol."/>
289        </Member>
290        <Member Name="CFB128_AES192">
291          <Annotation Term="OData.Description" String="CFB128-AES-192 encryption."/>
292          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the CFB128-AES-192 encryption protocol, extended from RFC3826."/>
293          <Annotation Term="Redfish.Revisions">
294            <Collection>
295              <Record>
296                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
297                <PropertyValue Property="Version" String="v1_4_0"/>
298              </Record>
299            </Collection>
300          </Annotation>
301        </Member>
302        <Member Name="CFB128_AES256">
303          <Annotation Term="OData.Description" String="CFB128-AES-256 encryption."/>
304          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the CFB128-AES-256 encryption protocol, extended from RFC3826."/>
305          <Annotation Term="Redfish.Revisions">
306            <Collection>
307              <Record>
308                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
309                <PropertyValue Property="Version" String="v1_4_0"/>
310              </Record>
311            </Collection>
312          </Annotation>
313        </Member>
314      </EnumType>
315    </Schema>
316
317    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_1_1">
318      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
319      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
320      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_1_0.AggregationSource"/>
321    </Schema>
322
323    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_1_2">
324      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
325      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
326      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_1_1.AggregationSource"/>
327    </Schema>
328
329    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_1_3">
330      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
331      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
332      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_1_2.AggregationSource"/>
333    </Schema>
334
335    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_2_0">
336      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
337      <Annotation Term="Redfish.Release" String="2021.3"/>
338
339      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_1_0.AggregationSource">
340        <Property Name="AggregationType" Type="AggregationSource.v1_2_0.AggregationType" Nullable="false">
341          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
342          <Annotation Term="OData.Description" String="The type of aggregation used towards the aggregation source."/>
343          <Annotation Term="OData.LongDescription" String="This property shall contain the type of aggregation used for the connection method towards the aggregation source.  If this property is not present, the value shall be assumed to be `Full`."/>
344        </Property>
345      </EntityType>
346
347      <EnumType Name="AggregationType">
348        <Member Name="NotificationsOnly">
349          <Annotation Term="OData.Description" String="Only notifications are aggregated."/>
350          <Annotation Term="OData.LongDescription" String="This value shall indicate that the aggregator is only aggregating notifications or events from the aggregation source according to the connection method used.  This value shall not be used with connection methods that do not include notifications."/>
351        </Member>
352        <Member Name="Full">
353          <Annotation Term="OData.Description" String="Full aggregation according to connection method."/>
354          <Annotation Term="OData.LongDescription" String="This value shall indicate that the aggregator is performing full aggregation according to the connection method without any limitation such as only receiving notifications."/>
355        </Member>
356      </EnumType>
357
358      <ComplexType Name="SNMPSettings" BaseType="AggregationSource.v1_1_0.SNMPSettings">
359        <Property Name="TrapCommunity" Type="Edm.String">
360          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
361          <Annotation Term="OData.Description" String="The SNMP trap community string."/>
362          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP trap community string.  The value shall be `null` in responses.  Services may provide a common trap community if not specified by the client when creating the aggregation source."/>
363        </Property>
364      </ComplexType>
365    </Schema>
366
367    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_2_1">
368      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
369      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
370      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_2_0.AggregationSource"/>
371    </Schema>
372
373    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_2_2">
374      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
375      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
376      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_2_1.AggregationSource"/>
377    </Schema>
378
379    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_2_3">
380      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
381      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
382      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_2_2.AggregationSource"/>
383    </Schema>
384
385    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_3_0">
386      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
387      <Annotation Term="Redfish.Release" String="2022.3"/>
388
389      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_2_0.AggregationSource">
390        <Property Name="SSHSettings" Type="AggregationSource.v1_3_0.SSHSettingsType" Nullable="false">
391          <Annotation Term="OData.Description" String="Settings for an aggregation source using SSH as part of the associated connection method."/>
392          <Annotation Term="OData.LongDescription" String="This property shall contain the settings for an aggregation source using SSH as part of the associated connection method."/>
393        </Property>
394        <Property Name="Status" Type="Resource.Status" Nullable="false">
395          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
396          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
397        </Property>
398      </EntityType>
399
400      <ComplexType Name="SSHSettingsType">
401        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
402        <Annotation Term="OData.Description" String="Settings for an aggregation source using SSH as part of the associated connection method."/>
403        <Annotation Term="OData.LongDescription" String="This type shall contain the settings for an aggregation source using SSH as part of the associated connection method."/>
404        <Property Name="UserAuthenticationMethod" Type="AggregationSource.v1_3_0.UserAuthenticationMethod">
405          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
406          <Annotation Term="OData.Description" String="The client user authentication method."/>
407          <Annotation Term="OData.LongDescription" String="This property shall contain the client user authentication method."/>
408        </Property>
409        <Property Name="PresentedPublicHostKeyTimestamp" Type="Edm.DateTimeOffset">
410          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
411          <Annotation Term="OData.Description" String="The date and time when the key referenced by the `PresentedPublicHostKey` property was last updated."/>
412          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when the key referenced by the `PresentedPublicHostKey` property was last updated."/>
413        </Property>
414        <NavigationProperty Name="TrustedPublicHostKeys" Type="KeyCollection.KeyCollection" ContainsTarget="true" Nullable="false">
415          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
416          <Annotation Term="OData.Description" String="A link to the trusted public host keys of the remote service corresponding to the aggregation source.  These trusted public host keys are used for authentication of the remote service with SSH.  An SSH public host key of the remote service can be added to this collection to allow for public key-based SSH authentication."/>
417          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `KeyCollection` that represents the trusted public host keys of the remote service corresponding to the aggregation source.  If the associated connection method specifies SSH tunneling, the service shall compare the public host key presented by the remote service with members of this collection to determine if the remote service can be trusted.  If the remote service cannot be trusted, the `State` property within `Status` shall contain `Disabled` and the service shall not connect to the remote service."/>
418        </NavigationProperty>
419        <NavigationProperty Name="PresentedPublicHostKey" Type="Key.Key" ContainsTarget="true" Nullable="false">
420          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
421          <Annotation Term="OData.Description" String="A link to the last public host key presented by the remote service corresponding to the aggregation source.  A client that trusts this public host key can add the public host key to the TrustedPublicHostKeys collection to allow SSH communication with the aggregation source."/>
422          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `Key` that represents the last public host key presented by the remote service corresponding to the aggregation source.  This property shall not be present if a public host key has not yet been presented by the remote service."/>
423        </NavigationProperty>
424        <NavigationProperty Name="PublicIdentityKey" Type="Key.Key" ContainsTarget="true" Nullable="false">
425          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
426          <Annotation Term="OData.Description" String="A link to the public key that is used with the aggregation source when the authentication method is configured to use a public key.  The GenerateSSHIdentityKeyPair and RemoveSSHIdentityKeyPair are used to update the key for this aggregation source."/>
427          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `Key` that represents the public key that is used with the aggregation source when `UserAuthenticationMethod` contains `PublicKey`.  This property shall not be present if a key-pair is not available.  The `State` property within `Status` shall contain `Disabled` if a key-pair is not available and `UserAuthenticationMethod` contains `PublicKey`."/>
428        </NavigationProperty>
429      </ComplexType>
430
431      <EnumType Name="UserAuthenticationMethod">
432        <Member Name="PublicKey">
433          <Annotation Term="OData.Description" String="SSH user authentication with a public key."/>
434          <Annotation Term="OData.LongDescription" String="This value shall indicate SSH user authentication with a public key specified by the `PublicIdentityKey` property in `SSHSettings`."/>
435        </Member>
436        <Member Name="Password">
437          <Annotation Term="OData.Description" String="SSH user authentication with a password."/>
438          <Annotation Term="OData.LongDescription" String="This value shall indicate SSH user authentication with a password specified by the `Password` property."/>
439        </Member>
440      </EnumType>
441    </Schema>
442
443    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_3_1">
444      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
445      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
446      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_3_0.AggregationSource"/>
447    </Schema>
448
449    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_3_2">
450      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
451      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
452      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_3_1.AggregationSource"/>
453    </Schema>
454
455    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_3_3">
456      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
457      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
458      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_3_2.AggregationSource"/>
459    </Schema>
460
461    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_4_0">
462      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
463      <Annotation Term="Redfish.Release" String="2023.3"/>
464      <Annotation Term="OData.Description" String="This version was created to add `CFB128_AES192` and `CFB128_AES256` to `SNMPEncryptionProtocols`."/>
465
466      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_3_2.AggregationSource"/>
467    </Schema>
468
469    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="AggregationSource.v1_4_1">
470      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
471      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
472      <EntityType Name="AggregationSource" BaseType="AggregationSource.v1_4_0.AggregationSource"/>
473    </Schema>
474
475  </edmx:DataServices>
476</edmx:Edmx>
477