datadog_api_client 2.46.0 → 2.48.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/.generator/schemas/v1/openapi.yaml +201 -12
- data/.generator/schemas/v2/openapi.yaml +3391 -684
- data/CHANGELOG.md +46 -0
- data/examples/v1/dashboards/CreateDashboard_3685886950.rb +36 -0
- data/examples/v1/dashboards/CreateDashboard_865807520.rb +36 -0
- data/examples/v1/dashboards/CreateDashboard_9836563.rb +118 -0
- data/examples/v2/apm/GetServiceList.rb +5 -0
- data/examples/v2/aws-integration/CreateAWSAccount.rb +11 -0
- data/examples/v2/aws-integration/CreateAWSAccount_1716720881.rb +11 -0
- data/examples/v2/aws-integration/UpdateAWSAccount.rb +11 -0
- data/examples/v2/csm-threats/CreateCSMThreatsAgentRule_1295653933.rb +3 -1
- data/examples/v2/csm-threats/CreateCSMThreatsAgentRule_1363354233.rb +1 -1
- data/examples/v2/deployment-gates/GetDeploymentGateRules.rb +11 -0
- data/examples/v2/events/CreateEvent.rb +1 -0
- data/examples/v2/incidents/CreateIncidentAttachment.rb +22 -0
- data/examples/v2/incidents/DeleteIncidentAttachment.rb +8 -0
- data/examples/v2/incidents/ListIncidentAttachments.rb +1 -1
- data/examples/v2/incidents/UpdateIncidentAttachment.rb +20 -0
- data/examples/v2/observability-pipelines/CreatePipeline.rb +12 -4
- data/examples/v2/observability-pipelines/UpdatePipeline.rb +12 -4
- data/examples/v2/observability-pipelines/ValidatePipeline.rb +12 -4
- data/examples/v2/on-call/CreateUserNotificationChannel.rb +23 -0
- data/examples/v2/on-call/CreateUserNotificationRule.rb +29 -0
- data/examples/v2/on-call/DeleteUserNotificationChannel.rb +11 -0
- data/examples/v2/on-call/DeleteUserNotificationRule.rb +11 -0
- data/examples/v2/on-call/GetUserNotificationChannel.rb +11 -0
- data/examples/v2/on-call/GetUserNotificationRule.rb +14 -0
- data/examples/v2/on-call/ListUserNotificationChannels.rb +8 -0
- data/examples/v2/on-call/ListUserNotificationRules.rb +11 -0
- data/examples/v2/on-call/UpdateUserNotificationRule.rb +36 -0
- data/examples/v2/product-analytics/SubmitProductAnalyticsEvent.rb +24 -0
- data/examples/v2/security-monitoring/CreateCases.rb +2 -2
- data/examples/v2/security-monitoring/CreateCases_2385516013.rb +1 -1
- data/examples/v2/security-monitoring/CreateCases_2798851680.rb +2 -2
- data/examples/v2/security-monitoring/CreateJiraIssues.rb +14 -69
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_2323193894.rb +48 -0
- data/examples/v2/security-monitoring/GetSecretsRules.rb +1 -1
- data/examples/v2/security-monitoring/GetSuppressionVersionHistory.rb +8 -0
- data/examples/v2/security-monitoring/ValidateSecurityMonitoringRule_2609327779.rb +54 -0
- data/examples/v2/synthetics/PatchGlobalVariable.rb +19 -0
- data/examples/v2/teams/CreateTeamNotificationRule.rb +23 -0
- data/examples/v2/teams/DeleteTeamConnections.rb +0 -3
- data/examples/v2/teams/DeleteTeamNotificationRule.rb +11 -0
- data/examples/v2/teams/GetTeamNotificationRule.rb +11 -0
- data/examples/v2/teams/GetTeamNotificationRules.rb +8 -0
- data/examples/v2/teams/GetTeamSync.rb +0 -3
- data/examples/v2/teams/ListTeamConnections.rb +0 -3
- data/examples/v2/teams/ListTeamConnections_2418873869.rb +0 -3
- data/examples/v2/teams/SyncTeams.rb +0 -3
- data/examples/v2/teams/SyncTeams_3215592344.rb +0 -3
- data/examples/v2/teams/UpdateTeamNotificationRule.rb +27 -0
- data/lib/datadog_api_client/configuration.rb +59 -9
- data/lib/datadog_api_client/inflector.rb +135 -26
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +3 -3
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +6 -4
- data/lib/datadog_api_client/v1/models/formula_and_function_metric_query_definition.rb +13 -3
- data/lib/datadog_api_client/v1/models/formula_and_function_metric_semantic_mode.rb +27 -0
- data/lib/datadog_api_client/v1/models/geomap_widget_definition.rb +4 -5
- data/lib/datadog_api_client/v1/models/geomap_widget_definition_view.rb +1 -1
- data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +37 -3
- data/lib/datadog_api_client/v1/models/geomap_widget_request_style.rb +105 -0
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +3 -0
- data/lib/datadog_api_client/v1/models/monitor_search_response.rb +1 -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/synthetics_list_tests_response.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_details_without_steps.rb +221 -0
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +41 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +41 -1
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +41 -1
- data/lib/datadog_api_client/v2/api/apm_api.rb +83 -0
- data/lib/datadog_api_client/v2/api/deployment_gates_api.rb +71 -0
- data/lib/datadog_api_client/v2/api/dora_metrics_api.rb +8 -8
- data/lib/datadog_api_client/v2/api/incidents_api.rb +188 -54
- data/lib/datadog_api_client/v2/api/on_call_api.rb +637 -0
- data/lib/datadog_api_client/v2/api/product_analytics_api.rb +121 -0
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +99 -11
- data/lib/datadog_api_client/v2/api/software_catalog_api.rb +4 -0
- data/lib/datadog_api_client/v2/api/synthetics_api.rb +79 -0
- data/lib/datadog_api_client/v2/api/teams_api.rb +345 -30
- data/lib/datadog_api_client/v2/models/attach_case_request_data.rb +1 -1
- data/lib/datadog_api_client/v2/models/attach_jira_issue_request_data.rb +1 -11
- data/lib/datadog_api_client/v2/models/attach_jira_issue_request_data_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/{create_jira_issue_request_data_attributes_fields.rb → attachment.rb} +22 -10
- data/lib/datadog_api_client/v2/models/{incident_attachments_response.rb → attachment_array.rb} +7 -7
- data/lib/datadog_api_client/v2/models/{incident_attachment_data.rb → attachment_data.rb} +8 -8
- data/lib/datadog_api_client/v2/models/attachment_data_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/attachment_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_attachment_type.rb → attachment_data_attributes_attachment_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/{incident_attachment_relationships.rb → attachment_data_relationships.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{create_jira_issue_request_data_relationships_case.rb → attachment_data_relationships_last_modified_by_user.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{create_jira_issue_request_data_relationships_case_data.rb → attachment_data_relationships_last_modified_by_user_data.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{incident_attachments_response_included_item.rb → attachment_included.rb} +3 -3
- data/lib/datadog_api_client/v2/models/aws_account_create_request_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/aws_account_response_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/aws_account_update_request_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/awsccm_config.rb +107 -0
- data/lib/datadog_api_client/v2/models/case_create_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/case_insights_items.rb +3 -3
- data/lib/datadog_api_client/v2/models/case_management_project_data.rb +1 -1
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_policy_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_policy_version.rb +2 -2
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_action.rb +2 -2
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_action_hash.rb +105 -0
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_action_set.rb +1 -1
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_attributes.rb → cloud_workload_security_agent_rule_action_set_value.rb} +5 -4
- data/lib/datadog_api_client/v2/models/{dora_fetch_response.rb → create_attachment_request.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_data.rb → create_attachment_request_data.rb} +6 -6
- data/lib/datadog_api_client/v2/models/create_attachment_request_data_attributes.rb +115 -0
- data/lib/datadog_api_client/v2/models/create_attachment_request_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/create_case_request_data.rb +1 -11
- data/lib/datadog_api_client/v2/models/create_case_request_data_attributes.rb +3 -3
- data/lib/datadog_api_client/v2/models/create_email_notification_channel_config.rb +167 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_array.rb +3 -15
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data.rb +1 -11
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb +43 -3
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data_relationships.rb +35 -14
- data/lib/datadog_api_client/v2/models/create_notification_channel_attributes.rb +105 -0
- data/lib/datadog_api_client/v2/models/{create_jira_issue_request_array_included.rb → create_notification_channel_config.rb} +4 -5
- data/lib/datadog_api_client/v2/models/create_notification_channel_data.rb +133 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_request.rb → create_on_call_notification_rule_request.rb} +6 -11
- data/lib/datadog_api_client/v2/models/create_on_call_notification_rule_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attributes_attachment_object.rb → create_phone_notification_channel_config.rb} +30 -30
- data/lib/datadog_api_client/v2/models/create_user_notification_channel_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/custom_attribute_type.rb +1 -0
- data/lib/datadog_api_client/v2/models/data_export_config.rb +145 -0
- data/lib/datadog_api_client/v2/models/deployment_gate_rules_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/detach_case_request_data.rb +1 -11
- data/lib/datadog_api_client/v2/models/dora_deployment_fetch_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_object.rb +125 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_object_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/dora_deployments_list_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/dora_failure_fetch_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/dora_failure_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/{dora_list_response.rb → dora_failures_list_response.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{dora_event.rb → dora_incident_object.rb} +8 -8
- data/lib/datadog_api_client/v2/models/dora_incident_object_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/event_payload.rb +26 -1
- data/lib/datadog_api_client/v2/models/finding_case_response_data.rb +1 -1
- data/lib/datadog_api_client/v2/models/finding_data.rb +1 -1
- data/lib/datadog_api_client/v2/models/finding_jira_issue.rb +2 -2
- data/lib/datadog_api_client/v2/models/finding_jira_issue_result.rb +4 -4
- data/lib/datadog_api_client/v2/models/get_suppression_version_history_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_postmortem_attachment_type.rb → get_suppression_version_history_data_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/get_suppression_version_history_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/global_variable_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request_data_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/global_variable_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attachment_type.rb → global_variable_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/incident_response_included_item.rb +1 -1
- data/lib/datadog_api_client/v2/models/json_patch_operation.rb +154 -0
- data/lib/datadog_api_client/v2/models/json_patch_operation_op.rb +31 -0
- data/lib/datadog_api_client/v2/models/library.rb +13 -1
- data/lib/datadog_api_client/v2/models/list_deployment_rule_response_data.rb +165 -0
- data/lib/datadog_api_client/v2/models/list_deployment_rules_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/list_deployment_rules_response_data_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/list_notification_channels_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/list_on_call_notification_rules_response.rb +119 -0
- data/lib/datadog_api_client/v2/models/notification_channel.rb +105 -0
- data/lib/datadog_api_client/v2/models/notification_channel_attributes.rb +115 -0
- data/lib/datadog_api_client/v2/models/notification_channel_config.rb +64 -0
- data/lib/datadog_api_client/v2/models/notification_channel_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attributes.rb → notification_channel_email_config.rb} +50 -37
- data/lib/datadog_api_client/v2/models/notification_channel_email_config_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/notification_channel_email_format_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/notification_channel_phone_config.rb +225 -0
- data/lib/datadog_api_client/v2/models/notification_channel_phone_config_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/notification_channel_push_config.rb +165 -0
- data/lib/datadog_api_client/v2/models/notification_channel_push_config_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/notification_channel_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/observability_pipeline_add_env_vars_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_add_fields_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_config.rb +2 -2
- data/lib/datadog_api_client/v2/models/observability_pipeline_config_processor_group.rb +221 -0
- data/lib/datadog_api_client/v2/models/observability_pipeline_custom_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_custom_processor_remap.rb +1 -12
- data/lib/datadog_api_client/v2/models/observability_pipeline_datadog_tags_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_dedupe_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_enrichment_table_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_filter_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_generate_metrics_processor.rb +34 -48
- data/lib/datadog_api_client/v2/models/observability_pipeline_ocsf_mapper_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_grok_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_json_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_quota_processor.rb +28 -31
- data/lib/datadog_api_client/v2/models/observability_pipeline_reduce_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_remove_fields_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_rename_fields_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_sample_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_sensitive_data_scanner_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb +32 -24
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_response.rb → on_call_notification_rule.rb} +8 -11
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_category.rb +27 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship.rb +123 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_attributes.rb → on_call_notification_rule_channel_settings.rb} +3 -4
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_relationships.rb +105 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_request_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rules_included.rb +62 -0
- data/lib/datadog_api_client/v2/models/on_call_phone_notification_rule_method.rb +27 -0
- data/lib/datadog_api_client/v2/models/{incident_attachments_postmortem_attributes_attachment_object.rb → on_call_phone_notification_rule_settings.rb} +30 -30
- data/lib/datadog_api_client/v2/models/patch_attachment_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes.rb +105 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_error.rb +125 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_errors.rb +107 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item.rb +195 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_account.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_application.rb +124 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_event.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_session.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_usr.rb +123 -0
- data/lib/datadog_api_client/v2/models/rule_versions.rb +1 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options.rb +155 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_bucket_duration.rb +32 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_detection_tolerance.rb +31 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_learning_duration.rb +32 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/service_list.rb +105 -0
- data/lib/datadog_api_client/v2/models/service_list_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/service_list_data_attributes.rb +119 -0
- data/lib/datadog_api_client/v2/models/service_list_data_attributes_metadata_items.rb +115 -0
- data/lib/datadog_api_client/v2/models/service_list_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/suppression_version_history.rb +133 -0
- data/lib/datadog_api_client/v2/models/suppression_versions.rb +117 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable.rb +248 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_options.rb +105 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parse_test_options.rb +153 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parse_test_options_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parser_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_postmortem_attributes.rb → synthetics_global_variable_totp_parameters.rb} +38 -30
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_value.rb +126 -0
- data/lib/datadog_api_client/v2/models/synthetics_variable_parser.rb +133 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule.rb +154 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes.rb +135 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_email.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_ms_teams.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_pagerduty.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_slack.rb +115 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response.rb +117 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response_meta.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response_meta_page.rb +184 -0
- data/lib/datadog_api_client/v2/models/threat_hunting_job_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/user140420082644000.rb +143 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_related_object.rb → user_type.rb} +2 -2
- data/lib/datadog_api_client/v2/models/{rule_version_update.rb → version_history_update.rb} +3 -3
- data/lib/datadog_api_client/v2/models/{rule_version_update_type.rb → version_history_update_type.rb} +1 -1
- data/lib/datadog_api_client/v2/models/vulnerability_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/vulnerability_ecosystem.rb +6 -1
- data/lib/datadog_api_client/v2/models/vulnerability_tool.rb +1 -0
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +163 -32
- data/examples/v2/incidents/ListIncidentAttachments_2457735435.rb +0 -11
- data/examples/v2/incidents/UpdateIncidentAttachments.rb +0 -38
- data/examples/v2/incidents/UpdateIncidentAttachments_3881702075.rb +0 -26
- data/examples/v2/security-monitoring/CreateJiraIssues_379590688.rb +0 -56
- data/examples/v2/security-monitoring/CreateJiraIssues_829823123.rb +0 -64
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 527fb4059552a14f9aff565a7c2430b166d812f489a0a538550f86108d846b52
|
|
4
|
+
data.tar.gz: d843defe6ea2ea97563b033719d2fc2973e2e52eff87f725cb32144586980feb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a9c01c06f6b4724a3c6832422c7cdc233050565b59f14be8219c205a8f3bac1aae908f4160a1aee8e1fd111730b22bd5f66420d4c7c898932dd24afc5aeab5e
|
|
7
|
+
data.tar.gz: 91420bb8c1d47897b34ce5ec7365441ad34d44cde574a87f136cd8187521a4dab4c8005314174286fdd4be91240a4e4a22fe4d86d87ebde7e00b94aaddad3a5e
|
|
@@ -2952,11 +2952,24 @@ components:
|
|
|
2952
2952
|
description: Metrics query definition.
|
|
2953
2953
|
example: avg:system.cpu.user{*}
|
|
2954
2954
|
type: string
|
|
2955
|
+
semantic_mode:
|
|
2956
|
+
$ref: '#/components/schemas/FormulaAndFunctionMetricSemanticMode'
|
|
2955
2957
|
required:
|
|
2956
2958
|
- data_source
|
|
2957
2959
|
- query
|
|
2958
2960
|
- name
|
|
2959
2961
|
type: object
|
|
2962
|
+
FormulaAndFunctionMetricSemanticMode:
|
|
2963
|
+
description: Semantic mode for metrics queries. This determines how metrics
|
|
2964
|
+
from different sources are combined or displayed.
|
|
2965
|
+
enum:
|
|
2966
|
+
- combined
|
|
2967
|
+
- native
|
|
2968
|
+
example: combined
|
|
2969
|
+
type: string
|
|
2970
|
+
x-enum-varnames:
|
|
2971
|
+
- COMBINED
|
|
2972
|
+
- NATIVE
|
|
2960
2973
|
FormulaAndFunctionProcessQueryDataSource:
|
|
2961
2974
|
description: Data sources that rely on the process backend.
|
|
2962
2975
|
enum:
|
|
@@ -3435,9 +3448,10 @@ components:
|
|
|
3435
3448
|
$ref: '#/components/schemas/WidgetCustomLink'
|
|
3436
3449
|
type: array
|
|
3437
3450
|
requests:
|
|
3438
|
-
description: 'Array of
|
|
3439
|
-
|
|
3440
|
-
|
|
3451
|
+
description: 'Array of request objects to display in the widget. May include
|
|
3452
|
+
an optional request for the region layer and/or an optional request for
|
|
3453
|
+
the points layer. Region layer requests must contain a `group-by` tag
|
|
3454
|
+
whose value is a country ISO code.
|
|
3441
3455
|
|
|
3442
3456
|
See the [Request JSON schema documentation](https://docs.datadoghq.com/dashboards/graphing_json/request_json)
|
|
3443
3457
|
|
|
@@ -3448,7 +3462,7 @@ components:
|
|
|
3448
3462
|
query: <METRIC_1>{<SCOPE_1>}
|
|
3449
3463
|
items:
|
|
3450
3464
|
$ref: '#/components/schemas/GeomapWidgetRequest'
|
|
3451
|
-
maxItems:
|
|
3465
|
+
maxItems: 2
|
|
3452
3466
|
minItems: 1
|
|
3453
3467
|
type: array
|
|
3454
3468
|
style:
|
|
@@ -3506,8 +3520,9 @@ components:
|
|
|
3506
3520
|
focus: WORLD
|
|
3507
3521
|
properties:
|
|
3508
3522
|
focus:
|
|
3509
|
-
description: The 2-letter ISO code of a country to focus the map on
|
|
3510
|
-
`WORLD
|
|
3523
|
+
description: The 2-letter ISO code of a country to focus the map on, or
|
|
3524
|
+
`WORLD` for global view, or a region (`EMEA`, `APAC`, `LATAM`), or a continent
|
|
3525
|
+
(`NORTH_AMERICA`, `SOUTH_AMERICA`, `EUROPE`, `AFRICA`, `ASIA`, `OCEANIA`).
|
|
3511
3526
|
example: WORLD
|
|
3512
3527
|
type: string
|
|
3513
3528
|
required:
|
|
@@ -3526,6 +3541,12 @@ components:
|
|
|
3526
3541
|
items:
|
|
3527
3542
|
$ref: '#/components/schemas/ListStreamColumn'
|
|
3528
3543
|
type: array
|
|
3544
|
+
conditional_formats:
|
|
3545
|
+
description: Threshold (numeric) conditional formatting rules may be used
|
|
3546
|
+
by a regions layer.
|
|
3547
|
+
items:
|
|
3548
|
+
$ref: '#/components/schemas/WidgetConditionalFormat'
|
|
3549
|
+
type: array
|
|
3529
3550
|
formulas:
|
|
3530
3551
|
description: List of formulas that operate on queries.
|
|
3531
3552
|
items:
|
|
@@ -3551,6 +3572,23 @@ components:
|
|
|
3551
3572
|
$ref: '#/components/schemas/LogQueryDefinition'
|
|
3552
3573
|
sort:
|
|
3553
3574
|
$ref: '#/components/schemas/WidgetSortBy'
|
|
3575
|
+
style:
|
|
3576
|
+
$ref: '#/components/schemas/GeomapWidgetRequestStyle'
|
|
3577
|
+
text_formats:
|
|
3578
|
+
description: Text formatting rules may be used by a points layer.
|
|
3579
|
+
items:
|
|
3580
|
+
$ref: '#/components/schemas/TableWidgetTextFormatRule'
|
|
3581
|
+
type: array
|
|
3582
|
+
type: object
|
|
3583
|
+
GeomapWidgetRequestStyle:
|
|
3584
|
+
description: The style to apply to the request for points layer.
|
|
3585
|
+
example:
|
|
3586
|
+
color_by: status
|
|
3587
|
+
properties:
|
|
3588
|
+
color_by:
|
|
3589
|
+
description: The category to color the points by.
|
|
3590
|
+
example: status
|
|
3591
|
+
type: string
|
|
3554
3592
|
type: object
|
|
3555
3593
|
GraphSnapshot:
|
|
3556
3594
|
description: Object representing a graph snapshot.
|
|
@@ -4243,6 +4281,7 @@ components:
|
|
|
4243
4281
|
- appsec_usage
|
|
4244
4282
|
- asm_serverless_traced_invocations_usage
|
|
4245
4283
|
- asm_serverless_traced_invocations_percentage
|
|
4284
|
+
- bits_ai_investigations_usage
|
|
4246
4285
|
- browser_usage
|
|
4247
4286
|
- ci_pipeline_indexed_spans_usage
|
|
4248
4287
|
- ci_test_indexed_spans_usage
|
|
@@ -4268,6 +4307,7 @@ components:
|
|
|
4268
4307
|
- estimated_indexed_spans_usage
|
|
4269
4308
|
- estimated_ingested_spans_usage
|
|
4270
4309
|
- fargate_usage
|
|
4310
|
+
- flex_stored_logs
|
|
4271
4311
|
- functions_usage
|
|
4272
4312
|
- incident_management_monthly_active_users_usage
|
|
4273
4313
|
- indexed_spans_usage
|
|
@@ -4277,6 +4317,7 @@ components:
|
|
|
4277
4317
|
- invocations_usage
|
|
4278
4318
|
- lambda_traced_invocations_usage
|
|
4279
4319
|
- llm_observability_usage
|
|
4320
|
+
- llm_spans_usage
|
|
4280
4321
|
- logs_indexed_15day_usage
|
|
4281
4322
|
- logs_indexed_180day_usage
|
|
4282
4323
|
- logs_indexed_1day_usage
|
|
@@ -4324,6 +4365,7 @@ components:
|
|
|
4324
4365
|
- APPSEC_USAGE
|
|
4325
4366
|
- ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE
|
|
4326
4367
|
- ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE
|
|
4368
|
+
- BITS_AI_INVESTIGATIONS_USAGE
|
|
4327
4369
|
- BROWSER_USAGE
|
|
4328
4370
|
- CI_PIPELINE_INDEXED_SPANS_USAGE
|
|
4329
4371
|
- CI_TEST_INDEXED_SPANS_USAGE
|
|
@@ -4349,6 +4391,7 @@ components:
|
|
|
4349
4391
|
- ESTIMATED_INDEXED_SPANS_USAGE
|
|
4350
4392
|
- ESTIMATED_INGESTED_SPANS_USAGE
|
|
4351
4393
|
- FARGATE_USAGE
|
|
4394
|
+
- FLEX_STORED_LOGS
|
|
4352
4395
|
- FUNCTIONS_USAGE
|
|
4353
4396
|
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
|
|
4354
4397
|
- INDEXED_SPANS_USAGE
|
|
@@ -4358,6 +4401,7 @@ components:
|
|
|
4358
4401
|
- INVOCATIONS_USAGE
|
|
4359
4402
|
- LAMBDA_TRACED_INVOCATIONS_USAGE
|
|
4360
4403
|
- LLM_OBSERVABILITY_USAGE
|
|
4404
|
+
- LLM_SPANS_USAGE
|
|
4361
4405
|
- LOGS_INDEXED_15DAY_USAGE
|
|
4362
4406
|
- LOGS_INDEXED_180DAY_USAGE
|
|
4363
4407
|
- LOGS_INDEXED_1DAY_USAGE
|
|
@@ -8114,7 +8158,7 @@ components:
|
|
|
8114
8158
|
readOnly: true
|
|
8115
8159
|
type: object
|
|
8116
8160
|
MonitorSearchResponse:
|
|
8117
|
-
description: The response
|
|
8161
|
+
description: The response from a monitor search.
|
|
8118
8162
|
example:
|
|
8119
8163
|
counts:
|
|
8120
8164
|
muted:
|
|
@@ -8660,6 +8704,8 @@ components:
|
|
|
8660
8704
|
- appsec_percentage
|
|
8661
8705
|
- asm_serverless_traced_invocations_usage
|
|
8662
8706
|
- asm_serverless_traced_invocations_percentage
|
|
8707
|
+
- bits_ai_investigations_usage
|
|
8708
|
+
- bits_ai_investigations_percentage
|
|
8663
8709
|
- browser_usage
|
|
8664
8710
|
- browser_percentage
|
|
8665
8711
|
- ci_visibility_itr_usage
|
|
@@ -8702,6 +8748,8 @@ components:
|
|
|
8702
8748
|
- estimated_ingested_spans_percentage
|
|
8703
8749
|
- fargate_usage
|
|
8704
8750
|
- fargate_percentage
|
|
8751
|
+
- flex_stored_logs_usage
|
|
8752
|
+
- flex_stored_logs_percentage
|
|
8705
8753
|
- functions_usage
|
|
8706
8754
|
- functions_percentage
|
|
8707
8755
|
- incident_management_monthly_active_users_usage
|
|
@@ -8714,6 +8762,8 @@ components:
|
|
|
8714
8762
|
- lambda_traced_invocations_percentage
|
|
8715
8763
|
- llm_observability_usage
|
|
8716
8764
|
- llm_observability_percentage
|
|
8765
|
+
- llm_spans_usage
|
|
8766
|
+
- llm_spans_percentage
|
|
8717
8767
|
- mobile_app_testing_percentage
|
|
8718
8768
|
- mobile_app_testing_usage
|
|
8719
8769
|
- ndm_netflow_usage
|
|
@@ -8817,6 +8867,8 @@ components:
|
|
|
8817
8867
|
- APPSEC_PERCENTAGE
|
|
8818
8868
|
- ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE
|
|
8819
8869
|
- ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE
|
|
8870
|
+
- BITS_AI_INVESTIGATIONS_USAGE
|
|
8871
|
+
- BITS_AI_INVESTIGATIONS_PERCENTAGE
|
|
8820
8872
|
- BROWSER_USAGE
|
|
8821
8873
|
- BROWSER_PERCENTAGE
|
|
8822
8874
|
- CI_VISIBILITY_ITR_USAGE
|
|
@@ -8859,6 +8911,8 @@ components:
|
|
|
8859
8911
|
- ESTIMATED_INGESTED_SPANS_PERCENTAGE
|
|
8860
8912
|
- FARGATE_USAGE
|
|
8861
8913
|
- FARGATE_PERCENTAGE
|
|
8914
|
+
- FLEX_STORED_LOGS_USAGE
|
|
8915
|
+
- FLEX_STORED_LOGS_PERCENTAGE
|
|
8862
8916
|
- FUNCTIONS_USAGE
|
|
8863
8917
|
- FUNCTIONS_PERCENTAGE
|
|
8864
8918
|
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
|
|
@@ -8871,6 +8925,8 @@ components:
|
|
|
8871
8925
|
- LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
|
|
8872
8926
|
- LLM_OBSERVABILITY_USAGE
|
|
8873
8927
|
- LLM_OBSERVABILITY_PERCENTAGE
|
|
8928
|
+
- LLM_SPANS_USAGE
|
|
8929
|
+
- LLM_SPANS_PERCENTAGE
|
|
8874
8930
|
- MOBILE_APP_TESTING_USAGE
|
|
8875
8931
|
- MOBILE_APP_TESTING_PERCENTAGE
|
|
8876
8932
|
- NDM_NETFLOW_USAGE
|
|
@@ -9026,6 +9082,14 @@ components:
|
|
|
9026
9082
|
usage by tag(s).
|
|
9027
9083
|
format: double
|
|
9028
9084
|
type: number
|
|
9085
|
+
bits_ai_investigations_percentage:
|
|
9086
|
+
description: The percentage of Bits AI `SRE` investigation usage by tag(s).
|
|
9087
|
+
format: double
|
|
9088
|
+
type: number
|
|
9089
|
+
bits_ai_investigations_usage:
|
|
9090
|
+
description: The Bits AI `SRE` investigation usage by tag(s).
|
|
9091
|
+
format: double
|
|
9092
|
+
type: number
|
|
9029
9093
|
browser_percentage:
|
|
9030
9094
|
description: The percentage of synthetic browser test usage by tag(s).
|
|
9031
9095
|
format: double
|
|
@@ -9218,6 +9282,14 @@ components:
|
|
|
9218
9282
|
description: The Fargate usage by tags.
|
|
9219
9283
|
format: double
|
|
9220
9284
|
type: number
|
|
9285
|
+
flex_stored_logs_percentage:
|
|
9286
|
+
description: The percentage of Flex Stored Logs usage by tags.
|
|
9287
|
+
format: double
|
|
9288
|
+
type: number
|
|
9289
|
+
flex_stored_logs_usage:
|
|
9290
|
+
description: The Flex Stored Logs usage by tags.
|
|
9291
|
+
format: double
|
|
9292
|
+
type: number
|
|
9221
9293
|
functions_percentage:
|
|
9222
9294
|
description: The percentage of Lambda function usage by tag(s).
|
|
9223
9295
|
format: double
|
|
@@ -9291,6 +9363,14 @@ components:
|
|
|
9291
9363
|
description: The LLM Observability usage by tag(s).
|
|
9292
9364
|
format: double
|
|
9293
9365
|
type: number
|
|
9366
|
+
llm_spans_percentage:
|
|
9367
|
+
description: The percentage of LLM Spans usage by tag(s).
|
|
9368
|
+
format: double
|
|
9369
|
+
type: number
|
|
9370
|
+
llm_spans_usage:
|
|
9371
|
+
description: The LLM Spans usage by tag(s).
|
|
9372
|
+
format: double
|
|
9373
|
+
type: number
|
|
9294
9374
|
logs_indexed_15day_percentage:
|
|
9295
9375
|
description: The percentage of Indexed Logs (15-day Retention) usage by
|
|
9296
9376
|
tag(s).
|
|
@@ -16502,7 +16582,7 @@ components:
|
|
|
16502
16582
|
tests:
|
|
16503
16583
|
description: Array of Synthetic tests configuration.
|
|
16504
16584
|
items:
|
|
16505
|
-
$ref: '#/components/schemas/
|
|
16585
|
+
$ref: '#/components/schemas/SyntheticsTestDetailsWithoutSteps'
|
|
16506
16586
|
type: array
|
|
16507
16587
|
type: object
|
|
16508
16588
|
SyntheticsLocalVariableParsingOptionsType:
|
|
@@ -17533,7 +17613,7 @@ components:
|
|
|
17533
17613
|
status:
|
|
17534
17614
|
$ref: '#/components/schemas/SyntheticsTestPauseStatus'
|
|
17535
17615
|
steps:
|
|
17536
|
-
description:
|
|
17616
|
+
description: The steps of the test if they exist.
|
|
17537
17617
|
items:
|
|
17538
17618
|
$ref: '#/components/schemas/SyntheticsStep'
|
|
17539
17619
|
type: array
|
|
@@ -17585,6 +17665,52 @@ components:
|
|
|
17585
17665
|
- API
|
|
17586
17666
|
- BROWSER
|
|
17587
17667
|
- MOBILE
|
|
17668
|
+
SyntheticsTestDetailsWithoutSteps:
|
|
17669
|
+
description: Object containing details about your Synthetic test, without test
|
|
17670
|
+
steps.
|
|
17671
|
+
properties:
|
|
17672
|
+
config:
|
|
17673
|
+
$ref: '#/components/schemas/SyntheticsTestConfig'
|
|
17674
|
+
creator:
|
|
17675
|
+
$ref: '#/components/schemas/Creator'
|
|
17676
|
+
locations:
|
|
17677
|
+
description: Array of locations used to run the test.
|
|
17678
|
+
example:
|
|
17679
|
+
- aws:eu-west-3
|
|
17680
|
+
items:
|
|
17681
|
+
description: A location from which the test was run.
|
|
17682
|
+
type: string
|
|
17683
|
+
type: array
|
|
17684
|
+
message:
|
|
17685
|
+
description: Notification message associated with the test.
|
|
17686
|
+
type: string
|
|
17687
|
+
monitor_id:
|
|
17688
|
+
description: The associated monitor ID.
|
|
17689
|
+
format: int64
|
|
17690
|
+
readOnly: true
|
|
17691
|
+
type: integer
|
|
17692
|
+
name:
|
|
17693
|
+
description: Name of the test.
|
|
17694
|
+
type: string
|
|
17695
|
+
options:
|
|
17696
|
+
$ref: '#/components/schemas/SyntheticsTestOptions'
|
|
17697
|
+
public_id:
|
|
17698
|
+
description: The test public ID.
|
|
17699
|
+
readOnly: true
|
|
17700
|
+
type: string
|
|
17701
|
+
status:
|
|
17702
|
+
$ref: '#/components/schemas/SyntheticsTestPauseStatus'
|
|
17703
|
+
subtype:
|
|
17704
|
+
$ref: '#/components/schemas/SyntheticsTestDetailsSubType'
|
|
17705
|
+
tags:
|
|
17706
|
+
description: Array of tags attached to the test.
|
|
17707
|
+
items:
|
|
17708
|
+
description: A tag attached to the test.
|
|
17709
|
+
type: string
|
|
17710
|
+
type: array
|
|
17711
|
+
type:
|
|
17712
|
+
$ref: '#/components/schemas/SyntheticsTestDetailsType'
|
|
17713
|
+
type: object
|
|
17588
17714
|
SyntheticsTestExecutionRule:
|
|
17589
17715
|
description: Execution rule for a Synthetic test.
|
|
17590
17716
|
enum:
|
|
@@ -20900,6 +21026,11 @@ components:
|
|
|
20900
21026
|
for the given date and given organization.
|
|
20901
21027
|
format: int64
|
|
20902
21028
|
type: integer
|
|
21029
|
+
cloud_cost_management_oci_host_count_avg:
|
|
21030
|
+
description: Average host count for Cloud Cost Management on OCI for the
|
|
21031
|
+
given date and organization.
|
|
21032
|
+
format: int64
|
|
21033
|
+
type: integer
|
|
20903
21034
|
cloud_siem_events_sum:
|
|
20904
21035
|
description: Shows the sum of all Cloud Security Information and Event Management
|
|
20905
21036
|
events over all hours in the current date for the given org.
|
|
@@ -21134,6 +21265,11 @@ components:
|
|
|
21134
21265
|
Plus over all hours in the current date for the given org.
|
|
21135
21266
|
format: int64
|
|
21136
21267
|
type: integer
|
|
21268
|
+
eph_infra_host_proxmox_sum:
|
|
21269
|
+
description: Sum of all ephemeral infrastructure hosts for Proxmox over
|
|
21270
|
+
all hours in the current date for all organizations.
|
|
21271
|
+
format: int64
|
|
21272
|
+
type: integer
|
|
21137
21273
|
error_tracking_apm_error_events_sum:
|
|
21138
21274
|
description: Shows the sum of all Error Tracking APM error events over all
|
|
21139
21275
|
hours in the current date for the given org.
|
|
@@ -21430,6 +21566,16 @@ components:
|
|
|
21430
21566
|
within the current date for all organizations.
|
|
21431
21567
|
format: int64
|
|
21432
21568
|
type: integer
|
|
21569
|
+
proxmox_host_sum:
|
|
21570
|
+
description: Sum of all Proxmox hosts over all hours in the current date
|
|
21571
|
+
for all organizations.
|
|
21572
|
+
format: int64
|
|
21573
|
+
type: integer
|
|
21574
|
+
proxmox_host_top99p:
|
|
21575
|
+
description: 99th percentile of all Proxmox hosts over all hours in the
|
|
21576
|
+
current date for all organizations.
|
|
21577
|
+
format: int64
|
|
21578
|
+
type: integer
|
|
21433
21579
|
published_app_hwm:
|
|
21434
21580
|
description: Shows the high-water mark of all published applications over
|
|
21435
21581
|
all hours in the current date for all organizations.
|
|
@@ -22013,6 +22159,11 @@ components:
|
|
|
22013
22159
|
for the given date and given org.
|
|
22014
22160
|
format: int64
|
|
22015
22161
|
type: integer
|
|
22162
|
+
cloud_cost_management_oci_host_count_avg:
|
|
22163
|
+
description: Average host count for Cloud Cost Management on OCI for the
|
|
22164
|
+
given date and organization.
|
|
22165
|
+
format: int64
|
|
22166
|
+
type: integer
|
|
22016
22167
|
cloud_siem_events_sum:
|
|
22017
22168
|
description: Shows the sum of all Cloud Security Information and Event Management
|
|
22018
22169
|
events over all hours in the current date for the given org.
|
|
@@ -22253,6 +22404,11 @@ components:
|
|
|
22253
22404
|
Plus over all hours in the current date for the given org.
|
|
22254
22405
|
format: int64
|
|
22255
22406
|
type: integer
|
|
22407
|
+
eph_infra_host_proxmox_sum:
|
|
22408
|
+
description: Sum of all ephemeral infrastructure hosts for Proxmox over
|
|
22409
|
+
all hours in the current date for the given organization.
|
|
22410
|
+
format: int64
|
|
22411
|
+
type: integer
|
|
22256
22412
|
error_tracking_apm_error_events_sum:
|
|
22257
22413
|
description: Shows the sum of all Error Tracking APM error events over all
|
|
22258
22414
|
hours in the current date for the given org.
|
|
@@ -22547,6 +22703,16 @@ components:
|
|
|
22547
22703
|
within the current date for the given org.
|
|
22548
22704
|
format: int64
|
|
22549
22705
|
type: integer
|
|
22706
|
+
proxmox_host_sum:
|
|
22707
|
+
description: Sum of all Proxmox hosts over all hours in the current date
|
|
22708
|
+
for the given organization.
|
|
22709
|
+
format: int64
|
|
22710
|
+
type: integer
|
|
22711
|
+
proxmox_host_top99p:
|
|
22712
|
+
description: 99th percentile of all Proxmox hosts over all hours in the
|
|
22713
|
+
current date for the given organization.
|
|
22714
|
+
format: int64
|
|
22715
|
+
type: integer
|
|
22550
22716
|
public_id:
|
|
22551
22717
|
description: The organization public id.
|
|
22552
22718
|
type: string
|
|
@@ -23136,6 +23302,11 @@ components:
|
|
|
23136
23302
|
all cloud providers.
|
|
23137
23303
|
format: int64
|
|
23138
23304
|
type: integer
|
|
23305
|
+
cloud_cost_management_oci_host_count_avg_sum:
|
|
23306
|
+
description: Sum of the average host counts for Cloud Cost Management on
|
|
23307
|
+
OCI.
|
|
23308
|
+
format: int64
|
|
23309
|
+
type: integer
|
|
23139
23310
|
cloud_siem_events_agg_sum:
|
|
23140
23311
|
description: Shows the sum of all Cloud Security Information and Event Management
|
|
23141
23312
|
events over all hours in the current month for all organizations.
|
|
@@ -23377,6 +23548,11 @@ components:
|
|
|
23377
23548
|
Plus over all hours in the current month for all organizations.
|
|
23378
23549
|
format: int64
|
|
23379
23550
|
type: integer
|
|
23551
|
+
eph_infra_host_proxmox_agg_sum:
|
|
23552
|
+
description: Sum of all ephemeral infrastructure hosts for Proxmox over
|
|
23553
|
+
all hours in the current month for all organizations.
|
|
23554
|
+
format: int64
|
|
23555
|
+
type: integer
|
|
23380
23556
|
error_tracking_apm_error_events_agg_sum:
|
|
23381
23557
|
description: Shows the sum of all Error Tracking APM error events over all
|
|
23382
23558
|
hours in the current month for all organizations.
|
|
@@ -23695,6 +23871,16 @@ components:
|
|
|
23695
23871
|
in the current month for all organizations.
|
|
23696
23872
|
format: int64
|
|
23697
23873
|
type: integer
|
|
23874
|
+
proxmox_host_agg_sum:
|
|
23875
|
+
description: Sum of all Proxmox hosts over all hours in the current month
|
|
23876
|
+
for all organizations.
|
|
23877
|
+
format: int64
|
|
23878
|
+
type: integer
|
|
23879
|
+
proxmox_host_top99p_sum:
|
|
23880
|
+
description: Sum of the 99th percentile of all Proxmox hosts over all hours
|
|
23881
|
+
in the current month for all organizations.
|
|
23882
|
+
format: int64
|
|
23883
|
+
type: integer
|
|
23698
23884
|
published_app_hwm_sum:
|
|
23699
23885
|
description: Shows the high-water mark of all published applications over
|
|
23700
23886
|
all hours in the current month for all organizations.
|
|
@@ -35117,7 +35303,7 @@ paths:
|
|
|
35117
35303
|
content:
|
|
35118
35304
|
application/json:
|
|
35119
35305
|
schema:
|
|
35120
|
-
$ref: '#/components/schemas/
|
|
35306
|
+
$ref: '#/components/schemas/SyntheticsTestDetailsWithoutSteps'
|
|
35121
35307
|
description: OK
|
|
35122
35308
|
'403':
|
|
35123
35309
|
content:
|
|
@@ -36501,7 +36687,10 @@ paths:
|
|
|
36501
36687
|
code example:\n\n```\nresponse := GetHourlyUsageAttribution(start_month)\ncursor
|
|
36502
36688
|
:= response.metadata.pagination.next_record_id\nWHILE cursor != null BEGIN\n
|
|
36503
36689
|
\ sleep(5 seconds) # Avoid running into rate limit\n response := GetHourlyUsageAttribution(start_month,
|
|
36504
|
-
next_record_id=cursor)\n cursor := response.metadata.pagination.next_record_id\nEND\n
|
|
36690
|
+
next_record_id=cursor)\n cursor := response.metadata.pagination.next_record_id\nEND\n```\nThe
|
|
36691
|
+
following values have been **deprecated**:\n `estimated_indexed_spans_usage`,
|
|
36692
|
+
`estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`,
|
|
36693
|
+
`llm_observability_usage`, `llm_observability_percentage`."
|
|
36505
36694
|
operationId: GetHourlyUsageAttribution
|
|
36506
36695
|
parameters:
|
|
36507
36696
|
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
@@ -37080,7 +37269,7 @@ paths:
|
|
|
37080
37269
|
The following values have been **deprecated**:
|
|
37081
37270
|
|
|
37082
37271
|
`estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`,
|
|
37083
|
-
`estimated_ingested_spans_percentage`.'
|
|
37272
|
+
`estimated_ingested_spans_percentage`, `llm_observability_usage`, `llm_observability_percentage`.'
|
|
37084
37273
|
in: query
|
|
37085
37274
|
name: fields
|
|
37086
37275
|
required: true
|