Sha256: 9e639b8ae82f61d78ba2ec99cd3a2cd2e6ca90141c3e317c78eb70d6da660b29
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
# DatadogAPIClient::V2::LogsArchiveCreateRequestDestination ## Class instance methods ### `openapi_one_of` Returns the list of classes defined in oneOf. #### Example ```ruby require 'datadog_api_client/v2' DatadogAPIClient::V2::LogsArchiveCreateRequestDestination.openapi_one_of # => # [ # :'LogsArchiveDestinationAzure', # :'LogsArchiveDestinationGCS', # :'LogsArchiveDestinationS3' # ] ``` ### build Find the appropriate object from the `openapi_one_of` list and casts the data into it. #### Example ```ruby require 'datadog_api_client/v2' DatadogAPIClient::V2::LogsArchiveCreateRequestDestination.build(data) # => #<LogsArchiveDestinationAzure:0x00007fdd4aab02a0> DatadogAPIClient::V2::LogsArchiveCreateRequestDestination.build(data_that_doesnt_match) # => nil ``` #### Parameters | Name | Type | Description | | -------- | --------- | -------------------------------------------------- | | **data** | **Mixed** | data to be matched against the list of oneOf items | #### Return type - `LogsArchiveDestinationAzure` - `LogsArchiveDestinationGCS` - `LogsArchiveDestinationS3` - `nil` (if no type matches)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
datadog_api_client-1.6.0 | docs/v2/LogsArchiveCreateRequestDestination.md |
datadog_api_client-1.5.0 | docs/v2/LogsArchiveCreateRequestDestination.md |