datadog_api_client 2.12.0 → 2.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.apigentools-info +6 -6
- data/.generator/conftest.py +7 -0
- data/.generator/poetry.lock +45 -75
- data/.generator/pyproject.toml +7 -7
- data/.generator/schemas/v1/openapi.yaml +257 -19
- data/.generator/schemas/v2/openapi.yaml +3020 -911
- data/.generator/src/generator/formatter.py +43 -32
- data/.generator/src/generator/openapi.py +4 -2
- data/.generator/src/generator/templates/api_client.j2 +81 -53
- data/.generator/src/generator/templates/configuration.j2 +21 -0
- data/.github/workflows/test_integration.yml +7 -1
- data/.pre-commit-config.yaml +4 -4
- data/CHANGELOG.md +62 -0
- data/README.md +23 -0
- data/examples/v1/azure-integration/CreateAzureIntegration.rb +3 -0
- data/examples/v1/azure-integration/DeleteAzureIntegration.rb +3 -0
- data/examples/v1/azure-integration/UpdateAzureHostFilters.rb +3 -0
- data/examples/v1/azure-integration/UpdateAzureIntegration.rb +3 -0
- data/examples/v1/dashboards/CreateDashboard_1284514532.rb +43 -0
- data/examples/v1/dashboards/CreateDashboard_2261785072.rb +47 -0
- data/examples/v1/dashboards/CreateDashboard_252716965.rb +6 -0
- data/examples/v1/dashboards/CreateDashboard_3513586382.rb +74 -0
- data/examples/v1/dashboards/CreateDashboard_3562282606.rb +1 -0
- data/examples/v1/dashboards/DeletePublicDashboardInvitation.rb +3 -3
- data/examples/v1/organizations/UpdateOrg.rb +1 -1
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1487281163.rb +1 -0
- data/examples/v1/users/CreateUser.rb +1 -1
- data/examples/v1/users/CreateUser_266604071.rb +13 -0
- data/examples/v1/users/UpdateUser.rb +1 -1
- data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent.rb +3 -0
- data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent_129899466.rb +3 -0
- data/examples/v2/confluent-cloud/CreateConfluentAccount.rb +1 -0
- data/examples/v2/confluent-cloud/CreateConfluentResource.rb +1 -0
- data/examples/v2/confluent-cloud/UpdateConfluentResource.rb +1 -0
- data/examples/v2/downtimes/CancelDowntime.rb +11 -0
- data/examples/v2/downtimes/CreateDowntime.rb +26 -0
- data/examples/v2/downtimes/GetDowntime.rb +11 -0
- data/examples/v2/downtimes/ListDowntimes.rb +8 -0
- data/examples/v2/downtimes/ListMonitorDowntimes.rb +8 -0
- data/examples/v2/downtimes/ListMonitorDowntimes_128979780.rb +8 -0
- data/examples/v2/downtimes/UpdateDowntime.rb +21 -0
- data/examples/v2/logs/AggregateLogs_2955613758.rb +1 -1
- data/examples/v2/logs/ListLogsGet_2034110533.rb +3 -1
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_1092490364.rb +10 -0
- data/examples/v2/spans/AggregateSpans.rb +25 -0
- data/examples/v2/spans/ListSpans.rb +25 -0
- data/examples/v2/spans/ListSpansGet.rb +5 -0
- data/examples/v2/spans/ListSpansGet_1130763422.rb +8 -0
- data/examples/v2/spans/ListSpans_3495563906.rb +25 -0
- data/examples/v2/teams/CreateTeam.rb +2 -2
- data/examples/v2/teams/CreateTeam_252121814.rb +24 -0
- data/examples/v2/teams/GetUserMemberships.rb +8 -0
- data/examples/v2/teams/UpdateTeam.rb +9 -0
- data/lib/datadog_api_client/api_client.rb +81 -53
- data/lib/datadog_api_client/configuration.rb +28 -0
- data/lib/datadog_api_client/inflector.rb +97 -1
- data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +2 -2
- data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +10 -10
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +3 -3
- data/lib/datadog_api_client/v1/models/azure_account.rb +32 -1
- data/lib/datadog_api_client/v1/models/change_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/distribution_widget_definition.rb +13 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_cloud_cost_data_source.rb +26 -0
- data/lib/datadog_api_client/v1/models/formula_and_function_cloud_cost_query_definition.rb +150 -0
- data/lib/datadog_api_client/v1/models/formula_and_function_query_definition.rb +2 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_response_format.rb +2 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_slo_query_definition.rb +11 -1
- data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +24 -2
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +3 -0
- data/lib/datadog_api_client/v1/models/ip_prefixes_remote_configuration.rb +94 -0
- data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -1
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +6 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +61 -1
- data/lib/datadog_api_client/v1/models/organization_settings.rb +8 -0
- data/lib/datadog_api_client/v1/models/query_value_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/scatterplot_table_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/sunburst_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +11 -1
- data/lib/datadog_api_client/v1/models/table_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/timeseries_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/toplist_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/tree_map_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_hour.rb +12 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +24 -4
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +24 -4
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +24 -4
- data/lib/datadog_api_client/v1/models/user.rb +8 -0
- data/lib/datadog_api_client/v1/models/widget_comparator.rb +1 -0
- data/lib/datadog_api_client/v1/models/widget_display_type.rb +1 -0
- data/lib/datadog_api_client/v2/api/ci_visibility_pipelines_api.rb +11 -5
- data/lib/datadog_api_client/v2/api/downtimes_api.rb +462 -0
- data/lib/datadog_api_client/v2/api/ip_allowlist_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/logs_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/metrics_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/rum_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +3 -3
- data/lib/datadog_api_client/v2/api/spans_api.rb +294 -0
- data/lib/datadog_api_client/v2/api/spans_metrics_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/teams_api.rb +65 -0
- data/lib/datadog_api_client/v2/models/application_key_create_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/application_key_update_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/ci_app_event_attributes.rb +9 -21
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event_attributes.rb +102 -0
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event_pipeline.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_level.rb +30 -0
- data/lib/datadog_api_client/v2/models/ci_app_pipelines_query_filter.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_test_level.rb +29 -0
- data/lib/datadog_api_client/v2/models/ci_app_tests_analytics_aggregate_response.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_tests_query_filter.rb +1 -1
- data/lib/datadog_api_client/v2/models/cloud_configuration_rule_compliance_signal_options.rb +25 -1
- data/lib/datadog_api_client/v2/models/cloud_configuration_rule_create_payload.rb +13 -1
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_attributes.rb +41 -1
- data/lib/datadog_api_client/v2/models/confluent_account_resource_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/confluent_resource_request_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/confluent_resource_response_attributes.rb +21 -1
- data/lib/datadog_api_client/v2/models/dashboard_list_item.rb +36 -1
- data/lib/datadog_api_client/v2/models/downtime_create_request.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_create_request_attributes.rb +194 -0
- data/lib/datadog_api_client/v2/models/downtime_create_request_data.rb +119 -0
- data/lib/datadog_api_client/v2/models/downtime_included_monitor_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/downtime_meta.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_meta_page.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier_id.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier_tags.rb +107 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_included_attributes.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_included_item.rb +100 -0
- data/lib/datadog_api_client/v2/models/downtime_notify_end_state_actions.rb +27 -0
- data/lib/datadog_api_client/v2/models/downtime_notify_end_state_types.rb +28 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_created_by.rb +88 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_created_by_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_monitor.rb +88 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_monitor_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/downtime_response.rb +95 -0
- data/lib/datadog_api_client/v2/models/downtime_response_attributes.rb +208 -0
- data/lib/datadog_api_client/v2/models/downtime_response_data.rb +110 -0
- data/lib/datadog_api_client/v2/models/downtime_response_included_item.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_create_request.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_current_downtime_response.rb +100 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_one_time_create_update_request.rb +101 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_one_time_response.rb +116 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrence_create_update_request.rb +143 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrence_response.rb +106 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_create_request.rb +110 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_response.rb +131 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_update_request.rb +92 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_response.rb +65 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_update_request.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_status.rb +29 -0
- data/lib/datadog_api_client/v2/models/downtime_update_request.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_update_request_attributes.rb +165 -0
- data/lib/datadog_api_client/v2/models/{team_data.rb → downtime_update_request_data.rb} +9 -9
- data/lib/datadog_api_client/v2/models/event_response_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/events_group_by_sort.rb +1 -1
- data/lib/datadog_api_client/v2/models/events_response_metadata.rb +11 -1
- data/lib/datadog_api_client/v2/models/formula_limit.rb +1 -0
- data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/list_downtimes_response.rb +104 -0
- data/lib/datadog_api_client/v2/models/logs_aggregate_request.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_aggregate_request_page.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_group_by.rb +3 -2
- data/lib/datadog_api_client/v2/models/logs_group_by_histogram.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_list_request.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_query_options.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_response_metadata_page.rb +1 -1
- data/lib/datadog_api_client/v2/models/metrics_aggregator.rb +1 -1
- data/lib/datadog_api_client/v2/models/metrics_scalar_query.rb +1 -1
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response.rb +92 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response_attributes.rb +120 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response_data.rb +108 -0
- data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap.rb +14 -4
- data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/query_formula.rb +1 -0
- data/lib/datadog_api_client/v2/models/relationship_to_team_links.rb +14 -4
- data/lib/datadog_api_client/v2/models/relationship_to_user_team_permission.rb +14 -4
- data/lib/datadog_api_client/v2/models/restriction_policy_binding.rb +2 -1
- data/lib/datadog_api_client/v2/models/rum_application_list.rb +11 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_metadata_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_response.rb +80 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_rule_response_query.rb +26 -2
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_state_update_data.rb +24 -4
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_triage_update_data.rb +24 -4
- data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb +1 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_triage_user.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_get_config_response_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_meta.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_standard_pattern_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/service_definition_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/service_definition_meta.rb +36 -4
- data/lib/datadog_api_client/v2/models/service_definition_meta_warnings.rb +100 -0
- data/lib/datadog_api_client/v2/models/span.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_attributes.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_value.rb +64 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_value_timeseries_point.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request.rb +80 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request_attributes.rb +115 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response.rb +92 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response_metadata.rb +113 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response_status.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_sort.rb +110 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_sort_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_aggregation_function.rb +37 -0
- data/lib/datadog_api_client/v2/models/spans_attributes.rb +244 -0
- data/lib/datadog_api_client/v2/models/spans_compute.rb +129 -0
- data/lib/datadog_api_client/v2/models/spans_compute_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_group_by.rb +149 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_histogram.rb +143 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_missing.rb +63 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_total.rb +64 -0
- data/lib/datadog_api_client/v2/models/spans_list_request.rb +80 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_attributes.rb +111 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_page.rb +108 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_list_response.rb +102 -0
- data/lib/datadog_api_client/v2/models/spans_list_response_links.rb +81 -0
- data/lib/datadog_api_client/v2/models/spans_list_response_metadata.rb +123 -0
- data/lib/datadog_api_client/v2/models/spans_query_filter.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_query_options.rb +91 -0
- data/lib/datadog_api_client/v2/models/spans_response_metadata_page.rb +81 -0
- data/lib/datadog_api_client/v2/models/spans_sort.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_sort_order.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_warning.rb +100 -0
- data/lib/datadog_api_client/v2/models/team_attributes.rb +50 -4
- data/lib/datadog_api_client/v2/models/team_create_attributes.rb +57 -4
- data/lib/datadog_api_client/v2/models/team_relationships_links.rb +80 -0
- data/lib/datadog_api_client/v2/models/team_response.rb +1 -1
- data/lib/datadog_api_client/v2/models/team_update_attributes.rb +57 -4
- data/lib/datadog_api_client/v2/models/teams_response.rb +24 -4
- data/lib/datadog_api_client/v2/models/teams_response_links.rb +129 -0
- data/lib/datadog_api_client/v2/models/teams_response_meta.rb +80 -0
- data/lib/datadog_api_client/v2/models/teams_response_meta_pagination.rb +150 -0
- data/lib/datadog_api_client/v2/models/usage_attributes_object.rb +11 -1
- data/lib/datadog_api_client/v2/models/user_invitation_response_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/user_teams_response.rb +24 -4
- data/lib/datadog_api_client/version.rb +1 -1
- data/spec/configuration_spec.rb +17 -0
- data/spec/retry_spec.rb +44 -0
- metadata +119 -3
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V2 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V2
|
|
20
|
+
# JSON object containing all span attributes and their associated values.
|
|
21
|
+
class SpansAttributes
|
|
22
|
+
include BaseGenericModel
|
|
23
|
+
|
|
24
|
+
# JSON object of attributes from your span.
|
|
25
|
+
attr_accessor :attributes
|
|
26
|
+
|
|
27
|
+
# JSON object of custom spans data.
|
|
28
|
+
attr_accessor :custom
|
|
29
|
+
|
|
30
|
+
# End timestamp of your span.
|
|
31
|
+
attr_accessor :end_timestamp
|
|
32
|
+
|
|
33
|
+
# Name of the environment from where the spans are being sent.
|
|
34
|
+
attr_accessor :env
|
|
35
|
+
|
|
36
|
+
# Name of the machine from where the spans are being sent.
|
|
37
|
+
attr_accessor :host
|
|
38
|
+
|
|
39
|
+
# The reason why the span was ingested.
|
|
40
|
+
attr_accessor :ingestion_reason
|
|
41
|
+
|
|
42
|
+
# Id of the span that's parent of this span.
|
|
43
|
+
attr_accessor :parent_id
|
|
44
|
+
|
|
45
|
+
# Unique identifier of the resource.
|
|
46
|
+
attr_accessor :resource_hash
|
|
47
|
+
|
|
48
|
+
# The name of the resource.
|
|
49
|
+
attr_accessor :resource_name
|
|
50
|
+
|
|
51
|
+
# The reason why the span was indexed.
|
|
52
|
+
attr_accessor :retained_by
|
|
53
|
+
|
|
54
|
+
# The name of the application or service generating the span events.
|
|
55
|
+
# It is used to switch from APM to Logs, so make sure you define the same
|
|
56
|
+
# value when you use both products.
|
|
57
|
+
attr_accessor :service
|
|
58
|
+
|
|
59
|
+
# Whether or not the span was collected as a stand-alone span. Always associated to "single_span" ingestion_reason if true.
|
|
60
|
+
attr_accessor :single_span
|
|
61
|
+
|
|
62
|
+
# Id of the span.
|
|
63
|
+
attr_accessor :span_id
|
|
64
|
+
|
|
65
|
+
# Start timestamp of your span.
|
|
66
|
+
attr_accessor :start_timestamp
|
|
67
|
+
|
|
68
|
+
# Array of tags associated with your span.
|
|
69
|
+
attr_accessor :tags
|
|
70
|
+
|
|
71
|
+
# Id of the trace to which the span belongs.
|
|
72
|
+
attr_accessor :trace_id
|
|
73
|
+
|
|
74
|
+
# The type of the span.
|
|
75
|
+
attr_accessor :type
|
|
76
|
+
|
|
77
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
78
|
+
# @!visibility private
|
|
79
|
+
def self.attribute_map
|
|
80
|
+
{
|
|
81
|
+
:'attributes' => :'attributes',
|
|
82
|
+
:'custom' => :'custom',
|
|
83
|
+
:'end_timestamp' => :'end_timestamp',
|
|
84
|
+
:'env' => :'env',
|
|
85
|
+
:'host' => :'host',
|
|
86
|
+
:'ingestion_reason' => :'ingestion_reason',
|
|
87
|
+
:'parent_id' => :'parent_id',
|
|
88
|
+
:'resource_hash' => :'resource_hash',
|
|
89
|
+
:'resource_name' => :'resource_name',
|
|
90
|
+
:'retained_by' => :'retained_by',
|
|
91
|
+
:'service' => :'service',
|
|
92
|
+
:'single_span' => :'single_span',
|
|
93
|
+
:'span_id' => :'span_id',
|
|
94
|
+
:'start_timestamp' => :'start_timestamp',
|
|
95
|
+
:'tags' => :'tags',
|
|
96
|
+
:'trace_id' => :'trace_id',
|
|
97
|
+
:'type' => :'type'
|
|
98
|
+
}
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Attribute type mapping.
|
|
102
|
+
# @!visibility private
|
|
103
|
+
def self.openapi_types
|
|
104
|
+
{
|
|
105
|
+
:'attributes' => :'Hash<String, Object>',
|
|
106
|
+
:'custom' => :'Hash<String, Object>',
|
|
107
|
+
:'end_timestamp' => :'Time',
|
|
108
|
+
:'env' => :'String',
|
|
109
|
+
:'host' => :'String',
|
|
110
|
+
:'ingestion_reason' => :'String',
|
|
111
|
+
:'parent_id' => :'String',
|
|
112
|
+
:'resource_hash' => :'String',
|
|
113
|
+
:'resource_name' => :'String',
|
|
114
|
+
:'retained_by' => :'String',
|
|
115
|
+
:'service' => :'String',
|
|
116
|
+
:'single_span' => :'Boolean',
|
|
117
|
+
:'span_id' => :'String',
|
|
118
|
+
:'start_timestamp' => :'Time',
|
|
119
|
+
:'tags' => :'Array<String>',
|
|
120
|
+
:'trace_id' => :'String',
|
|
121
|
+
:'type' => :'String'
|
|
122
|
+
}
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# Initializes the object
|
|
126
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
127
|
+
# @!visibility private
|
|
128
|
+
def initialize(attributes = {})
|
|
129
|
+
if (!attributes.is_a?(Hash))
|
|
130
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SpansAttributes` initialize method"
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
134
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
135
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
136
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::SpansAttributes`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
137
|
+
end
|
|
138
|
+
h[k.to_sym] = v
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
if attributes.key?(:'attributes')
|
|
142
|
+
self.attributes = attributes[:'attributes']
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
if attributes.key?(:'custom')
|
|
146
|
+
self.custom = attributes[:'custom']
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
if attributes.key?(:'end_timestamp')
|
|
150
|
+
self.end_timestamp = attributes[:'end_timestamp']
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
if attributes.key?(:'env')
|
|
154
|
+
self.env = attributes[:'env']
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
if attributes.key?(:'host')
|
|
158
|
+
self.host = attributes[:'host']
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
if attributes.key?(:'ingestion_reason')
|
|
162
|
+
self.ingestion_reason = attributes[:'ingestion_reason']
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
if attributes.key?(:'parent_id')
|
|
166
|
+
self.parent_id = attributes[:'parent_id']
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
if attributes.key?(:'resource_hash')
|
|
170
|
+
self.resource_hash = attributes[:'resource_hash']
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
if attributes.key?(:'resource_name')
|
|
174
|
+
self.resource_name = attributes[:'resource_name']
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
if attributes.key?(:'retained_by')
|
|
178
|
+
self.retained_by = attributes[:'retained_by']
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
if attributes.key?(:'service')
|
|
182
|
+
self.service = attributes[:'service']
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
if attributes.key?(:'single_span')
|
|
186
|
+
self.single_span = attributes[:'single_span']
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
if attributes.key?(:'span_id')
|
|
190
|
+
self.span_id = attributes[:'span_id']
|
|
191
|
+
end
|
|
192
|
+
|
|
193
|
+
if attributes.key?(:'start_timestamp')
|
|
194
|
+
self.start_timestamp = attributes[:'start_timestamp']
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
if attributes.key?(:'tags')
|
|
198
|
+
if (value = attributes[:'tags']).is_a?(Array)
|
|
199
|
+
self.tags = value
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
|
|
203
|
+
if attributes.key?(:'trace_id')
|
|
204
|
+
self.trace_id = attributes[:'trace_id']
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
if attributes.key?(:'type')
|
|
208
|
+
self.type = attributes[:'type']
|
|
209
|
+
end
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
# Checks equality by comparing each attribute.
|
|
213
|
+
# @param o [Object] Object to be compared
|
|
214
|
+
# @!visibility private
|
|
215
|
+
def ==(o)
|
|
216
|
+
return true if self.equal?(o)
|
|
217
|
+
self.class == o.class &&
|
|
218
|
+
attributes == o.attributes &&
|
|
219
|
+
custom == o.custom &&
|
|
220
|
+
end_timestamp == o.end_timestamp &&
|
|
221
|
+
env == o.env &&
|
|
222
|
+
host == o.host &&
|
|
223
|
+
ingestion_reason == o.ingestion_reason &&
|
|
224
|
+
parent_id == o.parent_id &&
|
|
225
|
+
resource_hash == o.resource_hash &&
|
|
226
|
+
resource_name == o.resource_name &&
|
|
227
|
+
retained_by == o.retained_by &&
|
|
228
|
+
service == o.service &&
|
|
229
|
+
single_span == o.single_span &&
|
|
230
|
+
span_id == o.span_id &&
|
|
231
|
+
start_timestamp == o.start_timestamp &&
|
|
232
|
+
tags == o.tags &&
|
|
233
|
+
trace_id == o.trace_id &&
|
|
234
|
+
type == o.type
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
# Calculates hash code according to all attributes.
|
|
238
|
+
# @return [Integer] Hash code
|
|
239
|
+
# @!visibility private
|
|
240
|
+
def hash
|
|
241
|
+
[attributes, custom, end_timestamp, env, host, ingestion_reason, parent_id, resource_hash, resource_name, retained_by, service, single_span, span_id, start_timestamp, tags, trace_id, type].hash
|
|
242
|
+
end
|
|
243
|
+
end
|
|
244
|
+
end
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V2 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V2
|
|
20
|
+
# A compute rule to compute metrics or timeseries.
|
|
21
|
+
class SpansCompute
|
|
22
|
+
include BaseGenericModel
|
|
23
|
+
|
|
24
|
+
# An aggregation function.
|
|
25
|
+
attr_reader :aggregation
|
|
26
|
+
|
|
27
|
+
# The time buckets' size (only used for type=timeseries)
|
|
28
|
+
# Defaults to a resolution of 150 points.
|
|
29
|
+
attr_accessor :interval
|
|
30
|
+
|
|
31
|
+
# The metric to use.
|
|
32
|
+
attr_accessor :metric
|
|
33
|
+
|
|
34
|
+
# The type of compute.
|
|
35
|
+
attr_accessor :type
|
|
36
|
+
|
|
37
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
38
|
+
# @!visibility private
|
|
39
|
+
def self.attribute_map
|
|
40
|
+
{
|
|
41
|
+
:'aggregation' => :'aggregation',
|
|
42
|
+
:'interval' => :'interval',
|
|
43
|
+
:'metric' => :'metric',
|
|
44
|
+
:'type' => :'type'
|
|
45
|
+
}
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# Attribute type mapping.
|
|
49
|
+
# @!visibility private
|
|
50
|
+
def self.openapi_types
|
|
51
|
+
{
|
|
52
|
+
:'aggregation' => :'SpansAggregationFunction',
|
|
53
|
+
:'interval' => :'String',
|
|
54
|
+
:'metric' => :'String',
|
|
55
|
+
:'type' => :'SpansComputeType'
|
|
56
|
+
}
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# Initializes the object
|
|
60
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
61
|
+
# @!visibility private
|
|
62
|
+
def initialize(attributes = {})
|
|
63
|
+
if (!attributes.is_a?(Hash))
|
|
64
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SpansCompute` initialize method"
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
68
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
69
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
70
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::SpansCompute`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
71
|
+
end
|
|
72
|
+
h[k.to_sym] = v
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
if attributes.key?(:'aggregation')
|
|
76
|
+
self.aggregation = attributes[:'aggregation']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.key?(:'interval')
|
|
80
|
+
self.interval = attributes[:'interval']
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
if attributes.key?(:'metric')
|
|
84
|
+
self.metric = attributes[:'metric']
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
if attributes.key?(:'type')
|
|
88
|
+
self.type = attributes[:'type']
|
|
89
|
+
end
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# Check to see if the all the properties in the model are valid
|
|
93
|
+
# @return true if the model is valid
|
|
94
|
+
# @!visibility private
|
|
95
|
+
def valid?
|
|
96
|
+
return false if @aggregation.nil?
|
|
97
|
+
true
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
# Custom attribute writer method with validation
|
|
101
|
+
# @param aggregation [Object] Object to be assigned
|
|
102
|
+
# @!visibility private
|
|
103
|
+
def aggregation=(aggregation)
|
|
104
|
+
if aggregation.nil?
|
|
105
|
+
fail ArgumentError, 'invalid value for "aggregation", aggregation cannot be nil.'
|
|
106
|
+
end
|
|
107
|
+
@aggregation = aggregation
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# Checks equality by comparing each attribute.
|
|
111
|
+
# @param o [Object] Object to be compared
|
|
112
|
+
# @!visibility private
|
|
113
|
+
def ==(o)
|
|
114
|
+
return true if self.equal?(o)
|
|
115
|
+
self.class == o.class &&
|
|
116
|
+
aggregation == o.aggregation &&
|
|
117
|
+
interval == o.interval &&
|
|
118
|
+
metric == o.metric &&
|
|
119
|
+
type == o.type
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
# Calculates hash code according to all attributes.
|
|
123
|
+
# @return [Integer] Hash code
|
|
124
|
+
# @!visibility private
|
|
125
|
+
def hash
|
|
126
|
+
[aggregation, interval, metric, type].hash
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V2 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V2
|
|
20
|
+
# The type of compute.
|
|
21
|
+
class SpansComputeType
|
|
22
|
+
include BaseEnumModel
|
|
23
|
+
|
|
24
|
+
TIMESERIES = "timeseries".freeze
|
|
25
|
+
TOTAL = "total".freeze
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V2 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V2
|
|
20
|
+
# A group by rule.
|
|
21
|
+
class SpansGroupBy
|
|
22
|
+
include BaseGenericModel
|
|
23
|
+
|
|
24
|
+
# The name of the facet to use (required).
|
|
25
|
+
attr_reader :facet
|
|
26
|
+
|
|
27
|
+
# Used to perform a histogram computation (only for measure facets).
|
|
28
|
+
# Note: At most 100 buckets are allowed, the number of buckets is (max - min)/interval.
|
|
29
|
+
attr_accessor :histogram
|
|
30
|
+
|
|
31
|
+
# The maximum buckets to return for this group by.
|
|
32
|
+
attr_accessor :limit
|
|
33
|
+
|
|
34
|
+
# The value to use for spans that don't have the facet used to group by.
|
|
35
|
+
attr_accessor :missing
|
|
36
|
+
|
|
37
|
+
# A sort rule.
|
|
38
|
+
attr_accessor :sort
|
|
39
|
+
|
|
40
|
+
# A resulting object to put the given computes in over all the matching records.
|
|
41
|
+
attr_accessor :total
|
|
42
|
+
|
|
43
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
44
|
+
# @!visibility private
|
|
45
|
+
def self.attribute_map
|
|
46
|
+
{
|
|
47
|
+
:'facet' => :'facet',
|
|
48
|
+
:'histogram' => :'histogram',
|
|
49
|
+
:'limit' => :'limit',
|
|
50
|
+
:'missing' => :'missing',
|
|
51
|
+
:'sort' => :'sort',
|
|
52
|
+
:'total' => :'total'
|
|
53
|
+
}
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Attribute type mapping.
|
|
57
|
+
# @!visibility private
|
|
58
|
+
def self.openapi_types
|
|
59
|
+
{
|
|
60
|
+
:'facet' => :'String',
|
|
61
|
+
:'histogram' => :'SpansGroupByHistogram',
|
|
62
|
+
:'limit' => :'Integer',
|
|
63
|
+
:'missing' => :'SpansGroupByMissing',
|
|
64
|
+
:'sort' => :'SpansAggregateSort',
|
|
65
|
+
:'total' => :'SpansGroupByTotal'
|
|
66
|
+
}
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# Initializes the object
|
|
70
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
71
|
+
# @!visibility private
|
|
72
|
+
def initialize(attributes = {})
|
|
73
|
+
if (!attributes.is_a?(Hash))
|
|
74
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SpansGroupBy` initialize method"
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
78
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
79
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
80
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::SpansGroupBy`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
81
|
+
end
|
|
82
|
+
h[k.to_sym] = v
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
if attributes.key?(:'facet')
|
|
86
|
+
self.facet = attributes[:'facet']
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
if attributes.key?(:'histogram')
|
|
90
|
+
self.histogram = attributes[:'histogram']
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
if attributes.key?(:'limit')
|
|
94
|
+
self.limit = attributes[:'limit']
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
if attributes.key?(:'missing')
|
|
98
|
+
self.missing = attributes[:'missing']
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
if attributes.key?(:'sort')
|
|
102
|
+
self.sort = attributes[:'sort']
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
if attributes.key?(:'total')
|
|
106
|
+
self.total = attributes[:'total']
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# Check to see if the all the properties in the model are valid
|
|
111
|
+
# @return true if the model is valid
|
|
112
|
+
# @!visibility private
|
|
113
|
+
def valid?
|
|
114
|
+
return false if @facet.nil?
|
|
115
|
+
true
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
# Custom attribute writer method with validation
|
|
119
|
+
# @param facet [Object] Object to be assigned
|
|
120
|
+
# @!visibility private
|
|
121
|
+
def facet=(facet)
|
|
122
|
+
if facet.nil?
|
|
123
|
+
fail ArgumentError, 'invalid value for "facet", facet cannot be nil.'
|
|
124
|
+
end
|
|
125
|
+
@facet = facet
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
# Checks equality by comparing each attribute.
|
|
129
|
+
# @param o [Object] Object to be compared
|
|
130
|
+
# @!visibility private
|
|
131
|
+
def ==(o)
|
|
132
|
+
return true if self.equal?(o)
|
|
133
|
+
self.class == o.class &&
|
|
134
|
+
facet == o.facet &&
|
|
135
|
+
histogram == o.histogram &&
|
|
136
|
+
limit == o.limit &&
|
|
137
|
+
missing == o.missing &&
|
|
138
|
+
sort == o.sort &&
|
|
139
|
+
total == o.total
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# Calculates hash code according to all attributes.
|
|
143
|
+
# @return [Integer] Hash code
|
|
144
|
+
# @!visibility private
|
|
145
|
+
def hash
|
|
146
|
+
[facet, histogram, limit, missing, sort, total].hash
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
end
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V2 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V2
|
|
20
|
+
# Used to perform a histogram computation (only for measure facets).
|
|
21
|
+
# Note: At most 100 buckets are allowed, the number of buckets is (max - min)/interval.
|
|
22
|
+
class SpansGroupByHistogram
|
|
23
|
+
include BaseGenericModel
|
|
24
|
+
|
|
25
|
+
# The bin size of the histogram buckets.
|
|
26
|
+
attr_reader :interval
|
|
27
|
+
|
|
28
|
+
# The maximum value for the measure used in the histogram
|
|
29
|
+
# (values greater than this one are filtered out).
|
|
30
|
+
attr_reader :max
|
|
31
|
+
|
|
32
|
+
# The minimum value for the measure used in the histogram
|
|
33
|
+
# (values smaller than this one are filtered out).
|
|
34
|
+
attr_reader :min
|
|
35
|
+
|
|
36
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
37
|
+
# @!visibility private
|
|
38
|
+
def self.attribute_map
|
|
39
|
+
{
|
|
40
|
+
:'interval' => :'interval',
|
|
41
|
+
:'max' => :'max',
|
|
42
|
+
:'min' => :'min'
|
|
43
|
+
}
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Attribute type mapping.
|
|
47
|
+
# @!visibility private
|
|
48
|
+
def self.openapi_types
|
|
49
|
+
{
|
|
50
|
+
:'interval' => :'Float',
|
|
51
|
+
:'max' => :'Float',
|
|
52
|
+
:'min' => :'Float'
|
|
53
|
+
}
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Initializes the object
|
|
57
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
58
|
+
# @!visibility private
|
|
59
|
+
def initialize(attributes = {})
|
|
60
|
+
if (!attributes.is_a?(Hash))
|
|
61
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SpansGroupByHistogram` initialize method"
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
65
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
66
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
67
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::SpansGroupByHistogram`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
68
|
+
end
|
|
69
|
+
h[k.to_sym] = v
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
if attributes.key?(:'interval')
|
|
73
|
+
self.interval = attributes[:'interval']
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
if attributes.key?(:'max')
|
|
77
|
+
self.max = attributes[:'max']
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
if attributes.key?(:'min')
|
|
81
|
+
self.min = attributes[:'min']
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# Check to see if the all the properties in the model are valid
|
|
86
|
+
# @return true if the model is valid
|
|
87
|
+
# @!visibility private
|
|
88
|
+
def valid?
|
|
89
|
+
return false if @interval.nil?
|
|
90
|
+
return false if @max.nil?
|
|
91
|
+
return false if @min.nil?
|
|
92
|
+
true
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Custom attribute writer method with validation
|
|
96
|
+
# @param interval [Object] Object to be assigned
|
|
97
|
+
# @!visibility private
|
|
98
|
+
def interval=(interval)
|
|
99
|
+
if interval.nil?
|
|
100
|
+
fail ArgumentError, 'invalid value for "interval", interval cannot be nil.'
|
|
101
|
+
end
|
|
102
|
+
@interval = interval
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# Custom attribute writer method with validation
|
|
106
|
+
# @param max [Object] Object to be assigned
|
|
107
|
+
# @!visibility private
|
|
108
|
+
def max=(max)
|
|
109
|
+
if max.nil?
|
|
110
|
+
fail ArgumentError, 'invalid value for "max", max cannot be nil.'
|
|
111
|
+
end
|
|
112
|
+
@max = max
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Custom attribute writer method with validation
|
|
116
|
+
# @param min [Object] Object to be assigned
|
|
117
|
+
# @!visibility private
|
|
118
|
+
def min=(min)
|
|
119
|
+
if min.nil?
|
|
120
|
+
fail ArgumentError, 'invalid value for "min", min cannot be nil.'
|
|
121
|
+
end
|
|
122
|
+
@min = min
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# Checks equality by comparing each attribute.
|
|
126
|
+
# @param o [Object] Object to be compared
|
|
127
|
+
# @!visibility private
|
|
128
|
+
def ==(o)
|
|
129
|
+
return true if self.equal?(o)
|
|
130
|
+
self.class == o.class &&
|
|
131
|
+
interval == o.interval &&
|
|
132
|
+
max == o.max &&
|
|
133
|
+
min == o.min
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# Calculates hash code according to all attributes.
|
|
137
|
+
# @return [Integer] Hash code
|
|
138
|
+
# @!visibility private
|
|
139
|
+
def hash
|
|
140
|
+
[interval, max, min].hash
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
end
|