datadog_api_client 1.9.0 → 1.10.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.
Files changed (137) hide show
  1. checksums.yaml +4 -4
  2. data/.apigentools-info +4 -4
  3. data/.generator/schemas/v1/openapi.yaml +489 -124
  4. data/.generator/schemas/v2/openapi.yaml +701 -28
  5. data/.generator/src/generator/formatter.py +6 -1
  6. data/.generator/src/generator/openapi.py +5 -5
  7. data/.generator/src/generator/templates/api_client.j2 +1 -4
  8. data/.generator/src/generator/templates/model_generic.j2 +42 -3
  9. data/.github/workflows/prepare_release.yml +15 -3
  10. data/CHANGELOG.md +32 -0
  11. data/Makefile +1 -1
  12. data/README.md +16 -0
  13. data/check-examples.sh +0 -2
  14. data/examples/v1/aws-integration/UpdateAWSAccount.rb +8 -4
  15. data/examples/v1/downtimes/CreateDowntime_2908359488.rb +1 -0
  16. data/examples/v1/downtimes/CreateDowntime_3059354445.rb +1 -0
  17. data/examples/v1/downtimes/UpdateDowntime.rb +1 -0
  18. data/examples/v1/monitors/CreateMonitor_1969035628.rb +52 -0
  19. data/examples/v1/monitors/CreateMonitor_2520912138.rb +22 -0
  20. data/examples/v1/security-monitoring/AddSecurityMonitoringSignalToIncident.rb +9 -0
  21. data/examples/v1/security-monitoring/EditSecurityMonitoringSignalAssignee.rb +9 -0
  22. data/examples/v1/security-monitoring/EditSecurityMonitoringSignalState.rb +10 -0
  23. data/examples/v1/service-level-objective-corrections/CreateSLOCorrection.rb +0 -3
  24. data/examples/v1/service-level-objective-corrections/CreateSLOCorrection_1326388368.rb +0 -3
  25. data/examples/v1/service-level-objective-corrections/DeleteSLOCorrection.rb +0 -3
  26. data/examples/v1/service-level-objective-corrections/GetSLOCorrection.rb +0 -3
  27. data/examples/v1/service-level-objective-corrections/ListSLOCorrection.rb +0 -3
  28. data/examples/v1/service-level-objective-corrections/UpdateSLOCorrection.rb +0 -3
  29. data/examples/v1/service-level-objectives/GetSLOCorrections.rb +0 -3
  30. data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +5 -0
  31. data/examples/v1/synthetics/CreateSyntheticsAPITest_1402674167.rb +44 -0
  32. data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +64 -0
  33. data/examples/v1/synthetics/UpdateBrowserTest.rb +5 -0
  34. data/examples/v1/usage-metering/GetHourlyUsageAttribution.rb +1 -1
  35. data/examples/v1/usage-metering/GetMonthlyUsageAttribution.rb +1 -1
  36. data/examples/v1/usage-metering/{GetMonthlyUsageAttribution_3738504447.rb → GetMonthlyUsageAttribution_3849653599.rb} +1 -1
  37. data/examples/v1/usage-metering/GetUsageAttribution.rb +1 -1
  38. data/examples/v1/usage-metering/GetUsageRumSessions_3271366243.rb +9 -0
  39. data/examples/v2/logs/SubmitLog.rb +1 -0
  40. data/examples/v2/logs-archives/CreateLogsArchive.rb +1 -0
  41. data/examples/v2/logs-archives/UpdateLogsArchive.rb +1 -0
  42. data/examples/v2/metrics/EstimateMetricsOutputSeries.rb +9 -0
  43. data/examples/v2/metrics/SubmitMetrics.rb +20 -0
  44. data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +1 -0
  45. data/examples/v2/usage-metering/GetCostByOrg.rb +5 -0
  46. data/examples/v2/usage-metering/GetUsageApplicationSecurityMonitoring.rb +8 -0
  47. data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations.rb +8 -0
  48. data/lib/datadog_api_client/v1/api/metrics_api.rb +1 -1
  49. data/lib/datadog_api_client/v1/api/monitors_api.rb +69 -56
  50. data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +266 -0
  51. data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +1 -1
  52. data/lib/datadog_api_client/v1/api/usage_metering_api.rb +10 -10
  53. data/lib/datadog_api_client/v1/api_client.rb +1 -4
  54. data/lib/datadog_api_client/v1/configuration.rb +0 -6
  55. data/lib/datadog_api_client/v1/models/add_signal_to_incident_request.rb +142 -0
  56. data/lib/datadog_api_client/v1/models/downtime.rb +11 -1
  57. data/lib/datadog_api_client/v1/models/downtime_child.rb +11 -1
  58. data/lib/datadog_api_client/v1/models/event.rb +1 -1
  59. data/lib/datadog_api_client/v1/models/http_log_item.rb +29 -4
  60. data/lib/datadog_api_client/v1/models/logs_category_processor.rb +1 -1
  61. data/lib/datadog_api_client/v1/models/logs_list_request.rb +1 -1
  62. data/lib/datadog_api_client/v1/models/logs_sort.rb +1 -1
  63. data/lib/datadog_api_client/v1/models/monitor_formula_and_function_events_data_source.rb +1 -0
  64. data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts.rb +2 -2
  65. data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_tag_item.rb → monitor_search_count_item.rb} +3 -3
  66. data/lib/datadog_api_client/v1/models/monitor_search_response_counts.rb +4 -4
  67. data/lib/datadog_api_client/v1/models/monitor_type.rb +1 -0
  68. data/lib/datadog_api_client/v1/models/monthly_usage_attribution_response.rb +1 -1
  69. data/lib/datadog_api_client/v1/models/notebook_cell_create_request.rb +146 -0
  70. data/lib/datadog_api_client/v1/models/notebook_cell_create_request_attributes.rb +68 -0
  71. data/lib/datadog_api_client/v1/models/series.rb +2 -2
  72. data/lib/datadog_api_client/v1/models/signal_archive_reason.rb +29 -0
  73. data/lib/datadog_api_client/v1/models/signal_assignee_update_request.rb +132 -0
  74. data/lib/datadog_api_client/v1/models/signal_state_update_request.rb +152 -0
  75. data/lib/datadog_api_client/v1/models/signal_triage_state.rb +28 -0
  76. data/lib/datadog_api_client/v1/models/slo_correction_create_request_attributes.rb +1 -1
  77. data/lib/datadog_api_client/v1/models/slo_correction_response_attributes.rb +4 -4
  78. data/lib/datadog_api_client/v1/models/slo_correction_update_request_attributes.rb +1 -1
  79. data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_status_item.rb → successful_signal_update_response.rb} +12 -22
  80. data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +1 -1
  81. data/lib/datadog_api_client/v1/models/synthetics_assertion_type.rb +2 -0
  82. data/lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb +152 -0
  83. data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -1
  84. data/lib/datadog_api_client/v1/models/synthetics_test_details_sub_type.rb +2 -1
  85. data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +21 -1
  86. data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +21 -1
  87. data/lib/datadog_api_client/v1/models/usage_attribution_response.rb +1 -1
  88. data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +18 -4
  89. data/lib/datadog_api_client/v1/models/usage_summary_date.rb +11 -1
  90. data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +11 -1
  91. data/lib/datadog_api_client/v1/models/usage_summary_response.rb +11 -1
  92. data/lib/datadog_api_client/v1.rb +11 -6
  93. data/lib/datadog_api_client/v2/api/authn_mappings_api.rb +0 -2
  94. data/lib/datadog_api_client/v2/api/metrics_api.rb +173 -0
  95. data/lib/datadog_api_client/v2/api/usage_metering_api.rb +228 -0
  96. data/lib/datadog_api_client/v2/api_client.rb +1 -4
  97. data/lib/datadog_api_client/v2/models/authn_mapping.rb +1 -13
  98. data/lib/datadog_api_client/v2/models/authn_mapping_attributes.rb +1 -12
  99. data/lib/datadog_api_client/v2/models/authn_mapping_response.rb +16 -4
  100. data/lib/datadog_api_client/v2/models/authn_mappings_response.rb +13 -1
  101. data/lib/datadog_api_client/v2/models/chargeback_breakdown.rb +131 -0
  102. data/lib/datadog_api_client/v2/models/cost_by_org.rb +133 -0
  103. data/lib/datadog_api_client/v2/models/cost_by_org_attributes.rb +153 -0
  104. data/lib/datadog_api_client/v2/models/cost_by_org_response.rb +113 -0
  105. data/lib/datadog_api_client/v2/models/cost_by_org_type.rb +26 -0
  106. data/lib/datadog_api_client/v2/models/hourly_usage_type.rb +2 -0
  107. data/lib/datadog_api_client/v2/models/http_log_item.rb +40 -4
  108. data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +111 -0
  109. data/lib/datadog_api_client/v2/models/logs_archive_attributes.rb +12 -1
  110. data/lib/datadog_api_client/v2/models/logs_archive_create_request_attributes.rb +12 -1
  111. data/lib/datadog_api_client/v2/models/metric_content_encoding.rb +26 -0
  112. data/lib/datadog_api_client/v2/models/metric_estimate.rb +133 -0
  113. data/lib/datadog_api_client/v2/models/metric_estimate_attributes.rb +133 -0
  114. data/lib/datadog_api_client/v2/models/metric_estimate_resource_type.rb +26 -0
  115. data/lib/datadog_api_client/v2/models/metric_estimate_response.rb +111 -0
  116. data/lib/datadog_api_client/v2/models/metric_estimate_type.rb +28 -0
  117. data/lib/datadog_api_client/v2/models/metric_intake_type.rb +30 -0
  118. data/lib/datadog_api_client/v2/models/metric_metadata.rb +111 -0
  119. data/lib/datadog_api_client/v2/models/metric_origin.rb +170 -0
  120. data/lib/datadog_api_client/{v1/models/monitor_group_search_response_counts_type_item.rb → v2/models/metric_payload.rb} +27 -24
  121. data/lib/datadog_api_client/v2/models/metric_point.rb +122 -0
  122. data/lib/datadog_api_client/{v1/models/monitor_search_response_counts_type_item.rb → v2/models/metric_resource.rb} +21 -21
  123. data/lib/datadog_api_client/v2/models/metric_series.rb +220 -0
  124. data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute_data.rb +1 -5
  125. data/lib/datadog_api_client/v2/models/saml_assertion_attribute.rb +1 -5
  126. data/lib/datadog_api_client/v2/models/security_monitoring_rule_detection_method.rb +1 -0
  127. data/lib/datadog_api_client/v2/models/security_monitoring_rule_hardcoded_evaluator_type.rb +26 -0
  128. data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +11 -1
  129. data/lib/datadog_api_client/{v1/models/monitor_group_search_response_counts_status_item.rb → v2/models/usage_application_security_monitoring_response.rb} +16 -24
  130. data/lib/datadog_api_client/{v1/models/monitor_search_response_counts_muted_item.rb → v2/models/usage_lambda_traced_invocations_response.rb} +16 -24
  131. data/lib/datadog_api_client/v2.rb +22 -0
  132. data/lib/datadog_api_client/version.rb +1 -1
  133. data/spec/v1/api_client_spec.rb +3 -3
  134. data/spec/v2/api_client_spec.rb +3 -3
  135. metadata +49 -11
  136. data/extract-code-blocks.awk +0 -81
  137. data/extract-code-blocks.sh +0 -3
