datadog_api_client 1.10.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +715 -44
  4. data/.generator/schemas/v2/openapi.yaml +458 -44
  5. data/.generator/src/generator/formatter.py +14 -0
  6. data/.github/workflows/test_integration.yml +0 -7
  7. data/CHANGELOG.md +34 -0
  8. data/examples/v1/dashboards/CreateDashboard_1442588603.rb +61 -0
  9. data/examples/v1/dashboards/CreateDashboard_252716965.rb +52 -0
  10. data/examples/v1/dashboards/CreateDashboard_3882428227.rb +60 -0
  11. data/examples/v1/metrics/SubmitDistributionPoints.rb +22 -0
  12. data/examples/v1/metrics/SubmitDistributionPoints_3109558960.rb +25 -0
  13. data/examples/v1/organizations/DowngradeOrg.rb +5 -0
  14. data/examples/v1/organizations/UpdateOrg.rb +1 -0
  15. data/examples/v1/service-level-objectives/SearchSLO.rb +16 -0
  16. data/examples/v1/snapshots/GetGraphSnapshot.rb +2 -0
  17. data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +3 -0
  18. data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +3 -0
  19. data/examples/v1/synthetics/UpdateBrowserTest.rb +3 -0
  20. data/examples/v2/metrics/CreateTagConfiguration.rb +0 -3
  21. data/examples/v2/metrics/DeleteTagConfiguration.rb +0 -3
  22. data/examples/v2/metrics/ListTagConfigurationByName.rb +0 -3
  23. data/examples/v2/metrics/ListTagConfigurations.rb +0 -3
  24. data/examples/v2/metrics/ListTagConfigurations_103226315.rb +0 -3
  25. data/examples/v2/metrics/ListTagConfigurations_1799362914.rb +0 -3
  26. data/examples/v2/metrics/UpdateTagConfiguration.rb +0 -3
  27. data/examples/v2/opsgenie-integration/CreateOpsgenieService.rb +16 -0
  28. data/examples/v2/opsgenie-integration/DeleteOpsgenieService.rb +8 -0
  29. data/examples/v2/opsgenie-integration/GetOpsgenieService.rb +8 -0
  30. data/examples/v2/opsgenie-integration/ListOpsgenieServices.rb +5 -0
  31. data/examples/v2/opsgenie-integration/UpdateOpsgenieService.rb +21 -0
  32. data/examples/v2/security-monitoring/ListSecurityMonitoringSignals.rb +0 -3
  33. data/examples/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +0 -3
  34. data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +3 -0
  35. data/examples/v2/usage-metering/GetEstimatedCostByOrg.rb +5 -0
  36. data/examples/v2/usage-metering/GetEstimatedCostByOrg_1171921972.rb +9 -0
  37. data/examples/v2/usage-metering/GetEstimatedCostByOrg_627383212.rb +9 -0
  38. data/lib/datadog_api_client/v1/api/metrics_api.rb +81 -0
  39. data/lib/datadog_api_client/v1/api/organizations_api.rb +74 -1
  40. data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +2 -2
  41. data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +78 -4
  42. data/lib/datadog_api_client/v1/api/snapshots_api.rb +4 -0
  43. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +9 -5
  44. data/lib/datadog_api_client/v1/configuration.rb +51 -0
  45. data/lib/datadog_api_client/v1/models/distribution_point_item.rb +63 -0
  46. data/lib/datadog_api_client/v1/models/distribution_points_content_encoding.rb +26 -0
  47. data/lib/datadog_api_client/v1/models/distribution_points_payload.rb +124 -0
  48. data/lib/datadog_api_client/v1/models/distribution_points_series.rb +179 -0
  49. data/lib/datadog_api_client/v1/models/distribution_points_type.rb +26 -0
  50. data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_query.rb +64 -0
  51. data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_type.rb +26 -0
  52. data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +21 -1
  53. data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +1 -0
  54. data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +2 -0
  55. data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics_private_locations.rb +125 -0
  56. data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -1
  57. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +4 -0
  58. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +41 -1
  59. data/lib/datadog_api_client/v1/models/org_downgraded_response.rb +111 -0
  60. data/lib/datadog_api_client/v1/models/organization.rb +14 -4
  61. data/lib/datadog_api_client/v1/models/search_slo_response.rb +131 -0
  62. data/lib/datadog_api_client/v1/models/search_slo_response_data.rb +121 -0
  63. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes.rb +123 -0
  64. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets.rb +197 -0
  65. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets_object_int.rb +121 -0
  66. data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets_object_string.rb +121 -0
  67. data/lib/datadog_api_client/v1/models/search_slo_response_links.rb +151 -0
  68. data/lib/datadog_api_client/v1/models/search_slo_response_meta.rb +111 -0
  69. data/lib/datadog_api_client/v1/models/search_slo_response_meta_page.rb +181 -0
  70. data/lib/datadog_api_client/v1/models/service_level_objective.rb +3 -3
  71. data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +1 -1
  72. data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +3 -3
  73. data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +1 -1
  74. data/lib/datadog_api_client/v1/models/slo_response_data.rb +1 -1
  75. data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +11 -0
  76. data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +11 -0
  77. data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +2 -2
  78. data/lib/datadog_api_client/v1/models/synthetics_test_ci_options.rb +111 -0
  79. data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +11 -1
  80. data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +4 -0
  81. data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +4 -0
  82. data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +41 -1
  83. data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +474 -4
  84. data/lib/datadog_api_client/v1.rb +19 -0
  85. data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +1 -1
  86. data/lib/datadog_api_client/v2/api/metrics_api.rb +0 -2
  87. data/lib/datadog_api_client/v2/api/opsgenie_integration_api.rb +395 -0
  88. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +76 -0
  89. data/lib/datadog_api_client/v2/configuration.rb +0 -7
  90. data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +10 -8
  91. data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +0 -2
  92. data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +0 -2
  93. data/lib/datadog_api_client/v2/models/opsgenie_service_create_attributes.rb +174 -0
  94. data/lib/datadog_api_client/v2/models/opsgenie_service_create_data.rb +145 -0
  95. data/lib/datadog_api_client/v2/models/opsgenie_service_create_request.rb +122 -0
  96. data/lib/datadog_api_client/v2/models/opsgenie_service_region_type.rb +28 -0
  97. data/lib/datadog_api_client/v2/models/opsgenie_service_response.rb +122 -0
  98. data/lib/datadog_api_client/v2/models/opsgenie_service_response_attributes.rb +132 -0
  99. data/lib/datadog_api_client/v2/models/opsgenie_service_response_data.rb +166 -0
  100. data/lib/datadog_api_client/v2/models/opsgenie_service_type.rb +26 -0
  101. data/lib/datadog_api_client/v2/models/opsgenie_service_update_attributes.rb +142 -0
  102. data/lib/datadog_api_client/v2/models/opsgenie_service_update_data.rb +166 -0
  103. data/lib/datadog_api_client/v2/models/opsgenie_service_update_request.rb +122 -0
  104. data/lib/datadog_api_client/v2/models/opsgenie_services_response.rb +124 -0
  105. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +30 -4
  106. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_method.rb +27 -0
  107. data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_threshold.rb +27 -0
  108. data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +13 -1
  109. data/lib/datadog_api_client/v2.rb +15 -0
  110. data/lib/datadog_api_client/version.rb +1 -1
  111. metadata +51 -2
