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
|
@@ -36,6 +36,9 @@ module DatadogAPIClient::V1
|
|
|
36
36
|
# Metrics query definition.
|
|
37
37
|
attr_reader :query
|
|
38
38
|
|
|
39
|
+
# Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed.
|
|
40
|
+
attr_accessor :semantic_mode
|
|
41
|
+
|
|
39
42
|
attr_accessor :additional_properties
|
|
40
43
|
|
|
41
44
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -46,7 +49,8 @@ module DatadogAPIClient::V1
|
|
|
46
49
|
:'cross_org_uuids' => :'cross_org_uuids',
|
|
47
50
|
:'data_source' => :'data_source',
|
|
48
51
|
:'name' => :'name',
|
|
49
|
-
:'query' => :'query'
|
|
52
|
+
:'query' => :'query',
|
|
53
|
+
:'semantic_mode' => :'semantic_mode'
|
|
50
54
|
}
|
|
51
55
|
end
|
|
52
56
|
|
|
@@ -58,7 +62,8 @@ module DatadogAPIClient::V1
|
|
|
58
62
|
:'cross_org_uuids' => :'Array<String>',
|
|
59
63
|
:'data_source' => :'FormulaAndFunctionMetricDataSource',
|
|
60
64
|
:'name' => :'String',
|
|
61
|
-
:'query' => :'String'
|
|
65
|
+
:'query' => :'String',
|
|
66
|
+
:'semantic_mode' => :'FormulaAndFunctionMetricSemanticMode'
|
|
62
67
|
}
|
|
63
68
|
end
|
|
64
69
|
|
|
@@ -101,6 +106,10 @@ module DatadogAPIClient::V1
|
|
|
101
106
|
if attributes.key?(:'query')
|
|
102
107
|
self.query = attributes[:'query']
|
|
103
108
|
end
|
|
109
|
+
|
|
110
|
+
if attributes.key?(:'semantic_mode')
|
|
111
|
+
self.semantic_mode = attributes[:'semantic_mode']
|
|
112
|
+
end
|
|
104
113
|
end
|
|
105
114
|
|
|
106
115
|
# Check to see if the all the properties in the model are valid
|
|
@@ -185,6 +194,7 @@ module DatadogAPIClient::V1
|
|
|
185
194
|
data_source == o.data_source &&
|
|
186
195
|
name == o.name &&
|
|
187
196
|
query == o.query &&
|
|
197
|
+
semantic_mode == o.semantic_mode &&
|
|
188
198
|
additional_properties == o.additional_properties
|
|
189
199
|
end
|
|
190
200
|
|
|
@@ -192,7 +202,7 @@ module DatadogAPIClient::V1
|
|
|
192
202
|
# @return [Integer] Hash code
|
|
193
203
|
# @!visibility private
|
|
194
204
|
def hash
|
|
195
|
-
[aggregator, cross_org_uuids, data_source, name, query, additional_properties].hash
|
|
205
|
+
[aggregator, cross_org_uuids, data_source, name, query, semantic_mode, additional_properties].hash
|
|
196
206
|
end
|
|
197
207
|
end
|
|
198
208
|
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V1 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V1
|
|
20
|
+
# Semantic mode for metrics queries. This determines how metrics from different sources are combined or displayed.
|
|
21
|
+
class FormulaAndFunctionMetricSemanticMode
|
|
22
|
+
include BaseEnumModel
|
|
23
|
+
|
|
24
|
+
COMBINED = "combined".freeze
|
|
25
|
+
NATIVE = "native".freeze
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -24,8 +24,7 @@ module DatadogAPIClient::V1
|
|
|
24
24
|
# A list of custom links.
|
|
25
25
|
attr_accessor :custom_links
|
|
26
26
|
|
|
27
|
-
# Array of
|
|
28
|
-
#
|
|
27
|
+
# Array of request objects to display in the widget. May include an optional request for the region layer and/or an optional request for the points layer. Region layer requests must contain a `group-by` tag whose value is a country ISO code.
|
|
29
28
|
# See the [Request JSON schema documentation](https://docs.datadoghq.com/dashboards/graphing_json/request_json)
|
|
30
29
|
# for information about building the `REQUEST_SCHEMA`.
|
|
31
30
|
attr_reader :requests
|
|
@@ -149,7 +148,7 @@ module DatadogAPIClient::V1
|
|
|
149
148
|
# @!visibility private
|
|
150
149
|
def valid?
|
|
151
150
|
return false if @requests.nil?
|
|
152
|
-
return false if @requests.length >
|
|
151
|
+
return false if @requests.length > 2
|
|
153
152
|
return false if @requests.length < 1
|
|
154
153
|
return false if @style.nil?
|
|
155
154
|
return false if @type.nil?
|
|
@@ -164,8 +163,8 @@ module DatadogAPIClient::V1
|
|
|
164
163
|
if requests.nil?
|
|
165
164
|
fail ArgumentError, 'invalid value for "requests", requests cannot be nil.'
|
|
166
165
|
end
|
|
167
|
-
if requests.length >
|
|
168
|
-
fail ArgumentError, 'invalid value for "requests", number of items must be less than or equal to
|
|
166
|
+
if requests.length > 2
|
|
167
|
+
fail ArgumentError, 'invalid value for "requests", number of items must be less than or equal to 2.'
|
|
169
168
|
end
|
|
170
169
|
if requests.length < 1
|
|
171
170
|
fail ArgumentError, 'invalid value for "requests", number of items must be greater than or equal to 1.'
|
|
@@ -21,7 +21,7 @@ module DatadogAPIClient::V1
|
|
|
21
21
|
class GeomapWidgetDefinitionView
|
|
22
22
|
include BaseGenericModel
|
|
23
23
|
|
|
24
|
-
# The 2-letter ISO code of a country to focus the map on
|
|
24
|
+
# The 2-letter ISO code of a country to focus the map on, or `WORLD` for global view, or a region (`EMEA`, `APAC`, `LATAM`), or a continent (`NORTH_AMERICA`, `SOUTH_AMERICA`, `EUROPE`, `AFRICA`, `ASIA`, `OCEANIA`).
|
|
25
25
|
attr_reader :focus
|
|
26
26
|
|
|
27
27
|
attr_accessor :additional_properties
|
|
@@ -24,6 +24,9 @@ module DatadogAPIClient::V1
|
|
|
24
24
|
# Widget columns.
|
|
25
25
|
attr_accessor :columns
|
|
26
26
|
|
|
27
|
+
# Threshold (numeric) conditional formatting rules may be used by a regions layer.
|
|
28
|
+
attr_accessor :conditional_formats
|
|
29
|
+
|
|
27
30
|
# List of formulas that operate on queries.
|
|
28
31
|
attr_accessor :formulas
|
|
29
32
|
|
|
@@ -51,6 +54,12 @@ module DatadogAPIClient::V1
|
|
|
51
54
|
# The controls for sorting the widget.
|
|
52
55
|
attr_accessor :sort
|
|
53
56
|
|
|
57
|
+
# The style to apply to the request for points layer.
|
|
58
|
+
attr_accessor :style
|
|
59
|
+
|
|
60
|
+
# Text formatting rules may be used by a points layer.
|
|
61
|
+
attr_accessor :text_formats
|
|
62
|
+
|
|
54
63
|
attr_accessor :additional_properties
|
|
55
64
|
|
|
56
65
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -58,6 +67,7 @@ module DatadogAPIClient::V1
|
|
|
58
67
|
def self.attribute_map
|
|
59
68
|
{
|
|
60
69
|
:'columns' => :'columns',
|
|
70
|
+
:'conditional_formats' => :'conditional_formats',
|
|
61
71
|
:'formulas' => :'formulas',
|
|
62
72
|
:'log_query' => :'log_query',
|
|
63
73
|
:'q' => :'q',
|
|
@@ -66,7 +76,9 @@ module DatadogAPIClient::V1
|
|
|
66
76
|
:'response_format' => :'response_format',
|
|
67
77
|
:'rum_query' => :'rum_query',
|
|
68
78
|
:'security_query' => :'security_query',
|
|
69
|
-
:'sort' => :'sort'
|
|
79
|
+
:'sort' => :'sort',
|
|
80
|
+
:'style' => :'style',
|
|
81
|
+
:'text_formats' => :'text_formats'
|
|
70
82
|
}
|
|
71
83
|
end
|
|
72
84
|
|
|
@@ -75,6 +87,7 @@ module DatadogAPIClient::V1
|
|
|
75
87
|
def self.openapi_types
|
|
76
88
|
{
|
|
77
89
|
:'columns' => :'Array<ListStreamColumn>',
|
|
90
|
+
:'conditional_formats' => :'Array<WidgetConditionalFormat>',
|
|
78
91
|
:'formulas' => :'Array<WidgetFormula>',
|
|
79
92
|
:'log_query' => :'LogQueryDefinition',
|
|
80
93
|
:'q' => :'String',
|
|
@@ -83,7 +96,9 @@ module DatadogAPIClient::V1
|
|
|
83
96
|
:'response_format' => :'FormulaAndFunctionResponseFormat',
|
|
84
97
|
:'rum_query' => :'LogQueryDefinition',
|
|
85
98
|
:'security_query' => :'LogQueryDefinition',
|
|
86
|
-
:'sort' => :'WidgetSortBy'
|
|
99
|
+
:'sort' => :'WidgetSortBy',
|
|
100
|
+
:'style' => :'GeomapWidgetRequestStyle',
|
|
101
|
+
:'text_formats' => :'Array<TableWidgetTextFormatRule>'
|
|
87
102
|
}
|
|
88
103
|
end
|
|
89
104
|
|
|
@@ -111,6 +126,12 @@ module DatadogAPIClient::V1
|
|
|
111
126
|
end
|
|
112
127
|
end
|
|
113
128
|
|
|
129
|
+
if attributes.key?(:'conditional_formats')
|
|
130
|
+
if (value = attributes[:'conditional_formats']).is_a?(Array)
|
|
131
|
+
self.conditional_formats = value
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
|
|
114
135
|
if attributes.key?(:'formulas')
|
|
115
136
|
if (value = attributes[:'formulas']).is_a?(Array)
|
|
116
137
|
self.formulas = value
|
|
@@ -150,6 +171,16 @@ module DatadogAPIClient::V1
|
|
|
150
171
|
if attributes.key?(:'sort')
|
|
151
172
|
self.sort = attributes[:'sort']
|
|
152
173
|
end
|
|
174
|
+
|
|
175
|
+
if attributes.key?(:'style')
|
|
176
|
+
self.style = attributes[:'style']
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
if attributes.key?(:'text_formats')
|
|
180
|
+
if (value = attributes[:'text_formats']).is_a?(Array)
|
|
181
|
+
self.text_formats = value
|
|
182
|
+
end
|
|
183
|
+
end
|
|
153
184
|
end
|
|
154
185
|
|
|
155
186
|
# Returns the object in the form of hash, with additionalProperties support.
|
|
@@ -179,6 +210,7 @@ module DatadogAPIClient::V1
|
|
|
179
210
|
return true if self.equal?(o)
|
|
180
211
|
self.class == o.class &&
|
|
181
212
|
columns == o.columns &&
|
|
213
|
+
conditional_formats == o.conditional_formats &&
|
|
182
214
|
formulas == o.formulas &&
|
|
183
215
|
log_query == o.log_query &&
|
|
184
216
|
q == o.q &&
|
|
@@ -188,6 +220,8 @@ module DatadogAPIClient::V1
|
|
|
188
220
|
rum_query == o.rum_query &&
|
|
189
221
|
security_query == o.security_query &&
|
|
190
222
|
sort == o.sort &&
|
|
223
|
+
style == o.style &&
|
|
224
|
+
text_formats == o.text_formats &&
|
|
191
225
|
additional_properties == o.additional_properties
|
|
192
226
|
end
|
|
193
227
|
|
|
@@ -195,7 +229,7 @@ module DatadogAPIClient::V1
|
|
|
195
229
|
# @return [Integer] Hash code
|
|
196
230
|
# @!visibility private
|
|
197
231
|
def hash
|
|
198
|
-
[columns, formulas, log_query, q, queries, query, response_format, rum_query, security_query, sort, additional_properties].hash
|
|
232
|
+
[columns, conditional_formats, formulas, log_query, q, queries, query, response_format, rum_query, security_query, sort, style, text_formats, additional_properties].hash
|
|
199
233
|
end
|
|
200
234
|
end
|
|
201
235
|
end
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V1 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V1
|
|
20
|
+
# The style to apply to the request for points layer.
|
|
21
|
+
class GeomapWidgetRequestStyle
|
|
22
|
+
include BaseGenericModel
|
|
23
|
+
|
|
24
|
+
# The category to color the points by.
|
|
25
|
+
attr_accessor :color_by
|
|
26
|
+
|
|
27
|
+
attr_accessor :additional_properties
|
|
28
|
+
|
|
29
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
30
|
+
# @!visibility private
|
|
31
|
+
def self.attribute_map
|
|
32
|
+
{
|
|
33
|
+
:'color_by' => :'color_by'
|
|
34
|
+
}
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
# Attribute type mapping.
|
|
38
|
+
# @!visibility private
|
|
39
|
+
def self.openapi_types
|
|
40
|
+
{
|
|
41
|
+
:'color_by' => :'String'
|
|
42
|
+
}
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
# Initializes the object
|
|
46
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
47
|
+
# @!visibility private
|
|
48
|
+
def initialize(attributes = {})
|
|
49
|
+
if (!attributes.is_a?(Hash))
|
|
50
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::GeomapWidgetRequestStyle` initialize method"
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
self.additional_properties = {}
|
|
54
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
55
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
56
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
57
|
+
self.additional_properties[k.to_sym] = v
|
|
58
|
+
else
|
|
59
|
+
h[k.to_sym] = v
|
|
60
|
+
end
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if attributes.key?(:'color_by')
|
|
64
|
+
self.color_by = attributes[:'color_by']
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Returns the object in the form of hash, with additionalProperties support.
|
|
69
|
+
# @return [Hash] Returns the object in the form of hash
|
|
70
|
+
# @!visibility private
|
|
71
|
+
def to_hash
|
|
72
|
+
hash = {}
|
|
73
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
74
|
+
value = self.send(attr)
|
|
75
|
+
if value.nil?
|
|
76
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
77
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
hash[param] = _to_hash(value)
|
|
81
|
+
end
|
|
82
|
+
self.additional_properties.each_pair do |attr, value|
|
|
83
|
+
hash[attr] = value
|
|
84
|
+
end
|
|
85
|
+
hash
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# Checks equality by comparing each attribute.
|
|
89
|
+
# @param o [Object] Object to be compared
|
|
90
|
+
# @!visibility private
|
|
91
|
+
def ==(o)
|
|
92
|
+
return true if self.equal?(o)
|
|
93
|
+
self.class == o.class &&
|
|
94
|
+
color_by == o.color_by &&
|
|
95
|
+
additional_properties == o.additional_properties
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
# Calculates hash code according to all attributes.
|
|
99
|
+
# @return [Integer] Hash code
|
|
100
|
+
# @!visibility private
|
|
101
|
+
def hash
|
|
102
|
+
[color_by, additional_properties].hash
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
end
|
|
@@ -30,6 +30,7 @@ module DatadogAPIClient::V1
|
|
|
30
30
|
APPSEC_USAGE = "appsec_usage".freeze
|
|
31
31
|
ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE = "asm_serverless_traced_invocations_usage".freeze
|
|
32
32
|
ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE = "asm_serverless_traced_invocations_percentage".freeze
|
|
33
|
+
BITS_AI_INVESTIGATIONS_USAGE = "bits_ai_investigations_usage".freeze
|
|
33
34
|
BROWSER_USAGE = "browser_usage".freeze
|
|
34
35
|
CI_PIPELINE_INDEXED_SPANS_USAGE = "ci_pipeline_indexed_spans_usage".freeze
|
|
35
36
|
CI_TEST_INDEXED_SPANS_USAGE = "ci_test_indexed_spans_usage".freeze
|
|
@@ -55,6 +56,7 @@ module DatadogAPIClient::V1
|
|
|
55
56
|
ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage".freeze
|
|
56
57
|
ESTIMATED_INGESTED_SPANS_USAGE = "estimated_ingested_spans_usage".freeze
|
|
57
58
|
FARGATE_USAGE = "fargate_usage".freeze
|
|
59
|
+
FLEX_STORED_LOGS = "flex_stored_logs".freeze
|
|
58
60
|
FUNCTIONS_USAGE = "functions_usage".freeze
|
|
59
61
|
INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE = "incident_management_monthly_active_users_usage".freeze
|
|
60
62
|
INDEXED_SPANS_USAGE = "indexed_spans_usage".freeze
|
|
@@ -64,6 +66,7 @@ module DatadogAPIClient::V1
|
|
|
64
66
|
INVOCATIONS_USAGE = "invocations_usage".freeze
|
|
65
67
|
LAMBDA_TRACED_INVOCATIONS_USAGE = "lambda_traced_invocations_usage".freeze
|
|
66
68
|
LLM_OBSERVABILITY_USAGE = "llm_observability_usage".freeze
|
|
69
|
+
LLM_SPANS_USAGE = "llm_spans_usage".freeze
|
|
67
70
|
LOGS_INDEXED_15DAY_USAGE = "logs_indexed_15day_usage".freeze
|
|
68
71
|
LOGS_INDEXED_180DAY_USAGE = "logs_indexed_180day_usage".freeze
|
|
69
72
|
LOGS_INDEXED_1DAY_USAGE = "logs_indexed_1day_usage".freeze
|
|
@@ -35,6 +35,8 @@ module DatadogAPIClient::V1
|
|
|
35
35
|
APPSEC_PERCENTAGE = "appsec_percentage".freeze
|
|
36
36
|
ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE = "asm_serverless_traced_invocations_usage".freeze
|
|
37
37
|
ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE = "asm_serverless_traced_invocations_percentage".freeze
|
|
38
|
+
BITS_AI_INVESTIGATIONS_USAGE = "bits_ai_investigations_usage".freeze
|
|
39
|
+
BITS_AI_INVESTIGATIONS_PERCENTAGE = "bits_ai_investigations_percentage".freeze
|
|
38
40
|
BROWSER_USAGE = "browser_usage".freeze
|
|
39
41
|
BROWSER_PERCENTAGE = "browser_percentage".freeze
|
|
40
42
|
CI_VISIBILITY_ITR_USAGE = "ci_visibility_itr_usage".freeze
|
|
@@ -77,6 +79,8 @@ module DatadogAPIClient::V1
|
|
|
77
79
|
ESTIMATED_INGESTED_SPANS_PERCENTAGE = "estimated_ingested_spans_percentage".freeze
|
|
78
80
|
FARGATE_USAGE = "fargate_usage".freeze
|
|
79
81
|
FARGATE_PERCENTAGE = "fargate_percentage".freeze
|
|
82
|
+
FLEX_STORED_LOGS_USAGE = "flex_stored_logs_usage".freeze
|
|
83
|
+
FLEX_STORED_LOGS_PERCENTAGE = "flex_stored_logs_percentage".freeze
|
|
80
84
|
FUNCTIONS_USAGE = "functions_usage".freeze
|
|
81
85
|
FUNCTIONS_PERCENTAGE = "functions_percentage".freeze
|
|
82
86
|
INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE = "incident_management_monthly_active_users_usage".freeze
|
|
@@ -89,6 +93,8 @@ module DatadogAPIClient::V1
|
|
|
89
93
|
LAMBDA_TRACED_INVOCATIONS_PERCENTAGE = "lambda_traced_invocations_percentage".freeze
|
|
90
94
|
LLM_OBSERVABILITY_USAGE = "llm_observability_usage".freeze
|
|
91
95
|
LLM_OBSERVABILITY_PERCENTAGE = "llm_observability_percentage".freeze
|
|
96
|
+
LLM_SPANS_USAGE = "llm_spans_usage".freeze
|
|
97
|
+
LLM_SPANS_PERCENTAGE = "llm_spans_percentage".freeze
|
|
92
98
|
MOBILE_APP_TESTING_USAGE = "mobile_app_testing_percentage".freeze
|
|
93
99
|
MOBILE_APP_TESTING_PERCENTAGE = "mobile_app_testing_usage".freeze
|
|
94
100
|
NDM_NETFLOW_USAGE = "ndm_netflow_usage".freeze
|
|
@@ -64,6 +64,12 @@ module DatadogAPIClient::V1
|
|
|
64
64
|
# The Application Security Monitoring Serverless traced invocations usage by tag(s).
|
|
65
65
|
attr_accessor :asm_serverless_traced_invocations_usage
|
|
66
66
|
|
|
67
|
+
# The percentage of Bits AI `SRE` investigation usage by tag(s).
|
|
68
|
+
attr_accessor :bits_ai_investigations_percentage
|
|
69
|
+
|
|
70
|
+
# The Bits AI `SRE` investigation usage by tag(s).
|
|
71
|
+
attr_accessor :bits_ai_investigations_usage
|
|
72
|
+
|
|
67
73
|
# The percentage of synthetic browser test usage by tag(s).
|
|
68
74
|
attr_accessor :browser_percentage
|
|
69
75
|
|
|
@@ -202,6 +208,12 @@ module DatadogAPIClient::V1
|
|
|
202
208
|
# The Fargate usage by tags.
|
|
203
209
|
attr_accessor :fargate_usage
|
|
204
210
|
|
|
211
|
+
# The percentage of Flex Stored Logs usage by tags.
|
|
212
|
+
attr_accessor :flex_stored_logs_percentage
|
|
213
|
+
|
|
214
|
+
# The Flex Stored Logs usage by tags.
|
|
215
|
+
attr_accessor :flex_stored_logs_usage
|
|
216
|
+
|
|
205
217
|
# The percentage of Lambda function usage by tag(s).
|
|
206
218
|
attr_accessor :functions_percentage
|
|
207
219
|
|
|
@@ -256,6 +268,12 @@ module DatadogAPIClient::V1
|
|
|
256
268
|
# The LLM Observability usage by tag(s).
|
|
257
269
|
attr_accessor :llm_observability_usage
|
|
258
270
|
|
|
271
|
+
# The percentage of LLM Spans usage by tag(s).
|
|
272
|
+
attr_accessor :llm_spans_percentage
|
|
273
|
+
|
|
274
|
+
# The LLM Spans usage by tag(s).
|
|
275
|
+
attr_accessor :llm_spans_usage
|
|
276
|
+
|
|
259
277
|
# The percentage of Indexed Logs (15-day Retention) usage by tag(s).
|
|
260
278
|
attr_accessor :logs_indexed_15day_percentage
|
|
261
279
|
|
|
@@ -498,6 +516,8 @@ module DatadogAPIClient::V1
|
|
|
498
516
|
:'appsec_usage' => :'appsec_usage',
|
|
499
517
|
:'asm_serverless_traced_invocations_percentage' => :'asm_serverless_traced_invocations_percentage',
|
|
500
518
|
:'asm_serverless_traced_invocations_usage' => :'asm_serverless_traced_invocations_usage',
|
|
519
|
+
:'bits_ai_investigations_percentage' => :'bits_ai_investigations_percentage',
|
|
520
|
+
:'bits_ai_investigations_usage' => :'bits_ai_investigations_usage',
|
|
501
521
|
:'browser_percentage' => :'browser_percentage',
|
|
502
522
|
:'browser_usage' => :'browser_usage',
|
|
503
523
|
:'ci_pipeline_indexed_spans_percentage' => :'ci_pipeline_indexed_spans_percentage',
|
|
@@ -544,6 +564,8 @@ module DatadogAPIClient::V1
|
|
|
544
564
|
:'estimated_ingested_spans_usage' => :'estimated_ingested_spans_usage',
|
|
545
565
|
:'fargate_percentage' => :'fargate_percentage',
|
|
546
566
|
:'fargate_usage' => :'fargate_usage',
|
|
567
|
+
:'flex_stored_logs_percentage' => :'flex_stored_logs_percentage',
|
|
568
|
+
:'flex_stored_logs_usage' => :'flex_stored_logs_usage',
|
|
547
569
|
:'functions_percentage' => :'functions_percentage',
|
|
548
570
|
:'functions_usage' => :'functions_usage',
|
|
549
571
|
:'incident_management_monthly_active_users_percentage' => :'incident_management_monthly_active_users_percentage',
|
|
@@ -562,6 +584,8 @@ module DatadogAPIClient::V1
|
|
|
562
584
|
:'lambda_traced_invocations_usage' => :'lambda_traced_invocations_usage',
|
|
563
585
|
:'llm_observability_percentage' => :'llm_observability_percentage',
|
|
564
586
|
:'llm_observability_usage' => :'llm_observability_usage',
|
|
587
|
+
:'llm_spans_percentage' => :'llm_spans_percentage',
|
|
588
|
+
:'llm_spans_usage' => :'llm_spans_usage',
|
|
565
589
|
:'logs_indexed_15day_percentage' => :'logs_indexed_15day_percentage',
|
|
566
590
|
:'logs_indexed_15day_usage' => :'logs_indexed_15day_usage',
|
|
567
591
|
:'logs_indexed_180day_percentage' => :'logs_indexed_180day_percentage',
|
|
@@ -657,6 +681,8 @@ module DatadogAPIClient::V1
|
|
|
657
681
|
:'appsec_usage' => :'Float',
|
|
658
682
|
:'asm_serverless_traced_invocations_percentage' => :'Float',
|
|
659
683
|
:'asm_serverless_traced_invocations_usage' => :'Float',
|
|
684
|
+
:'bits_ai_investigations_percentage' => :'Float',
|
|
685
|
+
:'bits_ai_investigations_usage' => :'Float',
|
|
660
686
|
:'browser_percentage' => :'Float',
|
|
661
687
|
:'browser_usage' => :'Float',
|
|
662
688
|
:'ci_pipeline_indexed_spans_percentage' => :'Float',
|
|
@@ -703,6 +729,8 @@ module DatadogAPIClient::V1
|
|
|
703
729
|
:'estimated_ingested_spans_usage' => :'Float',
|
|
704
730
|
:'fargate_percentage' => :'Float',
|
|
705
731
|
:'fargate_usage' => :'Float',
|
|
732
|
+
:'flex_stored_logs_percentage' => :'Float',
|
|
733
|
+
:'flex_stored_logs_usage' => :'Float',
|
|
706
734
|
:'functions_percentage' => :'Float',
|
|
707
735
|
:'functions_usage' => :'Float',
|
|
708
736
|
:'incident_management_monthly_active_users_percentage' => :'Float',
|
|
@@ -721,6 +749,8 @@ module DatadogAPIClient::V1
|
|
|
721
749
|
:'lambda_traced_invocations_usage' => :'Float',
|
|
722
750
|
:'llm_observability_percentage' => :'Float',
|
|
723
751
|
:'llm_observability_usage' => :'Float',
|
|
752
|
+
:'llm_spans_percentage' => :'Float',
|
|
753
|
+
:'llm_spans_usage' => :'Float',
|
|
724
754
|
:'logs_indexed_15day_percentage' => :'Float',
|
|
725
755
|
:'logs_indexed_15day_usage' => :'Float',
|
|
726
756
|
:'logs_indexed_180day_percentage' => :'Float',
|
|
@@ -872,6 +902,14 @@ module DatadogAPIClient::V1
|
|
|
872
902
|
self.asm_serverless_traced_invocations_usage = attributes[:'asm_serverless_traced_invocations_usage']
|
|
873
903
|
end
|
|
874
904
|
|
|
905
|
+
if attributes.key?(:'bits_ai_investigations_percentage')
|
|
906
|
+
self.bits_ai_investigations_percentage = attributes[:'bits_ai_investigations_percentage']
|
|
907
|
+
end
|
|
908
|
+
|
|
909
|
+
if attributes.key?(:'bits_ai_investigations_usage')
|
|
910
|
+
self.bits_ai_investigations_usage = attributes[:'bits_ai_investigations_usage']
|
|
911
|
+
end
|
|
912
|
+
|
|
875
913
|
if attributes.key?(:'browser_percentage')
|
|
876
914
|
self.browser_percentage = attributes[:'browser_percentage']
|
|
877
915
|
end
|
|
@@ -1056,6 +1094,14 @@ module DatadogAPIClient::V1
|
|
|
1056
1094
|
self.fargate_usage = attributes[:'fargate_usage']
|
|
1057
1095
|
end
|
|
1058
1096
|
|
|
1097
|
+
if attributes.key?(:'flex_stored_logs_percentage')
|
|
1098
|
+
self.flex_stored_logs_percentage = attributes[:'flex_stored_logs_percentage']
|
|
1099
|
+
end
|
|
1100
|
+
|
|
1101
|
+
if attributes.key?(:'flex_stored_logs_usage')
|
|
1102
|
+
self.flex_stored_logs_usage = attributes[:'flex_stored_logs_usage']
|
|
1103
|
+
end
|
|
1104
|
+
|
|
1059
1105
|
if attributes.key?(:'functions_percentage')
|
|
1060
1106
|
self.functions_percentage = attributes[:'functions_percentage']
|
|
1061
1107
|
end
|
|
@@ -1128,6 +1174,14 @@ module DatadogAPIClient::V1
|
|
|
1128
1174
|
self.llm_observability_usage = attributes[:'llm_observability_usage']
|
|
1129
1175
|
end
|
|
1130
1176
|
|
|
1177
|
+
if attributes.key?(:'llm_spans_percentage')
|
|
1178
|
+
self.llm_spans_percentage = attributes[:'llm_spans_percentage']
|
|
1179
|
+
end
|
|
1180
|
+
|
|
1181
|
+
if attributes.key?(:'llm_spans_usage')
|
|
1182
|
+
self.llm_spans_usage = attributes[:'llm_spans_usage']
|
|
1183
|
+
end
|
|
1184
|
+
|
|
1131
1185
|
if attributes.key?(:'logs_indexed_15day_percentage')
|
|
1132
1186
|
self.logs_indexed_15day_percentage = attributes[:'logs_indexed_15day_percentage']
|
|
1133
1187
|
end
|
|
@@ -1465,6 +1519,8 @@ module DatadogAPIClient::V1
|
|
|
1465
1519
|
appsec_usage == o.appsec_usage &&
|
|
1466
1520
|
asm_serverless_traced_invocations_percentage == o.asm_serverless_traced_invocations_percentage &&
|
|
1467
1521
|
asm_serverless_traced_invocations_usage == o.asm_serverless_traced_invocations_usage &&
|
|
1522
|
+
bits_ai_investigations_percentage == o.bits_ai_investigations_percentage &&
|
|
1523
|
+
bits_ai_investigations_usage == o.bits_ai_investigations_usage &&
|
|
1468
1524
|
browser_percentage == o.browser_percentage &&
|
|
1469
1525
|
browser_usage == o.browser_usage &&
|
|
1470
1526
|
ci_pipeline_indexed_spans_percentage == o.ci_pipeline_indexed_spans_percentage &&
|
|
@@ -1511,6 +1567,8 @@ module DatadogAPIClient::V1
|
|
|
1511
1567
|
estimated_ingested_spans_usage == o.estimated_ingested_spans_usage &&
|
|
1512
1568
|
fargate_percentage == o.fargate_percentage &&
|
|
1513
1569
|
fargate_usage == o.fargate_usage &&
|
|
1570
|
+
flex_stored_logs_percentage == o.flex_stored_logs_percentage &&
|
|
1571
|
+
flex_stored_logs_usage == o.flex_stored_logs_usage &&
|
|
1514
1572
|
functions_percentage == o.functions_percentage &&
|
|
1515
1573
|
functions_usage == o.functions_usage &&
|
|
1516
1574
|
incident_management_monthly_active_users_percentage == o.incident_management_monthly_active_users_percentage &&
|
|
@@ -1529,6 +1587,8 @@ module DatadogAPIClient::V1
|
|
|
1529
1587
|
lambda_traced_invocations_usage == o.lambda_traced_invocations_usage &&
|
|
1530
1588
|
llm_observability_percentage == o.llm_observability_percentage &&
|
|
1531
1589
|
llm_observability_usage == o.llm_observability_usage &&
|
|
1590
|
+
llm_spans_percentage == o.llm_spans_percentage &&
|
|
1591
|
+
llm_spans_usage == o.llm_spans_usage &&
|
|
1532
1592
|
logs_indexed_15day_percentage == o.logs_indexed_15day_percentage &&
|
|
1533
1593
|
logs_indexed_15day_usage == o.logs_indexed_15day_usage &&
|
|
1534
1594
|
logs_indexed_180day_percentage == o.logs_indexed_180day_percentage &&
|
|
@@ -1610,7 +1670,7 @@ module DatadogAPIClient::V1
|
|
|
1610
1670
|
# @return [Integer] Hash code
|
|
1611
1671
|
# @!visibility private
|
|
1612
1672
|
def hash
|
|
1613
|
-
[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, asm_serverless_traced_invocations_percentage, asm_serverless_traced_invocations_usage, browser_percentage, browser_usage, ci_pipeline_indexed_spans_percentage, ci_pipeline_indexed_spans_usage, ci_test_indexed_spans_percentage, ci_test_indexed_spans_usage, ci_visibility_itr_percentage, ci_visibility_itr_usage, cloud_siem_percentage, cloud_siem_usage, code_security_host_percentage, code_security_host_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_event_percentage, custom_event_usage, custom_ingested_timeseries_percentage, custom_ingested_timeseries_usage, custom_timeseries_percentage, custom_timeseries_usage, cws_containers_percentage, cws_containers_usage, cws_fargate_task_percentage, cws_fargate_task_usage, cws_hosts_percentage, cws_hosts_usage, data_jobs_monitoring_usage, data_stream_monitoring_usage, dbm_hosts_percentage, dbm_hosts_usage, dbm_queries_percentage, dbm_queries_usage, error_tracking_percentage, error_tracking_usage, estimated_indexed_spans_percentage, estimated_indexed_spans_usage, estimated_ingested_spans_percentage, estimated_ingested_spans_usage, fargate_percentage, fargate_usage, functions_percentage, functions_usage, incident_management_monthly_active_users_percentage, incident_management_monthly_active_users_usage, indexed_spans_percentage, indexed_spans_usage, infra_host_percentage, infra_host_usage, ingested_logs_bytes_percentage, ingested_logs_bytes_usage, ingested_spans_bytes_percentage, ingested_spans_bytes_usage, invocations_percentage, invocations_usage, lambda_traced_invocations_percentage, lambda_traced_invocations_usage, llm_observability_percentage, llm_observability_usage, logs_indexed_15day_percentage, logs_indexed_15day_usage, logs_indexed_180day_percentage, logs_indexed_180day_usage, logs_indexed_1day_percentage, logs_indexed_1day_usage, logs_indexed_30day_percentage, logs_indexed_30day_usage, logs_indexed_360day_percentage, logs_indexed_360day_usage, logs_indexed_3day_percentage, logs_indexed_3day_usage, logs_indexed_45day_percentage, logs_indexed_45day_usage, logs_indexed_60day_percentage, logs_indexed_60day_usage, logs_indexed_7day_percentage, logs_indexed_7day_usage, logs_indexed_90day_percentage, logs_indexed_90day_usage, logs_indexed_custom_retention_percentage, logs_indexed_custom_retention_usage, mobile_app_testing_percentage, mobile_app_testing_usage, ndm_netflow_percentage, ndm_netflow_usage, network_device_wireless_percentage, network_device_wireless_usage, npm_host_percentage, npm_host_usage, obs_pipeline_bytes_percentage, obs_pipeline_bytes_usage, obs_pipelines_vcpu_percentage, obs_pipelines_vcpu_usage, online_archive_percentage, online_archive_usage, product_analytics_session_percentage, product_analytics_session_usage, profiled_container_percentage, profiled_container_usage, profiled_fargate_percentage, profiled_fargate_usage, profiled_host_percentage, profiled_host_usage, published_app_percentage, published_app_usage, rum_browser_mobile_sessions_percentage, rum_browser_mobile_sessions_usage, rum_ingested_percentage, rum_ingested_usage, rum_investigate_percentage, rum_investigate_usage, rum_replay_sessions_percentage, rum_replay_sessions_usage, rum_session_replay_add_on_percentage, rum_session_replay_add_on_usage, sca_fargate_percentage, sca_fargate_usage, sds_scanned_bytes_percentage, sds_scanned_bytes_usage, serverless_apps_percentage, serverless_apps_usage, siem_analyzed_logs_add_on_percentage, siem_analyzed_logs_add_on_usage, siem_ingested_bytes_percentage, siem_ingested_bytes_usage, snmp_percentage, snmp_usage, universal_service_monitoring_percentage, universal_service_monitoring_usage, vuln_management_hosts_percentage, vuln_management_hosts_usage, workflow_executions_percentage, workflow_executions_usage, additional_properties].hash
|
|
1673
|
+
[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, asm_serverless_traced_invocations_percentage, asm_serverless_traced_invocations_usage, bits_ai_investigations_percentage, bits_ai_investigations_usage, browser_percentage, browser_usage, ci_pipeline_indexed_spans_percentage, ci_pipeline_indexed_spans_usage, ci_test_indexed_spans_percentage, ci_test_indexed_spans_usage, ci_visibility_itr_percentage, ci_visibility_itr_usage, cloud_siem_percentage, cloud_siem_usage, code_security_host_percentage, code_security_host_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_event_percentage, custom_event_usage, custom_ingested_timeseries_percentage, custom_ingested_timeseries_usage, custom_timeseries_percentage, custom_timeseries_usage, cws_containers_percentage, cws_containers_usage, cws_fargate_task_percentage, cws_fargate_task_usage, cws_hosts_percentage, cws_hosts_usage, data_jobs_monitoring_usage, data_stream_monitoring_usage, dbm_hosts_percentage, dbm_hosts_usage, dbm_queries_percentage, dbm_queries_usage, error_tracking_percentage, error_tracking_usage, estimated_indexed_spans_percentage, estimated_indexed_spans_usage, estimated_ingested_spans_percentage, estimated_ingested_spans_usage, fargate_percentage, fargate_usage, flex_stored_logs_percentage, flex_stored_logs_usage, functions_percentage, functions_usage, incident_management_monthly_active_users_percentage, incident_management_monthly_active_users_usage, indexed_spans_percentage, indexed_spans_usage, infra_host_percentage, infra_host_usage, ingested_logs_bytes_percentage, ingested_logs_bytes_usage, ingested_spans_bytes_percentage, ingested_spans_bytes_usage, invocations_percentage, invocations_usage, lambda_traced_invocations_percentage, lambda_traced_invocations_usage, llm_observability_percentage, llm_observability_usage, llm_spans_percentage, llm_spans_usage, logs_indexed_15day_percentage, logs_indexed_15day_usage, logs_indexed_180day_percentage, logs_indexed_180day_usage, logs_indexed_1day_percentage, logs_indexed_1day_usage, logs_indexed_30day_percentage, logs_indexed_30day_usage, logs_indexed_360day_percentage, logs_indexed_360day_usage, logs_indexed_3day_percentage, logs_indexed_3day_usage, logs_indexed_45day_percentage, logs_indexed_45day_usage, logs_indexed_60day_percentage, logs_indexed_60day_usage, logs_indexed_7day_percentage, logs_indexed_7day_usage, logs_indexed_90day_percentage, logs_indexed_90day_usage, logs_indexed_custom_retention_percentage, logs_indexed_custom_retention_usage, mobile_app_testing_percentage, mobile_app_testing_usage, ndm_netflow_percentage, ndm_netflow_usage, network_device_wireless_percentage, network_device_wireless_usage, npm_host_percentage, npm_host_usage, obs_pipeline_bytes_percentage, obs_pipeline_bytes_usage, obs_pipelines_vcpu_percentage, obs_pipelines_vcpu_usage, online_archive_percentage, online_archive_usage, product_analytics_session_percentage, product_analytics_session_usage, profiled_container_percentage, profiled_container_usage, profiled_fargate_percentage, profiled_fargate_usage, profiled_host_percentage, profiled_host_usage, published_app_percentage, published_app_usage, rum_browser_mobile_sessions_percentage, rum_browser_mobile_sessions_usage, rum_ingested_percentage, rum_ingested_usage, rum_investigate_percentage, rum_investigate_usage, rum_replay_sessions_percentage, rum_replay_sessions_usage, rum_session_replay_add_on_percentage, rum_session_replay_add_on_usage, sca_fargate_percentage, sca_fargate_usage, sds_scanned_bytes_percentage, sds_scanned_bytes_usage, serverless_apps_percentage, serverless_apps_usage, siem_analyzed_logs_add_on_percentage, siem_analyzed_logs_add_on_usage, siem_ingested_bytes_percentage, siem_ingested_bytes_usage, snmp_percentage, snmp_usage, universal_service_monitoring_percentage, universal_service_monitoring_usage, vuln_management_hosts_percentage, vuln_management_hosts_usage, workflow_executions_percentage, workflow_executions_usage, additional_properties].hash
|
|
1614
1674
|
end
|
|
1615
1675
|
end
|
|
1616
1676
|
end
|