@@ -1,5 +1,5 @@
1
1
  =begin
2
- #Datadog API V1 Collection
2
+ #Datadog API V2 Collection
3
3
 
4
4
  #Collection of all Datadog Public endpoints.
5
5
 
@@ -16,27 +16,27 @@ Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.ge
16
16
  require 'date'
17
17
  require 'time'
18
18
 
19
- module DatadogAPIClient::V1
20
- # A facet item.
21
- class MonitorSearchResponseCountsTypeItem
19
+ module DatadogAPIClient::V2
20
+ # Metric resource.
21
+ class MetricResource
22
22
  include BaseGenericModel
23
23
 
24
24
  # Whether the object has unparsed attributes
25
25
  # @!visibility private
26
26
  attr_accessor :_unparsed
27
27
 
28
- # The number of found monitors with the listed value.
29
- attr_accessor :count
30
-
31
- # The facet value.
28
+ # The name of the metric.
32
29
  attr_accessor :name
33
30
 
31
+ # The type of metric.
32
+ attr_accessor :type
33
+
34
34
  # Attribute mapping from ruby-style variable name to JSON key.
35
35
  # @!visibility private
36
36
  def self.attribute_map
37
37
  {
38
- :'count' => :'count',
39
- :'name' => :'name'
38
+ :'name' => :'name',
39
+ :'type' => :'type'
40
40
  }