@@ -0,0 +1,179 @@
1
+ =begin
2
+ #Datadog API V1 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::V1
20
+ # A distribution points metric to submit to Datadog.
21
+ class DistributionPointsSeries
22
+ include BaseGenericModel
23
+
24
+ # Whether the object has unparsed attributes
25
+ # @!visibility private
26
+ attr_accessor :_unparsed
27
+
28
+ # The name of the host that produced the distribution point metric.
29
+ attr_accessor :host
30
+
31
+ # The name of the distribution points metric.
32
+ attr_accessor :metric
33
+
34
+ # Points relating to the distribution point metric. All points must be tuples with timestamp and a list of values (cannot be a string). Timestamps should be in POSIX time in seconds.
35
+ attr_accessor :points
36
+
37
+ # A list of tags associated with the distribution point metric.
38
+ attr_accessor :tags
39
+
40
+ # The type of the distribution point.
41
+ attr_accessor :type
42
+
43
+ # Attribute mapping from ruby-style variable name to JSON key.
44
+ # @!visibility private
45
+ def self.attribute_map
46
+ {
47
+ :'host' => :'host',
48
+ :'metric' => :'metric',
49
+ :'points' => :'points',
50
+ :'tags' => :'tags',
51
+ :'type' => :'type'
52
+ }
53
+ end
54
+
55
+ # Returns all the JSON keys this model knows about
56
+ # @!visibility private
57
+ def self.acceptable_attributes
58
+ attribute_map.values
59
+ end
60
+
61
+ # Attribute type mapping.
62
+ # @!visibility private
63
+ def self.openapi_types
64
+ {
65
+ :'host' => :'String',
66
+ :'metric' => :'String',
67
+ :'points' => :'Array<Array<DistributionPointItem>>',
68
+ :'tags' => :'Array<String>',
69
+ :'type' => :'DistributionPointsType'
70
+ }
71
+ end
72
+
73
+ # List of attributes with nullable: true
74
+ # @!visibility private
75
+ def self.openapi_nullable
76
+ Set.new([
77
+ ])
78
+ end
79
+
80
+ # Initializes the object
81
+ # @param attributes [Hash] Model attributes in the form of hash
82
+ # @!visibility private
83
+ def initialize(attributes = {})
84
+ if (!attributes.is_a?(Hash))
85
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::DistributionPointsSeries` initialize method"
86
+ end
87
+
88
+ # check to see if the attribute exists and convert string to symbol for hash key
89
+ attributes = attributes.each_with_object({}) { |(k, v), h|
90
+ if (!self.class.attribute_map.key?(k.to_sym))
91
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::DistributionPointsSeries`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
92
+ end
93
+ h[k.to_sym] = v
94
+ }
95
+
96
+ if attributes.key?(:'host')
97
+ self.host = attributes[:'host']
98
+ end
99
+
100
+ if attributes.key?(:'metric')
101
+ self.metric = attributes[:'metric']
102
+ end
103
+
104
+ if attributes.key?(:'points')
105
+ if (value = attributes[:'points']).is_a?(Array)
106
+ self.points = value
107
+ end
108
+ end
109
+
110
+ if attributes.key?(:'tags')
111
+ if (value = attributes[:'tags']).is_a?(Array)
112
+ self.tags = value
113
+ end
114
+ end
115
+
116
+ if attributes.key?(:'type')
117
+ self.type = attributes[:'type']
118
+ else
119
+ self.type = 'distribution'
120
+ end
121
+ end
122
+
123
+ # Check to see if the all the properties in the model are valid
124
+ # @return true if the model is valid
125
+ # @!visibility private
126
+ def valid?
127
+ return false if @metric.nil?
128
+ return false if @points.nil?
129
+ true
130
+ end
131
+
132
+ # Custom attribute writer method with validation
133
+ # @param metric [Object] Object to be assigned
134
+ # @!visibility private
135
+ def metric=(metric)
136
+ if metric.nil?
137
+ fail ArgumentError, 'invalid value for "metric", metric cannot be nil.'
138
+ end
139
+ @metric = metric
140
+ end
141
+
142
+ # Custom attribute writer method with validation
143
+ # @param points [Object] Object to be assigned
144
+ # @!visibility private
145
+ def points=(points)
146
+ if points.nil?
147
+ fail ArgumentError, 'invalid value for "points", points cannot be nil.'
148
+ end
149
+ @points = points
150
+ end
151
+
152
+ # Checks equality by comparing each attribute.
153
+ # @param o [Object] Object to be compared
154
+ # @!visibility private
155
+ def ==(o)
156
+ return true if self.equal?(o)
157
+ self.class == o.class &&
158
+ host == o.host &&
159
+ metric == o.metric &&
160
+ points == o.points &&
161
+ tags == o.tags &&
162
+ type == o.type
163
+ end
164
+
165
+ # @see the `==` method
166
+ # @param o [Object] Object to be compared
167
+ # @!visibility private
168
+ def eql?(o)
169
+ self == o
170
+ end
171
+
172
+ # Calculates hash code according to all attributes.
173
+ # @return [Integer] Hash code
174
+ # @!visibility private
175
+ def hash
176
+ [host, metric, points, tags, type].hash
177
+ end
178
+ end
179
+ end
@@ -0,0 +1,26 @@
1
+ =begin
2
+ #Datadog API V1 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::V1
20
+ # The type of the distribution point.
21
+ class DistributionPointsType
22
+ include BaseEnumModel
23
+
24
+ DISTRIBUTION = "distribution".freeze
25
+ end
26
+ end
@@ -0,0 +1,64 @@
1
+ =begin
2
+ #Datadog API V1 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::V1
20
+ # Query definition for Distribution Widget Histogram Request
21
+ module DistributionWidgetHistogramRequestQuery
22
+ class << self
23
+ include BaseOneOfModel
24
+ include BaseOneOfModelNoDiscriminator
25
+
26
+ # List of class defined in oneOf (OpenAPI v3)
27
+ def openapi_one_of
28
+ [
29
+ :'FormulaAndFunctionMetricQueryDefinition',
30
+ :'FormulaAndFunctionEventQueryDefinition',
31
+ :'FormulaAndFunctionApmResourceStatsQueryDefinition'
32
+ ]
33
+ end
34
+ # Builds the object
35
+ # @param [Mixed] Data to be matched against the list of oneOf items
36
+ # @return [Object] Returns the model or the data itself
37
+ def build(data)
38
+ # Go through the list of oneOf items and attempt to identify the appropriate one.
39
+ # Note:
40
+ # - We do not attempt to check whether exactly one item matches.
41
+ # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 })
42
+ # due to the way the deserialization is made in the base_object template (it just casts without verifying).
43
+ # - TODO: scalar values are de facto behaving as if they were nullable.
44
+ # - TODO: logging when debugging is set.
45
+ openapi_one_of.each do |klass|
46
+ begin
47
+ next if klass == :AnyType # "nullable: true"
48
+ typed_data = find_and_cast_into_type(klass, data)
49
+ next if typed_data._unparsed
50
+ return typed_data if typed_data
51
+ rescue # rescue all errors so we keep iterating even if the current item lookup raises
52
+ end
53
+ end
54
+
55
+ if openapi_one_of.include?(:AnyType)
56
+ data
57
+ else
58
+ self._unparsed = true
59
+ DatadogAPIClient::V1::UnparsedObject.new(data)
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,26 @@
1
+ =begin
2
+ #Datadog API V1 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::V1
20
+ # Request type for the histogram request.
21
+ class DistributionWidgetHistogramRequestType
22
+ include BaseEnumModel
23
+
24
+ HISTOGRAM = "histogram".freeze
25
+ end
26
+ end
@@ -49,6 +49,12 @@ module DatadogAPIClient::V1
49
49
  # Widget query.
