Returns the list of classes defined in oneOf.
require 'intersight_client'
IntersightClient::OsConfigurationFileRelationship.openapi_one_of
# =>
# [
# :'MoMoRef',
# :'Null',
# :'OsConfigurationFile'
# ]Returns the discriminator's property name.
require 'intersight_client'
IntersightClient::OsConfigurationFileRelationship.openapi_discriminator_name
# => :'class_id'Returns the discriminator's mapping.
require 'intersight_client'
IntersightClient::OsConfigurationFileRelationship.openapi_discriminator_mapping
# =>
# {
# :'mo.MoRef' => :'MoMoRef',
# :'os.ConfigurationFile' => :'OsConfigurationFile'
# }
### build
Find the appropriate object from the `openapi_one_of` list and casts the data into it.
#### Example
```ruby
require 'intersight_client'
IntersightClient::OsConfigurationFileRelationship.build(data)
# => #<MoMoRef:0x00007fdd4aab02a0>
IntersightClient::OsConfigurationFileRelationship.build(data_that_doesnt_match)
# => nil| Name | Type | Description |
|---|---|---|
| data | Mixed | data to be matched against the list of oneOf items |
MoMoRefNullOsConfigurationFilenil(if no type matches)