41
41
  end
42
42
 
@@ -50,8 +50,8 @@ module DatadogAPIClient::V1
50
50
  # @!visibility private
51
51
  def self.openapi_types
52
52
  {
53
- :'count' => :'Integer',
54
- :'name' => :'Object'
53
+ :'name' => :'String',
54
+ :'type' => :'String'
55
55
  }
56
56
  end
57
57
 
@@ -67,24 +67,24 @@ module DatadogAPIClient::V1
67
67
  # @!visibility private
68
68
  def initialize(attributes = {})
69
69
  if (!attributes.is_a?(Hash))
70
- fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::MonitorSearchResponseCountsTypeItem` initialize method"
70
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::MetricResource` initialize method"
71
71
  end
72
72
 
73
73
  # check to see if the attribute exists and convert string to symbol for hash key
74
74
  attributes = attributes.each_with_object({}) { |(k, v), h|
75
75
  if (!self.class.attribute_map.key?(k.to_sym))
76
- fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::MonitorSearchResponseCountsTypeItem`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
76
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::MetricResource`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
77
77
  end
78
78
  h[k.to_sym] = v
79
79
  }
80
80
 
81
- if attributes.key?(:'count')
82
- self.count = attributes[:'count']
83
- end
84
-
85
81
  if attributes.key?(:'name')