50
50
  attr_accessor :q
51
51
 
52
+ # Query definition for Distribution Widget Histogram Request
53
+ attr_accessor :query
54
+
55
+ # Request type for the histogram request.
56
+ attr_accessor :request_type
57
+
52
58
  # The log query.
53
59
  attr_accessor :rum_query
54
60
 
@@ -70,6 +76,8 @@ module DatadogAPIClient::V1
70
76
  :'process_query' => :'process_query',
71
77
  :'profile_metrics_query' => :'profile_metrics_query',
72
78
  :'q' => :'q',
79
+ :'query' => :'query',
80
+ :'request_type' => :'request_type',
73
81
  :'rum_query' => :'rum_query',
74
82
  :'security_query' => :'security_query',
75
83
  :'style' => :'style'
@@ -94,6 +102,8 @@ module DatadogAPIClient::V1
94
102
  :'process_query' => :'ProcessQueryDefinition',
95
103
  :'profile_metrics_query' => :'LogQueryDefinition',
96
104
  :'q' => :'String',
105
+ :'query' => :'DistributionWidgetHistogramRequestQuery',
106
+ :'request_type' => :'DistributionWidgetHistogramRequestType',
97
107
  :'rum_query' => :'LogQueryDefinition',
98
108
  :'security_query' => :'LogQueryDefinition',
