datadog_api_client 2.12.0 → 2.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.apigentools-info +6 -6
- data/.generator/conftest.py +7 -0
- data/.generator/poetry.lock +45 -75
- data/.generator/pyproject.toml +7 -7
- data/.generator/schemas/v1/openapi.yaml +257 -19
- data/.generator/schemas/v2/openapi.yaml +3020 -911
- data/.generator/src/generator/formatter.py +43 -32
- data/.generator/src/generator/openapi.py +4 -2
- data/.generator/src/generator/templates/api_client.j2 +81 -53
- data/.generator/src/generator/templates/configuration.j2 +21 -0
- data/.github/workflows/test_integration.yml +7 -1
- data/.pre-commit-config.yaml +4 -4
- data/CHANGELOG.md +62 -0
- data/README.md +23 -0
- data/examples/v1/azure-integration/CreateAzureIntegration.rb +3 -0
- data/examples/v1/azure-integration/DeleteAzureIntegration.rb +3 -0
- data/examples/v1/azure-integration/UpdateAzureHostFilters.rb +3 -0
- data/examples/v1/azure-integration/UpdateAzureIntegration.rb +3 -0
- data/examples/v1/dashboards/CreateDashboard_1284514532.rb +43 -0
- data/examples/v1/dashboards/CreateDashboard_2261785072.rb +47 -0
- data/examples/v1/dashboards/CreateDashboard_252716965.rb +6 -0
- data/examples/v1/dashboards/CreateDashboard_3513586382.rb +74 -0
- data/examples/v1/dashboards/CreateDashboard_3562282606.rb +1 -0
- data/examples/v1/dashboards/DeletePublicDashboardInvitation.rb +3 -3
- data/examples/v1/organizations/UpdateOrg.rb +1 -1
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1487281163.rb +1 -0
- data/examples/v1/users/CreateUser.rb +1 -1
- data/examples/v1/users/CreateUser_266604071.rb +13 -0
- data/examples/v1/users/UpdateUser.rb +1 -1
- data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent.rb +3 -0
- data/examples/v2/ci-visibility-pipelines/CreateCIAppPipelineEvent_129899466.rb +3 -0
- data/examples/v2/confluent-cloud/CreateConfluentAccount.rb +1 -0
- data/examples/v2/confluent-cloud/CreateConfluentResource.rb +1 -0
- data/examples/v2/confluent-cloud/UpdateConfluentResource.rb +1 -0
- data/examples/v2/downtimes/CancelDowntime.rb +11 -0
- data/examples/v2/downtimes/CreateDowntime.rb +26 -0
- data/examples/v2/downtimes/GetDowntime.rb +11 -0
- data/examples/v2/downtimes/ListDowntimes.rb +8 -0
- data/examples/v2/downtimes/ListMonitorDowntimes.rb +8 -0
- data/examples/v2/downtimes/ListMonitorDowntimes_128979780.rb +8 -0
- data/examples/v2/downtimes/UpdateDowntime.rb +21 -0
- data/examples/v2/logs/AggregateLogs_2955613758.rb +1 -1
- data/examples/v2/logs/ListLogsGet_2034110533.rb +3 -1
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_1092490364.rb +10 -0
- data/examples/v2/spans/AggregateSpans.rb +25 -0
- data/examples/v2/spans/ListSpans.rb +25 -0
- data/examples/v2/spans/ListSpansGet.rb +5 -0
- data/examples/v2/spans/ListSpansGet_1130763422.rb +8 -0
- data/examples/v2/spans/ListSpans_3495563906.rb +25 -0
- data/examples/v2/teams/CreateTeam.rb +2 -2
- data/examples/v2/teams/CreateTeam_252121814.rb +24 -0
- data/examples/v2/teams/GetUserMemberships.rb +8 -0
- data/examples/v2/teams/UpdateTeam.rb +9 -0
- data/lib/datadog_api_client/api_client.rb +81 -53
- data/lib/datadog_api_client/configuration.rb +28 -0
- data/lib/datadog_api_client/inflector.rb +97 -1
- data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +2 -2
- data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +10 -10
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +3 -3
- data/lib/datadog_api_client/v1/models/azure_account.rb +32 -1
- data/lib/datadog_api_client/v1/models/change_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/distribution_widget_definition.rb +13 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_cloud_cost_data_source.rb +26 -0
- data/lib/datadog_api_client/v1/models/formula_and_function_cloud_cost_query_definition.rb +150 -0
- data/lib/datadog_api_client/v1/models/formula_and_function_query_definition.rb +2 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_response_format.rb +2 -1
- data/lib/datadog_api_client/v1/models/formula_and_function_slo_query_definition.rb +11 -1
- data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +24 -2
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +3 -0
- data/lib/datadog_api_client/v1/models/ip_prefixes_remote_configuration.rb +94 -0
- data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -1
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +6 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +61 -1
- data/lib/datadog_api_client/v1/models/organization_settings.rb +8 -0
- data/lib/datadog_api_client/v1/models/query_value_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/scatterplot_table_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/sunburst_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +11 -1
- data/lib/datadog_api_client/v1/models/table_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/timeseries_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/toplist_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/tree_map_widget_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_hour.rb +12 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +24 -4
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +24 -4
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +24 -4
- data/lib/datadog_api_client/v1/models/user.rb +8 -0
- data/lib/datadog_api_client/v1/models/widget_comparator.rb +1 -0
- data/lib/datadog_api_client/v1/models/widget_display_type.rb +1 -0
- data/lib/datadog_api_client/v2/api/ci_visibility_pipelines_api.rb +11 -5
- data/lib/datadog_api_client/v2/api/downtimes_api.rb +462 -0
- data/lib/datadog_api_client/v2/api/ip_allowlist_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/logs_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/metrics_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/rum_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +3 -3
- data/lib/datadog_api_client/v2/api/spans_api.rb +294 -0
- data/lib/datadog_api_client/v2/api/spans_metrics_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/teams_api.rb +65 -0
- data/lib/datadog_api_client/v2/models/application_key_create_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/application_key_update_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/ci_app_event_attributes.rb +9 -21
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event_attributes.rb +102 -0
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_event_pipeline.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_pipeline_level.rb +30 -0
- data/lib/datadog_api_client/v2/models/ci_app_pipelines_query_filter.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_test_level.rb +29 -0
- data/lib/datadog_api_client/v2/models/ci_app_tests_analytics_aggregate_response.rb +1 -1
- data/lib/datadog_api_client/v2/models/ci_app_tests_query_filter.rb +1 -1
- data/lib/datadog_api_client/v2/models/cloud_configuration_rule_compliance_signal_options.rb +25 -1
- data/lib/datadog_api_client/v2/models/cloud_configuration_rule_create_payload.rb +13 -1
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_attributes.rb +41 -1
- data/lib/datadog_api_client/v2/models/confluent_account_resource_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/confluent_resource_request_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/confluent_resource_response_attributes.rb +21 -1
- data/lib/datadog_api_client/v2/models/dashboard_list_item.rb +36 -1
- data/lib/datadog_api_client/v2/models/downtime_create_request.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_create_request_attributes.rb +194 -0
- data/lib/datadog_api_client/v2/models/downtime_create_request_data.rb +119 -0
- data/lib/datadog_api_client/v2/models/downtime_included_monitor_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/downtime_meta.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_meta_page.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier_id.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_identifier_tags.rb +107 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_included_attributes.rb +80 -0
- data/lib/datadog_api_client/v2/models/downtime_monitor_included_item.rb +100 -0
- data/lib/datadog_api_client/v2/models/downtime_notify_end_state_actions.rb +27 -0
- data/lib/datadog_api_client/v2/models/downtime_notify_end_state_types.rb +28 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_created_by.rb +88 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_created_by_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_monitor.rb +88 -0
- data/lib/datadog_api_client/v2/models/downtime_relationships_monitor_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/downtime_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/downtime_response.rb +95 -0
- data/lib/datadog_api_client/v2/models/downtime_response_attributes.rb +208 -0
- data/lib/datadog_api_client/v2/models/downtime_response_data.rb +110 -0
- data/lib/datadog_api_client/v2/models/downtime_response_included_item.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_create_request.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_current_downtime_response.rb +100 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_one_time_create_update_request.rb +101 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_one_time_response.rb +116 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrence_create_update_request.rb +143 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrence_response.rb +106 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_create_request.rb +110 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_response.rb +131 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_recurrences_update_request.rb +92 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_response.rb +65 -0
- data/lib/datadog_api_client/v2/models/downtime_schedule_update_request.rb +63 -0
- data/lib/datadog_api_client/v2/models/downtime_status.rb +29 -0
- data/lib/datadog_api_client/v2/models/downtime_update_request.rb +98 -0
- data/lib/datadog_api_client/v2/models/downtime_update_request_attributes.rb +165 -0
- data/lib/datadog_api_client/v2/models/{team_data.rb → downtime_update_request_data.rb} +9 -9
- data/lib/datadog_api_client/v2/models/event_response_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/events_group_by_sort.rb +1 -1
- data/lib/datadog_api_client/v2/models/events_response_metadata.rb +11 -1
- data/lib/datadog_api_client/v2/models/formula_limit.rb +1 -0
- data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/list_downtimes_response.rb +104 -0
- data/lib/datadog_api_client/v2/models/logs_aggregate_request.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_aggregate_request_page.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_group_by.rb +3 -2
- data/lib/datadog_api_client/v2/models/logs_group_by_histogram.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_list_request.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_query_options.rb +1 -1
- data/lib/datadog_api_client/v2/models/logs_response_metadata_page.rb +1 -1
- data/lib/datadog_api_client/v2/models/metrics_aggregator.rb +1 -1
- data/lib/datadog_api_client/v2/models/metrics_scalar_query.rb +1 -1
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response.rb +92 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response_attributes.rb +120 -0
- data/lib/datadog_api_client/v2/models/monitor_downtime_match_response_data.rb +108 -0
- data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap.rb +14 -4
- data/lib/datadog_api_client/v2/models/on_demand_concurrency_cap_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/query_formula.rb +1 -0
- data/lib/datadog_api_client/v2/models/relationship_to_team_links.rb +14 -4
- data/lib/datadog_api_client/v2/models/relationship_to_user_team_permission.rb +14 -4
- data/lib/datadog_api_client/v2/models/restriction_policy_binding.rb +2 -1
- data/lib/datadog_api_client/v2/models/rum_application_list.rb +11 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_metadata_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_response.rb +80 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_rule_response_query.rb +26 -2
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_state_update_data.rb +24 -4
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_triage_update_data.rb +24 -4
- data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb +1 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_triage_user.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_get_config_response_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_meta.rb +11 -1
- data/lib/datadog_api_client/v2/models/sensitive_data_scanner_standard_pattern_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/service_definition_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/service_definition_meta.rb +36 -4
- data/lib/datadog_api_client/v2/models/service_definition_meta_warnings.rb +100 -0
- data/lib/datadog_api_client/v2/models/span.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_attributes.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_value.rb +64 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_bucket_value_timeseries_point.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request.rb +80 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request_attributes.rb +115 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response.rb +92 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response_metadata.rb +113 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_response_status.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_sort.rb +110 -0
- data/lib/datadog_api_client/v2/models/spans_aggregate_sort_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_aggregation_function.rb +37 -0
- data/lib/datadog_api_client/v2/models/spans_attributes.rb +244 -0
- data/lib/datadog_api_client/v2/models/spans_compute.rb +129 -0
- data/lib/datadog_api_client/v2/models/spans_compute_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_group_by.rb +149 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_histogram.rb +143 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_missing.rb +63 -0
- data/lib/datadog_api_client/v2/models/spans_group_by_total.rb +64 -0
- data/lib/datadog_api_client/v2/models/spans_list_request.rb +80 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_attributes.rb +111 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_data.rb +90 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_page.rb +108 -0
- data/lib/datadog_api_client/v2/models/spans_list_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_list_response.rb +102 -0
- data/lib/datadog_api_client/v2/models/spans_list_response_links.rb +81 -0
- data/lib/datadog_api_client/v2/models/spans_list_response_metadata.rb +123 -0
- data/lib/datadog_api_client/v2/models/spans_query_filter.rb +100 -0
- data/lib/datadog_api_client/v2/models/spans_query_options.rb +91 -0
- data/lib/datadog_api_client/v2/models/spans_response_metadata_page.rb +81 -0
- data/lib/datadog_api_client/v2/models/spans_sort.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_sort_order.rb +27 -0
- data/lib/datadog_api_client/v2/models/spans_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/spans_warning.rb +100 -0
- data/lib/datadog_api_client/v2/models/team_attributes.rb +50 -4
- data/lib/datadog_api_client/v2/models/team_create_attributes.rb +57 -4
- data/lib/datadog_api_client/v2/models/team_relationships_links.rb +80 -0
- data/lib/datadog_api_client/v2/models/team_response.rb +1 -1
- data/lib/datadog_api_client/v2/models/team_update_attributes.rb +57 -4
- data/lib/datadog_api_client/v2/models/teams_response.rb +24 -4
- data/lib/datadog_api_client/v2/models/teams_response_links.rb +129 -0
- data/lib/datadog_api_client/v2/models/teams_response_meta.rb +80 -0
- data/lib/datadog_api_client/v2/models/teams_response_meta_pagination.rb +150 -0
- data/lib/datadog_api_client/v2/models/usage_attributes_object.rb +11 -1
- data/lib/datadog_api_client/v2/models/user_invitation_response_data.rb +11 -1
- data/lib/datadog_api_client/v2/models/user_teams_response.rb +24 -4
- data/lib/datadog_api_client/version.rb +1 -1
- data/spec/configuration_spec.rb +17 -0
- data/spec/retry_spec.rb +44 -0
- metadata +119 -3
|
@@ -29,10 +29,14 @@ module DatadogAPIClient::V1
|
|
|
29
29
|
APPSEC_FARGATE_PERCENTAGE = "appsec_fargate_percentage".freeze
|
|
30
30
|
APM_HOST_USAGE = "apm_host_usage".freeze
|
|
31
31
|
APM_HOST_PERCENTAGE = "apm_host_percentage".freeze
|
|
32
|
+
APM_USM_USAGE = "apm_usm_usage".freeze
|
|
33
|
+
APM_USM_PERCENTAGE = "apm_usm_percentage".freeze
|
|
32
34
|
APPSEC_USAGE = "appsec_usage".freeze
|
|
33
35
|
APPSEC_PERCENTAGE = "appsec_percentage".freeze
|
|
34
36
|
BROWSER_USAGE = "browser_usage".freeze
|
|
35
37
|
BROWSER_PERCENTAGE = "browser_percentage".freeze
|
|
38
|
+
CI_VISIBILITY_ITR_USAGE = "ci_visibility_itr_usage".freeze
|
|
39
|
+
CI_VISIBILITY_ITR_PERCENTAGE = "ci_visibility_itr_percentage".freeze
|
|
36
40
|
CONTAINER_EXCL_AGENT_USAGE = "container_excl_agent_usage".freeze
|
|
37
41
|
CONTAINER_EXCL_AGENT_PERCENTAGE = "container_excl_agent_percentage".freeze
|
|
38
42
|
CONTAINER_USAGE = "container_usage".freeze
|
|
@@ -87,6 +91,8 @@ module DatadogAPIClient::V1
|
|
|
87
91
|
UNIVERSAL_SERVICE_MONITORING_PERCENTAGE = "universal_service_monitoring_percentage".freeze
|
|
88
92
|
VULN_MANAGEMENT_HOSTS_USAGE = "vuln_management_hosts_usage".freeze
|
|
89
93
|
VULN_MANAGEMENT_HOSTS_PERCENTAGE = "vuln_management_hosts_percentage".freeze
|
|
94
|
+
SDS_SCANNED_BYTES_USAGE = "sds_scanned_bytes_usage".freeze
|
|
95
|
+
SDS_SCANNED_BYTES_PERCENTAGE = "sds_scanned_bytes_percentage".freeze
|
|
90
96
|
ALL = "*".freeze
|
|
91
97
|
end
|
|
92
98
|
end
|
|
@@ -39,6 +39,12 @@ module DatadogAPIClient::V1
|
|
|
39
39
|
# The APM host usage by tag(s).
|
|
40
40
|
attr_accessor :apm_host_usage
|
|
41
41
|
|
|
42
|
+
# The percentage of APM and Universal Service Monitoring host usage by tag(s).
|
|
43
|
+
attr_accessor :apm_usm_percentage
|
|
44
|
+
|
|
45
|
+
# The APM and Universal Service Monitoring host usage by tag(s).
|
|
46
|
+
attr_accessor :apm_usm_usage
|
|
47
|
+
|
|
42
48
|
# The percentage of Application Security Monitoring ECS Fargate task usage by tag(s).
|
|
43
49
|
attr_accessor :appsec_fargate_percentage
|
|
44
50
|
|
|
@@ -57,6 +63,12 @@ module DatadogAPIClient::V1
|
|
|
57
63
|
# The synthetic browser test usage by tag(s).
|
|
58
64
|
attr_accessor :browser_usage
|
|
59
65
|
|
|
66
|
+
# The percentage of Git committers for Intelligent Test Runner usage by tag(s).
|
|
67
|
+
attr_accessor :ci_visibility_itr_percentage
|
|
68
|
+
|
|
69
|
+
# The Git committers for Intelligent Test Runner usage by tag(s).
|
|
70
|
+
attr_accessor :ci_visibility_itr_usage
|
|
71
|
+
|
|
60
72
|
# The percentage of container usage without the Datadog Agent by tag(s).
|
|
61
73
|
attr_accessor :container_excl_agent_percentage
|
|
62
74
|
|
|
@@ -201,6 +213,12 @@ module DatadogAPIClient::V1
|
|
|
201
213
|
# The profiled hosts usage by tag(s).
|
|
202
214
|
attr_accessor :profiled_host_usage
|
|
203
215
|
|
|
216
|
+
# The percentage of Sensitive Data Scanner usage by tag(s).
|
|
217
|
+
attr_accessor :sds_scanned_bytes_percentage
|
|
218
|
+
|
|
219
|
+
# The total Sensitive Data Scanner usage by tag(s).
|
|
220
|
+
attr_accessor :sds_scanned_bytes_usage
|
|
221
|
+
|
|
204
222
|
# The percentage of network device usage by tag(s).
|
|
205
223
|
attr_accessor :snmp_percentage
|
|
206
224
|
|
|
@@ -229,12 +247,16 @@ module DatadogAPIClient::V1
|
|
|
229
247
|
:'apm_fargate_usage' => :'apm_fargate_usage',
|
|
230
248
|
:'apm_host_percentage' => :'apm_host_percentage',
|
|
231
249
|
:'apm_host_usage' => :'apm_host_usage',
|
|
250
|
+
:'apm_usm_percentage' => :'apm_usm_percentage',
|
|
251
|
+
:'apm_usm_usage' => :'apm_usm_usage',
|
|
232
252
|
:'appsec_fargate_percentage' => :'appsec_fargate_percentage',
|
|
233
253
|
:'appsec_fargate_usage' => :'appsec_fargate_usage',
|
|
234
254
|
:'appsec_percentage' => :'appsec_percentage',
|
|
235
255
|
:'appsec_usage' => :'appsec_usage',
|
|
236
256
|
:'browser_percentage' => :'browser_percentage',
|
|
237
257
|
:'browser_usage' => :'browser_usage',
|
|
258
|
+
:'ci_visibility_itr_percentage' => :'ci_visibility_itr_percentage',
|
|
259
|
+
:'ci_visibility_itr_usage' => :'ci_visibility_itr_usage',
|
|
238
260
|
:'container_excl_agent_percentage' => :'container_excl_agent_percentage',
|
|
239
261
|
:'container_excl_agent_usage' => :'container_excl_agent_usage',
|
|
240
262
|
:'container_percentage' => :'container_percentage',
|
|
@@ -283,6 +305,8 @@ module DatadogAPIClient::V1
|
|
|
283
305
|
:'profiled_fargate_usage' => :'profiled_fargate_usage',
|
|
284
306
|
:'profiled_host_percentage' => :'profiled_host_percentage',
|
|
285
307
|
:'profiled_host_usage' => :'profiled_host_usage',
|
|
308
|
+
:'sds_scanned_bytes_percentage' => :'sds_scanned_bytes_percentage',
|
|
309
|
+
:'sds_scanned_bytes_usage' => :'sds_scanned_bytes_usage',
|
|
286
310
|
:'snmp_percentage' => :'snmp_percentage',
|
|
287
311
|
:'snmp_usage' => :'snmp_usage',
|
|
288
312
|
:'universal_service_monitoring_percentage' => :'universal_service_monitoring_percentage',
|
|
@@ -302,12 +326,16 @@ module DatadogAPIClient::V1
|
|
|
302
326
|
:'apm_fargate_usage' => :'Float',
|
|
303
327
|
:'apm_host_percentage' => :'Float',
|
|
304
328
|
:'apm_host_usage' => :'Float',
|
|
329
|
+
:'apm_usm_percentage' => :'Float',
|
|
330
|
+
:'apm_usm_usage' => :'Float',
|
|
305
331
|
:'appsec_fargate_percentage' => :'Float',
|
|
306
332
|
:'appsec_fargate_usage' => :'Float',
|
|
307
333
|
:'appsec_percentage' => :'Float',
|
|
308
334
|
:'appsec_usage' => :'Float',
|
|
309
335
|
:'browser_percentage' => :'Float',
|
|
310
336
|
:'browser_usage' => :'Float',
|
|
337
|
+
:'ci_visibility_itr_percentage' => :'Float',
|
|
338
|
+
:'ci_visibility_itr_usage' => :'Float',
|
|
311
339
|
:'container_excl_agent_percentage' => :'Float',
|
|
312
340
|
:'container_excl_agent_usage' => :'Float',
|
|
313
341
|
:'container_percentage' => :'Float',
|
|
@@ -356,6 +384,8 @@ module DatadogAPIClient::V1
|
|
|
356
384
|
:'profiled_fargate_usage' => :'Float',
|
|
357
385
|
:'profiled_host_percentage' => :'Float',
|
|
358
386
|
:'profiled_host_usage' => :'Float',
|
|
387
|
+
:'sds_scanned_bytes_percentage' => :'Float',
|
|
388
|
+
:'sds_scanned_bytes_usage' => :'Float',
|
|
359
389
|
:'snmp_percentage' => :'Float',
|
|
360
390
|
:'snmp_usage' => :'Float',
|
|
361
391
|
:'universal_service_monitoring_percentage' => :'Float',
|
|
@@ -405,6 +435,14 @@ module DatadogAPIClient::V1
|
|
|
405
435
|
self.apm_host_usage = attributes[:'apm_host_usage']
|
|
406
436
|
end
|
|
407
437
|
|
|
438
|
+
if attributes.key?(:'apm_usm_percentage')
|
|
439
|
+
self.apm_usm_percentage = attributes[:'apm_usm_percentage']
|
|
440
|
+
end
|
|
441
|
+
|
|
442
|
+
if attributes.key?(:'apm_usm_usage')
|
|
443
|
+
self.apm_usm_usage = attributes[:'apm_usm_usage']
|
|
444
|
+
end
|
|
445
|
+
|
|
408
446
|
if attributes.key?(:'appsec_fargate_percentage')
|
|
409
447
|
self.appsec_fargate_percentage = attributes[:'appsec_fargate_percentage']
|
|
410
448
|
end
|
|
@@ -429,6 +467,14 @@ module DatadogAPIClient::V1
|
|
|
429
467
|
self.browser_usage = attributes[:'browser_usage']
|
|
430
468
|
end
|
|
431
469
|
|
|
470
|
+
if attributes.key?(:'ci_visibility_itr_percentage')
|
|
471
|
+
self.ci_visibility_itr_percentage = attributes[:'ci_visibility_itr_percentage']
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
if attributes.key?(:'ci_visibility_itr_usage')
|
|
475
|
+
self.ci_visibility_itr_usage = attributes[:'ci_visibility_itr_usage']
|
|
476
|
+
end
|
|
477
|
+
|
|
432
478
|
if attributes.key?(:'container_excl_agent_percentage')
|
|
433
479
|
self.container_excl_agent_percentage = attributes[:'container_excl_agent_percentage']
|
|
434
480
|
end
|
|
@@ -621,6 +667,14 @@ module DatadogAPIClient::V1
|
|
|
621
667
|
self.profiled_host_usage = attributes[:'profiled_host_usage']
|
|
622
668
|
end
|
|
623
669
|
|
|
670
|
+
if attributes.key?(:'sds_scanned_bytes_percentage')
|
|
671
|
+
self.sds_scanned_bytes_percentage = attributes[:'sds_scanned_bytes_percentage']
|
|
672
|
+
end
|
|
673
|
+
|
|
674
|
+
if attributes.key?(:'sds_scanned_bytes_usage')
|
|
675
|
+
self.sds_scanned_bytes_usage = attributes[:'sds_scanned_bytes_usage']
|
|
676
|
+
end
|
|
677
|
+
|
|
624
678
|
if attributes.key?(:'snmp_percentage')
|
|
625
679
|
self.snmp_percentage = attributes[:'snmp_percentage']
|
|
626
680
|
end
|
|
@@ -658,12 +712,16 @@ module DatadogAPIClient::V1
|
|
|
658
712
|
apm_fargate_usage == o.apm_fargate_usage &&
|
|
659
713
|
apm_host_percentage == o.apm_host_percentage &&
|
|
660
714
|
apm_host_usage == o.apm_host_usage &&
|
|
715
|
+
apm_usm_percentage == o.apm_usm_percentage &&
|
|
716
|
+
apm_usm_usage == o.apm_usm_usage &&
|
|
661
717
|
appsec_fargate_percentage == o.appsec_fargate_percentage &&
|
|
662
718
|
appsec_fargate_usage == o.appsec_fargate_usage &&
|
|
663
719
|
appsec_percentage == o.appsec_percentage &&
|
|
664
720
|
appsec_usage == o.appsec_usage &&
|
|
665
721
|
browser_percentage == o.browser_percentage &&
|
|
666
722
|
browser_usage == o.browser_usage &&
|
|
723
|
+
ci_visibility_itr_percentage == o.ci_visibility_itr_percentage &&
|
|
724
|
+
ci_visibility_itr_usage == o.ci_visibility_itr_usage &&
|
|
667
725
|
container_excl_agent_percentage == o.container_excl_agent_percentage &&
|
|
668
726
|
container_excl_agent_usage == o.container_excl_agent_usage &&
|
|
669
727
|
container_percentage == o.container_percentage &&
|
|
@@ -712,6 +770,8 @@ module DatadogAPIClient::V1
|
|
|
712
770
|
profiled_fargate_usage == o.profiled_fargate_usage &&
|
|
713
771
|
profiled_host_percentage == o.profiled_host_percentage &&
|
|
714
772
|
profiled_host_usage == o.profiled_host_usage &&
|
|
773
|
+
sds_scanned_bytes_percentage == o.sds_scanned_bytes_percentage &&
|
|
774
|
+
sds_scanned_bytes_usage == o.sds_scanned_bytes_usage &&
|
|
715
775
|
snmp_percentage == o.snmp_percentage &&
|
|
716
776
|
snmp_usage == o.snmp_usage &&
|
|
717
777
|
universal_service_monitoring_percentage == o.universal_service_monitoring_percentage &&
|
|
@@ -724,7 +784,7 @@ module DatadogAPIClient::V1
|
|
|
724
784
|
# @return [Integer] Hash code
|
|
725
785
|
# @!visibility private
|
|
726
786
|
def hash
|
|
727
|
-
[api_percentage, api_usage, apm_fargate_percentage, apm_fargate_usage, apm_host_percentage, apm_host_usage, appsec_fargate_percentage, appsec_fargate_usage, appsec_percentage, appsec_usage, browser_percentage, browser_usage, container_excl_agent_percentage, container_excl_agent_usage, container_percentage, container_usage, cspm_containers_percentage, cspm_containers_usage, cspm_hosts_percentage, cspm_hosts_usage, custom_ingested_timeseries_percentage, custom_ingested_timeseries_usage, custom_timeseries_percentage, custom_timeseries_usage, cws_containers_percentage, cws_containers_usage, cws_hosts_percentage, cws_hosts_usage, dbm_hosts_percentage, dbm_hosts_usage, dbm_queries_percentage, dbm_queries_usage, estimated_indexed_logs_percentage, estimated_indexed_logs_usage, estimated_indexed_spans_percentage, estimated_indexed_spans_usage, estimated_ingested_logs_percentage, estimated_ingested_logs_usage, estimated_ingested_spans_percentage, estimated_ingested_spans_usage, estimated_rum_sessions_percentage, estimated_rum_sessions_usage, fargate_percentage, fargate_usage, functions_percentage, functions_usage, infra_host_percentage, infra_host_usage, invocations_percentage, invocations_usage, npm_host_percentage, npm_host_usage, obs_pipeline_bytes_percentage, obs_pipeline_bytes_usage, profiled_container_percentage, profiled_container_usage, profiled_fargate_percentage, profiled_fargate_usage, profiled_host_percentage, profiled_host_usage, snmp_percentage, snmp_usage, universal_service_monitoring_percentage, universal_service_monitoring_usage, vuln_management_hosts_percentage, vuln_management_hosts_usage].hash
|
|
787
|
+
[api_percentage, api_usage, apm_fargate_percentage, apm_fargate_usage, apm_host_percentage, apm_host_usage, apm_usm_percentage, apm_usm_usage, appsec_fargate_percentage, appsec_fargate_usage, appsec_percentage, appsec_usage, browser_percentage, browser_usage, ci_visibility_itr_percentage, ci_visibility_itr_usage, container_excl_agent_percentage, container_excl_agent_usage, container_percentage, container_usage, cspm_containers_percentage, cspm_containers_usage, cspm_hosts_percentage, cspm_hosts_usage, custom_ingested_timeseries_percentage, custom_ingested_timeseries_usage, custom_timeseries_percentage, custom_timeseries_usage, cws_containers_percentage, cws_containers_usage, cws_hosts_percentage, cws_hosts_usage, dbm_hosts_percentage, dbm_hosts_usage, dbm_queries_percentage, dbm_queries_usage, estimated_indexed_logs_percentage, estimated_indexed_logs_usage, estimated_indexed_spans_percentage, estimated_indexed_spans_usage, estimated_ingested_logs_percentage, estimated_ingested_logs_usage, estimated_ingested_spans_percentage, estimated_ingested_spans_usage, estimated_rum_sessions_percentage, estimated_rum_sessions_usage, fargate_percentage, fargate_usage, functions_percentage, functions_usage, infra_host_percentage, infra_host_usage, invocations_percentage, invocations_usage, npm_host_percentage, npm_host_usage, obs_pipeline_bytes_percentage, obs_pipeline_bytes_usage, profiled_container_percentage, profiled_container_usage, profiled_fargate_percentage, profiled_fargate_usage, profiled_host_percentage, profiled_host_usage, sds_scanned_bytes_percentage, sds_scanned_bytes_usage, snmp_percentage, snmp_usage, universal_service_monitoring_percentage, universal_service_monitoring_usage, vuln_management_hosts_percentage, vuln_management_hosts_usage].hash
|
|
728
788
|
end
|
|
729
789
|
end
|
|
730
790
|
end
|
|
@@ -86,6 +86,14 @@ module DatadogAPIClient::V1
|
|
|
86
86
|
}
|
|
87
87
|
end
|
|
88
88
|
|
|
89
|
+
# List of attributes with nullable: true
|
|
90
|
+
# @!visibility private
|
|
91
|
+
def self.openapi_nullable
|
|
92
|
+
Set.new([
|
|
93
|
+
:'saml_autocreate_access_role',
|
|
94
|
+
])
|
|
95
|
+
end
|
|
96
|
+
|
|
89
97
|
# Initializes the object
|
|
90
98
|
# @param attributes [Hash] Model attributes in the form of hash
|
|
91
99
|
# @!visibility private
|
|
@@ -57,7 +57,7 @@ module DatadogAPIClient::V1
|
|
|
57
57
|
# List of queries that can be returned directly or used in formulas.
|
|
58
58
|
attr_accessor :queries
|
|
59
59
|
|
|
60
|
-
# Timeseries or
|
|
60
|
+
# Timeseries, scalar, or event list response. Event list response formats are supported by Geomap widgets.
|
|
61
61
|
attr_accessor :response_format
|
|
62
62
|
|
|
63
63
|
# The log query.
|
|
@@ -27,7 +27,7 @@ module DatadogAPIClient::V1
|
|
|
27
27
|
# List of queries that can be returned directly or used in formulas.
|
|
28
28
|
attr_accessor :queries
|
|
29
29
|
|
|
30
|
-
# Timeseries or
|
|
30
|
+
# Timeseries, scalar, or event list response. Event list response formats are supported by Geomap widgets.
|
|
31
31
|
attr_accessor :response_format
|
|
32
32
|
|
|
33
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -51,7 +51,7 @@ module DatadogAPIClient::V1
|
|
|
51
51
|
# List of queries that can be returned directly or used in formulas.
|
|
52
52
|
attr_accessor :queries
|
|
53
53
|
|
|
54
|
-
# Timeseries or
|
|
54
|
+
# Timeseries, scalar, or event list response. Event list response formats are supported by Geomap widgets.
|
|
55
55
|
attr_accessor :response_format
|
|
56
56
|
|
|
57
57
|
# The log query.
|
|
@@ -75,6 +75,9 @@ module DatadogAPIClient::V1
|
|
|
75
75
|
# Number of pings to use per test.
|
|
76
76
|
attr_reader :number_of_packets
|
|
77
77
|
|
|
78
|
+
# Persist cookies across redirects.
|
|
79
|
+
attr_accessor :persist_cookies
|
|
80
|
+
|
|
78
81
|
# Port to use when performing the test.
|
|
79
82
|
attr_accessor :port
|
|
80
83
|
|
|
@@ -123,6 +126,7 @@ module DatadogAPIClient::V1
|
|
|
123
126
|
:'method' => :'method',
|
|
124
127
|
:'no_saving_response_body' => :'noSavingResponseBody',
|
|
125
128
|
:'number_of_packets' => :'numberOfPackets',
|
|
129
|
+
:'persist_cookies' => :'persistCookies',
|
|
126
130
|
:'port' => :'port',
|
|
127
131
|
:'proxy' => :'proxy',
|
|
128
132
|
:'query' => :'query',
|
|
@@ -156,6 +160,7 @@ module DatadogAPIClient::V1
|
|
|
156
160
|
:'method' => :'String',
|
|
157
161
|
:'no_saving_response_body' => :'Boolean',
|
|
158
162
|
:'number_of_packets' => :'Integer',
|
|
163
|
+
:'persist_cookies' => :'Boolean',
|
|
159
164
|
:'port' => :'Integer',
|
|
160
165
|
:'proxy' => :'SyntheticsTestRequestProxy',
|
|
161
166
|
:'query' => :'Object',
|
|
@@ -257,6 +262,10 @@ module DatadogAPIClient::V1
|
|
|
257
262
|
self.number_of_packets = attributes[:'number_of_packets']
|
|
258
263
|
end
|
|
259
264
|
|
|
265
|
+
if attributes.key?(:'persist_cookies')
|
|
266
|
+
self.persist_cookies = attributes[:'persist_cookies']
|
|
267
|
+
end
|
|
268
|
+
|
|
260
269
|
if attributes.key?(:'port')
|
|
261
270
|
self.port = attributes[:'port']
|
|
262
271
|
end
|
|
@@ -351,6 +360,7 @@ module DatadogAPIClient::V1
|
|
|
351
360
|
method == o.method &&
|
|
352
361
|
no_saving_response_body == o.no_saving_response_body &&
|
|
353
362
|
number_of_packets == o.number_of_packets &&
|
|
363
|
+
persist_cookies == o.persist_cookies &&
|
|
354
364
|
port == o.port &&
|
|
355
365
|
proxy == o.proxy &&
|
|
356
366
|
query == o.query &&
|
|
@@ -365,7 +375,7 @@ module DatadogAPIClient::V1
|
|
|
365
375
|
# @return [Integer] Hash code
|
|
366
376
|
# @!visibility private
|
|
367
377
|
def hash
|
|
368
|
-
[allow_insecure, basic_auth, body, body_type, call_type, certificate, certificate_domains, compressed_json_descriptor, dns_server, dns_server_port, follow_redirects, headers, host, message, metadata, method, no_saving_response_body, number_of_packets, port, proxy, query, servername, service, should_track_hops, timeout, url].hash
|
|
378
|
+
[allow_insecure, basic_auth, body, body_type, call_type, certificate, certificate_domains, compressed_json_descriptor, dns_server, dns_server_port, follow_redirects, headers, host, message, metadata, method, no_saving_response_body, number_of_packets, persist_cookies, port, proxy, query, servername, service, should_track_hops, timeout, url].hash
|
|
369
379
|
end
|
|
370
380
|
end
|
|
371
381
|
end
|
|
@@ -69,7 +69,7 @@ module DatadogAPIClient::V1
|
|
|
69
69
|
# List of queries that can be returned directly or used in formulas.
|
|
70
70
|
attr_accessor :queries
|
|
71
71
|
|
|
72
|
-
# Timeseries or
|
|
72
|
+
# Timeseries, scalar, or event list response. Event list response formats are supported by Geomap widgets.
|
|
73
73
|
attr_accessor :response_format
|
|
74
74
|
|
|
75
75
|
# The log query.
|
|
@@ -60,7 +60,7 @@ module DatadogAPIClient::V1
|
|
|
60
60
|
# List of queries that can be returned directly or used in formulas.
|
|
61
61
|
attr_accessor :queries
|
|
62
62
|
|
|
63
|
-
# Timeseries or
|
|
63
|
+
# Timeseries, scalar, or event list response. Event list response formats are supported by Geomap widgets.
|
|
64
64
|
attr_accessor :response_format
|
|
65
65
|
|
|
66
66
|
# The log query.
|
|
@@ -54,7 +54,7 @@ module DatadogAPIClient::V1
|
|
|
54
54
|
# List of queries that can be returned directly or used in formulas.
|
|
55
55
|
attr_accessor :queries
|
|
56
56
|
|
|
57
|
-
# Timeseries or
|
|
57
|
+
# Timeseries, scalar, or event list response. Event list response formats are supported by Geomap widgets.
|
|
58
58
|
attr_accessor :response_format
|
|
59
59
|
|
|
60
60
|
# The log query.
|
|
@@ -30,7 +30,7 @@ module DatadogAPIClient::V1
|
|
|
30
30
|
# List of queries that can be returned directly or used in formulas.
|
|
31
31
|
attr_accessor :queries
|
|
32
32
|
|
|
33
|
-
# Timeseries or
|
|
33
|
+
# Timeseries, scalar, or event list response. Event list response formats are supported by Geomap widgets.
|
|
34
34
|
attr_accessor :response_format
|
|
35
35
|
|
|
36
36
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -27,6 +27,9 @@ module DatadogAPIClient::V1
|
|
|
27
27
|
# The number of spans for tests in the queried hour.
|
|
28
28
|
attr_accessor :ci_test_indexed_spans
|
|
29
29
|
|
|
30
|
+
# Shows the total count of all active Git committers for Intelligent Test Runner in the current month. A committer is active if they commit at least 3 times in a given month.
|
|
31
|
+
attr_accessor :ci_visibility_itr_committers
|
|
32
|
+
|
|
30
33
|
# Shows the total count of all active Git committers for Pipelines in the current month. A committer is active if they commit at least 3 times in a given month.
|
|
31
34
|
attr_accessor :ci_visibility_pipeline_committers
|
|
32
35
|
|
|
@@ -45,6 +48,7 @@ module DatadogAPIClient::V1
|
|
|
45
48
|
{
|
|
46
49
|
:'ci_pipeline_indexed_spans' => :'ci_pipeline_indexed_spans',
|
|
47
50
|
:'ci_test_indexed_spans' => :'ci_test_indexed_spans',
|
|
51
|
+
:'ci_visibility_itr_committers' => :'ci_visibility_itr_committers',
|
|
48
52
|
:'ci_visibility_pipeline_committers' => :'ci_visibility_pipeline_committers',
|
|
49
53
|
:'ci_visibility_test_committers' => :'ci_visibility_test_committers',
|
|
50
54
|
:'org_name' => :'org_name',
|
|
@@ -58,6 +62,7 @@ module DatadogAPIClient::V1
|
|
|
58
62
|
{
|
|
59
63
|
:'ci_pipeline_indexed_spans' => :'Integer',
|
|
60
64
|
:'ci_test_indexed_spans' => :'Integer',
|
|
65
|
+
:'ci_visibility_itr_committers' => :'Integer',
|
|
61
66
|
:'ci_visibility_pipeline_committers' => :'Integer',
|
|
62
67
|
:'ci_visibility_test_committers' => :'Integer',
|
|
63
68
|
:'org_name' => :'String',
|
|
@@ -71,6 +76,7 @@ module DatadogAPIClient::V1
|
|
|
71
76
|
Set.new([
|
|
72
77
|
:'ci_pipeline_indexed_spans',
|
|
73
78
|
:'ci_test_indexed_spans',
|
|
79
|
+
:'ci_visibility_itr_committers',
|
|
74
80
|
:'ci_visibility_pipeline_committers',
|
|
75
81
|
:'ci_visibility_test_committers',
|
|
76
82
|
])
|
|
@@ -100,6 +106,10 @@ module DatadogAPIClient::V1
|
|
|
100
106
|
self.ci_test_indexed_spans = attributes[:'ci_test_indexed_spans']
|
|
101
107
|
end
|
|
102
108
|
|
|
109
|
+
if attributes.key?(:'ci_visibility_itr_committers')
|
|
110
|
+
self.ci_visibility_itr_committers = attributes[:'ci_visibility_itr_committers']
|
|
111
|
+
end
|
|
112
|
+
|
|
103
113
|
if attributes.key?(:'ci_visibility_pipeline_committers')
|
|
104
114
|
self.ci_visibility_pipeline_committers = attributes[:'ci_visibility_pipeline_committers']
|
|
105
115
|
end
|
|
@@ -125,6 +135,7 @@ module DatadogAPIClient::V1
|
|
|
125
135
|
self.class == o.class &&
|
|
126
136
|
ci_pipeline_indexed_spans == o.ci_pipeline_indexed_spans &&
|
|
127
137
|
ci_test_indexed_spans == o.ci_test_indexed_spans &&
|
|
138
|
+
ci_visibility_itr_committers == o.ci_visibility_itr_committers &&
|
|
128
139
|
ci_visibility_pipeline_committers == o.ci_visibility_pipeline_committers &&
|
|
129
140
|
ci_visibility_test_committers == o.ci_visibility_test_committers &&
|
|
130
141
|
org_name == o.org_name &&
|
|
@@ -135,7 +146,7 @@ module DatadogAPIClient::V1
|
|
|
135
146
|
# @return [Integer] Hash code
|
|
136
147
|
# @!visibility private
|
|
137
148
|
def hash
|
|
138
|
-
[ci_pipeline_indexed_spans, ci_test_indexed_spans, ci_visibility_pipeline_committers, ci_visibility_test_committers, org_name, public_id].hash
|
|
149
|
+
[ci_pipeline_indexed_spans, ci_test_indexed_spans, ci_visibility_itr_committers, ci_visibility_pipeline_committers, ci_visibility_test_committers, org_name, public_id].hash
|
|
139
150
|
end
|
|
140
151
|
end
|
|
141
152
|
end
|
|
@@ -75,6 +75,9 @@ module DatadogAPIClient::V1
|
|
|
75
75
|
# Shows the sum of all CI test indexed spans over all hours in the current month for all organizations.
|
|
76
76
|
attr_accessor :ci_test_indexed_spans_sum
|
|
77
77
|
|
|
78
|
+
# Shows the high-water mark of all CI visibility intelligent test runner committers over all hours in the current month for all organizations.
|
|
79
|
+
attr_accessor :ci_visibility_itr_committers_hwm
|
|
80
|
+
|
|
78
81
|
# Shows the high-water mark of all CI visibility pipeline committers over all hours in the current month for all organizations.
|
|
79
82
|
attr_accessor :ci_visibility_pipeline_committers_hwm
|
|
80
83
|
|
|
@@ -270,6 +273,9 @@ module DatadogAPIClient::V1
|
|
|
270
273
|
# Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org.
|
|
271
274
|
attr_accessor :vuln_management_host_count_top99p
|
|
272
275
|
|
|
276
|
+
# Sum of all workflows executed over all hours in the current date for all organizations.
|
|
277
|
+
attr_accessor :workflow_executions_usage_sum
|
|
278
|
+
|
|
273
279
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
274
280
|
# @!visibility private
|
|
275
281
|
def self.attribute_map
|
|
@@ -292,6 +298,7 @@ module DatadogAPIClient::V1
|
|
|
292
298
|
:'browser_rum_units_sum' => :'browser_rum_units_sum',
|
|
293
299
|
:'ci_pipeline_indexed_spans_sum' => :'ci_pipeline_indexed_spans_sum',
|
|
294
300
|
:'ci_test_indexed_spans_sum' => :'ci_test_indexed_spans_sum',
|
|
301
|
+
:'ci_visibility_itr_committers_hwm' => :'ci_visibility_itr_committers_hwm',
|
|
295
302
|
:'ci_visibility_pipeline_committers_hwm' => :'ci_visibility_pipeline_committers_hwm',
|
|
296
303
|
:'ci_visibility_test_committers_hwm' => :'ci_visibility_test_committers_hwm',
|
|
297
304
|
:'cloud_cost_management_aws_host_count_avg' => :'cloud_cost_management_aws_host_count_avg',
|
|
@@ -356,7 +363,8 @@ module DatadogAPIClient::V1
|
|
|
356
363
|
:'twol_ingested_events_bytes_sum' => :'twol_ingested_events_bytes_sum',
|
|
357
364
|
:'universal_service_monitoring_host_top99p' => :'universal_service_monitoring_host_top99p',
|
|
358
365
|
:'vsphere_host_top99p' => :'vsphere_host_top99p',
|
|
359
|
-
:'vuln_management_host_count_top99p' => :'vuln_management_host_count_top99p'
|
|
366
|
+
:'vuln_management_host_count_top99p' => :'vuln_management_host_count_top99p',
|
|
367
|
+
:'workflow_executions_usage_sum' => :'workflow_executions_usage_sum'
|
|
360
368
|
}
|
|
361
369
|
end
|
|
362
370
|
|
|
@@ -382,6 +390,7 @@ module DatadogAPIClient::V1
|
|
|
382
390
|
:'browser_rum_units_sum' => :'Integer',
|
|
383
391
|
:'ci_pipeline_indexed_spans_sum' => :'Integer',
|
|
384
392
|
:'ci_test_indexed_spans_sum' => :'Integer',
|
|
393
|
+
:'ci_visibility_itr_committers_hwm' => :'Integer',
|
|
385
394
|
:'ci_visibility_pipeline_committers_hwm' => :'Integer',
|
|
386
395
|
:'ci_visibility_test_committers_hwm' => :'Integer',
|
|
387
396
|
:'cloud_cost_management_aws_host_count_avg' => :'Integer',
|
|
@@ -446,7 +455,8 @@ module DatadogAPIClient::V1
|
|
|
446
455
|
:'twol_ingested_events_bytes_sum' => :'Integer',
|
|
447
456
|
:'universal_service_monitoring_host_top99p' => :'Integer',
|
|
448
457
|
:'vsphere_host_top99p' => :'Integer',
|
|
449
|
-
:'vuln_management_host_count_top99p' => :'Integer'
|
|
458
|
+
:'vuln_management_host_count_top99p' => :'Integer',
|
|
459
|
+
:'workflow_executions_usage_sum' => :'Integer'
|
|
450
460
|
}
|
|
451
461
|
end
|
|
452
462
|
|
|
@@ -538,6 +548,10 @@ module DatadogAPIClient::V1
|
|
|
538
548
|
self.ci_test_indexed_spans_sum = attributes[:'ci_test_indexed_spans_sum']
|
|
539
549
|
end
|
|
540
550
|
|
|
551
|
+
if attributes.key?(:'ci_visibility_itr_committers_hwm')
|
|
552
|
+
self.ci_visibility_itr_committers_hwm = attributes[:'ci_visibility_itr_committers_hwm']
|
|
553
|
+
end
|
|
554
|
+
|
|
541
555
|
if attributes.key?(:'ci_visibility_pipeline_committers_hwm')
|
|
542
556
|
self.ci_visibility_pipeline_committers_hwm = attributes[:'ci_visibility_pipeline_committers_hwm']
|
|
543
557
|
end
|
|
@@ -799,6 +813,10 @@ module DatadogAPIClient::V1
|
|
|
799
813
|
if attributes.key?(:'vuln_management_host_count_top99p')
|
|
800
814
|
self.vuln_management_host_count_top99p = attributes[:'vuln_management_host_count_top99p']
|
|
801
815
|
end
|
|
816
|
+
|
|
817
|
+
if attributes.key?(:'workflow_executions_usage_sum')
|
|
818
|
+
self.workflow_executions_usage_sum = attributes[:'workflow_executions_usage_sum']
|
|
819
|
+
end
|
|
802
820
|
end
|
|
803
821
|
|
|
804
822
|
# Checks equality by comparing each attribute.
|
|
@@ -825,6 +843,7 @@ module DatadogAPIClient::V1
|
|
|
825
843
|
browser_rum_units_sum == o.browser_rum_units_sum &&
|
|
826
844
|
ci_pipeline_indexed_spans_sum == o.ci_pipeline_indexed_spans_sum &&
|
|
827
845
|
ci_test_indexed_spans_sum == o.ci_test_indexed_spans_sum &&
|
|
846
|
+
ci_visibility_itr_committers_hwm == o.ci_visibility_itr_committers_hwm &&
|
|
828
847
|
ci_visibility_pipeline_committers_hwm == o.ci_visibility_pipeline_committers_hwm &&
|
|
829
848
|
ci_visibility_test_committers_hwm == o.ci_visibility_test_committers_hwm &&
|
|
830
849
|
cloud_cost_management_aws_host_count_avg == o.cloud_cost_management_aws_host_count_avg &&
|
|
@@ -889,14 +908,15 @@ module DatadogAPIClient::V1
|
|
|
889
908
|
twol_ingested_events_bytes_sum == o.twol_ingested_events_bytes_sum &&
|
|
890
909
|
universal_service_monitoring_host_top99p == o.universal_service_monitoring_host_top99p &&
|
|
891
910
|
vsphere_host_top99p == o.vsphere_host_top99p &&
|
|
892
|
-
vuln_management_host_count_top99p == o.vuln_management_host_count_top99p
|
|
911
|
+
vuln_management_host_count_top99p == o.vuln_management_host_count_top99p &&
|
|
912
|
+
workflow_executions_usage_sum == o.workflow_executions_usage_sum
|
|
893
913
|
end
|
|
894
914
|
|
|
895
915
|
# Calculates hash code according to all attributes.
|
|
896
916
|
# @return [Integer] Hash code
|
|
897
917
|
# @!visibility private
|
|
898
918
|
def hash
|
|
899
|
-
[agent_host_top99p, apm_azure_app_service_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, date, dbm_host_top99p, dbm_queries_count_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, forwarding_events_bytes_sum, 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_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, orgs, profiling_host_top99p, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p].hash
|
|
919
|
+
[agent_host_top99p, apm_azure_app_service_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, date, dbm_host_top99p, dbm_queries_count_avg, fargate_tasks_count_avg, fargate_tasks_count_hwm, forwarding_events_bytes_sum, 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_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, orgs, profiling_host_top99p, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum].hash
|
|
900
920
|
end
|
|
901
921
|
end
|
|
902
922
|
end
|
|
@@ -75,6 +75,9 @@ module DatadogAPIClient::V1
|
|
|
75
75
|
# Shows the sum of all CI test indexed spans over all hours in the current date for the given org.
|
|
76
76
|
attr_accessor :ci_test_indexed_spans_sum
|
|
77
77
|
|
|
78
|
+
# Shows the high-water mark of all CI visibility intelligent test runner committers over all hours in the current date for the given org.
|
|
79
|
+
attr_accessor :ci_visibility_itr_committers_hwm
|
|
80
|
+
|
|
78
81
|
# Shows the high-water mark of all CI visibility pipeline committers over all hours in the current date for the given org.
|
|
79
82
|
attr_accessor :ci_visibility_pipeline_committers_hwm
|
|
80
83
|
|
|
@@ -276,6 +279,9 @@ module DatadogAPIClient::V1
|
|
|
276
279
|
# Shows the 99th percentile of all Application Vulnerability Management hosts over all hours in the current date for the given org.
|
|
277
280
|
attr_accessor :vuln_management_host_count_top99p
|
|
278
281
|
|
|
282
|
+
# Sum of all workflows executed over all hours in the current date for the given org.
|
|
283
|
+
attr_accessor :workflow_executions_usage_sum
|
|
284
|
+
|
|
279
285
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
280
286
|
# @!visibility private
|
|
281
287
|
def self.attribute_map
|
|
@@ -298,6 +304,7 @@ module DatadogAPIClient::V1
|
|
|
298
304
|
:'browser_rum_units_sum' => :'browser_rum_units_sum',
|
|
299
305
|
:'ci_pipeline_indexed_spans_sum' => :'ci_pipeline_indexed_spans_sum',
|
|
300
306
|
:'ci_test_indexed_spans_sum' => :'ci_test_indexed_spans_sum',
|
|
307
|
+
:'ci_visibility_itr_committers_hwm' => :'ci_visibility_itr_committers_hwm',
|
|
301
308
|
:'ci_visibility_pipeline_committers_hwm' => :'ci_visibility_pipeline_committers_hwm',
|
|
302
309
|
:'ci_visibility_test_committers_hwm' => :'ci_visibility_test_committers_hwm',
|
|
303
310
|
:'cloud_cost_management_aws_host_count_avg' => :'cloud_cost_management_aws_host_count_avg',
|
|
@@ -364,7 +371,8 @@ module DatadogAPIClient::V1
|
|
|
364
371
|
:'twol_ingested_events_bytes_sum' => :'twol_ingested_events_bytes_sum',
|
|
365
372
|
:'universal_service_monitoring_host_top99p' => :'universal_service_monitoring_host_top99p',
|
|
366
373
|
:'vsphere_host_top99p' => :'vsphere_host_top99p',
|
|
367
|
-
:'vuln_management_host_count_top99p' => :'vuln_management_host_count_top99p'
|
|
374
|
+
:'vuln_management_host_count_top99p' => :'vuln_management_host_count_top99p',
|
|
375
|
+
:'workflow_executions_usage_sum' => :'workflow_executions_usage_sum'
|
|
368
376
|
}
|
|
369
377
|
end
|
|
370
378
|
|
|
@@ -390,6 +398,7 @@ module DatadogAPIClient::V1
|
|
|
390
398
|
:'browser_rum_units_sum' => :'Integer',
|
|
391
399
|
:'ci_pipeline_indexed_spans_sum' => :'Integer',
|
|
392
400
|
:'ci_test_indexed_spans_sum' => :'Integer',
|
|
401
|
+
:'ci_visibility_itr_committers_hwm' => :'Integer',
|
|
393
402
|
:'ci_visibility_pipeline_committers_hwm' => :'Integer',
|
|
394
403
|
:'ci_visibility_test_committers_hwm' => :'Integer',
|
|
395
404
|
:'cloud_cost_management_aws_host_count_avg' => :'Integer',
|
|
@@ -456,7 +465,8 @@ module DatadogAPIClient::V1
|
|
|
456
465
|
:'twol_ingested_events_bytes_sum' => :'Integer',
|
|
457
466
|
:'universal_service_monitoring_host_top99p' => :'Integer',
|
|
458
467
|
:'vsphere_host_top99p' => :'Integer',
|
|
459
|
-
:'vuln_management_host_count_top99p' => :'Integer'
|
|
468
|
+
:'vuln_management_host_count_top99p' => :'Integer',
|
|
469
|
+
:'workflow_executions_usage_sum' => :'Integer'
|
|
460
470
|
}
|
|
461
471
|
end
|
|
462
472
|
|
|
@@ -548,6 +558,10 @@ module DatadogAPIClient::V1
|
|
|
548
558
|
self.ci_test_indexed_spans_sum = attributes[:'ci_test_indexed_spans_sum']
|
|
549
559
|
end
|
|
550
560
|
|
|
561
|
+
if attributes.key?(:'ci_visibility_itr_committers_hwm')
|
|
562
|
+
self.ci_visibility_itr_committers_hwm = attributes[:'ci_visibility_itr_committers_hwm']
|
|
563
|
+
end
|
|
564
|
+
|
|
551
565
|
if attributes.key?(:'ci_visibility_pipeline_committers_hwm')
|
|
552
566
|
self.ci_visibility_pipeline_committers_hwm = attributes[:'ci_visibility_pipeline_committers_hwm']
|
|
553
567
|
end
|
|
@@ -815,6 +829,10 @@ module DatadogAPIClient::V1
|
|
|
815
829
|
if attributes.key?(:'vuln_management_host_count_top99p')
|
|
816
830
|
self.vuln_management_host_count_top99p = attributes[:'vuln_management_host_count_top99p']
|
|
817
831
|
end
|
|
832
|
+
|
|
833
|
+
if attributes.key?(:'workflow_executions_usage_sum')
|
|
834
|
+
self.workflow_executions_usage_sum = attributes[:'workflow_executions_usage_sum']
|
|
835
|
+
end
|
|
818
836
|
end
|
|
819
837
|
|
|
820
838
|
# Checks equality by comparing each attribute.
|
|
@@ -841,6 +859,7 @@ module DatadogAPIClient::V1
|
|
|
841
859
|
browser_rum_units_sum == o.browser_rum_units_sum &&
|
|
842
860
|
ci_pipeline_indexed_spans_sum == o.ci_pipeline_indexed_spans_sum &&
|
|
843
861
|
ci_test_indexed_spans_sum == o.ci_test_indexed_spans_sum &&
|
|
862
|
+
ci_visibility_itr_committers_hwm == o.ci_visibility_itr_committers_hwm &&
|
|
844
863
|
ci_visibility_pipeline_committers_hwm == o.ci_visibility_pipeline_committers_hwm &&
|
|
845
864
|
ci_visibility_test_committers_hwm == o.ci_visibility_test_committers_hwm &&
|
|
846
865
|
cloud_cost_management_aws_host_count_avg == o.cloud_cost_management_aws_host_count_avg &&
|
|
@@ -907,14 +926,15 @@ module DatadogAPIClient::V1
|
|
|
907
926
|
twol_ingested_events_bytes_sum == o.twol_ingested_events_bytes_sum &&
|
|
908
927
|
universal_service_monitoring_host_top99p == o.universal_service_monitoring_host_top99p &&
|
|
909
928
|
vsphere_host_top99p == o.vsphere_host_top99p &&
|
|
910
|
-
vuln_management_host_count_top99p == o.vuln_management_host_count_top99p
|
|
929
|
+
vuln_management_host_count_top99p == o.vuln_management_host_count_top99p &&
|
|
930
|
+
workflow_executions_usage_sum == o.workflow_executions_usage_sum
|
|
911
931
|
end
|
|
912
932
|
|
|
913
933
|
# Calculates hash code according to all attributes.
|
|
914
934
|
# @return [Integer] Hash code
|
|
915
935
|
# @!visibility private
|
|
916
936
|
def hash
|
|
917
|
-
[agent_host_top99p, apm_azure_app_service_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, dbm_host_top99p_sum, dbm_queries_avg_sum, fargate_tasks_count_avg, fargate_tasks_count_hwm, forwarding_events_bytes_sum, 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_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, name, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, profiling_host_top99p, public_id, region, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p].hash
|
|
937
|
+
[agent_host_top99p, apm_azure_app_service_host_top99p, apm_fargate_count_avg, apm_host_top99p, appsec_fargate_count_avg, audit_logs_lines_indexed_sum, audit_trail_enabled_hwm, avg_profiled_fargate_tasks, aws_host_top99p, aws_lambda_func_count, aws_lambda_invocations_sum, azure_app_service_top99p, billable_ingested_bytes_sum, browser_rum_lite_session_count_sum, browser_rum_replay_session_count_sum, browser_rum_units_sum, ci_pipeline_indexed_spans_sum, ci_test_indexed_spans_sum, ci_visibility_itr_committers_hwm, ci_visibility_pipeline_committers_hwm, ci_visibility_test_committers_hwm, cloud_cost_management_aws_host_count_avg, cloud_cost_management_azure_host_count_avg, cloud_cost_management_host_count_avg, container_avg, container_excl_agent_avg, container_hwm, cspm_aas_host_top99p, cspm_aws_host_top99p, cspm_azure_host_top99p, cspm_container_avg, cspm_container_hwm, cspm_gcp_host_top99p, cspm_host_top99p, custom_ts_avg, cws_container_count_avg, cws_host_top99p, dbm_host_top99p_sum, dbm_queries_avg_sum, fargate_tasks_count_avg, fargate_tasks_count_hwm, forwarding_events_bytes_sum, 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_lite_session_count_sum, mobile_rum_session_count_android_sum, mobile_rum_session_count_flutter_sum, mobile_rum_session_count_ios_sum, mobile_rum_session_count_reactnative_sum, mobile_rum_session_count_roku_sum, mobile_rum_session_count_sum, mobile_rum_units_sum, name, netflow_indexed_events_count_sum, npm_host_top99p, observability_pipelines_bytes_processed_sum, online_archive_events_count_sum, opentelemetry_apm_host_top99p, opentelemetry_host_top99p, profiling_host_top99p, public_id, region, rum_browser_and_mobile_session_count, rum_session_count_sum, rum_total_session_count_sum, rum_units_sum, sds_apm_scanned_bytes_sum, sds_events_scanned_bytes_sum, sds_logs_scanned_bytes_sum, sds_rum_scanned_bytes_sum, sds_total_scanned_bytes_sum, synthetics_browser_check_calls_count_sum, synthetics_check_calls_count_sum, synthetics_parallel_testing_max_slots_hwm, trace_search_indexed_events_count_sum, twol_ingested_events_bytes_sum, universal_service_monitoring_host_top99p, vsphere_host_top99p, vuln_management_host_count_top99p, workflow_executions_usage_sum].hash
|
|
918
938
|
end
|
|
919
939
|
end
|
|
920
940
|
end
|