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
|
@@ -134,6 +134,7 @@ module DatadogAPIClient
|
|
|
134
134
|
"v1.formula_and_function_metric_aggregation" => "FormulaAndFunctionMetricAggregation",
|
|
135
135
|
"v1.formula_and_function_metric_data_source" => "FormulaAndFunctionMetricDataSource",
|
|
136
136
|
"v1.formula_and_function_metric_query_definition" => "FormulaAndFunctionMetricQueryDefinition",
|
|
137
|
+
"v1.formula_and_function_metric_semantic_mode" => "FormulaAndFunctionMetricSemanticMode",
|
|
137
138
|
"v1.formula_and_function_process_query_data_source" => "FormulaAndFunctionProcessQueryDataSource",
|
|
138
139
|
"v1.formula_and_function_process_query_definition" => "FormulaAndFunctionProcessQueryDefinition",
|
|
139
140
|
"v1.formula_and_function_query_definition" => "FormulaAndFunctionQueryDefinition",
|
|
@@ -161,6 +162,7 @@ module DatadogAPIClient
|
|
|
161
162
|
"v1.geomap_widget_definition_type" => "GeomapWidgetDefinitionType",
|
|
162
163
|
"v1.geomap_widget_definition_view" => "GeomapWidgetDefinitionView",
|
|
163
164
|
"v1.geomap_widget_request" => "GeomapWidgetRequest",
|
|
165
|
+
"v1.geomap_widget_request_style" => "GeomapWidgetRequestStyle",
|
|
164
166
|
"v1.graph_snapshot" => "GraphSnapshot",
|
|
165
167
|
"v1.group_type" => "GroupType",
|
|
166
168
|
"v1.group_widget_definition" => "GroupWidgetDefinition",
|
|
@@ -725,6 +727,7 @@ module DatadogAPIClient
|
|
|
725
727
|
"v1.synthetics_test_details" => "SyntheticsTestDetails",
|
|
726
728
|
"v1.synthetics_test_details_sub_type" => "SyntheticsTestDetailsSubType",
|
|
727
729
|
"v1.synthetics_test_details_type" => "SyntheticsTestDetailsType",
|
|
730
|
+
"v1.synthetics_test_details_without_steps" => "SyntheticsTestDetailsWithoutSteps",
|
|
728
731
|
"v1.synthetics_test_execution_rule" => "SyntheticsTestExecutionRule",
|
|
729
732
|
"v1.synthetics_test_monitor_status" => "SyntheticsTestMonitorStatus",
|
|
730
733
|
"v1.synthetics_test_options" => "SyntheticsTestOptions",
|
|
@@ -1138,6 +1141,16 @@ module DatadogAPIClient
|
|
|
1138
1141
|
"v2.attach_jira_issue_request_data" => "AttachJiraIssueRequestData",
|
|
1139
1142
|
"v2.attach_jira_issue_request_data_attributes" => "AttachJiraIssueRequestDataAttributes",
|
|
1140
1143
|
"v2.attach_jira_issue_request_data_relationships" => "AttachJiraIssueRequestDataRelationships",
|
|
1144
|
+
"v2.attachment" => "Attachment",
|
|
1145
|
+
"v2.attachment_array" => "AttachmentArray",
|
|
1146
|
+
"v2.attachment_data" => "AttachmentData",
|
|
1147
|
+
"v2.attachment_data_attributes" => "AttachmentDataAttributes",
|
|
1148
|
+
"v2.attachment_data_attributes_attachment" => "AttachmentDataAttributesAttachment",
|
|
1149
|
+
"v2.attachment_data_attributes_attachment_type" => "AttachmentDataAttributesAttachmentType",
|
|
1150
|
+
"v2.attachment_data_relationships" => "AttachmentDataRelationships",
|
|
1151
|
+
"v2.attachment_data_relationships_last_modified_by_user" => "AttachmentDataRelationshipsLastModifiedByUser",
|
|
1152
|
+
"v2.attachment_data_relationships_last_modified_by_user_data" => "AttachmentDataRelationshipsLastModifiedByUserData",
|
|
1153
|
+
"v2.attachment_included" => "AttachmentIncluded",
|
|
1141
1154
|
"v2.audit_logs_event" => "AuditLogsEvent",
|
|
1142
1155
|
"v2.audit_logs_event_attributes" => "AuditLogsEventAttributes",
|
|
1143
1156
|
"v2.audit_logs_events_response" => "AuditLogsEventsResponse",
|
|
@@ -1191,6 +1204,7 @@ module DatadogAPIClient
|
|
|
1191
1204
|
"v2.aws_auth_config" => "AWSAuthConfig",
|
|
1192
1205
|
"v2.aws_auth_config_keys" => "AWSAuthConfigKeys",
|
|
1193
1206
|
"v2.aws_auth_config_role" => "AWSAuthConfigRole",
|
|
1207
|
+
"v2.awsccm_config" => "AWSCCMConfig",
|
|
1194
1208
|
"v2.aws_credentials" => "AWSCredentials",
|
|
1195
1209
|
"v2.aws_credentials_update" => "AWSCredentialsUpdate",
|
|
1196
1210
|
"v2.aws_cur_config" => "AwsCURConfig",
|
|
@@ -1553,8 +1567,10 @@ module DatadogAPIClient
|
|
|
1553
1567
|
"v2.cloud_workload_security_agent_policy_update_request" => "CloudWorkloadSecurityAgentPolicyUpdateRequest",
|
|
1554
1568
|
"v2.cloud_workload_security_agent_policy_version" => "CloudWorkloadSecurityAgentPolicyVersion",
|
|
1555
1569
|
"v2.cloud_workload_security_agent_rule_action" => "CloudWorkloadSecurityAgentRuleAction",
|
|
1570
|
+
"v2.cloud_workload_security_agent_rule_action_hash" => "CloudWorkloadSecurityAgentRuleActionHash",
|
|
1556
1571
|
"v2.cloud_workload_security_agent_rule_action_metadata" => "CloudWorkloadSecurityAgentRuleActionMetadata",
|
|
1557
1572
|
"v2.cloud_workload_security_agent_rule_action_set" => "CloudWorkloadSecurityAgentRuleActionSet",
|
|
1573
|
+
"v2.cloud_workload_security_agent_rule_action_set_value" => "CloudWorkloadSecurityAgentRuleActionSetValue",
|
|
1558
1574
|
"v2.cloud_workload_security_agent_rule_attributes" => "CloudWorkloadSecurityAgentRuleAttributes",
|
|
1559
1575
|
"v2.cloud_workload_security_agent_rule_create_attributes" => "CloudWorkloadSecurityAgentRuleCreateAttributes",
|
|
1560
1576
|
"v2.cloud_workload_security_agent_rule_create_data" => "CloudWorkloadSecurityAgentRuleCreateData",
|
|
@@ -1682,6 +1698,10 @@ module DatadogAPIClient
|
|
|
1682
1698
|
"v2.create_apps_datastore_request_data_attributes_org_access" => "CreateAppsDatastoreRequestDataAttributesOrgAccess",
|
|
1683
1699
|
"v2.create_apps_datastore_response" => "CreateAppsDatastoreResponse",
|
|
1684
1700
|
"v2.create_apps_datastore_response_data" => "CreateAppsDatastoreResponseData",
|
|
1701
|
+
"v2.create_attachment_request" => "CreateAttachmentRequest",
|
|
1702
|
+
"v2.create_attachment_request_data" => "CreateAttachmentRequestData",
|
|
1703
|
+
"v2.create_attachment_request_data_attributes" => "CreateAttachmentRequestDataAttributes",
|
|
1704
|
+
"v2.create_attachment_request_data_attributes_attachment" => "CreateAttachmentRequestDataAttributesAttachment",
|
|
1685
1705
|
"v2.create_case_request_array" => "CreateCaseRequestArray",
|
|
1686
1706
|
"v2.create_case_request_data" => "CreateCaseRequestData",
|
|
1687
1707
|
"v2.create_case_request_data_attributes" => "CreateCaseRequestDataAttributes",
|
|
@@ -1703,19 +1723,21 @@ module DatadogAPIClient
|
|
|
1703
1723
|
"v2.create_deployment_rule_params" => "CreateDeploymentRuleParams",
|
|
1704
1724
|
"v2.create_deployment_rule_params_data" => "CreateDeploymentRuleParamsData",
|
|
1705
1725
|
"v2.create_deployment_rule_params_data_attributes" => "CreateDeploymentRuleParamsDataAttributes",
|
|
1726
|
+
"v2.create_email_notification_channel_config" => "CreateEmailNotificationChannelConfig",
|
|
1706
1727
|
"v2.create_incident_notification_rule_request" => "CreateIncidentNotificationRuleRequest",
|
|
1707
1728
|
"v2.create_incident_notification_template_request" => "CreateIncidentNotificationTemplateRequest",
|
|
1708
1729
|
"v2.create_jira_issue_request_array" => "CreateJiraIssueRequestArray",
|
|
1709
|
-
"v2.create_jira_issue_request_array_included" => "CreateJiraIssueRequestArrayIncluded",
|
|
1710
1730
|
"v2.create_jira_issue_request_data" => "CreateJiraIssueRequestData",
|
|
1711
1731
|
"v2.create_jira_issue_request_data_attributes" => "CreateJiraIssueRequestDataAttributes",
|
|
1712
|
-
"v2.create_jira_issue_request_data_attributes_fields" => "CreateJiraIssueRequestDataAttributesFields",
|
|
1713
1732
|
"v2.create_jira_issue_request_data_relationships" => "CreateJiraIssueRequestDataRelationships",
|
|
1714
|
-
"v2.
|
|
1715
|
-
"v2.
|
|
1733
|
+
"v2.create_notification_channel_attributes" => "CreateNotificationChannelAttributes",
|
|
1734
|
+
"v2.create_notification_channel_config" => "CreateNotificationChannelConfig",
|
|
1735
|
+
"v2.create_notification_channel_data" => "CreateNotificationChannelData",
|
|
1716
1736
|
"v2.create_notification_rule_parameters" => "CreateNotificationRuleParameters",
|
|
1717
1737
|
"v2.create_notification_rule_parameters_data" => "CreateNotificationRuleParametersData",
|
|
1718
1738
|
"v2.create_notification_rule_parameters_data_attributes" => "CreateNotificationRuleParametersDataAttributes",
|
|
1739
|
+
"v2.create_on_call_notification_rule_request" => "CreateOnCallNotificationRuleRequest",
|
|
1740
|
+
"v2.create_on_call_notification_rule_request_data" => "CreateOnCallNotificationRuleRequestData",
|
|
1719
1741
|
"v2.create_open_api_response" => "CreateOpenAPIResponse",
|
|
1720
1742
|
"v2.create_open_api_response_attributes" => "CreateOpenAPIResponseAttributes",
|
|
1721
1743
|
"v2.create_open_api_response_data" => "CreateOpenAPIResponseData",
|
|
@@ -1727,6 +1749,7 @@ module DatadogAPIClient
|
|
|
1727
1749
|
"v2.create_page_response" => "CreatePageResponse",
|
|
1728
1750
|
"v2.create_page_response_data" => "CreatePageResponseData",
|
|
1729
1751
|
"v2.create_page_response_data_type" => "CreatePageResponseDataType",
|
|
1752
|
+
"v2.create_phone_notification_channel_config" => "CreatePhoneNotificationChannelConfig",
|
|
1730
1753
|
"v2.create_rule_request" => "CreateRuleRequest",
|
|
1731
1754
|
"v2.create_rule_request_data" => "CreateRuleRequestData",
|
|
1732
1755
|
"v2.create_rule_response" => "CreateRuleResponse",
|
|
@@ -1762,6 +1785,7 @@ module DatadogAPIClient
|
|
|
1762
1785
|
"v2.create_upload_response_data" => "CreateUploadResponseData",
|
|
1763
1786
|
"v2.create_upload_response_data_attributes" => "CreateUploadResponseDataAttributes",
|
|
1764
1787
|
"v2.create_upload_response_data_type" => "CreateUploadResponseDataType",
|
|
1788
|
+
"v2.create_user_notification_channel_request" => "CreateUserNotificationChannelRequest",
|
|
1765
1789
|
"v2.create_workflow_request" => "CreateWorkflowRequest",
|
|
1766
1790
|
"v2.create_workflow_response" => "CreateWorkflowResponse",
|
|
1767
1791
|
"v2.creator" => "Creator",
|
|
@@ -1882,6 +1906,7 @@ module DatadogAPIClient
|
|
|
1882
1906
|
"v2.datadog_integration" => "DatadogIntegration",
|
|
1883
1907
|
"v2.datadog_integration_type" => "DatadogIntegrationType",
|
|
1884
1908
|
"v2.datadog_integration_update" => "DatadogIntegrationUpdate",
|
|
1909
|
+
"v2.data_export_config" => "DataExportConfig",
|
|
1885
1910
|
"v2.data_relationships_teams" => "DataRelationshipsTeams",
|
|
1886
1911
|
"v2.data_relationships_teams_data_items" => "DataRelationshipsTeamsDataItems",
|
|
1887
1912
|
"v2.data_relationships_teams_data_items_type" => "DataRelationshipsTeamsDataItemsType",
|
|
@@ -1930,6 +1955,7 @@ module DatadogAPIClient
|
|
|
1930
1955
|
"v2.deployment_gate_response_data_attributes" => "DeploymentGateResponseDataAttributes",
|
|
1931
1956
|
"v2.deployment_gate_response_data_attributes_created_by" => "DeploymentGateResponseDataAttributesCreatedBy",
|
|
1932
1957
|
"v2.deployment_gate_response_data_attributes_updated_by" => "DeploymentGateResponseDataAttributesUpdatedBy",
|
|
1958
|
+
"v2.deployment_gate_rules_response" => "DeploymentGateRulesResponse",
|
|
1933
1959
|
"v2.deployment_metadata" => "DeploymentMetadata",
|
|
1934
1960
|
"v2.deployment_relationship" => "DeploymentRelationship",
|
|
1935
1961
|
"v2.deployment_relationship_data" => "DeploymentRelationshipData",
|
|
@@ -1960,21 +1986,27 @@ module DatadogAPIClient
|
|
|
1960
1986
|
"v2.domain_allowlist_response_data" => "DomainAllowlistResponseData",
|
|
1961
1987
|
"v2.domain_allowlist_response_data_attributes" => "DomainAllowlistResponseDataAttributes",
|
|
1962
1988
|
"v2.domain_allowlist_type" => "DomainAllowlistType",
|
|
1989
|
+
"v2.dora_deployment_fetch_response" => "DORADeploymentFetchResponse",
|
|
1990
|
+
"v2.dora_deployment_object" => "DORADeploymentObject",
|
|
1991
|
+
"v2.dora_deployment_object_attributes" => "DORADeploymentObjectAttributes",
|
|
1963
1992
|
"v2.dora_deployment_request" => "DORADeploymentRequest",
|
|
1964
1993
|
"v2.dora_deployment_request_attributes" => "DORADeploymentRequestAttributes",
|
|
1965
1994
|
"v2.dora_deployment_request_data" => "DORADeploymentRequestData",
|
|
1966
1995
|
"v2.dora_deployment_response" => "DORADeploymentResponse",
|
|
1967
1996
|
"v2.dora_deployment_response_data" => "DORADeploymentResponseData",
|
|
1997
|
+
"v2.dora_deployments_list_response" => "DORADeploymentsListResponse",
|
|
1968
1998
|
"v2.dora_deployment_type" => "DORADeploymentType",
|
|
1969
|
-
"v2.
|
|
1999
|
+
"v2.dora_failure_fetch_response" => "DORAFailureFetchResponse",
|
|
1970
2000
|
"v2.dora_failure_request" => "DORAFailureRequest",
|
|
1971
2001
|
"v2.dora_failure_request_attributes" => "DORAFailureRequestAttributes",
|
|
1972
2002
|
"v2.dora_failure_request_data" => "DORAFailureRequestData",
|
|
1973
2003
|
"v2.dora_failure_response" => "DORAFailureResponse",
|
|
1974
2004
|
"v2.dora_failure_response_data" => "DORAFailureResponseData",
|
|
2005
|
+
"v2.dora_failures_list_response" => "DORAFailuresListResponse",
|
|
1975
2006
|
"v2.dora_failure_type" => "DORAFailureType",
|
|
1976
|
-
"v2.dora_fetch_response" => "DORAFetchResponse",
|
|
1977
2007
|
"v2.dora_git_info" => "DORAGitInfo",
|
|
2008
|
+
"v2.dora_incident_object" => "DORAIncidentObject",
|
|
2009
|
+
"v2.dora_incident_object_attributes" => "DORAIncidentObjectAttributes",
|
|
1978
2010
|
"v2.dora_list_deployments_request" => "DORAListDeploymentsRequest",
|
|
1979
2011
|
"v2.dora_list_deployments_request_attributes" => "DORAListDeploymentsRequestAttributes",
|
|
1980
2012
|
"v2.dora_list_deployments_request_data" => "DORAListDeploymentsRequestData",
|
|
@@ -1983,7 +2015,6 @@ module DatadogAPIClient
|
|
|
1983
2015
|
"v2.dora_list_failures_request_attributes" => "DORAListFailuresRequestAttributes",
|
|
1984
2016
|
"v2.dora_list_failures_request_data" => "DORAListFailuresRequestData",
|
|
1985
2017
|
"v2.dora_list_failures_request_data_type" => "DORAListFailuresRequestDataType",
|
|
1986
|
-
"v2.dora_list_response" => "DORAListResponse",
|
|
1987
2018
|
"v2.downtime_create_request" => "DowntimeCreateRequest",
|
|
1988
2019
|
"v2.downtime_create_request_attributes" => "DowntimeCreateRequestAttributes",
|
|
1989
2020
|
"v2.downtime_create_request_data" => "DowntimeCreateRequestData",
|
|
@@ -2435,6 +2466,9 @@ module DatadogAPIClient
|
|
|
2435
2466
|
"v2.get_rule_version_history_data_type" => "GetRuleVersionHistoryDataType",
|
|
2436
2467
|
"v2.get_rule_version_history_response" => "GetRuleVersionHistoryResponse",
|
|
2437
2468
|
"v2.get_sbom_response" => "GetSBOMResponse",
|
|
2469
|
+
"v2.get_suppression_version_history_data" => "GetSuppressionVersionHistoryData",
|
|
2470
|
+
"v2.get_suppression_version_history_data_type" => "GetSuppressionVersionHistoryDataType",
|
|
2471
|
+
"v2.get_suppression_version_history_response" => "GetSuppressionVersionHistoryResponse",
|
|
2438
2472
|
"v2.get_team_memberships_sort" => "GetTeamMembershipsSort",
|
|
2439
2473
|
"v2.get_workflow_response" => "GetWorkflowResponse",
|
|
2440
2474
|
"v2.github_webhook_trigger" => "GithubWebhookTrigger",
|
|
@@ -2447,6 +2481,13 @@ module DatadogAPIClient
|
|
|
2447
2481
|
"v2.gitlab_integration" => "GitlabIntegration",
|
|
2448
2482
|
"v2.gitlab_integration_type" => "GitlabIntegrationType",
|
|
2449
2483
|
"v2.gitlab_integration_update" => "GitlabIntegrationUpdate",
|
|
2484
|
+
"v2.global_variable_data" => "GlobalVariableData",
|
|
2485
|
+
"v2.global_variable_json_patch_request" => "GlobalVariableJsonPatchRequest",
|
|
2486
|
+
"v2.global_variable_json_patch_request_data" => "GlobalVariableJsonPatchRequestData",
|
|
2487
|
+
"v2.global_variable_json_patch_request_data_attributes" => "GlobalVariableJsonPatchRequestDataAttributes",
|
|
2488
|
+
"v2.global_variable_json_patch_type" => "GlobalVariableJsonPatchType",
|
|
2489
|
+
"v2.global_variable_response" => "GlobalVariableResponse",
|
|
2490
|
+
"v2.global_variable_type" => "GlobalVariableType",
|
|
2450
2491
|
"v2.google_meet_configuration_reference" => "GoogleMeetConfigurationReference",
|
|
2451
2492
|
"v2.google_meet_configuration_reference_data" => "GoogleMeetConfigurationReferenceData",
|
|
2452
2493
|
"v2.grey_noise_api_key" => "GreyNoiseAPIKey",
|
|
@@ -2487,24 +2528,7 @@ module DatadogAPIClient
|
|
|
2487
2528
|
"v2.http_token_auth_update" => "HTTPTokenAuthUpdate",
|
|
2488
2529
|
"v2.http_token_update" => "HTTPTokenUpdate",
|
|
2489
2530
|
"v2.idp_metadata_form_data" => "IdPMetadataFormData",
|
|
2490
|
-
"v2.incident_attachment_attachment_type" => "IncidentAttachmentAttachmentType",
|
|
2491
|
-
"v2.incident_attachment_attributes" => "IncidentAttachmentAttributes",
|
|
2492
|
-
"v2.incident_attachment_data" => "IncidentAttachmentData",
|
|
2493
|
-
"v2.incident_attachment_link_attachment_type" => "IncidentAttachmentLinkAttachmentType",
|
|
2494
|
-
"v2.incident_attachment_link_attributes" => "IncidentAttachmentLinkAttributes",
|
|
2495
|
-
"v2.incident_attachment_link_attributes_attachment_object" => "IncidentAttachmentLinkAttributesAttachmentObject",
|
|
2496
|
-
"v2.incident_attachment_postmortem_attachment_type" => "IncidentAttachmentPostmortemAttachmentType",
|
|
2497
|
-
"v2.incident_attachment_postmortem_attributes" => "IncidentAttachmentPostmortemAttributes",
|
|
2498
|
-
"v2.incident_attachment_related_object" => "IncidentAttachmentRelatedObject",
|
|
2499
|
-
"v2.incident_attachment_relationships" => "IncidentAttachmentRelationships",
|
|
2500
|
-
"v2.incident_attachments_postmortem_attributes_attachment_object" => "IncidentAttachmentsPostmortemAttributesAttachmentObject",
|
|
2501
|
-
"v2.incident_attachments_response" => "IncidentAttachmentsResponse",
|
|
2502
|
-
"v2.incident_attachments_response_included_item" => "IncidentAttachmentsResponseIncludedItem",
|
|
2503
2531
|
"v2.incident_attachment_type" => "IncidentAttachmentType",
|
|
2504
|
-
"v2.incident_attachment_update_attributes" => "IncidentAttachmentUpdateAttributes",
|
|
2505
|
-
"v2.incident_attachment_update_data" => "IncidentAttachmentUpdateData",
|
|
2506
|
-
"v2.incident_attachment_update_request" => "IncidentAttachmentUpdateRequest",
|
|
2507
|
-
"v2.incident_attachment_update_response" => "IncidentAttachmentUpdateResponse",
|
|
2508
2532
|
"v2.incident_create_attributes" => "IncidentCreateAttributes",
|
|
2509
2533
|
"v2.incident_create_data" => "IncidentCreateData",
|
|
2510
2534
|
"v2.incident_create_relationships" => "IncidentCreateRelationships",
|
|
@@ -2746,6 +2770,8 @@ module DatadogAPIClient
|
|
|
2746
2770
|
"v2.jsonapi_error_item" => "JSONAPIErrorItem",
|
|
2747
2771
|
"v2.jsonapi_error_item_source" => "JSONAPIErrorItemSource",
|
|
2748
2772
|
"v2.jsonapi_error_response" => "JSONAPIErrorResponse",
|
|
2773
|
+
"v2.json_patch_operation" => "JsonPatchOperation",
|
|
2774
|
+
"v2.json_patch_operation_op" => "JsonPatchOperationOp",
|
|
2749
2775
|
"v2.kind_attributes" => "KindAttributes",
|
|
2750
2776
|
"v2.kind_data" => "KindData",
|
|
2751
2777
|
"v2.kind_metadata" => "KindMetadata",
|
|
@@ -2793,6 +2819,9 @@ module DatadogAPIClient
|
|
|
2793
2819
|
"v2.list_connections_response_data_attributes_connections_items" => "ListConnectionsResponseDataAttributesConnectionsItems",
|
|
2794
2820
|
"v2.list_connections_response_data_attributes_connections_items_join" => "ListConnectionsResponseDataAttributesConnectionsItemsJoin",
|
|
2795
2821
|
"v2.list_connections_response_data_type" => "ListConnectionsResponseDataType",
|
|
2822
|
+
"v2.list_deployment_rule_response_data" => "ListDeploymentRuleResponseData",
|
|
2823
|
+
"v2.list_deployment_rules_data_type" => "ListDeploymentRulesDataType",
|
|
2824
|
+
"v2.list_deployment_rules_response_data_attributes" => "ListDeploymentRulesResponseDataAttributes",
|
|
2796
2825
|
"v2.list_devices_response" => "ListDevicesResponse",
|
|
2797
2826
|
"v2.list_devices_response_metadata" => "ListDevicesResponseMetadata",
|
|
2798
2827
|
"v2.list_devices_response_metadata_page" => "ListDevicesResponseMetadataPage",
|
|
@@ -2804,6 +2833,8 @@ module DatadogAPIClient
|
|
|
2804
2833
|
"v2.list_findings_page" => "ListFindingsPage",
|
|
2805
2834
|
"v2.list_findings_response" => "ListFindingsResponse",
|
|
2806
2835
|
"v2.list_kind_catalog_response" => "ListKindCatalogResponse",
|
|
2836
|
+
"v2.list_notification_channels_response" => "ListNotificationChannelsResponse",
|
|
2837
|
+
"v2.list_on_call_notification_rules_response" => "ListOnCallNotificationRulesResponse",
|
|
2807
2838
|
"v2.list_pipelines_response" => "ListPipelinesResponse",
|
|
2808
2839
|
"v2.list_pipelines_response_meta" => "ListPipelinesResponseMeta",
|
|
2809
2840
|
"v2.list_powerpacks_response" => "ListPowerpacksResponse",
|
|
@@ -3089,6 +3120,18 @@ module DatadogAPIClient
|
|
|
3089
3120
|
"v2.ms_teams_integration_metadata" => "MSTeamsIntegrationMetadata",
|
|
3090
3121
|
"v2.ms_teams_integration_metadata_teams_item" => "MSTeamsIntegrationMetadataTeamsItem",
|
|
3091
3122
|
"v2.notebook_trigger_wrapper" => "NotebookTriggerWrapper",
|
|
3123
|
+
"v2.notification_channel" => "NotificationChannel",
|
|
3124
|
+
"v2.notification_channel_attributes" => "NotificationChannelAttributes",
|
|
3125
|
+
"v2.notification_channel_config" => "NotificationChannelConfig",
|
|
3126
|
+
"v2.notification_channel_data" => "NotificationChannelData",
|
|
3127
|
+
"v2.notification_channel_email_config" => "NotificationChannelEmailConfig",
|
|
3128
|
+
"v2.notification_channel_email_config_type" => "NotificationChannelEmailConfigType",
|
|
3129
|
+
"v2.notification_channel_email_format_type" => "NotificationChannelEmailFormatType",
|
|
3130
|
+
"v2.notification_channel_phone_config" => "NotificationChannelPhoneConfig",
|
|
3131
|
+
"v2.notification_channel_phone_config_type" => "NotificationChannelPhoneConfigType",
|
|
3132
|
+
"v2.notification_channel_push_config" => "NotificationChannelPushConfig",
|
|
3133
|
+
"v2.notification_channel_push_config_type" => "NotificationChannelPushConfigType",
|
|
3134
|
+
"v2.notification_channel_type" => "NotificationChannelType",
|
|
3092
3135
|
"v2.notification_rule" => "NotificationRule",
|
|
3093
3136
|
"v2.notification_rule_attributes" => "NotificationRuleAttributes",
|
|
3094
3137
|
"v2.notification_rule_response" => "NotificationRuleResponse",
|
|
@@ -3127,6 +3170,7 @@ module DatadogAPIClient
|
|
|
3127
3170
|
"v2.observability_pipeline_aws_auth" => "ObservabilityPipelineAwsAuth",
|
|
3128
3171
|
"v2.observability_pipeline_config" => "ObservabilityPipelineConfig",
|
|
3129
3172
|
"v2.observability_pipeline_config_destination_item" => "ObservabilityPipelineConfigDestinationItem",
|
|
3173
|
+
"v2.observability_pipeline_config_processor_group" => "ObservabilityPipelineConfigProcessorGroup",
|
|
3130
3174
|
"v2.observability_pipeline_config_processor_item" => "ObservabilityPipelineConfigProcessorItem",
|
|
3131
3175
|
"v2.observability_pipeline_config_source_item" => "ObservabilityPipelineConfigSourceItem",
|
|
3132
3176
|
"v2.observability_pipeline_crowd_strike_next_gen_siem_destination" => "ObservabilityPipelineCrowdStrikeNextGenSiemDestination",
|
|
@@ -3343,7 +3387,20 @@ module DatadogAPIClient
|
|
|
3343
3387
|
"v2.okta_integration" => "OktaIntegration",
|
|
3344
3388
|
"v2.okta_integration_type" => "OktaIntegrationType",
|
|
3345
3389
|
"v2.okta_integration_update" => "OktaIntegrationUpdate",
|
|
3390
|
+
"v2.on_call_notification_rule" => "OnCallNotificationRule",
|
|
3391
|
+
"v2.on_call_notification_rule_attributes" => "OnCallNotificationRuleAttributes",
|
|
3392
|
+
"v2.on_call_notification_rule_category" => "OnCallNotificationRuleCategory",
|
|
3393
|
+
"v2.on_call_notification_rule_channel_relationship" => "OnCallNotificationRuleChannelRelationship",
|
|
3394
|
+
"v2.on_call_notification_rule_channel_relationship_data" => "OnCallNotificationRuleChannelRelationshipData",
|
|
3395
|
+
"v2.on_call_notification_rule_channel_settings" => "OnCallNotificationRuleChannelSettings",
|
|
3396
|
+
"v2.on_call_notification_rule_data" => "OnCallNotificationRuleData",
|
|
3397
|
+
"v2.on_call_notification_rule_relationships" => "OnCallNotificationRuleRelationships",
|
|
3398
|
+
"v2.on_call_notification_rule_request_attributes" => "OnCallNotificationRuleRequestAttributes",
|
|
3399
|
+
"v2.on_call_notification_rules_included" => "OnCallNotificationRulesIncluded",
|
|
3400
|
+
"v2.on_call_notification_rule_type" => "OnCallNotificationRuleType",
|
|
3346
3401
|
"v2.on_call_page_target_type" => "OnCallPageTargetType",
|
|
3402
|
+
"v2.on_call_phone_notification_rule_method" => "OnCallPhoneNotificationRuleMethod",
|
|
3403
|
+
"v2.on_call_phone_notification_rule_settings" => "OnCallPhoneNotificationRuleSettings",
|
|
3347
3404
|
"v2.on_demand_concurrency_cap" => "OnDemandConcurrencyCap",
|
|
3348
3405
|
"v2.on_demand_concurrency_cap_attributes" => "OnDemandConcurrencyCapAttributes",
|
|
3349
3406
|
"v2.on_demand_concurrency_cap_response" => "OnDemandConcurrencyCapResponse",
|
|
@@ -3430,6 +3487,10 @@ module DatadogAPIClient
|
|
|
3430
3487
|
"v2.partial_application_key" => "PartialApplicationKey",
|
|
3431
3488
|
"v2.partial_application_key_attributes" => "PartialApplicationKeyAttributes",
|
|
3432
3489
|
"v2.partial_application_key_response" => "PartialApplicationKeyResponse",
|
|
3490
|
+
"v2.patch_attachment_request" => "PatchAttachmentRequest",
|
|
3491
|
+
"v2.patch_attachment_request_data" => "PatchAttachmentRequestData",
|
|
3492
|
+
"v2.patch_attachment_request_data_attributes" => "PatchAttachmentRequestDataAttributes",
|
|
3493
|
+
"v2.patch_attachment_request_data_attributes_attachment" => "PatchAttachmentRequestDataAttributesAttachment",
|
|
3433
3494
|
"v2.patch_incident_notification_template_request" => "PatchIncidentNotificationTemplateRequest",
|
|
3434
3495
|
"v2.patch_notification_rule_parameters" => "PatchNotificationRuleParameters",
|
|
3435
3496
|
"v2.patch_notification_rule_parameters_data" => "PatchNotificationRuleParametersData",
|
|
@@ -3472,6 +3533,15 @@ module DatadogAPIClient
|
|
|
3472
3533
|
"v2.process_summary" => "ProcessSummary",
|
|
3473
3534
|
"v2.process_summary_attributes" => "ProcessSummaryAttributes",
|
|
3474
3535
|
"v2.process_summary_type" => "ProcessSummaryType",
|
|
3536
|
+
"v2.product_analytics_server_side_event_error" => "ProductAnalyticsServerSideEventError",
|
|
3537
|
+
"v2.product_analytics_server_side_event_errors" => "ProductAnalyticsServerSideEventErrors",
|
|
3538
|
+
"v2.product_analytics_server_side_event_item" => "ProductAnalyticsServerSideEventItem",
|
|
3539
|
+
"v2.product_analytics_server_side_event_item_account" => "ProductAnalyticsServerSideEventItemAccount",
|
|
3540
|
+
"v2.product_analytics_server_side_event_item_application" => "ProductAnalyticsServerSideEventItemApplication",
|
|
3541
|
+
"v2.product_analytics_server_side_event_item_event" => "ProductAnalyticsServerSideEventItemEvent",
|
|
3542
|
+
"v2.product_analytics_server_side_event_item_session" => "ProductAnalyticsServerSideEventItemSession",
|
|
3543
|
+
"v2.product_analytics_server_side_event_item_type" => "ProductAnalyticsServerSideEventItemType",
|
|
3544
|
+
"v2.product_analytics_server_side_event_item_usr" => "ProductAnalyticsServerSideEventItemUsr",
|
|
3475
3545
|
"v2.project" => "Project",
|
|
3476
3546
|
"v2.project_attributes" => "ProjectAttributes",
|
|
3477
3547
|
"v2.project_create" => "ProjectCreate",
|
|
@@ -3708,8 +3778,6 @@ module DatadogAPIClient
|
|
|
3708
3778
|
"v2.rule_user" => "RuleUser",
|
|
3709
3779
|
"v2.rule_version_history" => "RuleVersionHistory",
|
|
3710
3780
|
"v2.rule_versions" => "RuleVersions",
|
|
3711
|
-
"v2.rule_version_update" => "RuleVersionUpdate",
|
|
3712
|
-
"v2.rule_version_update_type" => "RuleVersionUpdateType",
|
|
3713
3781
|
"v2.rum_aggregate_bucket_value" => "RUMAggregateBucketValue",
|
|
3714
3782
|
"v2.rum_aggregate_bucket_value_timeseries_point" => "RUMAggregateBucketValueTimeseriesPoint",
|
|
3715
3783
|
"v2.rum_aggregate_request" => "RUMAggregateRequest",
|
|
@@ -3919,6 +3987,10 @@ module DatadogAPIClient
|
|
|
3919
3987
|
"v2.security_monitoring_filter_action" => "SecurityMonitoringFilterAction",
|
|
3920
3988
|
"v2.security_monitoring_list_rules_response" => "SecurityMonitoringListRulesResponse",
|
|
3921
3989
|
"v2.security_monitoring_reference_table" => "SecurityMonitoringReferenceTable",
|
|
3990
|
+
"v2.security_monitoring_rule_anomaly_detection_options" => "SecurityMonitoringRuleAnomalyDetectionOptions",
|
|
3991
|
+
"v2.security_monitoring_rule_anomaly_detection_options_bucket_duration" => "SecurityMonitoringRuleAnomalyDetectionOptionsBucketDuration",
|
|
3992
|
+
"v2.security_monitoring_rule_anomaly_detection_options_detection_tolerance" => "SecurityMonitoringRuleAnomalyDetectionOptionsDetectionTolerance",
|
|
3993
|
+
"v2.security_monitoring_rule_anomaly_detection_options_learning_duration" => "SecurityMonitoringRuleAnomalyDetectionOptionsLearningDuration",
|
|
3922
3994
|
"v2.security_monitoring_rule_case" => "SecurityMonitoringRuleCase",
|
|
3923
3995
|
"v2.security_monitoring_rule_case_action" => "SecurityMonitoringRuleCaseAction",
|
|
3924
3996
|
"v2.security_monitoring_rule_case_action_options" => "SecurityMonitoringRuleCaseActionOptions",
|
|
@@ -4138,6 +4210,11 @@ module DatadogAPIClient
|
|
|
4138
4210
|
"v2.service_definition_v2_slack" => "ServiceDefinitionV2Slack",
|
|
4139
4211
|
"v2.service_definition_v2_slack_type" => "ServiceDefinitionV2SlackType",
|
|
4140
4212
|
"v2.service_definition_v2_version" => "ServiceDefinitionV2Version",
|
|
4213
|
+
"v2.service_list" => "ServiceList",
|
|
4214
|
+
"v2.service_list_data" => "ServiceListData",
|
|
4215
|
+
"v2.service_list_data_attributes" => "ServiceListDataAttributes",
|
|
4216
|
+
"v2.service_list_data_attributes_metadata_items" => "ServiceListDataAttributesMetadataItems",
|
|
4217
|
+
"v2.service_list_data_type" => "ServiceListDataType",
|
|
4141
4218
|
"v2.service_now_basic_auth" => "ServiceNowBasicAuth",
|
|
4142
4219
|
"v2.service_now_basic_auth_type" => "ServiceNowBasicAuthType",
|
|
4143
4220
|
"v2.service_now_basic_auth_update" => "ServiceNowBasicAuthUpdate",
|
|
@@ -4267,6 +4344,17 @@ module DatadogAPIClient
|
|
|
4267
4344
|
"v2.step" => "Step",
|
|
4268
4345
|
"v2.step_display" => "StepDisplay",
|
|
4269
4346
|
"v2.step_display_bounds" => "StepDisplayBounds",
|
|
4347
|
+
"v2.suppression_version_history" => "SuppressionVersionHistory",
|
|
4348
|
+
"v2.suppression_versions" => "SuppressionVersions",
|
|
4349
|
+
"v2.synthetics_global_variable" => "SyntheticsGlobalVariable",
|
|
4350
|
+
"v2.synthetics_global_variable_attributes" => "SyntheticsGlobalVariableAttributes",
|
|
4351
|
+
"v2.synthetics_global_variable_options" => "SyntheticsGlobalVariableOptions",
|
|
4352
|
+
"v2.synthetics_global_variable_parser_type" => "SyntheticsGlobalVariableParserType",
|
|
4353
|
+
"v2.synthetics_global_variable_parse_test_options" => "SyntheticsGlobalVariableParseTestOptions",
|
|
4354
|
+
"v2.synthetics_global_variable_parse_test_options_type" => "SyntheticsGlobalVariableParseTestOptionsType",
|
|
4355
|
+
"v2.synthetics_global_variable_totp_parameters" => "SyntheticsGlobalVariableTOTPParameters",
|
|
4356
|
+
"v2.synthetics_global_variable_value" => "SyntheticsGlobalVariableValue",
|
|
4357
|
+
"v2.synthetics_variable_parser" => "SyntheticsVariableParser",
|
|
4270
4358
|
"v2.table_result_v2" => "TableResultV2",
|
|
4271
4359
|
"v2.table_result_v2_array" => "TableResultV2Array",
|
|
4272
4360
|
"v2.table_result_v2_data" => "TableResultV2Data",
|
|
@@ -4322,6 +4410,18 @@ module DatadogAPIClient
|
|
|
4322
4410
|
"v2.team_link_response" => "TeamLinkResponse",
|
|
4323
4411
|
"v2.team_links_response" => "TeamLinksResponse",
|
|
4324
4412
|
"v2.team_link_type" => "TeamLinkType",
|
|
4413
|
+
"v2.team_notification_rule" => "TeamNotificationRule",
|
|
4414
|
+
"v2.team_notification_rule_attributes" => "TeamNotificationRuleAttributes",
|
|
4415
|
+
"v2.team_notification_rule_attributes_email" => "TeamNotificationRuleAttributesEmail",
|
|
4416
|
+
"v2.team_notification_rule_attributes_ms_teams" => "TeamNotificationRuleAttributesMsTeams",
|
|
4417
|
+
"v2.team_notification_rule_attributes_pagerduty" => "TeamNotificationRuleAttributesPagerduty",
|
|
4418
|
+
"v2.team_notification_rule_attributes_slack" => "TeamNotificationRuleAttributesSlack",
|
|
4419
|
+
"v2.team_notification_rule_request" => "TeamNotificationRuleRequest",
|
|
4420
|
+
"v2.team_notification_rule_response" => "TeamNotificationRuleResponse",
|
|
4421
|
+
"v2.team_notification_rules_response" => "TeamNotificationRulesResponse",
|
|
4422
|
+
"v2.team_notification_rules_response_meta" => "TeamNotificationRulesResponseMeta",
|
|
4423
|
+
"v2.team_notification_rules_response_meta_page" => "TeamNotificationRulesResponseMetaPage",
|
|
4424
|
+
"v2.team_notification_rule_type" => "TeamNotificationRuleType",
|
|
4325
4425
|
"v2.team_on_call_responders" => "TeamOnCallResponders",
|
|
4326
4426
|
"v2.team_on_call_responders_data" => "TeamOnCallRespondersData",
|
|
4327
4427
|
"v2.team_on_call_responders_data_relationships" => "TeamOnCallRespondersDataRelationships",
|
|
@@ -4458,6 +4558,9 @@ module DatadogAPIClient
|
|
|
4458
4558
|
"v2.update_deployment_rule_params" => "UpdateDeploymentRuleParams",
|
|
4459
4559
|
"v2.update_deployment_rule_params_data" => "UpdateDeploymentRuleParamsData",
|
|
4460
4560
|
"v2.update_deployment_rule_params_data_attributes" => "UpdateDeploymentRuleParamsDataAttributes",
|
|
4561
|
+
"v2.update_on_call_notification_rule_request" => "UpdateOnCallNotificationRuleRequest",
|
|
4562
|
+
"v2.update_on_call_notification_rule_request_attributes" => "UpdateOnCallNotificationRuleRequestAttributes",
|
|
4563
|
+
"v2.update_on_call_notification_rule_request_data" => "UpdateOnCallNotificationRuleRequestData",
|
|
4461
4564
|
"v2.update_open_api_response" => "UpdateOpenAPIResponse",
|
|
4462
4565
|
"v2.update_open_api_response_attributes" => "UpdateOpenAPIResponseAttributes",
|
|
4463
4566
|
"v2.update_open_api_response_data" => "UpdateOpenAPIResponseData",
|
|
@@ -4502,6 +4605,7 @@ module DatadogAPIClient
|
|
|
4502
4605
|
"v2.usage_time_series_object" => "UsageTimeSeriesObject",
|
|
4503
4606
|
"v2.usage_time_series_type" => "UsageTimeSeriesType",
|
|
4504
4607
|
"v2.user" => "User",
|
|
4608
|
+
"v2.user140420082644000" => "User140420082644000",
|
|
4505
4609
|
"v2.user_attributes" => "UserAttributes",
|
|
4506
4610
|
"v2.user_attributes_status" => "UserAttributesStatus",
|
|
4507
4611
|
"v2.user_create_attributes" => "UserCreateAttributes",
|
|
@@ -4543,6 +4647,7 @@ module DatadogAPIClient
|
|
|
4543
4647
|
"v2.user_team_update" => "UserTeamUpdate",
|
|
4544
4648
|
"v2.user_team_update_request" => "UserTeamUpdateRequest",
|
|
4545
4649
|
"v2.user_team_user_type" => "UserTeamUserType",
|
|
4650
|
+
"v2.user_type" => "UserType",
|
|
4546
4651
|
"v2.user_update_attributes" => "UserUpdateAttributes",
|
|
4547
4652
|
"v2.user_update_data" => "UserUpdateData",
|
|
4548
4653
|
"v2.user_update_request" => "UserUpdateRequest",
|
|
@@ -4553,6 +4658,8 @@ module DatadogAPIClient
|
|
|
4553
4658
|
"v2.validation_error" => "ValidationError",
|
|
4554
4659
|
"v2.validation_error_meta" => "ValidationErrorMeta",
|
|
4555
4660
|
"v2.validation_response" => "ValidationResponse",
|
|
4661
|
+
"v2.version_history_update" => "VersionHistoryUpdate",
|
|
4662
|
+
"v2.version_history_update_type" => "VersionHistoryUpdateType",
|
|
4556
4663
|
"v2.virus_total_api_key" => "VirusTotalAPIKey",
|
|
4557
4664
|
"v2.virus_total_api_key_type" => "VirusTotalAPIKeyType",
|
|
4558
4665
|
"v2.virus_total_api_key_update" => "VirusTotalAPIKeyUpdate",
|
|
@@ -4642,6 +4749,7 @@ module DatadogAPIClient
|
|
|
4642
4749
|
"v2.actions_datastores_api" => "ActionsDatastoresAPI",
|
|
4643
4750
|
"v2.agentless_scanning_api" => "AgentlessScanningAPI",
|
|
4644
4751
|
"v2.api_management_api" => "APIManagementAPI",
|
|
4752
|
+
"v2.apm_api" => "APMAPI",
|
|
4645
4753
|
"v2.apm_retention_filters_api" => "APMRetentionFiltersAPI",
|
|
4646
4754
|
"v2.app_builder_api" => "AppBuilderAPI",
|
|
4647
4755
|
"v2.application_security_api" => "ApplicationSecurityAPI",
|
|
@@ -4698,6 +4806,7 @@ module DatadogAPIClient
|
|
|
4698
4806
|
"v2.organizations_api" => "OrganizationsAPI",
|
|
4699
4807
|
"v2.powerpack_api" => "PowerpackAPI",
|
|
4700
4808
|
"v2.processes_api" => "ProcessesAPI",
|
|
4809
|
+
"v2.product_analytics_api" => "ProductAnalyticsAPI",
|
|
4701
4810
|
"v2.reference_tables_api" => "ReferenceTablesAPI",
|
|
4702
4811
|
"v2.restriction_policies_api" => "RestrictionPoliciesAPI",
|
|
4703
4812
|
"v2.roles_api" => "RolesAPI",
|
|
@@ -1445,7 +1445,7 @@ module DatadogAPIClient::V1
|
|
|
1445
1445
|
#
|
|
1446
1446
|
# @param public_id [String] The public ID of the test to get details from.
|
|
1447
1447
|
# @param opts [Hash] the optional parameters
|
|
1448
|
-
# @return [Array<(
|
|
1448
|
+
# @return [Array<(SyntheticsTestDetailsWithoutSteps, Integer, Hash)>] SyntheticsTestDetailsWithoutSteps data, response status code and response headers
|
|
1449
1449
|
def get_test_with_http_info(public_id, opts = {})
|
|
1450
1450
|
|
|
1451
1451
|
if @api_client.config.debugging
|
|
@@ -1473,7 +1473,7 @@ module DatadogAPIClient::V1
|
|
|
1473
1473
|
post_body = opts[:debug_body]
|
|
1474
1474
|
|
|
1475
1475
|
# return_type
|
|
1476
|
-
return_type = opts[:debug_return_type] || '
|
|
1476
|
+
return_type = opts[:debug_return_type] || 'SyntheticsTestDetailsWithoutSteps'
|
|
1477
1477
|
|
|
1478
1478
|
# auth_names
|
|
1479
1479
|
auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ]
|
|
@@ -1687,7 +1687,7 @@ module DatadogAPIClient::V1
|
|
|
1687
1687
|
#
|
|
1688
1688
|
# To use it you need to use a block: list_tests_with_pagination { |item| p item }
|
|
1689
1689
|
#
|
|
1690
|
-
# @yield [
|
|
1690
|
+
# @yield [SyntheticsTestDetailsWithoutSteps] Paginated items
|
|
1691
1691
|
def list_tests_with_pagination(opts = {})
|
|
1692
1692
|
api_version = "V1"
|
|
1693
1693
|
page_size = @api_client.get_attribute_from_path(opts, "page_size", 100)
|
|
@@ -129,6 +129,8 @@ module DatadogAPIClient::V1
|
|
|
129
129
|
# cursor := response.metadata.pagination.next_record_id
|
|
130
130
|
# END
|
|
131
131
|
# ```
|
|
132
|
+
# The following values have been **deprecated**:
|
|
133
|
+
# `estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`, `llm_observability_usage`, `llm_observability_percentage`.
|
|
132
134
|
#
|
|
133
135
|
# @param start_hr [Time] Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]` for usage beginning at this hour.
|
|
134
136
|
# @param usage_type [HourlyUsageAttributionUsageType] Usage type to retrieve. The following values have been **deprecated**: `estimated_indexed_spans_usage`, `estimated_ingested_spans_usage`.
|
|
@@ -152,7 +154,7 @@ module DatadogAPIClient::V1
|
|
|
152
154
|
fail ArgumentError, "Missing the required parameter 'usage_type' when calling UsageMeteringAPI.get_hourly_usage_attribution"
|
|
153
155
|
end
|
|
154
156
|
# verify enum value
|
|
155
|
-
allowable_values = ['api_usage', 'apm_fargate_usage', 'apm_host_usage', 'apm_usm_usage', 'appsec_fargate_usage', 'appsec_usage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'browser_usage', 'ci_pipeline_indexed_spans_usage', 'ci_test_indexed_spans_usage', 'ci_visibility_itr_usage', 'cloud_siem_usage', 'code_security_host_usage', 'container_excl_agent_usage', 'container_usage', 'cspm_containers_usage', 'cspm_hosts_usage', 'custom_event_usage', 'custom_ingested_timeseries_usage', 'custom_timeseries_usage', 'cws_containers_usage', 'cws_fargate_task_usage', 'cws_hosts_usage', 'data_jobs_monitoring_usage', 'data_stream_monitoring_usage', 'dbm_hosts_usage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_ingested_spans_usage', 'fargate_usage', 'functions_usage', 'incident_management_monthly_active_users_usage', 'indexed_spans_usage', 'infra_host_usage', 'ingested_logs_bytes_usage', 'ingested_spans_bytes_usage', 'invocations_usage', 'lambda_traced_invocations_usage', 'llm_observability_usage', 'logs_indexed_15day_usage', 'logs_indexed_180day_usage', 'logs_indexed_1day_usage', 'logs_indexed_30day_usage', 'logs_indexed_360day_usage', 'logs_indexed_3day_usage', 'logs_indexed_45day_usage', 'logs_indexed_60day_usage', 'logs_indexed_7day_usage', 'logs_indexed_90day_usage', 'logs_indexed_custom_retention_usage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'npm_host_usage', 'network_device_wireless_usage', 'obs_pipeline_bytes_usage', 'obs_pipelines_vcpu_usage', 'online_archive_usage', 'product_analytics_session_usage', 'profiled_container_usage', 'profiled_fargate_usage', 'profiled_host_usage', 'published_app', 'rum_browser_mobile_sessions_usage', 'rum_ingested_usage', 'rum_investigate_usage', 'rum_replay_sessions_usage', 'rum_session_replay_add_on_usage', 'sca_fargate_usage', 'sds_scanned_bytes_usage', 'serverless_apps_usage', 'siem_analyzed_logs_add_on_usage', 'siem_ingested_bytes_usage', 'snmp_usage', 'universal_service_monitoring_usage', 'vuln_management_hosts_usage', 'workflow_executions_usage']
|
|
157
|
+
allowable_values = ['api_usage', 'apm_fargate_usage', 'apm_host_usage', 'apm_usm_usage', 'appsec_fargate_usage', 'appsec_usage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'bits_ai_investigations_usage', 'browser_usage', 'ci_pipeline_indexed_spans_usage', 'ci_test_indexed_spans_usage', 'ci_visibility_itr_usage', 'cloud_siem_usage', 'code_security_host_usage', 'container_excl_agent_usage', 'container_usage', 'cspm_containers_usage', 'cspm_hosts_usage', 'custom_event_usage', 'custom_ingested_timeseries_usage', 'custom_timeseries_usage', 'cws_containers_usage', 'cws_fargate_task_usage', 'cws_hosts_usage', 'data_jobs_monitoring_usage', 'data_stream_monitoring_usage', 'dbm_hosts_usage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_ingested_spans_usage', 'fargate_usage', 'flex_stored_logs', 'functions_usage', 'incident_management_monthly_active_users_usage', 'indexed_spans_usage', 'infra_host_usage', 'ingested_logs_bytes_usage', 'ingested_spans_bytes_usage', 'invocations_usage', 'lambda_traced_invocations_usage', 'llm_observability_usage', 'llm_spans_usage', 'logs_indexed_15day_usage', 'logs_indexed_180day_usage', 'logs_indexed_1day_usage', 'logs_indexed_30day_usage', 'logs_indexed_360day_usage', 'logs_indexed_3day_usage', 'logs_indexed_45day_usage', 'logs_indexed_60day_usage', 'logs_indexed_7day_usage', 'logs_indexed_90day_usage', 'logs_indexed_custom_retention_usage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'npm_host_usage', 'network_device_wireless_usage', 'obs_pipeline_bytes_usage', 'obs_pipelines_vcpu_usage', 'online_archive_usage', 'product_analytics_session_usage', 'profiled_container_usage', 'profiled_fargate_usage', 'profiled_host_usage', 'published_app', 'rum_browser_mobile_sessions_usage', 'rum_ingested_usage', 'rum_investigate_usage', 'rum_replay_sessions_usage', 'rum_session_replay_add_on_usage', 'sca_fargate_usage', 'sds_scanned_bytes_usage', 'serverless_apps_usage', 'siem_analyzed_logs_add_on_usage', 'siem_ingested_bytes_usage', 'snmp_usage', 'universal_service_monitoring_usage', 'vuln_management_hosts_usage', 'workflow_executions_usage']
|
|
156
158
|
if @api_client.config.client_side_validation && !allowable_values.include?(usage_type)
|
|
157
159
|
fail ArgumentError, "invalid value for \"usage_type\", must be one of #{allowable_values}"
|
|
158
160
|
end
|
|
@@ -455,7 +457,7 @@ module DatadogAPIClient::V1
|
|
|
455
457
|
# ```
|
|
456
458
|
#
|
|
457
459
|
# @param start_month [Time] Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]` for usage beginning in this month. Maximum of 15 months ago.
|
|
458
|
-
# @param fields [MonthlyUsageAttributionSupportedMetrics] Comma-separated list of usage types to return, or `*` for all usage types. The following values have been **deprecated**: `estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`.
|
|
460
|
+
# @param fields [MonthlyUsageAttributionSupportedMetrics] Comma-separated list of usage types to return, or `*` for all usage types. The following values have been **deprecated**: `estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`, `llm_observability_usage`, `llm_observability_percentage`.
|
|
459
461
|
# @param opts [Hash] the optional parameters
|
|
460
462
|
# @option opts [Time] :end_month Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]` for usage ending this month.
|
|
461
463
|
# @option opts [UsageSortDirection] :sort_direction The direction to sort by: `[desc, asc]`.
|
|
@@ -478,7 +480,7 @@ module DatadogAPIClient::V1
|
|
|
478
480
|
fail ArgumentError, "Missing the required parameter 'fields' when calling UsageMeteringAPI.get_monthly_usage_attribution"
|
|
479
481
|
end
|
|
480
482
|
# verify enum value
|
|
481
|
-
allowable_values = ['api_usage', 'api_percentage', 'apm_fargate_usage', 'apm_fargate_percentage', 'appsec_fargate_usage', 'appsec_fargate_percentage', 'apm_host_usage', 'apm_host_percentage', 'apm_usm_usage', 'apm_usm_percentage', 'appsec_usage', 'appsec_percentage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'browser_usage', 'browser_percentage', 'ci_visibility_itr_usage', 'ci_visibility_itr_percentage', 'cloud_siem_usage', 'cloud_siem_percentage', 'code_security_host_usage', 'code_security_host_percentage', 'container_excl_agent_usage', 'container_excl_agent_percentage', 'container_usage', 'container_percentage', 'cspm_containers_percentage', 'cspm_containers_usage', 'cspm_hosts_percentage', 'cspm_hosts_usage', 'custom_timeseries_usage', 'custom_timeseries_percentage', 'custom_ingested_timeseries_usage', 'custom_ingested_timeseries_percentage', '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_jobs_monitoring_percentage', 'data_stream_monitoring_usage', 'data_stream_monitoring_percentage', 'dbm_hosts_percentage', 'dbm_hosts_usage', 'dbm_queries_percentage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_indexed_spans_percentage', 'estimated_ingested_spans_usage', 'estimated_ingested_spans_percentage', 'fargate_usage', 'fargate_percentage', 'functions_usage', 'functions_percentage', 'incident_management_monthly_active_users_usage', 'incident_management_monthly_active_users_percentage', 'infra_host_usage', 'infra_host_percentage', 'invocations_usage', 'invocations_percentage', 'lambda_traced_invocations_usage', 'lambda_traced_invocations_percentage', 'llm_observability_usage', 'llm_observability_percentage', 'mobile_app_testing_percentage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'ndm_netflow_percentage', 'network_device_wireless_usage', 'network_device_wireless_percentage', 'npm_host_usage', 'npm_host_percentage', 'obs_pipeline_bytes_usage', 'obs_pipeline_bytes_percentage', 'obs_pipelines_vcpu_usage', 'obs_pipelines_vcpu_percentage', 'online_archive_usage', 'online_archive_percentage', 'product_analytics_session_usage', 'product_analytics_session_percentage', 'profiled_container_usage', 'profiled_container_percentage', 'profiled_fargate_usage', 'profiled_fargate_percentage', 'profiled_host_usage', 'profiled_host_percentage', 'published_app_usage', 'published_app_percentage', 'serverless_apps_usage', 'serverless_apps_percentage', 'snmp_usage', 'snmp_percentage', 'universal_service_monitoring_usage', 'universal_service_monitoring_percentage', 'vuln_management_hosts_usage', 'vuln_management_hosts_percentage', 'sds_scanned_bytes_usage', 'sds_scanned_bytes_percentage', 'ci_test_indexed_spans_usage', 'ci_test_indexed_spans_percentage', 'ingested_logs_bytes_usage', 'ingested_logs_bytes_percentage', 'ci_pipeline_indexed_spans_usage', 'ci_pipeline_indexed_spans_percentage', 'indexed_spans_usage', 'indexed_spans_percentage', 'custom_event_usage', 'custom_event_percentage', 'logs_indexed_custom_retention_usage', 'logs_indexed_custom_retention_percentage', 'logs_indexed_360day_usage', 'logs_indexed_360day_percentage', 'logs_indexed_180day_usage', 'logs_indexed_180day_percentage', 'logs_indexed_90day_usage', 'logs_indexed_90day_percentage', 'logs_indexed_60day_usage', 'logs_indexed_60day_percentage', 'logs_indexed_45day_usage', 'logs_indexed_45day_percentage', 'logs_indexed_30day_usage', 'logs_indexed_30day_percentage', 'logs_indexed_15day_usage', 'logs_indexed_15day_percentage', 'logs_indexed_7day_usage', 'logs_indexed_7day_percentage', 'logs_indexed_3day_usage', 'logs_indexed_3day_percentage', 'logs_indexed_1day_usage', 'logs_indexed_1day_percentage', 'rum_ingested_usage', 'rum_ingested_percentage', 'rum_investigate_usage', 'rum_investigate_percentage', 'rum_replay_sessions_usage', 'rum_replay_sessions_percentage', 'rum_session_replay_add_on_usage', 'rum_session_replay_add_on_percentage', 'rum_browser_mobile_sessions_usage', 'rum_browser_mobile_sessions_percentage', 'ingested_spans_bytes_usage', 'ingested_spans_bytes_percentage', 'siem_analyzed_logs_add_on_usage', 'siem_analyzed_logs_add_on_percentage', 'siem_ingested_bytes_usage', 'siem_ingested_bytes_percentage', 'workflow_executions_usage', 'workflow_executions_percentage', 'sca_fargate_usage', 'sca_fargate_percentage', '*']
|
|
483
|
+
allowable_values = ['api_usage', 'api_percentage', 'apm_fargate_usage', 'apm_fargate_percentage', 'appsec_fargate_usage', 'appsec_fargate_percentage', 'apm_host_usage', 'apm_host_percentage', 'apm_usm_usage', 'apm_usm_percentage', 'appsec_usage', 'appsec_percentage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'bits_ai_investigations_usage', 'bits_ai_investigations_percentage', 'browser_usage', 'browser_percentage', 'ci_visibility_itr_usage', 'ci_visibility_itr_percentage', 'cloud_siem_usage', 'cloud_siem_percentage', 'code_security_host_usage', 'code_security_host_percentage', 'container_excl_agent_usage', 'container_excl_agent_percentage', 'container_usage', 'container_percentage', 'cspm_containers_percentage', 'cspm_containers_usage', 'cspm_hosts_percentage', 'cspm_hosts_usage', 'custom_timeseries_usage', 'custom_timeseries_percentage', 'custom_ingested_timeseries_usage', 'custom_ingested_timeseries_percentage', '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_jobs_monitoring_percentage', 'data_stream_monitoring_usage', 'data_stream_monitoring_percentage', 'dbm_hosts_percentage', 'dbm_hosts_usage', 'dbm_queries_percentage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_indexed_spans_percentage', 'estimated_ingested_spans_usage', 'estimated_ingested_spans_percentage', 'fargate_usage', 'fargate_percentage', 'flex_stored_logs_usage', 'flex_stored_logs_percentage', 'functions_usage', 'functions_percentage', 'incident_management_monthly_active_users_usage', 'incident_management_monthly_active_users_percentage', 'infra_host_usage', 'infra_host_percentage', 'invocations_usage', 'invocations_percentage', 'lambda_traced_invocations_usage', 'lambda_traced_invocations_percentage', 'llm_observability_usage', 'llm_observability_percentage', 'llm_spans_usage', 'llm_spans_percentage', 'mobile_app_testing_percentage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'ndm_netflow_percentage', 'network_device_wireless_usage', 'network_device_wireless_percentage', 'npm_host_usage', 'npm_host_percentage', 'obs_pipeline_bytes_usage', 'obs_pipeline_bytes_percentage', 'obs_pipelines_vcpu_usage', 'obs_pipelines_vcpu_percentage', 'online_archive_usage', 'online_archive_percentage', 'product_analytics_session_usage', 'product_analytics_session_percentage', 'profiled_container_usage', 'profiled_container_percentage', 'profiled_fargate_usage', 'profiled_fargate_percentage', 'profiled_host_usage', 'profiled_host_percentage', 'published_app_usage', 'published_app_percentage', 'serverless_apps_usage', 'serverless_apps_percentage', 'snmp_usage', 'snmp_percentage', 'universal_service_monitoring_usage', 'universal_service_monitoring_percentage', 'vuln_management_hosts_usage', 'vuln_management_hosts_percentage', 'sds_scanned_bytes_usage', 'sds_scanned_bytes_percentage', 'ci_test_indexed_spans_usage', 'ci_test_indexed_spans_percentage', 'ingested_logs_bytes_usage', 'ingested_logs_bytes_percentage', 'ci_pipeline_indexed_spans_usage', 'ci_pipeline_indexed_spans_percentage', 'indexed_spans_usage', 'indexed_spans_percentage', 'custom_event_usage', 'custom_event_percentage', 'logs_indexed_custom_retention_usage', 'logs_indexed_custom_retention_percentage', 'logs_indexed_360day_usage', 'logs_indexed_360day_percentage', 'logs_indexed_180day_usage', 'logs_indexed_180day_percentage', 'logs_indexed_90day_usage', 'logs_indexed_90day_percentage', 'logs_indexed_60day_usage', 'logs_indexed_60day_percentage', 'logs_indexed_45day_usage', 'logs_indexed_45day_percentage', 'logs_indexed_30day_usage', 'logs_indexed_30day_percentage', 'logs_indexed_15day_usage', 'logs_indexed_15day_percentage', 'logs_indexed_7day_usage', 'logs_indexed_7day_percentage', 'logs_indexed_3day_usage', 'logs_indexed_3day_percentage', 'logs_indexed_1day_usage', 'logs_indexed_1day_percentage', 'rum_ingested_usage', 'rum_ingested_percentage', 'rum_investigate_usage', 'rum_investigate_percentage', 'rum_replay_sessions_usage', 'rum_replay_sessions_percentage', 'rum_session_replay_add_on_usage', 'rum_session_replay_add_on_percentage', 'rum_browser_mobile_sessions_usage', 'rum_browser_mobile_sessions_percentage', 'ingested_spans_bytes_usage', 'ingested_spans_bytes_percentage', 'siem_analyzed_logs_add_on_usage', 'siem_analyzed_logs_add_on_percentage', 'siem_ingested_bytes_usage', 'siem_ingested_bytes_percentage', 'workflow_executions_usage', 'workflow_executions_percentage', 'sca_fargate_usage', 'sca_fargate_percentage', '*']
|
|
482
484
|
if @api_client.config.client_side_validation && !allowable_values.include?(fields)
|
|
483
485
|
fail ArgumentError, "invalid value for \"fields\", must be one of #{allowable_values}"
|
|
484
486
|
end
|
|
@@ -486,7 +488,7 @@ module DatadogAPIClient::V1
|
|
|
486
488
|
if @api_client.config.client_side_validation && opts[:'sort_direction'] && !allowable_values.include?(opts[:'sort_direction'])
|
|
487
489
|
fail ArgumentError, "invalid value for \"sort_direction\", must be one of #{allowable_values}"
|
|
488
490
|
end
|
|
489
|
-
allowable_values = ['api_usage', 'api_percentage', 'apm_fargate_usage', 'apm_fargate_percentage', 'appsec_fargate_usage', 'appsec_fargate_percentage', 'apm_host_usage', 'apm_host_percentage', 'apm_usm_usage', 'apm_usm_percentage', 'appsec_usage', 'appsec_percentage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'browser_usage', 'browser_percentage', 'ci_visibility_itr_usage', 'ci_visibility_itr_percentage', 'cloud_siem_usage', 'cloud_siem_percentage', 'code_security_host_usage', 'code_security_host_percentage', 'container_excl_agent_usage', 'container_excl_agent_percentage', 'container_usage', 'container_percentage', 'cspm_containers_percentage', 'cspm_containers_usage', 'cspm_hosts_percentage', 'cspm_hosts_usage', 'custom_timeseries_usage', 'custom_timeseries_percentage', 'custom_ingested_timeseries_usage', 'custom_ingested_timeseries_percentage', '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_jobs_monitoring_percentage', 'data_stream_monitoring_usage', 'data_stream_monitoring_percentage', 'dbm_hosts_percentage', 'dbm_hosts_usage', 'dbm_queries_percentage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_indexed_spans_percentage', 'estimated_ingested_spans_usage', 'estimated_ingested_spans_percentage', 'fargate_usage', 'fargate_percentage', 'functions_usage', 'functions_percentage', 'incident_management_monthly_active_users_usage', 'incident_management_monthly_active_users_percentage', 'infra_host_usage', 'infra_host_percentage', 'invocations_usage', 'invocations_percentage', 'lambda_traced_invocations_usage', 'lambda_traced_invocations_percentage', 'llm_observability_usage', 'llm_observability_percentage', 'mobile_app_testing_percentage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'ndm_netflow_percentage', 'network_device_wireless_usage', 'network_device_wireless_percentage', 'npm_host_usage', 'npm_host_percentage', 'obs_pipeline_bytes_usage', 'obs_pipeline_bytes_percentage', 'obs_pipelines_vcpu_usage', 'obs_pipelines_vcpu_percentage', 'online_archive_usage', 'online_archive_percentage', 'product_analytics_session_usage', 'product_analytics_session_percentage', 'profiled_container_usage', 'profiled_container_percentage', 'profiled_fargate_usage', 'profiled_fargate_percentage', 'profiled_host_usage', 'profiled_host_percentage', 'published_app_usage', 'published_app_percentage', 'serverless_apps_usage', 'serverless_apps_percentage', 'snmp_usage', 'snmp_percentage', 'universal_service_monitoring_usage', 'universal_service_monitoring_percentage', 'vuln_management_hosts_usage', 'vuln_management_hosts_percentage', 'sds_scanned_bytes_usage', 'sds_scanned_bytes_percentage', 'ci_test_indexed_spans_usage', 'ci_test_indexed_spans_percentage', 'ingested_logs_bytes_usage', 'ingested_logs_bytes_percentage', 'ci_pipeline_indexed_spans_usage', 'ci_pipeline_indexed_spans_percentage', 'indexed_spans_usage', 'indexed_spans_percentage', 'custom_event_usage', 'custom_event_percentage', 'logs_indexed_custom_retention_usage', 'logs_indexed_custom_retention_percentage', 'logs_indexed_360day_usage', 'logs_indexed_360day_percentage', 'logs_indexed_180day_usage', 'logs_indexed_180day_percentage', 'logs_indexed_90day_usage', 'logs_indexed_90day_percentage', 'logs_indexed_60day_usage', 'logs_indexed_60day_percentage', 'logs_indexed_45day_usage', 'logs_indexed_45day_percentage', 'logs_indexed_30day_usage', 'logs_indexed_30day_percentage', 'logs_indexed_15day_usage', 'logs_indexed_15day_percentage', 'logs_indexed_7day_usage', 'logs_indexed_7day_percentage', 'logs_indexed_3day_usage', 'logs_indexed_3day_percentage', 'logs_indexed_1day_usage', 'logs_indexed_1day_percentage', 'rum_ingested_usage', 'rum_ingested_percentage', 'rum_investigate_usage', 'rum_investigate_percentage', 'rum_replay_sessions_usage', 'rum_replay_sessions_percentage', 'rum_session_replay_add_on_usage', 'rum_session_replay_add_on_percentage', 'rum_browser_mobile_sessions_usage', 'rum_browser_mobile_sessions_percentage', 'ingested_spans_bytes_usage', 'ingested_spans_bytes_percentage', 'siem_analyzed_logs_add_on_usage', 'siem_analyzed_logs_add_on_percentage', 'siem_ingested_bytes_usage', 'siem_ingested_bytes_percentage', 'workflow_executions_usage', 'workflow_executions_percentage', 'sca_fargate_usage', 'sca_fargate_percentage', '*']
|
|
491
|
+
allowable_values = ['api_usage', 'api_percentage', 'apm_fargate_usage', 'apm_fargate_percentage', 'appsec_fargate_usage', 'appsec_fargate_percentage', 'apm_host_usage', 'apm_host_percentage', 'apm_usm_usage', 'apm_usm_percentage', 'appsec_usage', 'appsec_percentage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'bits_ai_investigations_usage', 'bits_ai_investigations_percentage', 'browser_usage', 'browser_percentage', 'ci_visibility_itr_usage', 'ci_visibility_itr_percentage', 'cloud_siem_usage', 'cloud_siem_percentage', 'code_security_host_usage', 'code_security_host_percentage', 'container_excl_agent_usage', 'container_excl_agent_percentage', 'container_usage', 'container_percentage', 'cspm_containers_percentage', 'cspm_containers_usage', 'cspm_hosts_percentage', 'cspm_hosts_usage', 'custom_timeseries_usage', 'custom_timeseries_percentage', 'custom_ingested_timeseries_usage', 'custom_ingested_timeseries_percentage', '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_jobs_monitoring_percentage', 'data_stream_monitoring_usage', 'data_stream_monitoring_percentage', 'dbm_hosts_percentage', 'dbm_hosts_usage', 'dbm_queries_percentage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_indexed_spans_percentage', 'estimated_ingested_spans_usage', 'estimated_ingested_spans_percentage', 'fargate_usage', 'fargate_percentage', 'flex_stored_logs_usage', 'flex_stored_logs_percentage', 'functions_usage', 'functions_percentage', 'incident_management_monthly_active_users_usage', 'incident_management_monthly_active_users_percentage', 'infra_host_usage', 'infra_host_percentage', 'invocations_usage', 'invocations_percentage', 'lambda_traced_invocations_usage', 'lambda_traced_invocations_percentage', 'llm_observability_usage', 'llm_observability_percentage', 'llm_spans_usage', 'llm_spans_percentage', 'mobile_app_testing_percentage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'ndm_netflow_percentage', 'network_device_wireless_usage', 'network_device_wireless_percentage', 'npm_host_usage', 'npm_host_percentage', 'obs_pipeline_bytes_usage', 'obs_pipeline_bytes_percentage', 'obs_pipelines_vcpu_usage', 'obs_pipelines_vcpu_percentage', 'online_archive_usage', 'online_archive_percentage', 'product_analytics_session_usage', 'product_analytics_session_percentage', 'profiled_container_usage', 'profiled_container_percentage', 'profiled_fargate_usage', 'profiled_fargate_percentage', 'profiled_host_usage', 'profiled_host_percentage', 'published_app_usage', 'published_app_percentage', 'serverless_apps_usage', 'serverless_apps_percentage', 'snmp_usage', 'snmp_percentage', 'universal_service_monitoring_usage', 'universal_service_monitoring_percentage', 'vuln_management_hosts_usage', 'vuln_management_hosts_percentage', 'sds_scanned_bytes_usage', 'sds_scanned_bytes_percentage', 'ci_test_indexed_spans_usage', 'ci_test_indexed_spans_percentage', 'ingested_logs_bytes_usage', 'ingested_logs_bytes_percentage', 'ci_pipeline_indexed_spans_usage', 'ci_pipeline_indexed_spans_percentage', 'indexed_spans_usage', 'indexed_spans_percentage', 'custom_event_usage', 'custom_event_percentage', 'logs_indexed_custom_retention_usage', 'logs_indexed_custom_retention_percentage', 'logs_indexed_360day_usage', 'logs_indexed_360day_percentage', 'logs_indexed_180day_usage', 'logs_indexed_180day_percentage', 'logs_indexed_90day_usage', 'logs_indexed_90day_percentage', 'logs_indexed_60day_usage', 'logs_indexed_60day_percentage', 'logs_indexed_45day_usage', 'logs_indexed_45day_percentage', 'logs_indexed_30day_usage', 'logs_indexed_30day_percentage', 'logs_indexed_15day_usage', 'logs_indexed_15day_percentage', 'logs_indexed_7day_usage', 'logs_indexed_7day_percentage', 'logs_indexed_3day_usage', 'logs_indexed_3day_percentage', 'logs_indexed_1day_usage', 'logs_indexed_1day_percentage', 'rum_ingested_usage', 'rum_ingested_percentage', 'rum_investigate_usage', 'rum_investigate_percentage', 'rum_replay_sessions_usage', 'rum_replay_sessions_percentage', 'rum_session_replay_add_on_usage', 'rum_session_replay_add_on_percentage', 'rum_browser_mobile_sessions_usage', 'rum_browser_mobile_sessions_percentage', 'ingested_spans_bytes_usage', 'ingested_spans_bytes_percentage', 'siem_analyzed_logs_add_on_usage', 'siem_analyzed_logs_add_on_percentage', 'siem_ingested_bytes_usage', 'siem_ingested_bytes_percentage', 'workflow_executions_usage', 'workflow_executions_percentage', 'sca_fargate_usage', 'sca_fargate_percentage', '*']
|
|
490
492
|
if @api_client.config.client_side_validation && opts[:'sort_name'] && !allowable_values.include?(opts[:'sort_name'])
|
|
491
493
|
fail ArgumentError, "invalid value for \"sort_name\", must be one of #{allowable_values}"
|
|
492
494
|
end
|