86
82
  self.name = attributes[:'name']
87
83
  end
84
+
85
+ if attributes.key?(:'type')
86
+ self.type = attributes[:'type']
87
+ end
88
88
  end
89
89
 
90
90
  # Check to see if the all the properties in the model are valid
@@ -100,8 +100,8 @@ module DatadogAPIClient::V1
100
100
  def ==(o)
101
101
  return true if self.equal?(o)
102
102
  self.class == o.class &&
103
- count == o.count &&
104
- name == o.name
103
+ name == o.name &&
104
+ type == o.type
105
105
  end
106
106
 
107
107
  # @see the `==` method
@@ -115,7 +115,7 @@ module DatadogAPIClient::V1
115
115
  # @return [Integer] Hash code
116
116
  # @!visibility private
117
117
  def hash
118
- [count, name].hash
118
+ [name, type].hash
119
119
  end
120
120
  end
121
121
  end
@@ -0,0 +1,220 @@
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 metric to submit to Datadog.
21
+ # See [Datadog metrics](https://docs.datadoghq.com/developers/metrics/#custom-metrics-properties).
22
+ class MetricSeries
23
+ include BaseGenericModel
24
+
25
+ # Whether the object has unparsed attributes
26
+ # @!visibility private
27
+ attr_accessor :_unparsed
28
+
29
+ # If the type of the metric is rate or count, define the corresponding interval.
30
+ attr_accessor :interval
31
+
32
+ # Metadata for the metric.
33
+ attr_accessor :metadata
34
+
35
+ # The name of the timeseries.
36
+ attr_accessor :metric
37
+
38
+ # Points relating to a metric. All points must be objects with timestamp and a scalar value (cannot be a string). Timestamps should be in POSIX time in seconds, and cannot be more than ten minutes in the future or more than one hour in the past.
39
+ attr_accessor :points
40
+
41
+ # A list of resources to associate with this metric.
42
+ attr_accessor :resources
43
+
44
+ # The source type name.
45
+ attr_accessor :source_type_name
46
+
47
+ # A list of tags associated with the metric.
48
+ attr_accessor :tags
49
+
50
+ # The type of metric.
51
+ attr_accessor :type
52
+
53
+ # The unit of point value.
54
+ attr_accessor :unit
55
+
56
+ # Attribute mapping from ruby-style variable name to JSON key.
57
+ # @!visibility private
58
+ def self.attribute_map
59
+ {
60
+ :'interval' => :'interval',
61
+ :'metadata' => :'metadata',
62
+ :'metric' => :'metric',
63
+ :'points' => :'points',
64
+ :'resources' => :'resources',
65
+ :'source_type_name' => :'source_type_name',
66
+ :'tags' => :'tags',
67
+ :'type' => :'type',
68
+ :'unit' => :'unit'
69
+ }
70
+ end
71
+
72
+ # Returns all the JSON keys this model knows about
73
+ # @!visibility private
74
+ def self.acceptable_attributes
75
+ attribute_map.values
76
+ end
77
+
78
+ # Attribute type mapping.
79
+ # @!visibility private
80
+ def self.openapi_types
81
+ {
82
+ :'interval' => :'Integer',
83
+ :'metadata' => :'MetricMetadata',
84
+ :'metric' => :'String',
85
+ :'points' => :'Array<MetricPoint>',
86
+ :'resources' => :'Array<MetricResource>',
87
+ :'source_type_name' => :'String',
88
+ :'tags' => :'Array<String>',
89
+ :'type' => :'MetricIntakeType',
90
+ :'unit' => :'String'
91
+ }
92
+ end
93
+
94
+ # List of attributes with nullable: true
95
+ # @!visibility private
96
+ def self.openapi_nullable
97
+ Set.new([
98
+ ])
99
+ end
100
+
101
+ # Initializes the object
102
+ # @param attributes [Hash] Model attributes in the form of hash
103
+ # @!visibility private
104
+ def initialize(attributes = {})
105
+ if (!attributes.is_a?(Hash))
106
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::MetricSeries` initialize method"
107
+ end
108
+
109
+ # check to see if the attribute exists and convert string to symbol for hash key
110
+ attributes = attributes.each_with_object({}) { |(k, v), h|
111
+ if (!self.class.attribute_map.key?(k.to_sym))
112
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::MetricSeries`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
113
+ end
114
+ h[k.to_sym] = v
115
+ }
116
+
117
+ if attributes.key?(:'interval')
118
+ self.interval = attributes[:'interval']
119
+ end
120
+
121
+ if attributes.key?(:'metadata')
122
+ self.metadata = attributes[:'metadata']
123
+ end
124
+
125
+ if attributes.key?(:'metric')
126
+ self.metric = attributes[:'metric']
127
+ end
128
+
129
+ if attributes.key?(:'points')
130
+ if (value = attributes[:'points']).is_a?(Array)
131
+ self.points = value
132
+ end
133
+ end
134
+
135
+ if attributes.key?(:'resources')
136
+ if (value = attributes[:'resources']).is_a?(Array)
137
+ self.resources = value
138
+ end
139
+ end
140
+
141
+ if attributes.key?(:'source_type_name')
142
+ self.source_type_name = attributes[:'source_type_name']
143
+ end
144
+
145
+ if attributes.key?(:'tags')
146
+ if (value = attributes[:'tags']).is_a?(Array)
147
+ self.tags = value
148
+ end
149
+ end
150
+
151
+ if attributes.key?(:'type')
152
+ self.type = attributes[:'type']
153
+ end
154
+
155
+ if attributes.key?(:'unit')
156
+ self.unit = attributes[:'unit']
157
+ end
158
+ end
159
+
160
+ # Check to see if the all the properties in the model are valid
161
+ # @return true if the model is valid
162
+ # @!visibility private
163
+ def valid?
164
+ return false if @metric.nil?
165
+ return false if @points.nil?
166
+ true
167
+ end
168
+
169
+ # Custom attribute writer method with validation
170
+ # @param metric [Object] Object to be assigned
171
+ # @!visibility private
172
+ def metric=(metric)
173
+ if metric.nil?
174
+ fail ArgumentError, 'invalid value for "metric", metric cannot be nil.'
175
+ end
176
+ @metric = metric
177
+ end
178
+
179
+ # Custom attribute writer method with validation
180
+ # @param points [Object] Object to be assigned
181
+ # @!visibility private
182
+ def points=(points)
183
+ if points.nil?
184
+ fail ArgumentError, 'invalid value for "points", points cannot be nil.'
185
+ end
186
+ @points = points
187
+ end
188
+
189
+ # Checks equality by comparing each attribute.
190
+ # @param o [Object] Object to be compared
191
+ # @!visibility private
192
+ def ==(o)
193
+ return true if self.equal?(o)
194
+ self.class == o.class &&
195
+ interval == o.interval &&
196
+ metadata == o.metadata &&
197
+ metric == o.metric &&
198
+ points == o.points &&
199
+ resources == o.resources &&
200
+ source_type_name == o.source_type_name &&
201
+ tags == o.tags &&
202
+ type == o.type &&
203
+ unit == o.unit
204
+ end
205
+
206
+ # @see the `==` method
207
+ # @param o [Object] Object to be compared
208
+ # @!visibility private
209
+ def eql?(o)
210
+ self == o
211
+ end
212
+
213
+ # Calculates hash code according to all attributes.
214
+ # @return [Integer] Hash code
215
+ # @!visibility private
216
+ def hash
217
+ [interval, metadata, metric, points, resources, source_type_name, tags, type, unit].hash
218
+ end
219
+ end
220
+ end
@@ -50,7 +50,7 @@ module DatadogAPIClient::V2
50
50
  # @!visibility private
