datadog_api_client 1.0.0 → 1.1.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/.github/workflows/scripts/test_integration.js +24 -0
- data/.github/workflows/test.yml +4 -0
- data/.github/workflows/test_integration.yml +87 -0
- data/.openapi-generator/FILES +48 -0
- data/CHANGELOG.md +18 -0
- data/README.md +1 -1
- data/data/v1/openapi.yaml +1133 -99
- data/data/v2/openapi.yaml +420 -13
- data/docs/v1/Downtime.md +2 -0
- data/docs/v1/DowntimeChild.md +48 -0
- data/docs/v1/MetricsAPI.md +1 -1
- data/docs/v1/Monitor.md +3 -3
- data/docs/v1/MonitorGroupSearchResponse.md +22 -0
- data/docs/v1/MonitorGroupSearchResponseCounts.md +20 -0
- data/docs/v1/MonitorGroupSearchResult.md +30 -0
- data/docs/v1/MonitorOptions.md +1 -1
- data/docs/v1/MonitorSearchResponse.md +22 -0
- data/docs/v1/MonitorSearchResponseCounts.md +24 -0
- data/docs/v1/MonitorSearchResponseMetadata.md +24 -0
- data/docs/v1/MonitorSearchResult.md +40 -0
- data/docs/v1/MonitorSearchResultNotification.md +20 -0
- data/docs/v1/MonitorsAPI.md +155 -13
- data/docs/v1/NotebookCreateDataAttributes.md +1 -1
- data/docs/v1/NotebookResponseDataAttributes.md +3 -3
- data/docs/v1/NotebookUpdateDataAttributes.md +1 -1
- data/docs/v1/NotebooksResponse.md +1 -1
- data/docs/v1/NotebooksResponseData.md +22 -0
- data/docs/v1/NotebooksResponseDataAttributes.md +30 -0
- data/docs/v1/README.md +25 -4
- data/docs/v1/SyntheticsAPI.md +62 -2
- data/docs/v1/SyntheticsAPITest.md +2 -2
- data/docs/v1/SyntheticsAPITestConfig.md +1 -1
- data/docs/v1/SyntheticsBrowserTest.md +2 -2
- data/docs/v1/SyntheticsConfigVariable.md +3 -1
- data/docs/v1/SyntheticsGlobalVariableValue.md +1 -1
- data/docs/v1/SyntheticsListGlobalVariablesResponse.md +18 -0
- data/docs/v1/SyntheticsTestConfig.md +1 -1
- data/docs/v1/SyntheticsTestDetails.md +2 -2
- data/docs/v1/UsageAttributionBody.md +2 -0
- data/docs/v1/UsageAttributionPagination.md +3 -7
- data/docs/v1/UsageAttributionValues.md +8 -0
- data/docs/v1/UsageAuditLogsHour.md +20 -0
- data/docs/v1/UsageAuditLogsResponse.md +18 -0
- data/docs/v1/UsageCWSHour.md +22 -0
- data/docs/v1/UsageCWSResponse.md +18 -0
- data/docs/v1/UsageCloudSecurityPostureManagementHour.md +22 -0
- data/docs/v1/UsageCloudSecurityPostureManagementResponse.md +18 -0
- data/docs/v1/UsageMeteringAPI.md +157 -21
- data/docs/v1/UsageSummaryDate.md +12 -4
- data/docs/v1/UsageSummaryDateOrg.md +12 -4
- data/docs/v1/UsageSummaryResponse.md +12 -4
- data/docs/v1/UsageTopAvgMetricsMetadata.md +2 -2
- data/docs/v1/WidgetCustomLink.md +7 -3
- data/docs/v2/IncidentServicesAPI.md +2 -2
- data/docs/v2/IncidentTeamsAPI.md +2 -2
- data/docs/v2/IncidentsAPI.md +2 -2
- data/docs/v2/IncidentsResponse.md +1 -1
- data/docs/v2/KeyManagementAPI.md +6 -6
- data/docs/v2/README.md +21 -0
- data/docs/v2/RelationshipToIncidentIntegrationMetadataData.md +1 -1
- data/docs/v2/RelationshipToIncidentIntegrationMetadatas.md +1 -1
- data/docs/v2/RolesAPI.md +4 -4
- data/docs/v2/SecurityFilter.md +22 -0
- data/docs/v2/SecurityFilterAttributes.md +30 -0
- data/docs/v2/SecurityFilterCreateAttributes.md +26 -0
- data/docs/v2/SecurityFilterCreateData.md +20 -0
- data/docs/v2/SecurityFilterCreateRequest.md +18 -0
- data/docs/v2/SecurityFilterDeleteResponse.md +18 -0
- data/docs/v2/SecurityFilterExclusionFilter.md +20 -0
- data/docs/v2/SecurityFilterExclusionFilterResponse.md +20 -0
- data/docs/v2/SecurityFilterFilteredDataType.md +15 -0
- data/docs/v2/SecurityFilterMeta.md +18 -0
- data/docs/v2/SecurityFilterResponse.md +20 -0
- data/docs/v2/SecurityFilterType.md +15 -0
- data/docs/v2/SecurityFilterUpdateAttributes.md +28 -0
- data/docs/v2/SecurityFilterUpdateData.md +20 -0
- data/docs/v2/SecurityFilterUpdateRequest.md +18 -0
- data/docs/v2/SecurityFiltersResponse.md +20 -0
- data/docs/v2/SecurityMonitoringAPI.md +316 -2
- data/docs/v2/UsersAPI.md +10 -10
- data/lib/datadog_api_client/v1.rb +18 -2
- data/lib/datadog_api_client/v1/api/metrics_api.rb +2 -2
- data/lib/datadog_api_client/v1/api/monitors_api.rb +163 -5
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +67 -0
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +180 -23
- data/lib/datadog_api_client/v1/models/downtime.rb +11 -1
- data/lib/datadog_api_client/v1/models/downtime_child.rb +427 -0
- data/lib/datadog_api_client/v1/models/monitor.rb +10 -0
- data/lib/datadog_api_client/v1/models/monitor_group_search_response.rb +243 -0
- data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts.rb +237 -0
- data/lib/datadog_api_client/v1/models/monitor_group_search_result.rb +285 -0
- data/lib/datadog_api_client/v1/models/monitor_options.rb +1 -1
- data/lib/datadog_api_client/v1/models/monitor_search_response.rb +243 -0
- data/lib/datadog_api_client/v1/models/monitor_search_response_counts.rb +261 -0
- data/lib/datadog_api_client/v1/models/monitor_search_response_metadata.rb +253 -0
- data/lib/datadog_api_client/v1/models/monitor_search_result.rb +339 -0
- data/lib/datadog_api_client/v1/models/monitor_search_result_notification.rb +233 -0
- data/lib/datadog_api_client/v1/models/notebook_create_data_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebook_distribution_cell_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebook_heat_map_cell_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebook_log_stream_cell_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebook_markdown_cell_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebook_response_data_attributes.rb +3 -3
- data/lib/datadog_api_client/v1/models/notebook_timeseries_cell_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebook_toplist_cell_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebook_update_data_attributes.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebooks_response.rb +1 -1
- data/lib/datadog_api_client/v1/models/notebooks_response_data.rb +258 -0
- data/lib/datadog_api_client/v1/models/notebooks_response_data_attributes.rb +317 -0
- data/lib/datadog_api_client/v1/models/synthetics_api_test_config.rb +0 -5
- data/lib/datadog_api_client/v1/models/synthetics_config_variable.rb +11 -6
- data/lib/datadog_api_client/v1/models/synthetics_config_variable_type.rb +1 -0
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_value.rb +0 -5
- data/lib/datadog_api_client/v1/models/synthetics_list_global_variables_response.rb +225 -0
- data/lib/datadog_api_client/v1/models/synthetics_test_config.rb +0 -5
- data/lib/datadog_api_client/v1/models/usage_attribution_body.rb +11 -1
- data/lib/datadog_api_client/v1/models/usage_attribution_pagination.rb +10 -30
- data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +41 -1
- data/lib/datadog_api_client/v1/models/usage_audit_logs_hour.rb +233 -0
- data/lib/datadog_api_client/v1/models/{usage_compliance_response.rb → usage_audit_logs_response.rb} +6 -6
- data/lib/datadog_api_client/v1/models/{usage_compliance_hour.rb → usage_cloud_security_posture_management_hour.rb} +19 -19
- data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_response.rb +225 -0
- data/lib/datadog_api_client/v1/models/usage_cws_hour.rb +243 -0
- data/lib/datadog_api_client/v1/models/usage_cws_response.rb +225 -0
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +61 -22
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +61 -22
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +61 -22
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_metadata.rb +2 -4
- data/lib/datadog_api_client/v1/models/widget_custom_link.rb +24 -14
- data/lib/datadog_api_client/v2.rb +16 -0
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +369 -0
- data/lib/datadog_api_client/v2/models/incident_integration_metadata_type.rb +1 -1
- data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadata_data.rb +1 -1
- data/lib/datadog_api_client/v2/models/security_filter.rb +243 -0
- data/lib/datadog_api_client/v2/models/security_filter_attributes.rb +299 -0
- data/lib/datadog_api_client/v2/models/security_filter_create_attributes.rb +289 -0
- data/lib/datadog_api_client/v2/models/security_filter_create_data.rb +243 -0
- data/lib/datadog_api_client/v2/models/security_filter_create_request.rb +227 -0
- data/lib/datadog_api_client/v2/models/security_filter_delete_response.rb +222 -0
- data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter.rb +243 -0
- data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter_response.rb +233 -0
- data/lib/datadog_api_client/v2/models/security_filter_filtered_data_type.rb +39 -0
- data/lib/datadog_api_client/v2/models/security_filter_meta.rb +223 -0
- data/lib/datadog_api_client/v2/models/security_filter_response.rb +231 -0
- data/lib/datadog_api_client/v2/models/security_filter_type.rb +39 -0
- data/lib/datadog_api_client/v2/models/security_filter_update_attributes.rb +289 -0
- data/lib/datadog_api_client/v2/models/security_filter_update_data.rb +243 -0
- data/lib/datadog_api_client/v2/models/security_filter_update_request.rb +227 -0
- data/lib/datadog_api_client/v2/models/security_filters_response.rb +234 -0
- data/lib/datadog_api_client/version.rb +1 -1
- data/spec/v1/models/downtime_child_spec.rb +127 -0
- data/spec/v1/models/monitor_group_search_response_counts_spec.rb +43 -0
- data/spec/v1/models/monitor_group_search_response_spec.rb +49 -0
- data/spec/v1/models/monitor_group_search_result_spec.rb +73 -0
- data/spec/v1/models/monitor_search_response_counts_spec.rb +55 -0
- data/spec/v1/models/monitor_search_response_metadata_spec.rb +55 -0
- data/spec/v1/models/monitor_search_response_spec.rb +49 -0
- data/spec/v1/models/monitor_search_result_notification_spec.rb +43 -0
- data/spec/v1/models/monitor_search_result_spec.rb +103 -0
- data/spec/v1/models/notebooks_response_data_attributes_spec.rb +73 -0
- data/spec/v1/models/notebooks_response_data_spec.rb +49 -0
- data/spec/v1/models/synthetics_list_global_variables_response_spec.rb +37 -0
- data/spec/v1/models/usage_audit_logs_hour_spec.rb +43 -0
- data/spec/v1/models/{usage_compliance_response_spec.rb → usage_audit_logs_response_spec.rb} +6 -6
- data/spec/v1/models/usage_cloud_security_posture_management_hour_spec.rb +49 -0
- data/spec/v1/models/usage_cloud_security_posture_management_response_spec.rb +37 -0
- data/spec/v1/models/{usage_compliance_hour_spec.rb → usage_cws_hour_spec.rb} +8 -8
- data/spec/v1/models/usage_cws_response_spec.rb +37 -0
- data/spec/v2/models/security_filter_attributes_spec.rb +73 -0
- data/spec/v2/models/security_filter_create_attributes_spec.rb +61 -0
- data/spec/v2/models/security_filter_create_data_spec.rb +43 -0
- data/spec/v2/models/security_filter_create_request_spec.rb +37 -0
- data/spec/v2/models/security_filter_delete_response_spec.rb +37 -0
- data/spec/v2/models/security_filter_exclusion_filter_response_spec.rb +43 -0
- data/spec/v2/models/security_filter_exclusion_filter_spec.rb +43 -0
- data/spec/v2/models/security_filter_filtered_data_type_spec.rb +31 -0
- data/spec/v2/models/security_filter_meta_spec.rb +37 -0
- data/spec/v2/models/security_filter_response_spec.rb +43 -0
- data/spec/v2/models/security_filter_spec.rb +49 -0
- data/spec/v2/models/security_filter_type_spec.rb +31 -0
- data/spec/v2/models/security_filter_update_attributes_spec.rb +67 -0
- data/spec/v2/models/security_filter_update_data_spec.rb +43 -0
- data/spec/v2/models/security_filter_update_request_spec.rb +37 -0
- data/spec/v2/models/security_filters_response_spec.rb +43 -0
- metadata +140 -11
- data/.azure-pipelines/all.yml +0 -50
- data/docs/v1/UsageComplianceHour.md +0 -22
- data/docs/v1/UsageComplianceResponse.md +0 -18
|
@@ -28,6 +28,9 @@ module DatadogAPIClient::V1
|
|
|
28
28
|
# Shows the 99th percentile of all distinct APM hosts over all hours in the current date for all organizations.
|
|
29
29
|
attr_accessor :apm_host_top99p
|
|
30
30
|
|
|
31
|
+
# Shows the sum of audit logs lines indexed over all hours in the current date for all organizations.
|
|
32
|
+
attr_accessor :audit_logs_lines_indexed_sum
|
|
33
|
+
|
|
31
34
|
# Shows the 99th percentile of all AWS hosts over all hours in the current date for all organizations.
|
|
32
35
|
attr_accessor :aws_host_top99p
|
|
33
36
|
|
|
@@ -43,21 +46,30 @@ module DatadogAPIClient::V1
|
|
|
43
46
|
# Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
|
|
44
47
|
attr_accessor :billable_ingested_bytes_sum
|
|
45
48
|
|
|
46
|
-
# Shows the sum of compliance containers over all hours in the current date for all organizations.
|
|
47
|
-
attr_accessor :compliance_container_count_sum
|
|
48
|
-
|
|
49
|
-
# Shows the sum of compliance hosts over all hours in the current date for all organizations.
|
|
50
|
-
attr_accessor :compliance_host_count_sum
|
|
51
|
-
|
|
52
49
|
# Shows the average of all distinct containers over all hours in the current date for all organizations.
|
|
53
50
|
attr_accessor :container_avg
|
|
54
51
|
|
|
55
52
|
# Shows the high-water mark of all distinct containers over all hours in the current date for all organizations.
|
|
56
53
|
attr_accessor :container_hwm
|
|
57
54
|
|
|
55
|
+
# Shows the average number of Cloud Security Posture Management containers over all hours in the current date for all organizations.
|
|
56
|
+
attr_accessor :cspm_container_avg
|
|
57
|
+
|
|
58
|
+
# Shows the high-water mark of Cloud Security Posture Management containers over all hours in the current date for all organizations.
|
|
59
|
+
attr_accessor :cspm_container_hwm
|
|
60
|
+
|
|
61
|
+
# Shows the 99th percentile of all Cloud Security Posture Management hosts over all hours in the current date for all organizations.
|
|
62
|
+
attr_accessor :cspm_host_top99p
|
|
63
|
+
|
|
58
64
|
# Shows the average number of distinct custom metrics over all hours in the current date for all organizations.
|
|
59
65
|
attr_accessor :custom_ts_avg
|
|
60
66
|
|
|
67
|
+
# Shows the average of all distinct Cloud Workload Security containers over all hours in the current date for all organizations.
|
|
68
|
+
attr_accessor :cws_container_count_avg
|
|
69
|
+
|
|
70
|
+
# Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for all organizations.
|
|
71
|
+
attr_accessor :cws_host_top99p
|
|
72
|
+
|
|
61
73
|
# The date for the usage.
|
|
62
74
|
attr_accessor :date
|
|
63
75
|
|
|
@@ -142,16 +154,20 @@ module DatadogAPIClient::V1
|
|
|
142
154
|
:'agent_host_top99p' => :'agent_host_top99p',
|
|
143
155
|
:'apm_azure_app_service_host_top99p' => :'apm_azure_app_service_host_top99p',
|
|
144
156
|
:'apm_host_top99p' => :'apm_host_top99p',
|
|
157
|
+
:'audit_logs_lines_indexed_sum' => :'audit_logs_lines_indexed_sum',
|
|
145
158
|
:'aws_host_top99p' => :'aws_host_top99p',
|
|
146
159
|
:'aws_lambda_func_count' => :'aws_lambda_func_count',
|
|
147
160
|
:'aws_lambda_invocations_sum' => :'aws_lambda_invocations_sum',
|
|
148
161
|
:'azure_app_service_top99p' => :'azure_app_service_top99p',
|
|
149
162
|
:'billable_ingested_bytes_sum' => :'billable_ingested_bytes_sum',
|
|
150
|
-
:'compliance_container_count_sum' => :'compliance_container_count_sum',
|
|
151
|
-
:'compliance_host_count_sum' => :'compliance_host_count_sum',
|
|
152
163
|
:'container_avg' => :'container_avg',
|
|
153
164
|
:'container_hwm' => :'container_hwm',
|
|
165
|
+
:'cspm_container_avg' => :'cspm_container_avg',
|
|
166
|
+
:'cspm_container_hwm' => :'cspm_container_hwm',
|
|
167
|
+
:'cspm_host_top99p' => :'cspm_host_top99p',
|
|
154
168
|
:'custom_ts_avg' => :'custom_ts_avg',
|
|
169
|
+
:'cws_container_count_avg' => :'cws_container_count_avg',
|
|
170
|
+
:'cws_host_top99p' => :'cws_host_top99p',
|
|
155
171
|
:'date' => :'date',
|
|
156
172
|
:'fargate_tasks_count_avg' => :'fargate_tasks_count_avg',
|
|
157
173
|
:'fargate_tasks_count_hwm' => :'fargate_tasks_count_hwm',
|
|
@@ -192,16 +208,20 @@ module DatadogAPIClient::V1
|
|
|
192
208
|
:'agent_host_top99p' => :'Integer',
|
|
193
209
|
:'apm_azure_app_service_host_top99p' => :'Integer',
|
|
194
210
|
:'apm_host_top99p' => :'Integer',
|
|
211
|
+
:'audit_logs_lines_indexed_sum' => :'Integer',
|
|
195
212
|
:'aws_host_top99p' => :'Integer',
|
|
196
213
|
:'aws_lambda_func_count' => :'Integer',
|
|
197
214
|
:'aws_lambda_invocations_sum' => :'Integer',
|
|
198
215
|
:'azure_app_service_top99p' => :'Integer',
|
|
199
216
|
:'billable_ingested_bytes_sum' => :'Integer',
|
|
200
|
-
:'compliance_container_count_sum' => :'Object',
|
|
201
|
-
:'compliance_host_count_sum' => :'Integer',
|
|
202
217
|
:'container_avg' => :'Integer',
|
|
203
218
|
:'container_hwm' => :'Integer',
|
|
219
|
+
:'cspm_container_avg' => :'Integer',
|
|
220
|
+
:'cspm_container_hwm' => :'Integer',
|
|
221
|
+
:'cspm_host_top99p' => :'Integer',
|
|
204
222
|
:'custom_ts_avg' => :'Integer',
|
|
223
|
+
:'cws_container_count_avg' => :'Integer',
|
|
224
|
+
:'cws_host_top99p' => :'Integer',
|
|
205
225
|
:'date' => :'Time',
|
|
206
226
|
:'fargate_tasks_count_avg' => :'Integer',
|
|
207
227
|
:'fargate_tasks_count_hwm' => :'Integer',
|
|
@@ -234,7 +254,6 @@ module DatadogAPIClient::V1
|
|
|
234
254
|
# List of attributes with nullable: true
|
|
235
255
|
def self.openapi_nullable
|
|
236
256
|
Set.new([
|
|
237
|
-
:'compliance_container_count_sum',
|
|
238
257
|
])
|
|
239
258
|
end
|
|
240
259
|
|
|
@@ -265,6 +284,10 @@ module DatadogAPIClient::V1
|
|
|
265
284
|
self.apm_host_top99p = attributes[:'apm_host_top99p']
|
|
266
285
|
end
|
|
267
286
|
|
|
287
|
+
if attributes.key?(:'audit_logs_lines_indexed_sum')
|
|
288
|
+
self.audit_logs_lines_indexed_sum = attributes[:'audit_logs_lines_indexed_sum']
|
|
289
|
+
end
|
|
290
|
+
|
|
268
291
|
if attributes.key?(:'aws_host_top99p')
|
|
269
292
|
self.aws_host_top99p = attributes[:'aws_host_top99p']
|
|
270
293
|
end
|
|
@@ -285,14 +308,6 @@ module DatadogAPIClient::V1
|
|
|
285
308
|
self.billable_ingested_bytes_sum = attributes[:'billable_ingested_bytes_sum']
|
|
286
309
|
end
|
|
287
310
|
|
|
288
|
-
if attributes.key?(:'compliance_container_count_sum')
|
|
289
|
-
self.compliance_container_count_sum = attributes[:'compliance_container_count_sum']
|
|
290
|
-
end
|
|
291
|
-
|
|
292
|
-
if attributes.key?(:'compliance_host_count_sum')
|
|
293
|
-
self.compliance_host_count_sum = attributes[:'compliance_host_count_sum']
|
|
294
|
-
end
|
|
295
|
-
|
|
296
311
|
if attributes.key?(:'container_avg')
|
|
297
312
|
self.container_avg = attributes[:'container_avg']
|
|
298
313
|
end
|
|
@@ -301,10 +316,30 @@ module DatadogAPIClient::V1
|
|
|
301
316
|
self.container_hwm = attributes[:'container_hwm']
|
|
302
317
|
end
|
|
303
318
|
|
|
319
|
+
if attributes.key?(:'cspm_container_avg')
|
|
320
|
+
self.cspm_container_avg = attributes[:'cspm_container_avg']
|
|
321
|
+
end
|
|
322
|
+
|
|
323
|
+
if attributes.key?(:'cspm_container_hwm')
|
|
324
|
+
self.cspm_container_hwm = attributes[:'cspm_container_hwm']
|
|
325
|
+
end
|
|
326
|
+
|
|
327
|
+
if attributes.key?(:'cspm_host_top99p')
|
|
328
|
+
self.cspm_host_top99p = attributes[:'cspm_host_top99p']
|
|
329
|
+
end
|
|
330
|
+
|
|
304
331
|
if attributes.key?(:'custom_ts_avg')
|
|
305
332
|
self.custom_ts_avg = attributes[:'custom_ts_avg']
|
|
306
333
|
end
|
|
307
334
|
|
|
335
|
+
if attributes.key?(:'cws_container_count_avg')
|
|
336
|
+
self.cws_container_count_avg = attributes[:'cws_container_count_avg']
|
|
337
|
+
end
|
|
338
|
+
|
|
339
|
+
if attributes.key?(:'cws_host_top99p')
|
|
340
|
+
self.cws_host_top99p = attributes[:'cws_host_top99p']
|
|
341
|
+
end
|
|
342
|
+
|
|
308
343
|
if attributes.key?(:'date')
|
|
309
344
|
self.date = attributes[:'date']
|
|
310
345
|
end
|
|
@@ -433,16 +468,20 @@ module DatadogAPIClient::V1
|
|
|
433
468
|
agent_host_top99p == o.agent_host_top99p &&
|
|
434
469
|
apm_azure_app_service_host_top99p == o.apm_azure_app_service_host_top99p &&
|
|
435
470
|
apm_host_top99p == o.apm_host_top99p &&
|
|
471
|
+
audit_logs_lines_indexed_sum == o.audit_logs_lines_indexed_sum &&
|
|
436
472
|
aws_host_top99p == o.aws_host_top99p &&
|
|
437
473
|
aws_lambda_func_count == o.aws_lambda_func_count &&
|
|
438
474
|
aws_lambda_invocations_sum == o.aws_lambda_invocations_sum &&
|
|
439
475
|
azure_app_service_top99p == o.azure_app_service_top99p &&
|
|
440
476
|
billable_ingested_bytes_sum == o.billable_ingested_bytes_sum &&
|
|
441
|
-
compliance_container_count_sum == o.compliance_container_count_sum &&
|
|
442
|
-
compliance_host_count_sum == o.compliance_host_count_sum &&
|
|
443
477
|
container_avg == o.container_avg &&
|
|
444
478
|
container_hwm == o.container_hwm &&
|
|
479
|
+
cspm_container_avg == o.cspm_container_avg &&
|
|
480
|
+
cspm_container_hwm == o.cspm_container_hwm &&
|
|
481
|
+
cspm_host_top99p == o.cspm_host_top99p &&
|
|
445
482
|
custom_ts_avg == o.custom_ts_avg &&
|
|
483
|
+
cws_container_count_avg == o.cws_container_count_avg &&
|
|
484
|
+
cws_host_top99p == o.cws_host_top99p &&
|
|
446
485
|
date == o.date &&
|
|
447
486
|
fargate_tasks_count_avg == o.fargate_tasks_count_avg &&
|
|
448
487
|
fargate_tasks_count_hwm == o.fargate_tasks_count_hwm &&
|
|
@@ -480,7 +519,7 @@ module DatadogAPIClient::V1
|
|
|
480
519
|
# Calculates hash code according to all attributes.
|
|
481
520
|
# @return [Integer] Hash code
|
|
482
521
|
def hash
|
|
483
|
-
[agent_host_top99p, apm_azure_app_service_host_top99p, apm_host_top99p, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum,
|
|
522
|
+
[agent_host_top99p, apm_azure_app_service_host_top99p, apm_host_top99p, audit_logs_lines_indexed_sum, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, container_avg, container_hwm, cspm_container_avg, cspm_container_hwm, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, date, fargate_tasks_count_avg, fargate_tasks_count_hwm, gcp_host_top99p, heroku_host_top99p, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_sum, iot_device_top99p, mobile_rum_session_count_android_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_sum, netflow_indexed_events_count_sum, npm_host_top99p, opentelemetry_host_top99p, orgs, profiling_host_top99p, rum_session_count_sum, rum_total_session_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
|
|
484
523
|
end
|
|
485
524
|
|
|
486
525
|
# Builds the object from hash
|
|
@@ -28,6 +28,9 @@ module DatadogAPIClient::V1
|
|
|
28
28
|
# Shows the 99th percentile of all distinct APM hosts over all hours in the current date for the given org.
|
|
29
29
|
attr_accessor :apm_host_top99p
|
|
30
30
|
|
|
31
|
+
# Shows the sum of all audit logs lines indexed over all hours in the current date for the given org.
|
|
32
|
+
attr_accessor :audit_logs_lines_indexed_sum
|
|
33
|
+
|
|
31
34
|
# Shows the 99th percentile of all AWS hosts over all hours in the current date for the given org.
|
|
32
35
|
attr_accessor :aws_host_top99p
|
|
33
36
|
|
|
@@ -43,21 +46,30 @@ module DatadogAPIClient::V1
|
|
|
43
46
|
# Shows the sum of all log bytes ingested over all hours in the current date for the given org.
|
|
44
47
|
attr_accessor :billable_ingested_bytes_sum
|
|
45
48
|
|
|
46
|
-
# Shows the sum of all compliance containers over all hours in the current date for the given org.
|
|
47
|
-
attr_accessor :compliance_container_agg_sum
|
|
48
|
-
|
|
49
|
-
# Shows the sum of all compliance hosts over all hours in the current date for the given org.
|
|
50
|
-
attr_accessor :compliance_host_agg_sum
|
|
51
|
-
|
|
52
49
|
# Shows the average of all distinct containers over all hours in the current date for the given org.
|
|
53
50
|
attr_accessor :container_avg
|
|
54
51
|
|
|
55
52
|
# Shows the high-water mark of all distinct containers over all hours in the current date for the given org.
|
|
56
53
|
attr_accessor :container_hwm
|
|
57
54
|
|
|
55
|
+
# Shows the average number of Cloud Security Posture Management containers over all hours in the current date for the given org.
|
|
56
|
+
attr_accessor :cspm_container_avg
|
|
57
|
+
|
|
58
|
+
# Shows the high-water mark of Cloud Security Posture Management containers over all hours in the current date for the given org.
|
|
59
|
+
attr_accessor :cspm_container_hwm
|
|
60
|
+
|
|
61
|
+
# Shows the 99th percentile of all Cloud Security Posture Management hosts over all hours in the current date for the given org.
|
|
62
|
+
attr_accessor :cspm_host_top99p
|
|
63
|
+
|
|
58
64
|
# Shows the average number of distinct custom metrics over all hours in the current date for the given org.
|
|
59
65
|
attr_accessor :custom_ts_avg
|
|
60
66
|
|
|
67
|
+
# Shows the average of all distinct Cloud Workload Security containers over all hours in the current date for the given org.
|
|
68
|
+
attr_accessor :cws_container_count_avg
|
|
69
|
+
|
|
70
|
+
# Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current date for the given org.
|
|
71
|
+
attr_accessor :cws_host_top99p
|
|
72
|
+
|
|
61
73
|
# The average task count for Fargate.
|
|
62
74
|
attr_accessor :fargate_tasks_count_avg
|
|
63
75
|
|
|
@@ -145,16 +157,20 @@ module DatadogAPIClient::V1
|
|
|
145
157
|
:'agent_host_top99p' => :'agent_host_top99p',
|
|
146
158
|
:'apm_azure_app_service_host_top99p' => :'apm_azure_app_service_host_top99p',
|
|
147
159
|
:'apm_host_top99p' => :'apm_host_top99p',
|
|
160
|
+
:'audit_logs_lines_indexed_sum' => :'audit_logs_lines_indexed_sum',
|
|
148
161
|
:'aws_host_top99p' => :'aws_host_top99p',
|
|
149
162
|
:'aws_lambda_func_count' => :'aws_lambda_func_count',
|
|
150
163
|
:'aws_lambda_invocations_sum' => :'aws_lambda_invocations_sum',
|
|
151
164
|
:'azure_app_service_top99p' => :'azure_app_service_top99p',
|
|
152
165
|
:'billable_ingested_bytes_sum' => :'billable_ingested_bytes_sum',
|
|
153
|
-
:'compliance_container_agg_sum' => :'compliance_container_agg_sum',
|
|
154
|
-
:'compliance_host_agg_sum' => :'compliance_host_agg_sum',
|
|
155
166
|
:'container_avg' => :'container_avg',
|
|
156
167
|
:'container_hwm' => :'container_hwm',
|
|
168
|
+
:'cspm_container_avg' => :'cspm_container_avg',
|
|
169
|
+
:'cspm_container_hwm' => :'cspm_container_hwm',
|
|
170
|
+
:'cspm_host_top99p' => :'cspm_host_top99p',
|
|
157
171
|
:'custom_ts_avg' => :'custom_ts_avg',
|
|
172
|
+
:'cws_container_count_avg' => :'cws_container_count_avg',
|
|
173
|
+
:'cws_host_top99p' => :'cws_host_top99p',
|
|
158
174
|
:'fargate_tasks_count_avg' => :'fargate_tasks_count_avg',
|
|
159
175
|
:'fargate_tasks_count_hwm' => :'fargate_tasks_count_hwm',
|
|
160
176
|
:'gcp_host_top99p' => :'gcp_host_top99p',
|
|
@@ -196,16 +212,20 @@ module DatadogAPIClient::V1
|
|
|
196
212
|
:'agent_host_top99p' => :'Integer',
|
|
197
213
|
:'apm_azure_app_service_host_top99p' => :'Integer',
|
|
198
214
|
:'apm_host_top99p' => :'Integer',
|
|
215
|
+
:'audit_logs_lines_indexed_sum' => :'Integer',
|
|
199
216
|
:'aws_host_top99p' => :'Integer',
|
|
200
217
|
:'aws_lambda_func_count' => :'Integer',
|
|
201
218
|
:'aws_lambda_invocations_sum' => :'Integer',
|
|
202
219
|
:'azure_app_service_top99p' => :'Integer',
|
|
203
220
|
:'billable_ingested_bytes_sum' => :'Integer',
|
|
204
|
-
:'compliance_container_agg_sum' => :'Object',
|
|
205
|
-
:'compliance_host_agg_sum' => :'Integer',
|
|
206
221
|
:'container_avg' => :'Integer',
|
|
207
222
|
:'container_hwm' => :'Integer',
|
|
223
|
+
:'cspm_container_avg' => :'Integer',
|
|
224
|
+
:'cspm_container_hwm' => :'Integer',
|
|
225
|
+
:'cspm_host_top99p' => :'Integer',
|
|
208
226
|
:'custom_ts_avg' => :'Integer',
|
|
227
|
+
:'cws_container_count_avg' => :'Integer',
|
|
228
|
+
:'cws_host_top99p' => :'Integer',
|
|
209
229
|
:'fargate_tasks_count_avg' => :'Integer',
|
|
210
230
|
:'fargate_tasks_count_hwm' => :'Integer',
|
|
211
231
|
:'gcp_host_top99p' => :'Integer',
|
|
@@ -239,7 +259,6 @@ module DatadogAPIClient::V1
|
|
|
239
259
|
# List of attributes with nullable: true
|
|
240
260
|
def self.openapi_nullable
|
|
241
261
|
Set.new([
|
|
242
|
-
:'compliance_container_agg_sum',
|
|
243
262
|
])
|
|
244
263
|
end
|
|
245
264
|
|
|
@@ -270,6 +289,10 @@ module DatadogAPIClient::V1
|
|
|
270
289
|
self.apm_host_top99p = attributes[:'apm_host_top99p']
|
|
271
290
|
end
|
|
272
291
|
|
|
292
|
+
if attributes.key?(:'audit_logs_lines_indexed_sum')
|
|
293
|
+
self.audit_logs_lines_indexed_sum = attributes[:'audit_logs_lines_indexed_sum']
|
|
294
|
+
end
|
|
295
|
+
|
|
273
296
|
if attributes.key?(:'aws_host_top99p')
|
|
274
297
|
self.aws_host_top99p = attributes[:'aws_host_top99p']
|
|
275
298
|
end
|
|
@@ -290,14 +313,6 @@ module DatadogAPIClient::V1
|
|
|
290
313
|
self.billable_ingested_bytes_sum = attributes[:'billable_ingested_bytes_sum']
|
|
291
314
|
end
|
|
292
315
|
|
|
293
|
-
if attributes.key?(:'compliance_container_agg_sum')
|
|
294
|
-
self.compliance_container_agg_sum = attributes[:'compliance_container_agg_sum']
|
|
295
|
-
end
|
|
296
|
-
|
|
297
|
-
if attributes.key?(:'compliance_host_agg_sum')
|
|
298
|
-
self.compliance_host_agg_sum = attributes[:'compliance_host_agg_sum']
|
|
299
|
-
end
|
|
300
|
-
|
|
301
316
|
if attributes.key?(:'container_avg')
|
|
302
317
|
self.container_avg = attributes[:'container_avg']
|
|
303
318
|
end
|
|
@@ -306,10 +321,30 @@ module DatadogAPIClient::V1
|
|
|
306
321
|
self.container_hwm = attributes[:'container_hwm']
|
|
307
322
|
end
|
|
308
323
|
|
|
324
|
+
if attributes.key?(:'cspm_container_avg')
|
|
325
|
+
self.cspm_container_avg = attributes[:'cspm_container_avg']
|
|
326
|
+
end
|
|
327
|
+
|
|
328
|
+
if attributes.key?(:'cspm_container_hwm')
|
|
329
|
+
self.cspm_container_hwm = attributes[:'cspm_container_hwm']
|
|
330
|
+
end
|
|
331
|
+
|
|
332
|
+
if attributes.key?(:'cspm_host_top99p')
|
|
333
|
+
self.cspm_host_top99p = attributes[:'cspm_host_top99p']
|
|
334
|
+
end
|
|
335
|
+
|
|
309
336
|
if attributes.key?(:'custom_ts_avg')
|
|
310
337
|
self.custom_ts_avg = attributes[:'custom_ts_avg']
|
|
311
338
|
end
|
|
312
339
|
|
|
340
|
+
if attributes.key?(:'cws_container_count_avg')
|
|
341
|
+
self.cws_container_count_avg = attributes[:'cws_container_count_avg']
|
|
342
|
+
end
|
|
343
|
+
|
|
344
|
+
if attributes.key?(:'cws_host_top99p')
|
|
345
|
+
self.cws_host_top99p = attributes[:'cws_host_top99p']
|
|
346
|
+
end
|
|
347
|
+
|
|
313
348
|
if attributes.key?(:'fargate_tasks_count_avg')
|
|
314
349
|
self.fargate_tasks_count_avg = attributes[:'fargate_tasks_count_avg']
|
|
315
350
|
end
|
|
@@ -440,16 +475,20 @@ module DatadogAPIClient::V1
|
|
|
440
475
|
agent_host_top99p == o.agent_host_top99p &&
|
|
441
476
|
apm_azure_app_service_host_top99p == o.apm_azure_app_service_host_top99p &&
|
|
442
477
|
apm_host_top99p == o.apm_host_top99p &&
|
|
478
|
+
audit_logs_lines_indexed_sum == o.audit_logs_lines_indexed_sum &&
|
|
443
479
|
aws_host_top99p == o.aws_host_top99p &&
|
|
444
480
|
aws_lambda_func_count == o.aws_lambda_func_count &&
|
|
445
481
|
aws_lambda_invocations_sum == o.aws_lambda_invocations_sum &&
|
|
446
482
|
azure_app_service_top99p == o.azure_app_service_top99p &&
|
|
447
483
|
billable_ingested_bytes_sum == o.billable_ingested_bytes_sum &&
|
|
448
|
-
compliance_container_agg_sum == o.compliance_container_agg_sum &&
|
|
449
|
-
compliance_host_agg_sum == o.compliance_host_agg_sum &&
|
|
450
484
|
container_avg == o.container_avg &&
|
|
451
485
|
container_hwm == o.container_hwm &&
|
|
486
|
+
cspm_container_avg == o.cspm_container_avg &&
|
|
487
|
+
cspm_container_hwm == o.cspm_container_hwm &&
|
|
488
|
+
cspm_host_top99p == o.cspm_host_top99p &&
|
|
452
489
|
custom_ts_avg == o.custom_ts_avg &&
|
|
490
|
+
cws_container_count_avg == o.cws_container_count_avg &&
|
|
491
|
+
cws_host_top99p == o.cws_host_top99p &&
|
|
453
492
|
fargate_tasks_count_avg == o.fargate_tasks_count_avg &&
|
|
454
493
|
fargate_tasks_count_hwm == o.fargate_tasks_count_hwm &&
|
|
455
494
|
gcp_host_top99p == o.gcp_host_top99p &&
|
|
@@ -488,7 +527,7 @@ module DatadogAPIClient::V1
|
|
|
488
527
|
# Calculates hash code according to all attributes.
|
|
489
528
|
# @return [Integer] Hash code
|
|
490
529
|
def hash
|
|
491
|
-
[agent_host_top99p, apm_azure_app_service_host_top99p, apm_host_top99p, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum,
|
|
530
|
+
[agent_host_top99p, apm_azure_app_service_host_top99p, apm_host_top99p, audit_logs_lines_indexed_sum, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, container_avg, container_hwm, cspm_container_avg, cspm_container_hwm, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, fargate_tasks_count_avg, fargate_tasks_count_hwm, gcp_host_top99p, heroku_host_top99p, id, incident_management_monthly_active_users_hwm, indexed_events_count_sum, infra_host_top99p, ingested_events_bytes_sum, iot_device_agg_sum, iot_device_top99p_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_sum, name, netflow_indexed_events_count_sum, npm_host_top99p, opentelemetry_host_top99p, profiling_host_top99p, public_id, rum_session_count_sum, rum_total_session_count_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, vsphere_host_top99p].hash
|
|
492
531
|
end
|
|
493
532
|
|
|
494
533
|
# Builds the object from hash
|
|
@@ -28,6 +28,9 @@ module DatadogAPIClient::V1
|
|
|
28
28
|
# Shows the 99th percentile of all distinct APM hosts over all hours in the current months for all organizations.
|
|
29
29
|
attr_accessor :apm_host_top99p_sum
|
|
30
30
|
|
|
31
|
+
# Shows the sum of all audit logs lines indexed over all hours in the current months for all organizations.
|
|
32
|
+
attr_accessor :audit_logs_lines_indexed_agg_sum
|
|
33
|
+
|
|
31
34
|
# Shows the 99th percentile of all AWS hosts over all hours in the current months for all organizations.
|
|
32
35
|
attr_accessor :aws_host_top99p_sum
|
|
33
36
|
|
|
@@ -46,21 +49,30 @@ module DatadogAPIClient::V1
|
|
|
46
49
|
# Shows the sum of all log bytes ingested over all hours in the current months for all organizations.
|
|
47
50
|
attr_accessor :billable_ingested_bytes_agg_sum
|
|
48
51
|
|
|
49
|
-
# Shows the sum of all compliance containers over all hours in the current months for all organizations.
|
|
50
|
-
attr_accessor :compliance_container_agg_sum
|
|
51
|
-
|
|
52
|
-
# Shows the sum of all compliance hosts over all hours in the current months for all organizations.
|
|
53
|
-
attr_accessor :compliance_host_agg_sum
|
|
54
|
-
|
|
55
52
|
# Shows the average of all distinct containers over all hours in the current months for all organizations.
|
|
56
53
|
attr_accessor :container_avg_sum
|
|
57
54
|
|
|
58
55
|
# Shows the sum of the high-water marks of all distinct containers over all hours in the current months for all organizations.
|
|
59
56
|
attr_accessor :container_hwm_sum
|
|
60
57
|
|
|
58
|
+
# Shows the average number of Cloud Security Posture Management containers over all hours in the current months for all organizations.
|
|
59
|
+
attr_accessor :cspm_container_avg_sum
|
|
60
|
+
|
|
61
|
+
# Shows the sum of the the high-water marks of Cloud Security Posture Management containers over all hours in the current months for all organizations.
|
|
62
|
+
attr_accessor :cspm_container_hwm_sum
|
|
63
|
+
|
|
64
|
+
# Shows the 99th percentile of all Cloud Security Posture Management hosts over all hours in the current months for all organizations.
|
|
65
|
+
attr_accessor :cspm_host_top99p_sum
|
|
66
|
+
|
|
61
67
|
# Shows the average number of distinct custom metrics over all hours in the current months for all organizations.
|
|
62
68
|
attr_accessor :custom_ts_sum
|
|
63
69
|
|
|
70
|
+
# Shows the average of all distinct Cloud Workload Security containers over all hours in the current months for all organizations.
|
|
71
|
+
attr_accessor :cws_containers_avg_sum
|
|
72
|
+
|
|
73
|
+
# Shows the 99th percentile of all Cloud Workload Security hosts over all hours in the current months for all organizations.
|
|
74
|
+
attr_accessor :cws_host_top99p_sum
|
|
75
|
+
|
|
64
76
|
# Shows the last date of usage in the current months for all organizations.
|
|
65
77
|
attr_accessor :end_date
|
|
66
78
|
|
|
@@ -168,17 +180,21 @@ module DatadogAPIClient::V1
|
|
|
168
180
|
:'agent_host_top99p_sum' => :'agent_host_top99p_sum',
|
|
169
181
|
:'apm_azure_app_service_host_top99p_sum' => :'apm_azure_app_service_host_top99p_sum',
|
|
170
182
|
:'apm_host_top99p_sum' => :'apm_host_top99p_sum',
|
|
183
|
+
:'audit_logs_lines_indexed_agg_sum' => :'audit_logs_lines_indexed_agg_sum',
|
|
171
184
|
:'aws_host_top99p_sum' => :'aws_host_top99p_sum',
|
|
172
185
|
:'aws_lambda_func_count' => :'aws_lambda_func_count',
|
|
173
186
|
:'aws_lambda_invocations_sum' => :'aws_lambda_invocations_sum',
|
|
174
187
|
:'azure_app_service_top99p_sum' => :'azure_app_service_top99p_sum',
|
|
175
188
|
:'azure_host_top99p_sum' => :'azure_host_top99p_sum',
|
|
176
189
|
:'billable_ingested_bytes_agg_sum' => :'billable_ingested_bytes_agg_sum',
|
|
177
|
-
:'compliance_container_agg_sum' => :'compliance_container_agg_sum',
|
|
178
|
-
:'compliance_host_agg_sum' => :'compliance_host_agg_sum',
|
|
179
190
|
:'container_avg_sum' => :'container_avg_sum',
|
|
180
191
|
:'container_hwm_sum' => :'container_hwm_sum',
|
|
192
|
+
:'cspm_container_avg_sum' => :'cspm_container_avg_sum',
|
|
193
|
+
:'cspm_container_hwm_sum' => :'cspm_container_hwm_sum',
|
|
194
|
+
:'cspm_host_top99p_sum' => :'cspm_host_top99p_sum',
|
|
181
195
|
:'custom_ts_sum' => :'custom_ts_sum',
|
|
196
|
+
:'cws_containers_avg_sum' => :'cws_containers_avg_sum',
|
|
197
|
+
:'cws_host_top99p_sum' => :'cws_host_top99p_sum',
|
|
182
198
|
:'end_date' => :'end_date',
|
|
183
199
|
:'fargate_tasks_count_avg_sum' => :'fargate_tasks_count_avg_sum',
|
|
184
200
|
:'fargate_tasks_count_hwm_sum' => :'fargate_tasks_count_hwm_sum',
|
|
@@ -227,17 +243,21 @@ module DatadogAPIClient::V1
|
|
|
227
243
|
:'agent_host_top99p_sum' => :'Integer',
|
|
228
244
|
:'apm_azure_app_service_host_top99p_sum' => :'Integer',
|
|
229
245
|
:'apm_host_top99p_sum' => :'Integer',
|
|
246
|
+
:'audit_logs_lines_indexed_agg_sum' => :'Integer',
|
|
230
247
|
:'aws_host_top99p_sum' => :'Integer',
|
|
231
248
|
:'aws_lambda_func_count' => :'Integer',
|
|
232
249
|
:'aws_lambda_invocations_sum' => :'Integer',
|
|
233
250
|
:'azure_app_service_top99p_sum' => :'Integer',
|
|
234
251
|
:'azure_host_top99p_sum' => :'Integer',
|
|
235
252
|
:'billable_ingested_bytes_agg_sum' => :'Integer',
|
|
236
|
-
:'compliance_container_agg_sum' => :'Object',
|
|
237
|
-
:'compliance_host_agg_sum' => :'Integer',
|
|
238
253
|
:'container_avg_sum' => :'Integer',
|
|
239
254
|
:'container_hwm_sum' => :'Integer',
|
|
255
|
+
:'cspm_container_avg_sum' => :'Integer',
|
|
256
|
+
:'cspm_container_hwm_sum' => :'Integer',
|
|
257
|
+
:'cspm_host_top99p_sum' => :'Integer',
|
|
240
258
|
:'custom_ts_sum' => :'Integer',
|
|
259
|
+
:'cws_containers_avg_sum' => :'Integer',
|
|
260
|
+
:'cws_host_top99p_sum' => :'Integer',
|
|
241
261
|
:'end_date' => :'Time',
|
|
242
262
|
:'fargate_tasks_count_avg_sum' => :'Integer',
|
|
243
263
|
:'fargate_tasks_count_hwm_sum' => :'Integer',
|
|
@@ -278,7 +298,6 @@ module DatadogAPIClient::V1
|
|
|
278
298
|
# List of attributes with nullable: true
|
|
279
299
|
def self.openapi_nullable
|
|
280
300
|
Set.new([
|
|
281
|
-
:'compliance_container_agg_sum',
|
|
282
301
|
])
|
|
283
302
|
end
|
|
284
303
|
|
|
@@ -309,6 +328,10 @@ module DatadogAPIClient::V1
|
|
|
309
328
|
self.apm_host_top99p_sum = attributes[:'apm_host_top99p_sum']
|
|
310
329
|
end
|
|
311
330
|
|
|
331
|
+
if attributes.key?(:'audit_logs_lines_indexed_agg_sum')
|
|
332
|
+
self.audit_logs_lines_indexed_agg_sum = attributes[:'audit_logs_lines_indexed_agg_sum']
|
|
333
|
+
end
|
|
334
|
+
|
|
312
335
|
if attributes.key?(:'aws_host_top99p_sum')
|
|
313
336
|
self.aws_host_top99p_sum = attributes[:'aws_host_top99p_sum']
|
|
314
337
|
end
|
|
@@ -333,14 +356,6 @@ module DatadogAPIClient::V1
|
|
|
333
356
|
self.billable_ingested_bytes_agg_sum = attributes[:'billable_ingested_bytes_agg_sum']
|
|
334
357
|
end
|
|
335
358
|
|
|
336
|
-
if attributes.key?(:'compliance_container_agg_sum')
|
|
337
|
-
self.compliance_container_agg_sum = attributes[:'compliance_container_agg_sum']
|
|
338
|
-
end
|
|
339
|
-
|
|
340
|
-
if attributes.key?(:'compliance_host_agg_sum')
|
|
341
|
-
self.compliance_host_agg_sum = attributes[:'compliance_host_agg_sum']
|
|
342
|
-
end
|
|
343
|
-
|
|
344
359
|
if attributes.key?(:'container_avg_sum')
|
|
345
360
|
self.container_avg_sum = attributes[:'container_avg_sum']
|
|
346
361
|
end
|
|
@@ -349,10 +364,30 @@ module DatadogAPIClient::V1
|
|
|
349
364
|
self.container_hwm_sum = attributes[:'container_hwm_sum']
|
|
350
365
|
end
|
|
351
366
|
|
|
367
|
+
if attributes.key?(:'cspm_container_avg_sum')
|
|
368
|
+
self.cspm_container_avg_sum = attributes[:'cspm_container_avg_sum']
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
if attributes.key?(:'cspm_container_hwm_sum')
|
|
372
|
+
self.cspm_container_hwm_sum = attributes[:'cspm_container_hwm_sum']
|
|
373
|
+
end
|
|
374
|
+
|
|
375
|
+
if attributes.key?(:'cspm_host_top99p_sum')
|
|
376
|
+
self.cspm_host_top99p_sum = attributes[:'cspm_host_top99p_sum']
|
|
377
|
+
end
|
|
378
|
+
|
|
352
379
|
if attributes.key?(:'custom_ts_sum')
|
|
353
380
|
self.custom_ts_sum = attributes[:'custom_ts_sum']
|
|
354
381
|
end
|
|
355
382
|
|
|
383
|
+
if attributes.key?(:'cws_containers_avg_sum')
|
|
384
|
+
self.cws_containers_avg_sum = attributes[:'cws_containers_avg_sum']
|
|
385
|
+
end
|
|
386
|
+
|
|
387
|
+
if attributes.key?(:'cws_host_top99p_sum')
|
|
388
|
+
self.cws_host_top99p_sum = attributes[:'cws_host_top99p_sum']
|
|
389
|
+
end
|
|
390
|
+
|
|
356
391
|
if attributes.key?(:'end_date')
|
|
357
392
|
self.end_date = attributes[:'end_date']
|
|
358
393
|
end
|
|
@@ -513,17 +548,21 @@ module DatadogAPIClient::V1
|
|
|
513
548
|
agent_host_top99p_sum == o.agent_host_top99p_sum &&
|
|
514
549
|
apm_azure_app_service_host_top99p_sum == o.apm_azure_app_service_host_top99p_sum &&
|
|
515
550
|
apm_host_top99p_sum == o.apm_host_top99p_sum &&
|
|
551
|
+
audit_logs_lines_indexed_agg_sum == o.audit_logs_lines_indexed_agg_sum &&
|
|
516
552
|
aws_host_top99p_sum == o.aws_host_top99p_sum &&
|
|
517
553
|
aws_lambda_func_count == o.aws_lambda_func_count &&
|
|
518
554
|
aws_lambda_invocations_sum == o.aws_lambda_invocations_sum &&
|
|
519
555
|
azure_app_service_top99p_sum == o.azure_app_service_top99p_sum &&
|
|
520
556
|
azure_host_top99p_sum == o.azure_host_top99p_sum &&
|
|
521
557
|
billable_ingested_bytes_agg_sum == o.billable_ingested_bytes_agg_sum &&
|
|
522
|
-
compliance_container_agg_sum == o.compliance_container_agg_sum &&
|
|
523
|
-
compliance_host_agg_sum == o.compliance_host_agg_sum &&
|
|
524
558
|
container_avg_sum == o.container_avg_sum &&
|
|
525
559
|
container_hwm_sum == o.container_hwm_sum &&
|
|
560
|
+
cspm_container_avg_sum == o.cspm_container_avg_sum &&
|
|
561
|
+
cspm_container_hwm_sum == o.cspm_container_hwm_sum &&
|
|
562
|
+
cspm_host_top99p_sum == o.cspm_host_top99p_sum &&
|
|
526
563
|
custom_ts_sum == o.custom_ts_sum &&
|
|
564
|
+
cws_containers_avg_sum == o.cws_containers_avg_sum &&
|
|
565
|
+
cws_host_top99p_sum == o.cws_host_top99p_sum &&
|
|
527
566
|
end_date == o.end_date &&
|
|
528
567
|
fargate_tasks_count_avg_sum == o.fargate_tasks_count_avg_sum &&
|
|
529
568
|
fargate_tasks_count_hwm_sum == o.fargate_tasks_count_hwm_sum &&
|
|
@@ -569,7 +608,7 @@ module DatadogAPIClient::V1
|
|
|
569
608
|
# Calculates hash code according to all attributes.
|
|
570
609
|
# @return [Integer] Hash code
|
|
571
610
|
def hash
|
|
572
|
-
[agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_host_top99p_sum, aws_host_top99p_sum, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p_sum, azure_host_top99p_sum, billable_ingested_bytes_agg_sum,
|
|
611
|
+
[agent_host_top99p_sum, apm_azure_app_service_host_top99p_sum, apm_host_top99p_sum, audit_logs_lines_indexed_agg_sum, aws_host_top99p_sum, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p_sum, azure_host_top99p_sum, billable_ingested_bytes_agg_sum, container_avg_sum, container_hwm_sum, cspm_container_avg_sum, cspm_container_hwm_sum, cspm_host_top99p_sum, custom_ts_sum, cws_containers_avg_sum, cws_host_top99p_sum, end_date, fargate_tasks_count_avg_sum, fargate_tasks_count_hwm_sum, gcp_host_top99p_sum, heroku_host_top99p_sum, incident_management_monthly_active_users_hwm_sum, indexed_events_count_agg_sum, infra_host_top99p_sum, ingested_events_bytes_agg_sum, iot_device_agg_sum, iot_device_top99p_sum, last_updated, live_indexed_events_agg_sum, live_ingested_bytes_agg_sum, logs_by_retention, mobile_rum_session_count_agg_sum, mobile_rum_session_count_android_agg_sum, mobile_rum_session_count_ios_agg_sum, netflow_indexed_events_count_agg_sum, npm_host_top99p_sum, opentelemetry_host_top99p_sum, profiling_container_agent_count_avg, profiling_host_count_top99p_sum, rehydrated_indexed_events_agg_sum, rehydrated_ingested_bytes_agg_sum, rum_session_count_agg_sum, rum_total_session_count_agg_sum, start_date, synthetics_browser_check_calls_count_agg_sum, synthetics_check_calls_count_agg_sum, trace_search_indexed_events_count_agg_sum, twol_ingested_events_bytes_agg_sum, usage, vsphere_host_top99p_sum].hash
|
|
573
612
|
end
|
|
574
613
|
|
|
575
614
|
# Builds the object from hash
|