99
109
  :'style' => :'WidgetStyle'
@@ -155,6 +165,14 @@ module DatadogAPIClient::V1
155
165
  self.q = attributes[:'q']
156
166
  end
157
167
 
168
+ if attributes.key?(:'query')
169
+ self.query = attributes[:'query']
170
+ end
171
+
172
+ if attributes.key?(:'request_type')
173
+ self.request_type = attributes[:'request_type']
174
+ end
175
+
158
176
  if attributes.key?(:'rum_query')
159
177
  self.rum_query = attributes[:'rum_query']
160
178
  end
@@ -189,6 +207,8 @@ module DatadogAPIClient::V1
189
207
  process_query == o.process_query &&
190
208
  profile_metrics_query == o.profile_metrics_query &&
191
209
  q == o.q &&
210
+ query == o.query &&
211
+ request_type == o.request_type &&
192
212
  rum_query == o.rum_query &&
193
213
  security_query == o.security_query &&
194
214
  style == o.style
@@ -205,7 +225,7 @@ module DatadogAPIClient::V1
205
225
  # @return [Integer] Hash code
206
226
  # @!visibility private
207
227
  def hash
208
- [apm_query, apm_stats_query, event_query, log_query, network_query, process_query, profile_metrics_query, q, rum_query, security_query, style].hash
228
+ [apm_query, apm_stats_query, event_query, log_query, network_query, process_query, profile_metrics_query, q, query, request_type, rum_query, security_query, style].hash
209
229
  end
