Module: DatadogAPIClient::V2::MetricVolumes
- Extended by:
- BaseOneOfModel, BaseOneOfModelNoDiscriminator
- Defined in:
- lib/datadog_api_client/v2/models/metric_volumes.rb
Overview
Possible response objects for a metric's volume.
Class Attribute Summary collapse
-
._unparsed ⇒ Object
Returns the value of attribute _unparsed.
Attributes included from BaseOneOfModel
Class Method Summary collapse
-
.build(data) ⇒ Object
Builds the object.
-
.openapi_one_of ⇒ Object
List of class defined in oneOf (OpenAPI v3).
Class Attribute Details
._unparsed ⇒ Object
Returns the value of attribute _unparsed.
23 24 25 |
# File 'lib/datadog_api_client/v2/models/metric_volumes.rb', line 23 def _unparsed @_unparsed end |
Class Method Details
.build(data) ⇒ Object
Builds the object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/datadog_api_client/v2/models/metric_volumes.rb', line 36 def build(data) # Go through the list of oneOf items and attempt to identify the appropriate one. # Note: # - We do not attempt to check whether exactly one item matches. # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 }) # due to the way the deserialization is made in the base_object template (it just casts without verifying). # - TODO: scalar values are de facto behaving as if they were nullable. # - TODO: logging when debugging is set. openapi_one_of.each do |klass| begin next if klass == :AnyType # "nullable: true" typed_data = find_and_cast_into_type(klass, data) next if typed_data._unparsed return typed_data if typed_data rescue # rescue all errors so we keep iterating even if the current item lookup raises end end if openapi_one_of.include?(:AnyType) data else self._unparsed = true DatadogAPIClient::V2::UnparsedObject.new(data) end end |
.openapi_one_of ⇒ Object
List of class defined in oneOf (OpenAPI v3)
26 27 28 29 30 31 |
# File 'lib/datadog_api_client/v2/models/metric_volumes.rb', line 26 def openapi_one_of [ :'MetricDistinctVolume', :'MetricIngestedIndexedVolume' ] end |