Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.4.1.dev2",
"regenerated": "2021-02-04 09:37:42.213760",
"spec_repo_commit": "0e53363"
"regenerated": "2021-02-05 08:15:05.457880",
"spec_repo_commit": "7973735"
},
"v2": {
"apigentools_version": "1.4.1.dev2",
"regenerated": "2021-02-04 09:37:54.800888",
"spec_repo_commit": "0e53363"
"regenerated": "2021-02-05 08:15:17.974135",
"spec_repo_commit": "7973735"
}
}
}
11 changes: 0 additions & 11 deletions data/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1589,15 +1589,6 @@ components:
- RUM
- SECURITY_SIGNALS
- PROFILES
FormulaAndFunctionEventsSortType:
description: Method for sorting event platform results.
enum:
- alphabetical
- measure
type: string
x-enum-varnames:
- ALPHABETICAL
- MEASURE
FormulaAndFunctionMetricAggregation:
description: The aggregation methods available for metrics queries.
enum:
Expand Down Expand Up @@ -7666,8 +7657,6 @@ components:
type: string
order:
$ref: '#/components/schemas/QuerySortOrder'
type:
$ref: '#/components/schemas/FormulaAndFunctionEventsSortType'
required:
- aggregation
type: object
Expand Down
15 changes: 0 additions & 15 deletions docs/v1/FormulaAndFunctionEventsSortType.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ Class | Method | HTTP request | Description
- [DatadogAPIClient::V1::EventTimelineWidgetDefinitionType](EventTimelineWidgetDefinitionType.md)
- [DatadogAPIClient::V1::FormulaAndFunctionEventAggregation](FormulaAndFunctionEventAggregation.md)
- [DatadogAPIClient::V1::FormulaAndFunctionEventsDataSource](FormulaAndFunctionEventsDataSource.md)
- [DatadogAPIClient::V1::FormulaAndFunctionEventsSortType](FormulaAndFunctionEventsSortType.md)
- [DatadogAPIClient::V1::FormulaAndFunctionMetricAggregation](FormulaAndFunctionMetricAggregation.md)
- [DatadogAPIClient::V1::FormulaAndFunctionMetricDataSource](FormulaAndFunctionMetricDataSource.md)
- [DatadogAPIClient::V1::FormulaAndFunctionProcessQueryDataSource](FormulaAndFunctionProcessQueryDataSource.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
| **aggregation** | [**FormulaAndFunctionEventAggregation**](FormulaAndFunctionEventAggregation.md) | | |
| **metric** | **String** | Metric used for sorting group by results. | [optional] |
| **order** | [**QuerySortOrder**](QuerySortOrder.md) | | [optional][default to 'desc'] |
| **type** | [**FormulaAndFunctionEventsSortType**](FormulaAndFunctionEventsSortType.md) | | [optional] |

## Example

Expand All @@ -17,8 +16,7 @@ require 'datadog_api_client/v1'
instance = DatadogAPIClient::V1::TimeSeriesFormulaAndFunctionEventQueryDefinitionSort.new(
aggregation: null,
metric: null,
order: null,
type: null
order: null
)
```

1 change: 0 additions & 1 deletion lib/datadog_api_client/v1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@
require 'datadog_api_client/v1/models/event_timeline_widget_definition_type'
require 'datadog_api_client/v1/models/formula_and_function_event_aggregation'
require 'datadog_api_client/v1/models/formula_and_function_events_data_source'
require 'datadog_api_client/v1/models/formula_and_function_events_sort_type'
require 'datadog_api_client/v1/models/formula_and_function_metric_aggregation'
require 'datadog_api_client/v1/models/formula_and_function_metric_data_source'
require 'datadog_api_client/v1/models/formula_and_function_process_query_data_source'
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,12 @@ class TimeSeriesFormulaAndFunctionEventQueryDefinitionSort

attr_accessor :order

attr_accessor :type

# Attribute mapping from ruby-style variable name to JSON key.
def self.attribute_map
{
:'aggregation' => :'aggregation',
:'metric' => :'metric',
:'order' => :'order',
:'type' => :'type'
:'order' => :'order'
}
end

Expand All @@ -48,8 +45,7 @@ def self.openapi_types
{
:'aggregation' => :'FormulaAndFunctionEventAggregation',
:'metric' => :'String',
:'order' => :'QuerySortOrder',
:'type' => :'FormulaAndFunctionEventsSortType'
:'order' => :'QuerySortOrder'
}
end

Expand Down Expand Up @@ -87,10 +83,6 @@ def initialize(attributes = {})
else
self.order = 'desc'
end

if attributes.key?(:'type')
self.type = attributes[:'type']
end
end

# Show invalid properties with the reasons. Usually used together with valid?
Expand Down Expand Up @@ -118,8 +110,7 @@ def ==(o)
self.class == o.class &&
aggregation == o.aggregation &&
metric == o.metric &&
order == o.order &&
type == o.type
order == o.order
end

# @see the `==` method
Expand All @@ -131,7 +122,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Integer] Hash code
def hash
[aggregation, metric, order, type].hash
[aggregation, metric, order].hash
end

# Builds the object from hash
Expand Down
31 changes: 0 additions & 31 deletions spec/v1/models/formula_and_function_events_sort_type_spec.rb

This file was deleted.