210
230
  end
211
231
  end
@@ -25,6 +25,7 @@ module DatadogAPIClient::V1
25
25
  ERROR_RATE = "error_rate".freeze
26
26
  HITS = "hits".freeze
27
27
  LATENCY_AVG = "latency_avg".freeze
28
+ LATENCY_DISTRIBUTION = "latency_distribution".freeze
28
29
  LATENCY_MAX = "latency_max".freeze
29
30
  LATENCY_P50 = "latency_p50".freeze
30
31
  LATENCY_P75 = "latency_p75".freeze
@@ -23,10 +23,12 @@ module DatadogAPIClient::V1
23
23
 
24
24
  API_USAGE = "api_usage".freeze
25
25
  APM_HOST_USAGE = "apm_host_usage".freeze
26
+ APPSEC_USAGE = "appsec_usage".freeze
26
27
  BROWSER_USAGE = "browser_usage".freeze
27
28
  CONTAINER_USAGE = "container_usage".freeze
28
29
  CUSTOM_TIMESERIES_USAGE = "custom_timeseries_usage".freeze
29
30
  ESTIMATED_INDEXED_LOGS_USAGE = "estimated_indexed_logs_usage".freeze
31
+ ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage".freeze
30
32
  FARGATE_USAGE = "fargate_usage".freeze
31
33
  FUNCTIONS_USAGE = "functions_usage".freeze
32
34
  INDEXED_LOGS_USAGE = "indexed_logs_usage".freeze