51
51
  def self.openapi_types
52
52
  {
53
- :'id' => :'Integer',
53
+ :'id' => :'String',
54
54
  :'type' => :'SAMLAssertionAttributesType'
55
55
  }
56
56
  end
@@ -94,7 +94,6 @@ module DatadogAPIClient::V2
94
94
  # @!visibility private
95
95
  def valid?
96
96
  return false if @id.nil?
97
- return false if @id > 2147483647
98
97
  return false if @type.nil?
99
98
  true
100
99
  end
@@ -106,9 +105,6 @@ module DatadogAPIClient::V2
106
105
  if id.nil?
107
106
  fail ArgumentError, 'invalid value for "id", id cannot be nil.'
108
107
  end
109
- if id > 2147483647
110
- fail ArgumentError, 'invalid value for "id", must be smaller than or equal to 2147483647.'
111
- end
112
108
  @id = id
113
109
  end
114
110
 
@@ -55,7 +55,7 @@ module DatadogAPIClient::V2
55
55
  def self.openapi_types
56
56
  {
57
57
  :'attributes' => :'SAMLAssertionAttributeAttributes',
58
- :'id' => :'Integer',
58
+ :'id' => :'String',
59
59
  :'type' => :'SAMLAssertionAttributesType'
60
60
  }