@@ -0,0 +1,125 @@
1
+ =begin
2
+ #Datadog API V1 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::V1
20
+ # Available prefix information for the Synthetics Private Locations endpoints.
21
+ class IPPrefixesSyntheticsPrivateLocations
22
+ include BaseGenericModel
23
+
24
+ # Whether the object has unparsed attributes
25
+ # @!visibility private
26
+ attr_accessor :_unparsed
27
+
28
+ # List of IPv4 prefixes.
29
+ attr_accessor :prefixes_ipv4
30
+
31
+ # List of IPv6 prefixes.
32
+ attr_accessor :prefixes_ipv6
33
+
34
+ # Attribute mapping from ruby-style variable name to JSON key.
35
+ # @!visibility private
36
+ def self.attribute_map
37
+ {
38
+ :'prefixes_ipv4' => :'prefixes_ipv4',
39
+ :'prefixes_ipv6' => :'prefixes_ipv6'
40
+ }
41
+ end
42
+
43
+ # Returns all the JSON keys this model knows about
44
+ # @!visibility private
45
+ def self.acceptable_attributes
46
+ attribute_map.values
47
+ end
48
+
49
+ # Attribute type mapping.
50
+ # @!visibility private
51
+ def self.openapi_types
52
+ {
53
+ :'prefixes_ipv4' => :'Array<String>',
54
+ :'prefixes_ipv6' => :'Array<String>'
55
+ }
56
+ end
57
+
58
+ # List of attributes with nullable: true
59
+ # @!visibility private
60
+ def self.openapi_nullable
61
+ Set.new([
62
+ ])
63
+ end
64
+
65
+ # Initializes the object
66
+ # @param attributes [Hash] Model attributes in the form of hash
67
+ # @!visibility private
68
+ def initialize(attributes = {})
69
+ if (!attributes.is_a?(Hash))
70
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::IPPrefixesSyntheticsPrivateLocations` initialize method"
71
+ end
72
+
73
+ # check to see if the attribute exists and convert string to symbol for hash key
74
+ attributes = attributes.each_with_object({}) { |(k, v), h|
75
+ if (!self.class.attribute_map.key?(k.to_sym))
76
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::IPPrefixesSyntheticsPrivateLocations`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
77
+ end
78
+ h[k.to_sym] = v
79
+ }
80
+
81
+ if attributes.key?(:'prefixes_ipv4')
82
+ if (value = attributes[:'prefixes_ipv4']).is_a?(Array)
83
+ self.prefixes_ipv4 = value
84
+ end
85
+ end
86
+
87
+ if attributes.key?(:'prefixes_ipv6')
88
+ if (value = attributes[:'prefixes_ipv6']).is_a?(Array)
89
+ self.prefixes_ipv6 = value
90
+ end
91
+ end
92
+ end
93
+
94
+ # Check to see if the all the properties in the model are valid
95
+ # @return true if the model is valid
96
+ # @!visibility private
97
+ def valid?
98
+ true
99
+ end
100
+
101
+ # Checks equality by comparing each attribute.
102
+ # @param o [Object] Object to be compared
103
+ # @!visibility private
104
+ def ==(o)
105
+ return true if self.equal?(o)
106
+ self.class == o.class &&
107
+ prefixes_ipv4 == o.prefixes_ipv4 &&
108
+ prefixes_ipv6 == o.prefixes_ipv6
109
+ end
110
+
111
+ # @see the `==` method
112
+ # @param o [Object] Object to be compared
113
+ # @!visibility private
114
+ def eql?(o)
115
+ self == o
116
+ end
117
+
118
+ # Calculates hash code according to all attributes.
119
+ # @return [Integer] Hash code
120
+ # @!visibility private
121
+ def hash
122
+ [prefixes_ipv4, prefixes_ipv6].hash
123
+ end
124
+ end
125
+ end
@@ -46,6 +46,9 @@ module DatadogAPIClient::V1
46
46
  # Available prefix information for the Synthetics endpoints.