61
61
  end
@@ -103,7 +103,6 @@ module DatadogAPIClient::V2
103
103
  # @!visibility private
104
104
  def valid?
105
105
  return false if @id.nil?
106
- return false if @id > 2147483647
107
106
  return false if @type.nil?
108
107
  true
109
108
  end
@@ -115,9 +114,6 @@ module DatadogAPIClient::V2
115
114
  if id.nil?
116
115
  fail ArgumentError, 'invalid value for "id", id cannot be nil.'
117
116
  end
118
- if id > 2147483647
119
- fail ArgumentError, 'invalid value for "id", must be smaller than or equal to 2147483647.'
120
- end
121
117
  @id = id
122
118
  end
123
119
 
@@ -25,5 +25,6 @@ module DatadogAPIClient::V2
25
25
  NEW_VALUE = "new_value".freeze
26
26
  ANOMALY_DETECTION = "anomaly_detection".freeze
27
27
  IMPOSSIBLE_TRAVEL = "impossible_travel".freeze
28
+ HARDCODED = "hardcoded".freeze
28
29
  end
29
30
  end
@@ -0,0 +1,26 @@
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
+ # Hardcoded evaluator type.
21
+ class SecurityMonitoringRuleHardcodedEvaluatorType
22
+ include BaseEnumModel
23
+
24
+ LOG4SHELL = "log4shell".freeze
25
+ end
26
+ end
@@ -32,6 +32,9 @@ module DatadogAPIClient::V2
32
32
  # and evaluates in real time.
33
33
  attr_accessor :evaluation_window
34
34
 
35
+ # Hardcoded evaluator type.
36
+ attr_accessor :hardcoded_evaluator_type
37
+
35
38
  # Options on impossible travel rules.
36
39
  attr_accessor :impossible_travel_options
37
40
 
@@ -52,6 +55,7 @@ module DatadogAPIClient::V2
52
55
  {
53
56
  :'detection_method' => :'detectionMethod',
54
57
  :'evaluation_window' => :'evaluationWindow',
58
+ :'hardcoded_evaluator_type' => :'hardcodedEvaluatorType',
55
59
  :'impossible_travel_options' => :'impossibleTravelOptions',
56
60
  :'keep_alive' => :'keepAlive',
57
61
  :'max_signal_duration' => :'maxSignalDuration',
@@ -71,6 +75,7 @@ module DatadogAPIClient::V2
71
75
  {
72
76
  :'detection_method' => :'SecurityMonitoringRuleDetectionMethod',
73
77
  :'evaluation_window' => :'SecurityMonitoringRuleEvaluationWindow',
78
+ :'hardcoded_evaluator_type' => :'SecurityMonitoringRuleHardcodedEvaluatorType',
74
79
  :'impossible_travel_options' => :'SecurityMonitoringRuleImpossibleTravelOptions',
75
80
  :'keep_alive' => :'SecurityMonitoringRuleKeepAlive',
76
81
  :'max_signal_duration' => :'SecurityMonitoringRuleMaxSignalDuration',
@@ -109,6 +114,10 @@ module DatadogAPIClient::V2
109
114
  self.evaluation_window = attributes[:'evaluation_window']
110
115
  end
111
116
 
117
+ if attributes.key?(:'hardcoded_evaluator_type')
118
+ self.hardcoded_evaluator_type = attributes[:'hardcoded_evaluator_type']
119
+ end
120
+
112
121
  if attributes.key?(:'impossible_travel_options')
113
122
  self.impossible_travel_options = attributes[:'impossible_travel_options']
114
123
  end
@@ -141,6 +150,7 @@ module DatadogAPIClient::V2
141
150
  self.class == o.class &&
142
151
  detection_method == o.detection_method &&
143
152
  evaluation_window == o.evaluation_window &&
153
+ hardcoded_evaluator_type == o.hardcoded_evaluator_type &&
144
154
  impossible_travel_options == o.impossible_travel_options &&
145
155
  keep_alive == o.keep_alive &&
146
156
  max_signal_duration == o.max_signal_duration &&
@@ -158,7 +168,7 @@ module DatadogAPIClient::V2
158
168
  # @return [Integer] Hash code
159
169
  # @!visibility private
160
170
  def hash
161
- [detection_method, evaluation_window, impossible_travel_options, keep_alive, max_signal_duration, new_value_options].hash
171
+ [detection_method, evaluation_window, hardcoded_evaluator_type, impossible_travel_options, keep_alive, max_signal_duration, new_value_options].hash
162
172
  end
163
173
  end
164
174
  end
@@ -1,5 +1,5 @@
1
1
  =begin
2
- #Datadog API V1 Collection
2
+ #Datadog API V2 Collection
3
3
 
4
4
  #Collection of all Datadog Public endpoints.
5
5
 
@@ -16,27 +16,23 @@ Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.ge
16
16
  require 'date'
17
17
  require 'time'
18
18
 
19
- module DatadogAPIClient::V1
20
- # A facet item.
21
- class MonitorGroupSearchResponseCountsStatusItem
19
+ module DatadogAPIClient::V2
20
+ # Application Security Monitoring usage response.
21
+ class UsageApplicationSecurityMonitoringResponse
22
22
  include BaseGenericModel
23
23
 
24
24
  # Whether the object has unparsed attributes
25
25
  # @!visibility private
26
26
  attr_accessor :_unparsed
27
27
 
28
- # The number of found monitors with the listed value.
29
- attr_accessor :count
30
-
31
- # The facet value.
32
- attr_accessor :name
28
+ # Response containing Application Security Monitoring usage.
29
+ attr_accessor :data
33
30
 
34
31
  # Attribute mapping from ruby-style variable name to JSON key.
35
32
  # @!visibility private
36
33
  def self.attribute_map
37
34
  {
38
- :'count' => :'count',
39
- :'name' => :'name'
35
+ :'data' => :'data'
40
36
  }
41
37
  end
42
38
 
@@ -50,8 +46,7 @@ module DatadogAPIClient::V1
50
46
  # @!visibility private
51
47
  def self.openapi_types
52
48
  {
53
- :'count' => :'Integer',
54
- :'name' => :'Object'
49
+ :'data' => :'Array<UsageDataObject>'
55
50
  }
56
51
  end
57
52
 
@@ -67,23 +62,21 @@ module DatadogAPIClient::V1
67
62
  # @!visibility private
68
63
  def initialize(attributes = {})
69
64
  if (!attributes.is_a?(Hash))
70
- fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::MonitorGroupSearchResponseCountsStatusItem` initialize method"
65
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::UsageApplicationSecurityMonitoringResponse` initialize method"
71
66
  end
72
67
 
73
68
  # check to see if the attribute exists and convert string to symbol for hash key
74
69
  attributes = attributes.each_with_object({}) { |(k, v), h|
75
70
  if (!self.class.attribute_map.key?(k.to_sym))
76
- fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::MonitorGroupSearchResponseCountsStatusItem`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
71
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::UsageApplicationSecurityMonitoringResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
77
72
  end
78
73
  h[k.to_sym] = v
79
74
  }
80
75
 
81
- if attributes.key?(:'count')
82
- self.count = attributes[:'count']
83
- end
84
-
85
- if attributes.key?(:'name')
86
- self.name = attributes[:'name']
76
+ if attributes.key?(:'data')
77
+ if (value = attributes[:'data']).is_a?(Array)
78
+ self.data = value
79
+ end
87
80
  end
88
81
  end
89
82
 
@@ -100,8 +93,7 @@ module DatadogAPIClient::V1
100
93
  def ==(o)
101
94
  return true if self.equal?(o)
102
95
  self.class == o.class &&
103
- count == o.count &&
104
- name == o.name
96
+ data == o.data
105
97
  end
106
98
 
107
99
  # @see the `==` method
@@ -115,7 +107,7 @@ module DatadogAPIClient::V1
115
107
  # @return [Integer] Hash code
116
108
  # @!visibility private
117
109
  def hash
118
- [count, name].hash
110
+ [data].hash
119
111
  end
120
112
  end
121
113
  end
@@ -1,5 +1,5 @@
1
1
  =begin
2
- #Datadog API V1 Collection
2
+ #Datadog API V2 Collection
3
3
 
4
4
  #Collection of all Datadog Public endpoints.
5
5
 
@@ -16,27 +16,23 @@ Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.ge
16
16
  require 'date'
17
17
  require 'time'
18
18
 
19
- module DatadogAPIClient::V1
20
- # A facet item.
21
- class MonitorSearchResponseCountsMutedItem
19
+ module DatadogAPIClient::V2
20
+ # Lambda Traced Invocations usage response.
21
+ class UsageLambdaTracedInvocationsResponse
22
22
  include BaseGenericModel
23
23
 
24
24
  # Whether the object has unparsed attributes
25
25
  # @!visibility private
26
26
  attr_accessor :_unparsed
27
27
 
28
- # The number of found monitors with the listed value.
29
- attr_accessor :count
30
-
31
- # The facet value.
32
- attr_accessor :name
28
+ # Response containing Lambda Traced Invocations usage.
29
+ attr_accessor :data
33
30
 
34
31
  # Attribute mapping from ruby-style variable name to JSON key.
35
32
  # @!visibility private
36
33
  def self.attribute_map
37
34
  {
38
- :'count' => :'count',
39
- :'name' => :'name'
35
+ :'data' => :'data'
40
36
  }
41
37
  end
42
38
 
@@ -50,8 +46,7 @@ module DatadogAPIClient::V1
50
46
  # @!visibility private
51
47
  def self.openapi_types
52
48
  {
53
- :'count' => :'Integer',
54
- :'name' => :'Object'
49
+ :'data' => :'Array<UsageDataObject>'
55
50
  }
56
51
  end
57
52
 
@@ -67,23 +62,21 @@ module DatadogAPIClient::V1
67
62
  # @!visibility private
68
63
  def initialize(attributes = {})
69
64
  if (!attributes.is_a?(Hash))
70
- fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::MonitorSearchResponseCountsMutedItem` initialize method"
65
+ fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::UsageLambdaTracedInvocationsResponse` initialize method"
71
66
  end
72
67
 
73
68
  # check to see if the attribute exists and convert string to symbol for hash key
74
69
  attributes = attributes.each_with_object({}) { |(k, v), h|
75
70
  if (!self.class.attribute_map.key?(k.to_sym))
76
- fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V1::MonitorSearchResponseCountsMutedItem`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
71
+ fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::UsageLambdaTracedInvocationsResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
77
72
  end
78
73
  h[k.to_sym] = v
79
74
  }
80
75
 
81
- if attributes.key?(:'count')
82
- self.count = attributes[:'count']
83
- end
84
-
85
- if attributes.key?(:'name')
86
- self.name = attributes[:'name']
76
+ if attributes.key?(:'data')
77
+ if (value = attributes[:'data']).is_a?(Array)
78
+ self.data = value
79
+ end
87
80
  end
88
81
  end
89
82
 
@@ -100,8 +93,7 @@ module DatadogAPIClient::V1
100
93
  def ==(o)
101
94
  return true if self.equal?(o)
102
95
  self.class == o.class &&
103
- count == o.count &&
104
- name == o.name
96
+ data == o.data
105
97
  end
106
98
 
107
99
  # @see the `==` method
@@ -115,7 +107,7 @@ module DatadogAPIClient::V1
115
107
  # @return [Integer] Hash code
116
108
  # @!visibility private
117
109
  def hash
118
- [count, name].hash
110
+ [data].hash
119
111
  end
120
112
  end
121
113
  end