47
47
  attr_accessor :synthetics
48
48
 
49
+ # Available prefix information for the Synthetics Private Locations endpoints.
50
+ attr_accessor :synthetics_private_locations
51
+
49
52
  # Version of the IP list.
50
53
  attr_accessor :version
51
54
 
@@ -63,6 +66,7 @@ module DatadogAPIClient::V1
63
66
  :'modified' => :'modified',
64
67
  :'process' => :'process',
65
68
  :'synthetics' => :'synthetics',
69
+ :'synthetics_private_locations' => :'synthetics-private-locations',
66
70
  :'version' => :'version',
67
71
  :'webhooks' => :'webhooks'
68
72
  }
@@ -85,6 +89,7 @@ module DatadogAPIClient::V1
85
89
  :'modified' => :'String',
86
90
  :'process' => :'IPPrefixesProcess',
87
91
  :'synthetics' => :'IPPrefixesSynthetics',
92
+ :'synthetics_private_locations' => :'IPPrefixesSyntheticsPrivateLocations',
88
93
  :'version' => :'Integer',
89
94
  :'webhooks' => :'IPPrefixesWebhooks'
90
95
  }
@@ -141,6 +146,10 @@ module DatadogAPIClient::V1
141
146
  self.synthetics = attributes[:'synthetics']
142
147
  end
143
148
 
149
+ if attributes.key?(:'synthetics_private_locations')
150
+ self.synthetics_private_locations = attributes[:'synthetics_private_locations']
151
+ end
152
+
144
153
  if attributes.key?(:'version')
145
154
  self.version = attributes[:'version']
146
155
  end
@@ -170,6 +179,7 @@ module DatadogAPIClient::V1
170
179
  modified == o.modified &&
171
180
  process == o.process &&
172
181
  synthetics == o.synthetics &&
182
+ synthetics_private_locations == o.synthetics_private_locations &&
173
183
  version == o.version &&
174
184
  webhooks == o.webhooks
175
185
  end
@@ -185,7 +195,7 @@ module DatadogAPIClient::V1
185
195
  # @return [Integer] Hash code
186
196
  # @!visibility private
187
197
  def hash
188
- [agents, api, apm, logs, modified, process, synthetics, version, webhooks].hash
198
+ [agents, api, apm, logs, modified, process, synthetics, synthetics_private_locations, version, webhooks].hash
189
199
  end
190
200
  end
191
201
  end
@@ -25,6 +25,8 @@ module DatadogAPIClient::V1
25
25
  API_PERCENTAGE = "api_percentage".freeze
26
26
  APM_HOST_USAGE = "apm_host_usage".freeze
27
27
  APM_HOST_PERCENTAGE = "apm_host_percentage".freeze
28
+ APPSEC_USAGE = "appsec_usage".freeze
29
+ APPSEC_PERCENTAGE = "appsec_percentage".freeze
28
30
  BROWSER_USAGE = "browser_usage".freeze
29
31
  BROWSER_PERCENTAGE = "browser_percentage".freeze
30
32
  CONTAINER_USAGE = "container_usage".freeze
@@ -33,6 +35,8 @@ module DatadogAPIClient::V1
33
35
  CUSTOM_TIMESERIES_PERCENTAGE = "custom_timeseries_percentage".freeze
34
36
  ESTIMATED_INDEXED_LOGS_USAGE = "estimated_indexed_logs_usage".freeze
35
37
  ESTIMATED_INDEXED_LOGS_PERCENTAGE = "estimated_indexed_logs_percentage".freeze
38
+ ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage".freeze
39
+ ESTIMATED_INDEXED_SPANS_PERCENTAGE = "estimated_indexed_spans_percentage".freeze
36
40
  FARGATE_USAGE = "fargate_usage".freeze
37
41
  FARGATE_PERCENTAGE = "fargate_percentage".freeze
38
42
  FUNCTIONS_USAGE = "functions_usage".freeze