datadog_api_client 2.38.0 → 2.40.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/.generated-info +4 -0
- data/.generator/schemas/v1/openapi.yaml +700 -42
- data/.generator/schemas/v2/openapi.yaml +3845 -182
- data/.generator/src/generator/cli.py +1 -0
- data/.generator/src/generator/openapi.py +12 -0
- data/.generator/src/generator/templates/api.j2 +1 -1
- data/.github/workflows/approved_status.yml +1 -0
- data/.github/workflows/test.yml +1 -1
- data/CHANGELOG.md +42 -0
- data/Gemfile +1 -0
- data/examples/v1/dashboards/CreateDashboard_1751391372.rb +41 -0
- data/examples/v1/dashboards/CreatePublicDashboard_1668947073.rb +28 -0
- data/examples/v1/dashboards/UpdatePublicDashboard_1708268778.rb +27 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_1248402480.rb +25 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_1267211320.rb +27 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_1271012410.rb +25 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_3314493032.rb +26 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_3336967838.rb +24 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_3934594739.rb +26 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1072503741.rb +1 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1279271422.rb +1 -0
- data/examples/v1/synthetics/SearchTests.rb +5 -0
- data/examples/v1/synthetics/SearchTests_195957771.rb +14 -0
- data/examples/v2/aws-integration/CreateAWSAccount.rb +10 -0
- data/examples/v2/aws-integration/CreateAWSAccount_1716720881.rb +10 -0
- data/examples/v2/aws-integration/GetAWSIntegrationIAMPermissions.rb +5 -0
- data/examples/v2/aws-integration/UpdateAWSAccount.rb +10 -0
- data/examples/v2/case-management/UpdateAttributes.rb +26 -0
- data/examples/v2/cloud-cost-management/CreateCostGCPUsageCostConfig.rb +19 -0
- data/examples/v2/cloud-cost-management/DeleteCostGCPUsageCostConfig.rb +5 -0
- data/examples/v2/cloud-cost-management/ListCostGCPUsageCostConfigs.rb +5 -0
- data/examples/v2/cloud-cost-management/UpdateCostGCPUsageCostConfig.rb +14 -0
- data/examples/v2/cloud-network-monitoring/GetAggregatedConnections.rb +0 -3
- data/examples/v2/cloud-network-monitoring/GetAggregatedConnections_3059356111.rb +0 -3
- data/examples/v2/cloud-network-monitoring/GetAggregatedDns.rb +5 -0
- data/examples/v2/datasets/CreateDataset.rb +28 -0
- data/examples/v2/datasets/DeleteDataset.rb +11 -0
- data/examples/v2/datasets/GetAllDatasets.rb +8 -0
- data/examples/v2/datasets/GetDataset.rb +11 -0
- data/examples/v2/datasets/UpdateDataset.rb +31 -0
- data/examples/v2/events/GetEvent.rb +5 -0
- data/examples/v2/metrics/GetMetricTagCardinalityDetails.rb +5 -0
- data/examples/v2/monitors/CreateMonitorNotificationRule.rb +0 -3
- data/examples/v2/monitors/DeleteMonitorNotificationRule.rb +0 -3
- data/examples/v2/monitors/GetMonitorNotificationRule.rb +0 -3
- data/examples/v2/monitors/GetMonitorNotificationRules.rb +0 -3
- data/examples/v2/monitors/UpdateMonitorNotificationRule.rb +0 -3
- data/examples/v2/on-call/UpdateOnCallSchedule.rb +1 -1
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_1965169892.rb +6 -0
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_868881438.rb +41 -0
- data/examples/v2/security-monitoring/ListAssetsSBOMs.rb +12 -0
- data/lib/datadog_api_client/configuration.rb +10 -6
- data/lib/datadog_api_client/inflector.rb +264 -0
- data/lib/datadog_api_client/v1/api/hosts_api.rb +1 -0
- data/lib/datadog_api_client/v1/api/logs_api.rb +1 -1
- data/lib/datadog_api_client/v1/api/logs_indexes_api.rb +1 -1
- data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +8 -2
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +74 -0
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +6 -6
- data/lib/datadog_api_client/v1/models/dashboard_template_variable.rb +14 -3
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_body.rb +1 -0
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +9 -1
- data/lib/datadog_api_client/v1/models/logs_array_processor.rb +168 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation.rb +64 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_append.rb +175 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_append_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_length.rb +165 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_length_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_select.rb +207 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_operation_select_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_array_processor_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_decoder_processor.rb +229 -0
- data/lib/datadog_api_client/v1/models/logs_decoder_processor_binary_to_text_encoding.rb +27 -0
- data/lib/datadog_api_client/v1/models/logs_decoder_processor_input_representation.rb +27 -0
- data/lib/datadog_api_client/v1/models/logs_decoder_processor_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/logs_processor.rb +3 -1
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_body.rb +1 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +14 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +142 -1
- data/lib/datadog_api_client/v1/models/selectable_template_variable_items.rb +12 -1
- data/lib/datadog_api_client/v1/models/synthetics_step_type.rb +1 -0
- data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +13 -3
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +11 -1
- data/lib/datadog_api_client/v1/models/usage_billable_summary_body.rb +21 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +121 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +121 -1
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +121 -1
- data/lib/datadog_api_client/v2/api/aws_integration_api.rb +60 -0
- data/lib/datadog_api_client/v2/api/case_management_api.rb +72 -0
- data/lib/datadog_api_client/v2/api/cloud_cost_management_api.rb +264 -0
- data/lib/datadog_api_client/v2/api/cloud_network_monitoring_api.rb +80 -10
- data/lib/datadog_api_client/v2/api/datasets_api.rb +385 -0
- data/lib/datadog_api_client/v2/api/events_api.rb +67 -2
- data/lib/datadog_api_client/v2/api/metrics_api.rb +65 -0
- data/lib/datadog_api_client/v2/api/monitors_api.rb +8 -38
- data/lib/datadog_api_client/v2/api/restriction_policies_api.rb +13 -5
- data/lib/datadog_api_client/v2/api/rum_api.rb +3 -3
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +127 -13
- data/lib/datadog_api_client/v2/api/usage_metering_api.rb +1 -1
- data/lib/datadog_api_client/v2/models/action_connection_integration.rb +23 -1
- data/lib/datadog_api_client/v2/models/action_connection_integration_update.rb +23 -1
- data/lib/datadog_api_client/v2/models/alert_event_attributes.rb +187 -0
- data/lib/datadog_api_client/v2/models/alert_event_attributes_links_item.rb +125 -0
- data/lib/datadog_api_client/v2/models/alert_event_attributes_links_item_category.rb +28 -0
- data/lib/datadog_api_client/v2/models/alert_event_attributes_priority.rb +30 -0
- data/lib/datadog_api_client/v2/models/alert_event_attributes_status.rb +28 -0
- data/lib/datadog_api_client/v2/models/anthropic_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/anthropic_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/anthropic_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/anthropic_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/anthropic_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/anthropic_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/anthropic_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/anthropic_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/asana_access_token.rb +144 -0
- data/lib/datadog_api_client/v2/models/asana_access_token_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/asana_access_token_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/asana_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/asana_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/asana_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/asana_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/asana_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/asset_attributes.rb +13 -1
- data/lib/datadog_api_client/v2/models/aws_integration_iam_permissions_response.rb +123 -0
- data/lib/datadog_api_client/v2/models/aws_integration_iam_permissions_response_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/aws_integration_iam_permissions_response_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/aws_integration_iam_permissions_response_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/aws_lambda_forwarder_config.rb +11 -1
- data/lib/datadog_api_client/v2/models/aws_lambda_forwarder_config_log_source_config.rb +107 -0
- data/lib/datadog_api_client/v2/models/aws_log_source_tag_filter.rb +128 -0
- data/lib/datadog_api_client/v2/models/azure_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/azure_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/azure_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/azure_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/azure_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/azure_tenant.rb +196 -0
- data/lib/datadog_api_client/v2/models/azure_tenant_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/azure_tenant_update.rb +163 -0
- data/lib/datadog_api_client/v2/models/case.rb +1 -1
- data/lib/datadog_api_client/v2/models/case_attributes.rb +12 -2
- data/lib/datadog_api_client/v2/models/case_update_attributes.rb +144 -0
- data/lib/datadog_api_client/v2/models/case_update_attributes_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/case_update_attributes_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/change_event_attributes.rb +207 -0
- data/lib/datadog_api_client/v2/models/change_event_attributes_author.rb +115 -0
- data/lib/datadog_api_client/v2/models/change_event_attributes_author_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/change_event_attributes_changed_resource.rb +115 -0
- data/lib/datadog_api_client/v2/models/change_event_attributes_changed_resource_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/change_event_attributes_impacted_resources_item.rb +115 -0
- data/lib/datadog_api_client/v2/models/change_event_attributes_impacted_resources_item_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/circle_ci_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/circle_ci_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/circle_ci_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/circle_ci_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/circle_ci_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/circle_ciapi_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/circle_ciapi_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/circle_ciapi_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/clickup_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/clickup_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/clickup_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/clickup_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/clickup_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/clickup_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/clickup_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/clickup_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/cloudflare_api_token.rb +144 -0
- data/lib/datadog_api_client/v2/models/cloudflare_api_token_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/cloudflare_api_token_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/cloudflare_credentials.rb +63 -0
- data/lib/datadog_api_client/v2/models/cloudflare_credentials_update.rb +63 -0
- data/lib/datadog_api_client/v2/models/cloudflare_global_api_token.rb +165 -0
- data/lib/datadog_api_client/v2/models/cloudflare_global_api_token_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/cloudflare_global_api_token_update.rb +143 -0
- data/lib/datadog_api_client/v2/models/cloudflare_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/cloudflare_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/cloudflare_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/config_cat_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/config_cat_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/config_cat_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/config_cat_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/config_cat_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/config_cat_sdk_key.rb +186 -0
- data/lib/datadog_api_client/v2/models/config_cat_sdk_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/config_cat_sdk_key_update.rb +153 -0
- data/lib/datadog_api_client/v2/models/datadog_api_key.rb +196 -0
- data/lib/datadog_api_client/v2/models/datadog_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/datadog_api_key_update.rb +163 -0
- data/lib/datadog_api_client/v2/models/datadog_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/datadog_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/datadog_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/datadog_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/datadog_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/dataset_attributes_request.rb +169 -0
- data/lib/datadog_api_client/v2/models/dataset_attributes_response.rb +157 -0
- data/lib/datadog_api_client/v2/models/dataset_create_request.rb +133 -0
- data/lib/datadog_api_client/v2/models/dataset_request.rb +154 -0
- data/lib/datadog_api_client/v2/models/dataset_response.rb +135 -0
- data/lib/datadog_api_client/v2/models/dataset_response_multi.rb +107 -0
- data/lib/datadog_api_client/v2/models/dataset_response_single.rb +115 -0
- data/lib/datadog_api_client/v2/models/dataset_update_request.rb +133 -0
- data/lib/datadog_api_client/v2/models/dns_metric_key.rb +35 -0
- data/lib/datadog_api_client/v2/models/entity_v3_api.rb +1 -1
- data/lib/datadog_api_client/v2/models/entity_v3_api_version.rb +4 -1
- data/lib/datadog_api_client/v2/models/entity_v3_datastore.rb +1 -1
- data/lib/datadog_api_client/v2/models/entity_v3_queue.rb +1 -1
- data/lib/datadog_api_client/v2/models/entity_v3_service.rb +1 -1
- data/lib/datadog_api_client/v2/models/entity_v3_system.rb +1 -1
- data/lib/datadog_api_client/v2/models/event_system_attributes.rb +145 -0
- data/lib/datadog_api_client/v2/models/event_system_attributes_category.rb +27 -0
- data/lib/datadog_api_client/v2/models/event_system_attributes_integration_id.rb +26 -0
- data/lib/datadog_api_client/v2/models/events_data_source.rb +1 -0
- data/lib/datadog_api_client/v2/models/fastly_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/fastly_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/fastly_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/fastly_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/fastly_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/fastly_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/fastly_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/fastly_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/filters_per_product.rb +150 -0
- data/lib/datadog_api_client/v2/models/freshservice_api_key.rb +165 -0
- data/lib/datadog_api_client/v2/models/freshservice_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/freshservice_api_key_update.rb +143 -0
- data/lib/datadog_api_client/v2/models/freshservice_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/freshservice_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/freshservice_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/freshservice_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/freshservice_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/gcp_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/gcp_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/gcp_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/gcp_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/gcp_service_account.rb +165 -0
- data/lib/datadog_api_client/v2/models/gcp_service_account_credential_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_service_account_update.rb +143 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config.rb +154 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_attributes.rb +369 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request_attributes.rb +217 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_configs_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/gemini_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/gemini_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gemini_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/gemini_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/gemini_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/gemini_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/gemini_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gemini_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/gitlab_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/gitlab_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gitlab_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/gitlab_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/gitlab_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/gitlab_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/gitlab_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gitlab_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/grey_noise_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/grey_noise_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/grey_noise_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/grey_noise_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/grey_noise_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/grey_noise_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/grey_noise_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/grey_noise_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/launch_darkly_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/launch_darkly_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/launch_darkly_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/launch_darkly_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/launch_darkly_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/launch_darkly_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/launch_darkly_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/launch_darkly_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/layer_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/layer_attributes_interval.rb +1 -1
- data/lib/datadog_api_client/v2/models/list_assets_sbo_ms_response.rb +145 -0
- data/lib/datadog_api_client/v2/models/metric_asset_attributes.rb +14 -2
- data/lib/datadog_api_client/v2/models/metric_dashboard_attributes.rb +13 -1
- data/lib/datadog_api_client/v2/models/metric_monitor_asset.rb +1 -1
- data/lib/datadog_api_client/v2/models/metric_notebook_asset.rb +1 -1
- data/lib/datadog_api_client/v2/models/metric_slo_asset.rb +1 -1
- data/lib/datadog_api_client/v2/models/metric_tag_cardinalities_meta.rb +107 -0
- data/lib/datadog_api_client/v2/models/metric_tag_cardinalities_response.rb +117 -0
- data/lib/datadog_api_client/v2/models/metric_tag_cardinality.rb +125 -0
- data/lib/datadog_api_client/v2/models/metric_tag_cardinality_attributes.rb +105 -0
- data/lib/datadog_api_client/v2/models/notion_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/notion_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/notion_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/notion_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/notion_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/notion_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/notion_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/notion_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_grok_processor_rule.rb +1 -12
- data/lib/datadog_api_client/v2/models/okta_api_token.rb +165 -0
- data/lib/datadog_api_client/v2/models/okta_api_token_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/okta_api_token_update.rb +143 -0
- data/lib/datadog_api_client/v2/models/okta_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/okta_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/okta_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/okta_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/okta_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/open_ai_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/open_ai_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/open_ai_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/open_ai_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/open_ai_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/open_aiapi_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/open_aiapi_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/open_aiapi_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/rule_types_items.rb +3 -1
- data/lib/datadog_api_client/v2/models/sbom_attributes.rb +24 -1
- data/lib/datadog_api_client/v2/models/sbom_component.rb +46 -1
- data/lib/datadog_api_client/v2/models/sbom_component_dependency.rb +117 -0
- data/lib/datadog_api_client/v2/models/sbom_component_license.rb +123 -0
- data/lib/datadog_api_client/v2/models/sbom_component_license_license.rb +123 -0
- data/lib/datadog_api_client/v2/models/sbom_component_license_type.rb +33 -0
- data/lib/datadog_api_client/v2/models/sbom_component_property.rb +144 -0
- data/lib/datadog_api_client/v2/models/sbom_component_supplier.rb +123 -0
- data/lib/datadog_api_client/v2/models/sbom_metadata.rb +25 -3
- data/lib/datadog_api_client/v2/models/sbom_metadata_author.rb +105 -0
- data/lib/datadog_api_client/v2/models/schedule_create_request_data_attributes_layers_items.rb +1 -1
- data/lib/datadog_api_client/v2/models/schedule_update_request_data_attributes_layers_items.rb +1 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case_action_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case_action_options_flagged_ip_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case_action_type.rb +1 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_update_payload.rb +31 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_scheduling_options.rb +125 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_create_payload.rb +31 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_payload.rb +31 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_query.rb +12 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_response.rb +31 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_standard_rule_test_payload.rb +31 -1
- data/lib/datadog_api_client/v2/models/service_now_basic_auth.rb +186 -0
- data/lib/datadog_api_client/v2/models/service_now_basic_auth_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/service_now_basic_auth_update.rb +153 -0
- data/lib/datadog_api_client/v2/models/service_now_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/service_now_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/service_now_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/service_now_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/service_now_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/single_aggregated_dns_response_array.rb +107 -0
- data/lib/datadog_api_client/v2/models/single_aggregated_dns_response_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/single_aggregated_dns_response_data_attributes.rb +119 -0
- data/lib/datadog_api_client/v2/models/single_aggregated_dns_response_data_attributes_group_by_items.rb +115 -0
- data/lib/datadog_api_client/v2/models/single_aggregated_dns_response_data_attributes_metrics_items.rb +115 -0
- data/lib/datadog_api_client/v2/models/single_aggregated_dns_response_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/split_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/split_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/split_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/split_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/split_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/split_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/split_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/split_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/statsig_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/statsig_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/statsig_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/statsig_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/statsig_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/statsig_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/statsig_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/statsig_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/v2_event.rb +125 -0
- data/lib/datadog_api_client/v2/models/v2_event_attributes.rb +137 -0
- data/lib/datadog_api_client/v2/models/v2_event_attributes_attributes.rb +63 -0
- data/lib/datadog_api_client/v2/models/v2_event_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/virus_total_api_key.rb +144 -0
- data/lib/datadog_api_client/v2/models/virus_total_api_key_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/virus_total_api_key_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/virus_total_credentials.rb +62 -0
- data/lib/datadog_api_client/v2/models/virus_total_credentials_update.rb +62 -0
- data/lib/datadog_api_client/v2/models/virus_total_integration.rb +144 -0
- data/lib/datadog_api_client/v2/models/virus_total_integration_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/virus_total_integration_update.rb +133 -0
- data/lib/datadog_api_client/v2/models/vulnerability_attributes.rb +24 -1
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +293 -2
- data/.apigentools-info +0 -16
@@ -1550,6 +1550,13 @@ components:
|
|
1550
1550
|
example: host
|
1551
1551
|
nullable: true
|
1552
1552
|
type: string
|
1553
|
+
type:
|
1554
|
+
description: The type of variable. This is to differentiate between filter
|
1555
|
+
variables (interpolated in query) and group by variables (interpolated
|
1556
|
+
into group by).
|
1557
|
+
example: group
|
1558
|
+
nullable: true
|
1559
|
+
type: string
|
1553
1560
|
required:
|
1554
1561
|
- name
|
1555
1562
|
type: object
|
@@ -4164,7 +4171,10 @@ components:
|
|
4164
4171
|
type: array
|
4165
4172
|
type: object
|
4166
4173
|
HourlyUsageAttributionUsageType:
|
4167
|
-
description: Supported products for hourly usage attribution requests.
|
4174
|
+
description: 'Supported products for hourly usage attribution requests.
|
4175
|
+
|
4176
|
+
The following values have been **deprecated**: `estimated_indexed_spans_usage`,
|
4177
|
+
`estimated_ingested_spans_usage`.'
|
4168
4178
|
enum:
|
4169
4179
|
- api_usage
|
4170
4180
|
- apm_fargate_usage
|
@@ -4207,6 +4217,7 @@ components:
|
|
4207
4217
|
- ingested_spans_bytes_usage
|
4208
4218
|
- invocations_usage
|
4209
4219
|
- lambda_traced_invocations_usage
|
4220
|
+
- llm_observability_usage
|
4210
4221
|
- logs_indexed_15day_usage
|
4211
4222
|
- logs_indexed_180day_usage
|
4212
4223
|
- logs_indexed_1day_usage
|
@@ -4221,14 +4232,20 @@ components:
|
|
4221
4232
|
- mobile_app_testing_usage
|
4222
4233
|
- ndm_netflow_usage
|
4223
4234
|
- npm_host_usage
|
4235
|
+
- network_device_wireless_usage
|
4224
4236
|
- obs_pipeline_bytes_usage
|
4225
4237
|
- obs_pipelines_vcpu_usage
|
4226
4238
|
- online_archive_usage
|
4239
|
+
- product_analytics_session_usage
|
4227
4240
|
- profiled_container_usage
|
4228
4241
|
- profiled_fargate_usage
|
4229
4242
|
- profiled_host_usage
|
4243
|
+
- published_app
|
4230
4244
|
- rum_browser_mobile_sessions_usage
|
4245
|
+
- rum_ingested_usage
|
4246
|
+
- rum_investigate_usage
|
4231
4247
|
- rum_replay_sessions_usage
|
4248
|
+
- rum_session_replay_add_on_usage
|
4232
4249
|
- sca_fargate_usage
|
4233
4250
|
- sds_scanned_bytes_usage
|
4234
4251
|
- serverless_apps_usage
|
@@ -4281,6 +4298,7 @@ components:
|
|
4281
4298
|
- INGESTED_SPANS_BYTES_USAGE
|
4282
4299
|
- INVOCATIONS_USAGE
|
4283
4300
|
- LAMBDA_TRACED_INVOCATIONS_USAGE
|
4301
|
+
- LLM_OBSERVABILITY_USAGE
|
4284
4302
|
- LOGS_INDEXED_15DAY_USAGE
|
4285
4303
|
- LOGS_INDEXED_180DAY_USAGE
|
4286
4304
|
- LOGS_INDEXED_1DAY_USAGE
|
@@ -4294,15 +4312,21 @@ components:
|
|
4294
4312
|
- LOGS_INDEXED_CUSTOM_RETENTION_USAGE
|
4295
4313
|
- MOBILE_APP_TESTING_USAGE
|
4296
4314
|
- NDM_NETFLOW_USAGE
|
4315
|
+
- NETWORK_DEVICE_WIRELESS_USAGE
|
4297
4316
|
- NPM_HOST_USAGE
|
4298
4317
|
- OBS_PIPELINE_BYTES_USAGE
|
4299
4318
|
- OBS_PIPELINE_VCPU_USAGE
|
4300
4319
|
- ONLINE_ARCHIVE_USAGE
|
4320
|
+
- PRODUCT_ANALYTICS_SESSION_USAGE
|
4301
4321
|
- PROFILED_CONTAINER_USAGE
|
4302
4322
|
- PROFILED_FARGATE_USAGE
|
4303
4323
|
- PROFILED_HOST_USAGE
|
4324
|
+
- PUBLISHED_APP_USAGE
|
4304
4325
|
- RUM_BROWSER_MOBILE_SESSIONS_USAGE
|
4326
|
+
- RUM_INGESTED_USAGE
|
4327
|
+
- RUM_INVESTIGATE_USAGE
|
4305
4328
|
- RUM_REPLAY_SESSIONS_USAGE
|
4329
|
+
- RUM_SESSION_REPLAY_ADD_ON_USAGE
|
4306
4330
|
- SCA_FARGATE_USAGE
|
4307
4331
|
- SDS_SCANNED_BYTES_USAGE
|
4308
4332
|
- SERVERLESS_APPS_USAGE
|
@@ -5156,6 +5180,143 @@ components:
|
|
5156
5180
|
type: string
|
5157
5181
|
x-enum-varnames:
|
5158
5182
|
- ARITHMETIC_PROCESSOR
|
5183
|
+
LogsArrayProcessor:
|
5184
|
+
description: 'A processor for extracting, aggregating, or transforming values
|
5185
|
+
from JSON arrays within your logs.
|
5186
|
+
|
5187
|
+
Supported operations are:
|
5188
|
+
|
5189
|
+
- Select value from matching element
|
5190
|
+
|
5191
|
+
- Compute array length
|
5192
|
+
|
5193
|
+
- Append a value to an array'
|
5194
|
+
properties:
|
5195
|
+
is_enabled:
|
5196
|
+
default: false
|
5197
|
+
description: Whether or not the processor is enabled.
|
5198
|
+
type: boolean
|
5199
|
+
name:
|
5200
|
+
description: Name of the processor.
|
5201
|
+
type: string
|
5202
|
+
operation:
|
5203
|
+
$ref: '#/components/schemas/LogsArrayProcessorOperation'
|
5204
|
+
type:
|
5205
|
+
$ref: '#/components/schemas/LogsArrayProcessorType'
|
5206
|
+
required:
|
5207
|
+
- operation
|
5208
|
+
- type
|
5209
|
+
type: object
|
5210
|
+
LogsArrayProcessorOperation:
|
5211
|
+
description: Configuration of the array processor operation to perform.
|
5212
|
+
oneOf:
|
5213
|
+
- $ref: '#/components/schemas/LogsArrayProcessorOperationAppend'
|
5214
|
+
- $ref: '#/components/schemas/LogsArrayProcessorOperationLength'
|
5215
|
+
- $ref: '#/components/schemas/LogsArrayProcessorOperationSelect'
|
5216
|
+
LogsArrayProcessorOperationAppend:
|
5217
|
+
description: Operation that appends a value to a target array attribute.
|
5218
|
+
properties:
|
5219
|
+
preserve_source:
|
5220
|
+
default: true
|
5221
|
+
description: Remove or preserve the remapped source element.
|
5222
|
+
type: boolean
|
5223
|
+
source:
|
5224
|
+
description: Attribute path containing the value to append.
|
5225
|
+
example: network.client.ip
|
5226
|
+
type: string
|
5227
|
+
target:
|
5228
|
+
description: Attribute path of the array to append to.
|
5229
|
+
example: sourceIps
|
5230
|
+
type: string
|
5231
|
+
type:
|
5232
|
+
$ref: '#/components/schemas/LogsArrayProcessorOperationAppendType'
|
5233
|
+
required:
|
5234
|
+
- type
|
5235
|
+
- source
|
5236
|
+
- target
|
5237
|
+
type: object
|
5238
|
+
LogsArrayProcessorOperationAppendType:
|
5239
|
+
description: Operation type.
|
5240
|
+
enum:
|
5241
|
+
- append
|
5242
|
+
example: append
|
5243
|
+
type: string
|
5244
|
+
x-enum-varnames:
|
5245
|
+
- APPEND
|
5246
|
+
LogsArrayProcessorOperationLength:
|
5247
|
+
description: Operation that computes the length of a `source` array and stores
|
5248
|
+
the result in the `target` attribute.
|
5249
|
+
properties:
|
5250
|
+
source:
|
5251
|
+
description: Attribute path of the array to measure.
|
5252
|
+
example: tags
|
5253
|
+
type: string
|
5254
|
+
target:
|
5255
|
+
description: Attribute that receives the computed length.
|
5256
|
+
example: tagCount
|
5257
|
+
type: string
|
5258
|
+
type:
|
5259
|
+
$ref: '#/components/schemas/LogsArrayProcessorOperationLengthType'
|
5260
|
+
required:
|
5261
|
+
- type
|
5262
|
+
- source
|
5263
|
+
- target
|
5264
|
+
type: object
|
5265
|
+
LogsArrayProcessorOperationLengthType:
|
5266
|
+
description: Operation type.
|
5267
|
+
enum:
|
5268
|
+
- length
|
5269
|
+
example: length
|
5270
|
+
type: string
|
5271
|
+
x-enum-varnames:
|
5272
|
+
- LENGTH
|
5273
|
+
LogsArrayProcessorOperationSelect:
|
5274
|
+
description: Operation that finds an object in a `source` array using a `filter`,
|
5275
|
+
and then extracts a specific value into the `target` attribute.
|
5276
|
+
properties:
|
5277
|
+
filter:
|
5278
|
+
description: Filter condition expressed as `key:value` used to find the
|
5279
|
+
matching element.
|
5280
|
+
example: name:Referrer
|
5281
|
+
type: string
|
5282
|
+
source:
|
5283
|
+
description: Attribute path of the array to search into.
|
5284
|
+
example: httpRequest.headers
|
5285
|
+
type: string
|
5286
|
+
target:
|
5287
|
+
description: Attribute that receives the extracted value.
|
5288
|
+
example: referrer
|
5289
|
+
type: string
|
5290
|
+
type:
|
5291
|
+
$ref: '#/components/schemas/LogsArrayProcessorOperationSelectType'
|
5292
|
+
value_to_extract:
|
5293
|
+
description: Key of the value to extract from the matching element.
|
5294
|
+
example: value
|
5295
|
+
type: string
|
5296
|
+
required:
|
5297
|
+
- type
|
5298
|
+
- source
|
5299
|
+
- target
|
5300
|
+
- filter
|
5301
|
+
- value_to_extract
|
5302
|
+
type: object
|
5303
|
+
LogsArrayProcessorOperationSelectType:
|
5304
|
+
description: Operation type.
|
5305
|
+
enum:
|
5306
|
+
- select
|
5307
|
+
example: select
|
5308
|
+
type: string
|
5309
|
+
x-enum-varnames:
|
5310
|
+
- SELECT
|
5311
|
+
LogsArrayProcessorType:
|
5312
|
+
default: array-processor
|
5313
|
+
description: Type of logs array processor.
|
5314
|
+
enum:
|
5315
|
+
- array-processor
|
5316
|
+
example: array-processor
|
5317
|
+
type: string
|
5318
|
+
x-enum-varnames:
|
5319
|
+
- ARRAY_PROCESSOR
|
5159
5320
|
LogsAttributeRemapper:
|
5160
5321
|
description: 'The remapper processor remaps any source attribute(s) or tag to
|
5161
5322
|
another target attribute or tag.
|
@@ -5386,6 +5547,72 @@ components:
|
|
5386
5547
|
type: string
|
5387
5548
|
x-enum-varnames:
|
5388
5549
|
- DATE_REMAPPER
|
5550
|
+
LogsDecoderProcessor:
|
5551
|
+
description: 'The decoder processor decodes any source attribute containing
|
5552
|
+
a
|
5553
|
+
|
5554
|
+
base64/base16-encoded UTF-8/ASCII string back to its original value, storing
|
5555
|
+
the
|
5556
|
+
|
5557
|
+
result in a target attribute.'
|
5558
|
+
properties:
|
5559
|
+
binary_to_text_encoding:
|
5560
|
+
$ref: '#/components/schemas/LogsDecoderProcessorBinaryToTextEncoding'
|
5561
|
+
input_representation:
|
5562
|
+
$ref: '#/components/schemas/LogsDecoderProcessorInputRepresentation'
|
5563
|
+
is_enabled:
|
5564
|
+
default: false
|
5565
|
+
description: Whether the processor is enabled.
|
5566
|
+
type: boolean
|
5567
|
+
name:
|
5568
|
+
description: Name of the processor.
|
5569
|
+
type: string
|
5570
|
+
source:
|
5571
|
+
description: Name of the log attribute with the encoded data.
|
5572
|
+
example: encoded.field
|
5573
|
+
type: string
|
5574
|
+
target:
|
5575
|
+
description: Name of the log attribute that contains the decoded data.
|
5576
|
+
example: decoded.field
|
5577
|
+
type: string
|
5578
|
+
type:
|
5579
|
+
$ref: '#/components/schemas/LogsDecoderProcessorType'
|
5580
|
+
required:
|
5581
|
+
- source
|
5582
|
+
- target
|
5583
|
+
- binary_to_text_encoding
|
5584
|
+
- input_representation
|
5585
|
+
- type
|
5586
|
+
type: object
|
5587
|
+
LogsDecoderProcessorBinaryToTextEncoding:
|
5588
|
+
description: The encoding used to represent the binary data.
|
5589
|
+
enum:
|
5590
|
+
- base64
|
5591
|
+
- base16
|
5592
|
+
example: base64
|
5593
|
+
type: string
|
5594
|
+
x-enum-varnames:
|
5595
|
+
- BASE64
|
5596
|
+
- BASE16
|
5597
|
+
LogsDecoderProcessorInputRepresentation:
|
5598
|
+
description: The original representation of input string.
|
5599
|
+
enum:
|
5600
|
+
- utf_8
|
5601
|
+
- integer
|
5602
|
+
example: utf_8
|
5603
|
+
type: string
|
5604
|
+
x-enum-varnames:
|
5605
|
+
- UTF_8
|
5606
|
+
- INTEGER
|
5607
|
+
LogsDecoderProcessorType:
|
5608
|
+
default: decoder-processor
|
5609
|
+
description: Type of logs decoder processor.
|
5610
|
+
enum:
|
5611
|
+
- decoder-processor
|
5612
|
+
example: decoder-processor
|
5613
|
+
type: string
|
5614
|
+
x-enum-varnames:
|
5615
|
+
- DECODER_PROCESSOR
|
5389
5616
|
LogsExclusion:
|
5390
5617
|
description: Represents the index exclusion filter object from configuration
|
5391
5618
|
API.
|
@@ -6053,6 +6280,8 @@ components:
|
|
6053
6280
|
- $ref: '#/components/schemas/ReferenceTableLogsLookupProcessor'
|
6054
6281
|
- $ref: '#/components/schemas/LogsTraceRemapper'
|
6055
6282
|
- $ref: '#/components/schemas/LogsSpanRemapper'
|
6283
|
+
- $ref: '#/components/schemas/LogsArrayProcessor'
|
6284
|
+
- $ref: '#/components/schemas/LogsDecoderProcessor'
|
6056
6285
|
LogsQueryCompute:
|
6057
6286
|
description: Define computation for a log query.
|
6058
6287
|
properties:
|
@@ -8129,10 +8358,14 @@ components:
|
|
8129
8358
|
- invocations_percentage
|
8130
8359
|
- lambda_traced_invocations_usage
|
8131
8360
|
- lambda_traced_invocations_percentage
|
8361
|
+
- llm_observability_usage
|
8362
|
+
- llm_observability_percentage
|
8132
8363
|
- mobile_app_testing_percentage
|
8133
8364
|
- mobile_app_testing_usage
|
8134
8365
|
- ndm_netflow_usage
|
8135
8366
|
- ndm_netflow_percentage
|
8367
|
+
- network_device_wireless_usage
|
8368
|
+
- network_device_wireless_percentage
|
8136
8369
|
- npm_host_usage
|
8137
8370
|
- npm_host_percentage
|
8138
8371
|
- obs_pipeline_bytes_usage
|
@@ -8141,12 +8374,16 @@ components:
|
|
8141
8374
|
- obs_pipelines_vcpu_percentage
|
8142
8375
|
- online_archive_usage
|
8143
8376
|
- online_archive_percentage
|
8377
|
+
- product_analytics_session_usage
|
8378
|
+
- product_analytics_session_percentage
|
8144
8379
|
- profiled_container_usage
|
8145
8380
|
- profiled_container_percentage
|
8146
8381
|
- profiled_fargate_usage
|
8147
8382
|
- profiled_fargate_percentage
|
8148
8383
|
- profiled_host_usage
|
8149
8384
|
- profiled_host_percentage
|
8385
|
+
- published_app_usage
|
8386
|
+
- published_app_percentage
|
8150
8387
|
- serverless_apps_usage
|
8151
8388
|
- serverless_apps_percentage
|
8152
8389
|
- snmp_usage
|
@@ -8189,8 +8426,14 @@ components:
|
|
8189
8426
|
- logs_indexed_3day_percentage
|
8190
8427
|
- logs_indexed_1day_usage
|
8191
8428
|
- logs_indexed_1day_percentage
|
8429
|
+
- rum_ingested_usage
|
8430
|
+
- rum_ingested_percentage
|
8431
|
+
- rum_investigate_usage
|
8432
|
+
- rum_investigate_percentage
|
8192
8433
|
- rum_replay_sessions_usage
|
8193
8434
|
- rum_replay_sessions_percentage
|
8435
|
+
- rum_session_replay_add_on_usage
|
8436
|
+
- rum_session_replay_add_on_percentage
|
8194
8437
|
- rum_browser_mobile_sessions_usage
|
8195
8438
|
- rum_browser_mobile_sessions_percentage
|
8196
8439
|
- ingested_spans_bytes_usage
|
@@ -8272,10 +8515,14 @@ components:
|
|
8272
8515
|
- INVOCATIONS_PERCENTAGE
|
8273
8516
|
- LAMBDA_TRACED_INVOCATIONS_USAGE
|
8274
8517
|
- LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
|
8518
|
+
- LLM_OBSERVABILITY_USAGE
|
8519
|
+
- LLM_OBSERVABILITY_PERCENTAGE
|
8275
8520
|
- MOBILE_APP_TESTING_USAGE
|
8276
8521
|
- MOBILE_APP_TESTING_PERCENTAGE
|
8277
8522
|
- NDM_NETFLOW_USAGE
|
8278
8523
|
- NDM_NETFLOW_PERCENTAGE
|
8524
|
+
- NETWORK_DEVICE_WIRELESS_USAGE
|
8525
|
+
- NETWORK_DEVICE_WIRELESS_PERCENTAGE
|
8279
8526
|
- NPM_HOST_USAGE
|
8280
8527
|
- NPM_HOST_PERCENTAGE
|
8281
8528
|
- OBS_PIPELINE_BYTES_USAGE
|
@@ -8284,12 +8531,16 @@ components:
|
|
8284
8531
|
- OBS_PIPELINES_VCPU_PERCENTAGE
|
8285
8532
|
- ONLINE_ARCHIVE_USAGE
|
8286
8533
|
- ONLINE_ARCHIVE_PERCENTAGE
|
8534
|
+
- PRODUCT_ANALYTICS_SESSION_USAGE
|
8535
|
+
- PRODUCT_ANALYTICS_SESSION_PERCENTAGE
|
8287
8536
|
- PROFILED_CONTAINER_USAGE
|
8288
8537
|
- PROFILED_CONTAINER_PERCENTAGE
|
8289
8538
|
- PROFILED_FARGATE_USAGE
|
8290
8539
|
- PROFILED_FARGATE_PERCENTAGE
|
8291
8540
|
- PROFILED_HOST_USAGE
|
8292
8541
|
- PROFILED_HOST_PERCENTAGE
|
8542
|
+
- PUBLISHED_APP_USAGE
|
8543
|
+
- PUBLISHED_APP_PERCENTAGE
|
8293
8544
|
- SERVERLESS_APPS_USAGE
|
8294
8545
|
- SERVERLESS_APPS_PERCENTAGE
|
8295
8546
|
- SNMP_USAGE
|
@@ -8332,8 +8583,14 @@ components:
|
|
8332
8583
|
- LOGS_INDEXED_3DAY_PERCENTAGE
|
8333
8584
|
- LOGS_INDEXED_1DAY_USAGE
|
8334
8585
|
- LOGS_INDEXED_1DAY_PERCENTAGE
|
8586
|
+
- RUM_INGESTED_USAGE
|
8587
|
+
- RUM_INGESTED_PERCENTAGE
|
8588
|
+
- RUM_INVESTIGATE_USAGE
|
8589
|
+
- RUM_INVESTIGATE_PERCENTAGE
|
8335
8590
|
- RUM_REPLAY_SESSIONS_USAGE
|
8336
8591
|
- RUM_REPLAY_SESSIONS_PERCENTAGE
|
8592
|
+
- RUM_SESSION_REPLAY_ADD_ON_USAGE
|
8593
|
+
- RUM_SESSION_REPLAY_ADD_ON_PERCENTAGE
|
8337
8594
|
- RUM_BROWSER_MOBILE_SESSIONS_USAGE
|
8338
8595
|
- RUM_BROWSER_MOBILE_SESSIONS_PERCENTAGE
|
8339
8596
|
- INGESTED_SPANS_BYTES_USAGE
|
@@ -8348,7 +8605,10 @@ components:
|
|
8348
8605
|
- SCA_FARGATE_PERCENTAGE
|
8349
8606
|
- ALL
|
8350
8607
|
MonthlyUsageAttributionValues:
|
8351
|
-
description: Fields in Usage Summary by tag(s).
|
8608
|
+
description: 'Fields in Usage Summary by tag(s).
|
8609
|
+
|
8610
|
+
The following values have been **deprecated**: `estimated_indexed_spans_usage`,
|
8611
|
+
`estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`.'
|
8352
8612
|
properties:
|
8353
8613
|
api_percentage:
|
8354
8614
|
description: The percentage of synthetic API test usage by tag(s).
|
@@ -8669,6 +8929,14 @@ components:
|
|
8669
8929
|
description: The Serverless APM usage by tag(s).
|
8670
8930
|
format: double
|
8671
8931
|
type: number
|
8932
|
+
llm_observability_percentage:
|
8933
|
+
description: The percentage of LLM Observability usage by tag(s).
|
8934
|
+
format: double
|
8935
|
+
type: number
|
8936
|
+
llm_observability_usage:
|
8937
|
+
description: The LLM Observability usage by tag(s).
|
8938
|
+
format: double
|
8939
|
+
type: number
|
8672
8940
|
logs_indexed_15day_percentage:
|
8673
8941
|
description: The percentage of Indexed Logs (15-day Retention) usage by
|
8674
8942
|
tag(s).
|
@@ -8783,6 +9051,14 @@ components:
|
|
8783
9051
|
description: The Network Device Monitoring NetFlow usage by tag(s).
|
8784
9052
|
format: double
|
8785
9053
|
type: number
|
9054
|
+
network_device_wireless_percentage:
|
9055
|
+
description: The percentage of network device wireless usage by tag(s).
|
9056
|
+
format: double
|
9057
|
+
type: number
|
9058
|
+
network_device_wireless_usage:
|
9059
|
+
description: The network device wireless usage by tag(s).
|
9060
|
+
format: double
|
9061
|
+
type: number
|
8786
9062
|
npm_host_percentage:
|
8787
9063
|
description: The percentage of network host usage by tag(s).
|
8788
9064
|
format: double
|
@@ -8816,6 +9092,14 @@ components:
|
|
8816
9092
|
description: The online archive usage by tag(s).
|
8817
9093
|
format: double
|
8818
9094
|
type: number
|
9095
|
+
product_analytics_session_percentage:
|
9096
|
+
description: The percentage of Product Analytics session usage by tag(s).
|
9097
|
+
format: double
|
9098
|
+
type: number
|
9099
|
+
product_analytics_session_usage:
|
9100
|
+
description: The Product Analytics session usage by tag(s).
|
9101
|
+
format: double
|
9102
|
+
type: number
|
8819
9103
|
profiled_container_percentage:
|
8820
9104
|
description: The percentage of profiled container usage by tag(s).
|
8821
9105
|
format: double
|
@@ -8840,6 +9124,14 @@ components:
|
|
8840
9124
|
description: The profiled hosts usage by tag(s).
|
8841
9125
|
format: double
|
8842
9126
|
type: number
|
9127
|
+
published_app_percentage:
|
9128
|
+
description: The percentage of published application usage by tag(s).
|
9129
|
+
format: double
|
9130
|
+
type: number
|
9131
|
+
published_app_usage:
|
9132
|
+
description: The published application usage by tag(s).
|
9133
|
+
format: double
|
9134
|
+
type: number
|
8843
9135
|
rum_browser_mobile_sessions_percentage:
|
8844
9136
|
description: The percentage of RUM Browser and Mobile usage by tag(s).
|
8845
9137
|
format: double
|
@@ -8848,6 +9140,22 @@ components:
|
|
8848
9140
|
description: The total RUM Browser and Mobile usage by tag(s).
|
8849
9141
|
format: double
|
8850
9142
|
type: number
|
9143
|
+
rum_ingested_percentage:
|
9144
|
+
description: The percentage of RUM Ingested usage by tag(s).
|
9145
|
+
format: double
|
9146
|
+
type: number
|
9147
|
+
rum_ingested_usage:
|
9148
|
+
description: The total RUM Ingested usage by tag(s).
|
9149
|
+
format: double
|
9150
|
+
type: number
|
9151
|
+
rum_investigate_percentage:
|
9152
|
+
description: The percentage of RUM Investigate usage by tag(s).
|
9153
|
+
format: double
|
9154
|
+
type: number
|
9155
|
+
rum_investigate_usage:
|
9156
|
+
description: The total RUM Investigate usage by tag(s).
|
9157
|
+
format: double
|
9158
|
+
type: number
|
8851
9159
|
rum_replay_sessions_percentage:
|
8852
9160
|
description: The percentage of RUM Session Replay usage by tag(s).
|
8853
9161
|
format: double
|
@@ -8856,6 +9164,14 @@ components:
|
|
8856
9164
|
description: The total RUM Session Replay usage by tag(s).
|
8857
9165
|
format: double
|
8858
9166
|
type: number
|
9167
|
+
rum_session_replay_add_on_percentage:
|
9168
|
+
description: The percentage of RUM Session Replay Add-On usage by tag(s).
|
9169
|
+
format: double
|
9170
|
+
type: number
|
9171
|
+
rum_session_replay_add_on_usage:
|
9172
|
+
description: The total RUM Session Replay Add-On usage by tag(s).
|
9173
|
+
format: double
|
9174
|
+
type: number
|
8859
9175
|
sca_fargate_percentage:
|
8860
9176
|
description: The percentage of Software Composition Analysis Fargate task
|
8861
9177
|
usage by tag(s).
|
@@ -12578,6 +12894,12 @@ components:
|
|
12578
12894
|
prefix:
|
12579
12895
|
description: The tag/attribute key associated with the template variable.
|
12580
12896
|
type: string
|
12897
|
+
type:
|
12898
|
+
description: The type of variable. This is to differentiate between filter
|
12899
|
+
variables (interpolated in query) and group by variables (interpolated
|
12900
|
+
into group by).
|
12901
|
+
nullable: true
|
12902
|
+
type: string
|
12581
12903
|
visible_tags:
|
12582
12904
|
description: List of visible tag values on the shared dashboard.
|
12583
12905
|
items:
|
@@ -16722,6 +17044,7 @@ components:
|
|
16722
17044
|
- assertRequests
|
16723
17045
|
- click
|
16724
17046
|
- extractFromJavascript
|
17047
|
+
- extractFromEmailBody
|
16725
17048
|
- extractVariable
|
16726
17049
|
- goToEmailLink
|
16727
17050
|
- goToUrl
|
@@ -16751,6 +17074,7 @@ components:
|
|
16751
17074
|
- ASSERT_REQUESTS
|
16752
17075
|
- CLICK
|
16753
17076
|
- EXTRACT_FROM_JAVASCRIPT
|
17077
|
+
- EXTRACT_FROM_EMAIL_BODY
|
16754
17078
|
- EXTRACT_VARIABLE
|
16755
17079
|
- GO_TO_EMAIL_LINK
|
16756
17080
|
- GO_TO_URL
|
@@ -16940,7 +17264,7 @@ components:
|
|
16940
17264
|
description: Object describing the extra options for a Synthetic test.
|
16941
17265
|
properties:
|
16942
17266
|
accept_self_signed:
|
16943
|
-
description: 'For SSL
|
17267
|
+
description: 'For SSL tests, whether or not the test should allow self signed
|
16944
17268
|
|
16945
17269
|
certificates.'
|
16946
17270
|
type: boolean
|
@@ -16949,7 +17273,7 @@ components:
|
|
16949
17273
|
test.
|
16950
17274
|
type: boolean
|
16951
17275
|
checkCertificateRevocation:
|
16952
|
-
description: For SSL
|
17276
|
+
description: For SSL tests, whether or not the test should fail on revoked
|
16953
17277
|
certificate in stapled OCSP.
|
16954
17278
|
type: boolean
|
16955
17279
|
ci:
|
@@ -16960,6 +17284,10 @@ components:
|
|
16960
17284
|
items:
|
16961
17285
|
$ref: '#/components/schemas/SyntheticsDeviceID'
|
16962
17286
|
type: array
|
17287
|
+
disableAiaIntermediateFetching:
|
17288
|
+
description: For SSL tests, whether or not the test should disable fetching
|
17289
|
+
intermediate certificates from AIA.
|
17290
|
+
type: boolean
|
16963
17291
|
disableCors:
|
16964
17292
|
description: Whether or not to disable CORS mechanism.
|
16965
17293
|
type: boolean
|
@@ -17203,6 +17531,9 @@ components:
|
|
17203
17531
|
description: A protobuf file that needs to be gzipped first then base64
|
17204
17532
|
encoded.
|
17205
17533
|
type: string
|
17534
|
+
disableAiaIntermediateFetching:
|
17535
|
+
description: Disable fetching intermediate certificates from AIA.
|
17536
|
+
type: boolean
|
17206
17537
|
dnsServer:
|
17207
17538
|
description: DNS server to use for DNS tests.
|
17208
17539
|
type: string
|
@@ -18631,6 +18962,14 @@ components:
|
|
18631
18962
|
description: The total account usage.
|
18632
18963
|
format: int64
|
18633
18964
|
type: integer
|
18965
|
+
account_committed_usage:
|
18966
|
+
description: The total account committed usage.
|
18967
|
+
format: int64
|
18968
|
+
type: integer
|
18969
|
+
account_on_demand_usage:
|
18970
|
+
description: The total account on-demand usage.
|
18971
|
+
format: int64
|
18972
|
+
type: integer
|
18634
18973
|
elapsed_usage_hours:
|
18635
18974
|
description: Elapsed usage hours for some billable product.
|
18636
18975
|
format: int64
|
@@ -20428,6 +20767,21 @@ components:
|
|
20428
20767
|
hours in the current date for the given org.
|
20429
20768
|
format: int64
|
20430
20769
|
type: integer
|
20770
|
+
event_management_correlation_correlated_events_sum:
|
20771
|
+
description: Shows the sum of all Event Management correlated events over
|
20772
|
+
all hours in the current date for all organizations.
|
20773
|
+
format: int64
|
20774
|
+
type: integer
|
20775
|
+
event_management_correlation_correlated_related_events_sum:
|
20776
|
+
description: Shows the sum of all Event Management correlated related events
|
20777
|
+
over all hours in the current date for all organizations.
|
20778
|
+
format: int64
|
20779
|
+
type: integer
|
20780
|
+
event_management_correlation_sum:
|
20781
|
+
description: Shows the sum of all Event Management correlations over all
|
20782
|
+
hours in the current date for all organizations.
|
20783
|
+
format: int64
|
20784
|
+
type: integer
|
20431
20785
|
fargate_container_profiler_profiling_fargate_avg:
|
20432
20786
|
description: The average number of Profiling Fargate tasks over all hours
|
20433
20787
|
in the current date for all organizations.
|
@@ -20463,6 +20817,11 @@ components:
|
|
20463
20817
|
over all hours in the current date for the given org.
|
20464
20818
|
format: int64
|
20465
20819
|
type: integer
|
20820
|
+
flex_logs_compute_xlarge_avg:
|
20821
|
+
description: Shows the average number of Flex Logs Compute Extra Large Instances
|
20822
|
+
over all hours in the current date for the given org.
|
20823
|
+
format: int64
|
20824
|
+
type: integer
|
20466
20825
|
flex_logs_compute_xsmall_avg:
|
20467
20826
|
description: Shows the average number of Flex Logs Compute Extra Small Instances
|
20468
20827
|
over all hours in the current date for the given org.
|
@@ -20534,6 +20893,16 @@ components:
|
|
20534
20893
|
in the current date all organizations.
|
20535
20894
|
format: int64
|
20536
20895
|
type: integer
|
20896
|
+
llm_observability_min_spend_sum:
|
20897
|
+
description: Sum of all LLM observability minimum spend over all hours in
|
20898
|
+
the current date for all organizations.
|
20899
|
+
format: int64
|
20900
|
+
type: integer
|
20901
|
+
llm_observability_sum:
|
20902
|
+
description: Sum of all LLM observability sessions over all hours in the
|
20903
|
+
current date for all organizations.
|
20904
|
+
format: int64
|
20905
|
+
type: integer
|
20537
20906
|
mobile_rum_lite_session_count_sum:
|
20538
20907
|
deprecated: true
|
20539
20908
|
description: Shows the sum of all mobile lite sessions over all hours in
|
@@ -20601,6 +20970,11 @@ components:
|
|
20601
20970
|
2024).
|
20602
20971
|
format: int64
|
20603
20972
|
type: integer
|
20973
|
+
network_device_wireless_top99p:
|
20974
|
+
description: Shows the 99th percentile of all Network Device Monitoring
|
20975
|
+
wireless devices over all hours in the current date for all organizations.
|
20976
|
+
format: int64
|
20977
|
+
type: integer
|
20604
20978
|
npm_host_top99p:
|
20605
20979
|
description: Shows the 99th percentile of all distinct Cloud Network Monitoring
|
20606
20980
|
hosts (formerly known as Network hosts) over all hours in the current
|
@@ -20644,6 +21018,11 @@ components:
|
|
20644
21018
|
items:
|
20645
21019
|
$ref: '#/components/schemas/UsageSummaryDateOrg'
|
20646
21020
|
type: array
|
21021
|
+
product_analytics_sum:
|
21022
|
+
description: Sum of all product analytics sessions over all hours in the
|
21023
|
+
current date for all organizations.
|
21024
|
+
format: int64
|
21025
|
+
type: integer
|
20647
21026
|
profiling_aas_count_top99p:
|
20648
21027
|
description: Shows the 99th percentile of all profiled Azure app services
|
20649
21028
|
over all hours in the current date for all organizations.
|
@@ -20654,6 +21033,11 @@ components:
|
|
20654
21033
|
within the current date for all organizations.
|
20655
21034
|
format: int64
|
20656
21035
|
type: integer
|
21036
|
+
published_app_hwm:
|
21037
|
+
description: Shows the high-water mark of all published applications over
|
21038
|
+
all hours in the current date for all organizations.
|
21039
|
+
format: int64
|
21040
|
+
type: integer
|
20657
21041
|
rum_browser_and_mobile_session_count:
|
20658
21042
|
description: Shows the sum of all mobile sessions and all browser lite and
|
20659
21043
|
legacy sessions over all hours in the current month for all organizations
|
@@ -20678,6 +21062,16 @@ components:
|
|
20678
21062
|
on October 1st, 2024).
|
20679
21063
|
format: int64
|
20680
21064
|
type: integer
|
21065
|
+
rum_indexed_sessions_sum:
|
21066
|
+
description: Sum of all RUM indexed sessions over all hours in the current
|
21067
|
+
date for all organizations.
|
21068
|
+
format: int64
|
21069
|
+
type: integer
|
21070
|
+
rum_ingested_sessions_sum:
|
21071
|
+
description: Sum of all RUM ingested sessions over all hours in the current
|
21072
|
+
date for all organizations.
|
21073
|
+
format: int64
|
21074
|
+
type: integer
|
20681
21075
|
rum_lite_session_count_sum:
|
20682
21076
|
description: Shows the sum of all RUM lite sessions (browser and mobile)
|
20683
21077
|
over all hours in the current date for all organizations (To be introduced
|
@@ -20787,6 +21181,11 @@ components:
|
|
20787
21181
|
1st, 2024).
|
20788
21182
|
format: int64
|
20789
21183
|
type: integer
|
21184
|
+
rum_session_replay_add_on_sum:
|
21185
|
+
description: Sum of all RUM session replay add-on sessions over all hours
|
21186
|
+
in the current date for all organizations.
|
21187
|
+
format: int64
|
21188
|
+
type: integer
|
20790
21189
|
rum_total_session_count_sum:
|
20791
21190
|
description: Shows the sum of RUM sessions (browser and mobile) over all
|
20792
21191
|
hours in the current date for all organizations.
|
@@ -21318,6 +21717,21 @@ components:
|
|
21318
21717
|
hours in the current date for the given org.
|
21319
21718
|
format: int64
|
21320
21719
|
type: integer
|
21720
|
+
event_management_correlation_correlated_events_sum:
|
21721
|
+
description: Shows the sum of all Event Management correlated events over
|
21722
|
+
all hours in the current date for the given org.
|
21723
|
+
format: int64
|
21724
|
+
type: integer
|
21725
|
+
event_management_correlation_correlated_related_events_sum:
|
21726
|
+
description: Shows the sum of all Event Management correlated related events
|
21727
|
+
over all hours in the current date for the given org.
|
21728
|
+
format: int64
|
21729
|
+
type: integer
|
21730
|
+
event_management_correlation_sum:
|
21731
|
+
description: Shows the sum of all Event Management correlations over all
|
21732
|
+
hours in the current date for the given org.
|
21733
|
+
format: int64
|
21734
|
+
type: integer
|
21321
21735
|
fargate_container_profiler_profiling_fargate_avg:
|
21322
21736
|
description: The average number of Profiling Fargate tasks over all hours
|
21323
21737
|
in the current month for the given org.
|
@@ -21352,6 +21766,11 @@ components:
|
|
21352
21766
|
over all hours in the current date for the given org.
|
21353
21767
|
format: int64
|
21354
21768
|
type: integer
|
21769
|
+
flex_logs_compute_xlarge_avg:
|
21770
|
+
description: Shows the average number of Flex Logs Compute Extra Large Instances
|
21771
|
+
over all hours in the current date for the given org.
|
21772
|
+
format: int64
|
21773
|
+
type: integer
|
21355
21774
|
flex_logs_compute_xsmall_avg:
|
21356
21775
|
description: Shows the average number of Flex Logs Compute Extra Small Instances
|
21357
21776
|
over all hours in the current date for the given org.
|
@@ -21427,6 +21846,16 @@ components:
|
|
21427
21846
|
in the current date for the given org.
|
21428
21847
|
format: int64
|
21429
21848
|
type: integer
|
21849
|
+
llm_observability_min_spend_sum:
|
21850
|
+
description: Shows the sum of all LLM Observability minimum spend over all
|
21851
|
+
hours in the current date for the given org.
|
21852
|
+
format: int64
|
21853
|
+
type: integer
|
21854
|
+
llm_observability_sum:
|
21855
|
+
description: Shows the sum of all LLM observability sessions over all hours
|
21856
|
+
in the current date for the given org.
|
21857
|
+
format: int64
|
21858
|
+
type: integer
|
21430
21859
|
mobile_rum_lite_session_count_sum:
|
21431
21860
|
deprecated: true
|
21432
21861
|
description: Shows the sum of all mobile lite sessions over all hours in
|
@@ -21494,6 +21923,11 @@ components:
|
|
21494
21923
|
the current date for the given org (To be deprecated on October 1st, 2024).
|
21495
21924
|
format: int64
|
21496
21925
|
type: integer
|
21926
|
+
network_device_wireless_top99p:
|
21927
|
+
description: Shows the 99th percentile of all Network Device Monitoring
|
21928
|
+
wireless devices over all hours in the current date for the given org.
|
21929
|
+
format: int64
|
21930
|
+
type: integer
|
21497
21931
|
npm_host_top99p:
|
21498
21932
|
description: Shows the 99th percentile of all distinct Cloud Network Monitoring
|
21499
21933
|
hosts (formerly known as Network hosts) over all hours in the current
|
@@ -21532,6 +21966,11 @@ components:
|
|
21532
21966
|
date for the given org.
|
21533
21967
|
format: int64
|
21534
21968
|
type: integer
|
21969
|
+
product_analytics_sum:
|
21970
|
+
description: Shows the sum of all product analytics sessions over all hours
|
21971
|
+
in the current date for the given org.
|
21972
|
+
format: int64
|
21973
|
+
type: integer
|
21535
21974
|
profiling_aas_count_top99p:
|
21536
21975
|
description: Shows the 99th percentile of all profiled Azure app services
|
21537
21976
|
over all hours in the current date for all organizations.
|
@@ -21545,6 +21984,11 @@ components:
|
|
21545
21984
|
public_id:
|
21546
21985
|
description: The organization public id.
|
21547
21986
|
type: string
|
21987
|
+
published_app_hwm:
|
21988
|
+
description: Shows the high-water mark of all published applications over
|
21989
|
+
all hours in the current date for the given org.
|
21990
|
+
format: int64
|
21991
|
+
type: integer
|
21548
21992
|
region:
|
21549
21993
|
description: The region of the organization.
|
21550
21994
|
type: string
|
@@ -21572,6 +22016,16 @@ components:
|
|
21572
22016
|
1st, 2024).
|
21573
22017
|
format: int64
|
21574
22018
|
type: integer
|
22019
|
+
rum_indexed_sessions_sum:
|
22020
|
+
description: Shows the sum of all RUM indexed sessions over all hours in
|
22021
|
+
the current date for the given org.
|
22022
|
+
format: int64
|
22023
|
+
type: integer
|
22024
|
+
rum_ingested_sessions_sum:
|
22025
|
+
description: Shows the sum of all RUM ingested sessions over all hours in
|
22026
|
+
the current date for the given org.
|
22027
|
+
format: int64
|
22028
|
+
type: integer
|
21575
22029
|
rum_lite_session_count_sum:
|
21576
22030
|
description: Shows the sum of all RUM lite sessions (browser and mobile)
|
21577
22031
|
over all hours in the current date for the given org (To be introduced
|
@@ -21681,6 +22135,11 @@ components:
|
|
21681
22135
|
2024).
|
21682
22136
|
format: int64
|
21683
22137
|
type: integer
|
22138
|
+
rum_session_replay_add_on_sum:
|
22139
|
+
description: Shows the sum of all RUM session replay add-on sessions over
|
22140
|
+
all hours in the current date for the given org.
|
22141
|
+
format: int64
|
22142
|
+
type: integer
|
21684
22143
|
rum_total_session_count_sum:
|
21685
22144
|
description: Shows the sum of RUM sessions (browser and mobile) over all
|
21686
22145
|
hours in the current date for the given org.
|
@@ -22213,6 +22672,21 @@ components:
|
|
22213
22672
|
hours in the current month for all organizations.
|
22214
22673
|
format: int64
|
22215
22674
|
type: integer
|
22675
|
+
event_management_correlation_agg_sum:
|
22676
|
+
description: Shows the sum of all Event Management correlations over all
|
22677
|
+
hours in the current month for all organizations.
|
22678
|
+
format: int64
|
22679
|
+
type: integer
|
22680
|
+
event_management_correlation_correlated_events_agg_sum:
|
22681
|
+
description: Shows the sum of all Event Management correlated events over
|
22682
|
+
all hours in the current month for all organizations.
|
22683
|
+
format: int64
|
22684
|
+
type: integer
|
22685
|
+
event_management_correlation_correlated_related_events_agg_sum:
|
22686
|
+
description: Shows the sum of all Event Management correlated related events
|
22687
|
+
over all hours in the current month for all organizations.
|
22688
|
+
format: int64
|
22689
|
+
type: integer
|
22216
22690
|
fargate_container_profiler_profiling_fargate_avg_sum:
|
22217
22691
|
description: The average number of Profiling Fargate tasks over all hours
|
22218
22692
|
in the current month for all organizations.
|
@@ -22248,6 +22722,11 @@ components:
|
|
22248
22722
|
over all hours in the current months for all organizations.
|
22249
22723
|
format: int64
|
22250
22724
|
type: integer
|
22725
|
+
flex_logs_compute_xlarge_avg_sum:
|
22726
|
+
description: Shows the average number of Flex Logs Compute Extra Large Instances
|
22727
|
+
over all hours in the current months for all organizations.
|
22728
|
+
format: int64
|
22729
|
+
type: integer
|
22251
22730
|
flex_logs_compute_xsmall_avg_sum:
|
22252
22731
|
description: Shows the average number of Flex Logs Compute Extra Small Instances
|
22253
22732
|
over all hours in the current months for all organizations.
|
@@ -22338,6 +22817,16 @@ components:
|
|
22338
22817
|
1, 2020).
|
22339
22818
|
format: int64
|
22340
22819
|
type: integer
|
22820
|
+
llm_observability_agg_sum:
|
22821
|
+
description: Sum of all LLM observability sessions for all hours in the
|
22822
|
+
current month for all organizations.
|
22823
|
+
format: int64
|
22824
|
+
type: integer
|
22825
|
+
llm_observability_min_spend_agg_sum:
|
22826
|
+
description: Minimum spend for LLM observability sessions for all hours
|
22827
|
+
in the current month for all organizations.
|
22828
|
+
format: int64
|
22829
|
+
type: integer
|
22341
22830
|
logs_by_retention:
|
22342
22831
|
$ref: '#/components/schemas/LogsByRetention'
|
22343
22832
|
mobile_rum_lite_session_count_agg_sum:
|
@@ -22408,6 +22897,11 @@ components:
|
|
22408
22897
|
2024).
|
22409
22898
|
format: int64
|
22410
22899
|
type: integer
|
22900
|
+
network_device_wireless_top99p_sum:
|
22901
|
+
description: Shows the 99th percentile of all Network Device Monitoring
|
22902
|
+
wireless devices over all hours in the current month for all organizations.
|
22903
|
+
format: int64
|
22904
|
+
type: integer
|
22411
22905
|
npm_host_top99p_sum:
|
22412
22906
|
description: Shows the 99th percentile of all distinct Cloud Network Monitoring
|
22413
22907
|
hosts (formerly known as Network hosts) over all hours in the current
|
@@ -22446,6 +22940,11 @@ components:
|
|
22446
22940
|
month for all organizations.
|
22447
22941
|
format: int64
|
22448
22942
|
type: integer
|
22943
|
+
product_analytics_agg_sum:
|
22944
|
+
description: Sum of all product analytics sessions for all hours in the
|
22945
|
+
current month for all organizations.
|
22946
|
+
format: int64
|
22947
|
+
type: integer
|
22449
22948
|
profiling_aas_count_top99p_sum:
|
22450
22949
|
description: Shows the 99th percentile of all profiled Azure app services
|
22451
22950
|
over all hours in the current month for all organizations.
|
@@ -22461,6 +22960,11 @@ components:
|
|
22461
22960
|
in the current month for all organizations.
|
22462
22961
|
format: int64
|
22463
22962
|
type: integer
|
22963
|
+
published_app_hwm_sum:
|
22964
|
+
description: Shows the high-water mark of all published applications over
|
22965
|
+
all hours in the current month for all organizations.
|
22966
|
+
format: int64
|
22967
|
+
type: integer
|
22464
22968
|
rehydrated_indexed_events_agg_sum:
|
22465
22969
|
deprecated: true
|
22466
22970
|
description: Shows the sum of all rehydrated logs indexed over all hours
|
@@ -22498,6 +23002,16 @@ components:
|
|
22498
23002
|
on October 1st, 2024).
|
22499
23003
|
format: int64
|
22500
23004
|
type: integer
|
23005
|
+
rum_indexed_sessions_agg_sum:
|
23006
|
+
description: Sum of all RUM indexed sessions for all hours in the current
|
23007
|
+
month for all organizations.
|
23008
|
+
format: int64
|
23009
|
+
type: integer
|
23010
|
+
rum_ingested_sessions_agg_sum:
|
23011
|
+
description: Sum of all RUM ingested sessions for all hours in the current
|
23012
|
+
month for all organizations.
|
23013
|
+
format: int64
|
23014
|
+
type: integer
|
22501
23015
|
rum_lite_session_count_agg_sum:
|
22502
23016
|
description: Shows the sum of all RUM lite sessions (browser and mobile)
|
22503
23017
|
over all hours in the current month for all organizations (To be introduced
|
@@ -22607,6 +23121,11 @@ components:
|
|
22607
23121
|
1st, 2024).
|
22608
23122
|
format: int64
|
22609
23123
|
type: integer
|
23124
|
+
rum_session_replay_add_on_agg_sum:
|
23125
|
+
description: Sum of all RUM session replay add-on sessions for all hours
|
23126
|
+
in the current month for all organizations.
|
23127
|
+
format: int64
|
23128
|
+
type: integer
|
22610
23129
|
rum_total_session_count_agg_sum:
|
22611
23130
|
description: Shows the sum of RUM sessions (browser and mobile) over all
|
22612
23131
|
hours in the current month for all organizations.
|
@@ -24146,6 +24665,8 @@ components:
|
|
24146
24665
|
code_analysis_read: View Code Analysis.
|
24147
24666
|
continuous_profiler_pgo_read: Read and query Continuous Profiler data
|
24148
24667
|
for Profile-Guided Optimization (PGO).
|
24668
|
+
coterm_read: Read terminal recordings.
|
24669
|
+
coterm_write: Write terminal recordings.
|
24149
24670
|
create_webhooks: Create webhooks integrations.
|
24150
24671
|
dashboards_embed_share: Create, modify, and delete shared dashboards with
|
24151
24672
|
share type 'embed'.
|
@@ -24182,10 +24703,6 @@ components:
|
|
24182
24703
|
security_monitoring_filters_write: Create, edit, and delete Security Filters.
|
24183
24704
|
security_monitoring_findings_read: View a list of findings that include
|
24184
24705
|
both misconfigurations and identity risks.
|
24185
|
-
security_monitoring_notification_profiles_read: View Rule Security Notification
|
24186
|
-
rules.
|
24187
|
-
security_monitoring_notification_profiles_write: Create, edit, and delete
|
24188
|
-
Security Notification rules.
|
24189
24706
|
security_monitoring_rules_read: Read Detection Rules.
|
24190
24707
|
security_monitoring_rules_write: Create and edit Detection Rules.
|
24191
24708
|
security_monitoring_signals_read: View Security Signals.
|
@@ -25391,6 +25908,10 @@ paths:
|
|
25391
25908
|
appKeyAuth: []
|
25392
25909
|
- AuthZ:
|
25393
25910
|
- dashboards_public_share
|
25911
|
+
- AuthZ:
|
25912
|
+
- dashboards_embed_share
|
25913
|
+
- AuthZ:
|
25914
|
+
- dashboards_invite_share
|
25394
25915
|
summary: Create a shared dashboard
|
25395
25916
|
tags:
|
25396
25917
|
- Dashboards
|
@@ -25399,6 +25920,8 @@ paths:
|
|
25399
25920
|
operator: OR
|
25400
25921
|
permissions:
|
25401
25922
|
- dashboards_public_share
|
25923
|
+
- dashboards_embed_share
|
25924
|
+
- dashboards_invite_share
|
25402
25925
|
/api/v1/dashboard/public/{token}:
|
25403
25926
|
delete:
|
25404
25927
|
description: Revoke the public URL for a dashboard (rendering it private) associated
|
@@ -25437,6 +25960,10 @@ paths:
|
|
25437
25960
|
appKeyAuth: []
|
25438
25961
|
- AuthZ:
|
25439
25962
|
- dashboards_public_share
|
25963
|
+
- AuthZ:
|
25964
|
+
- dashboards_embed_share
|
25965
|
+
- AuthZ:
|
25966
|
+
- dashboards_invite_share
|
25440
25967
|
summary: Revoke a shared dashboard URL
|
25441
25968
|
tags:
|
25442
25969
|
- Dashboards
|
@@ -25444,6 +25971,8 @@ paths:
|
|
25444
25971
|
operator: OR
|
25445
25972
|
permissions:
|
25446
25973
|
- dashboards_public_share
|
25974
|
+
- dashboards_embed_share
|
25975
|
+
- dashboards_invite_share
|
25447
25976
|
get:
|
25448
25977
|
description: Fetch an existing shared dashboard's sharing metadata associated
|
25449
25978
|
with the specified token.
|
@@ -25554,6 +26083,10 @@ paths:
|
|
25554
26083
|
appKeyAuth: []
|
25555
26084
|
- AuthZ:
|
25556
26085
|
- dashboards_public_share
|
26086
|
+
- AuthZ:
|
26087
|
+
- dashboards_embed_share
|
26088
|
+
- AuthZ:
|
26089
|
+
- dashboards_invite_share
|
25557
26090
|
summary: Update a shared dashboard
|
25558
26091
|
tags:
|
25559
26092
|
- Dashboards
|
@@ -25562,6 +26095,8 @@ paths:
|
|
25562
26095
|
operator: OR
|
25563
26096
|
permissions:
|
25564
26097
|
- dashboards_public_share
|
26098
|
+
- dashboards_embed_share
|
26099
|
+
- dashboards_invite_share
|
25565
26100
|
/api/v1/dashboard/public/{token}/invitation:
|
25566
26101
|
delete:
|
25567
26102
|
description: Revoke previously sent invitation emails and active sessions used
|
@@ -25609,7 +26144,7 @@ paths:
|
|
25609
26144
|
- apiKeyAuth: []
|
25610
26145
|
appKeyAuth: []
|
25611
26146
|
- AuthZ:
|
25612
|
-
-
|
26147
|
+
- dashboards_invite_share
|
25613
26148
|
summary: Revoke shared dashboard invitations
|
25614
26149
|
tags:
|
25615
26150
|
- Dashboards
|
@@ -25617,7 +26152,7 @@ paths:
|
|
25617
26152
|
x-permission:
|
25618
26153
|
operator: OR
|
25619
26154
|
permissions:
|
25620
|
-
-
|
26155
|
+
- dashboards_invite_share
|
25621
26156
|
get:
|
25622
26157
|
description: Describe the invitations that exist for the given shared dashboard
|
25623
26158
|
(paginated).
|
@@ -25668,14 +26203,14 @@ paths:
|
|
25668
26203
|
- apiKeyAuth: []
|
25669
26204
|
appKeyAuth: []
|
25670
26205
|
- AuthZ:
|
25671
|
-
-
|
26206
|
+
- dashboards_invite_share
|
25672
26207
|
summary: Get all invitations for a shared dashboard
|
25673
26208
|
tags:
|
25674
26209
|
- Dashboards
|
25675
26210
|
x-permission:
|
25676
26211
|
operator: OR
|
25677
26212
|
permissions:
|
25678
|
-
-
|
26213
|
+
- dashboards_invite_share
|
25679
26214
|
post:
|
25680
26215
|
description: Send emails to specified email addresses containing links to access
|
25681
26216
|
a given authenticated shared dashboard. Email addresses must already belong
|
@@ -25733,7 +26268,7 @@ paths:
|
|
25733
26268
|
- apiKeyAuth: []
|
25734
26269
|
appKeyAuth: []
|
25735
26270
|
- AuthZ:
|
25736
|
-
-
|
26271
|
+
- dashboards_invite_share
|
25737
26272
|
summary: Send shared dashboard invitation email
|
25738
26273
|
tags:
|
25739
26274
|
- Dashboards
|
@@ -25741,7 +26276,7 @@ paths:
|
|
25741
26276
|
x-permission:
|
25742
26277
|
operator: OR
|
25743
26278
|
permissions:
|
25744
|
-
-
|
26279
|
+
- dashboards_invite_share
|
25745
26280
|
/api/v1/dashboard/{dashboard_id}:
|
25746
26281
|
delete:
|
25747
26282
|
description: Delete a dashboard using the specified ID.
|
@@ -26636,7 +27171,10 @@ paths:
|
|
26636
27171
|
|
26637
27172
|
Retention is 7 days.
|
26638
27173
|
|
26639
|
-
Results are paginated with a max of 1000 results at a time.
|
27174
|
+
Results are paginated with a max of 1000 results at a time.
|
27175
|
+
|
27176
|
+
**Note:** If the host is an Amazon EC2 instance, `id` is replaced with `aws_id`
|
27177
|
+
in the response.'
|
26640
27178
|
operationId: ListHosts
|
26641
27179
|
parameters:
|
26642
27180
|
- description: String to filter search results.
|
@@ -28767,6 +29305,10 @@ paths:
|
|
28767
29305
|
description: Authentication error
|
28768
29306
|
'429':
|
28769
29307
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
29308
|
+
security:
|
29309
|
+
- apiKeyAuth: []
|
29310
|
+
appKeyAuth: []
|
29311
|
+
- AuthZ: []
|
28770
29312
|
summary: Search logs
|
28771
29313
|
tags:
|
28772
29314
|
- Logs
|
@@ -28865,10 +29407,6 @@ paths:
|
|
28865
29407
|
description: Forbidden
|
28866
29408
|
'429':
|
28867
29409
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
28868
|
-
security:
|
28869
|
-
- apiKeyAuth: []
|
28870
|
-
appKeyAuth: []
|
28871
|
-
- AuthZ: []
|
28872
29410
|
summary: Get all indexes
|
28873
29411
|
tags:
|
28874
29412
|
- Logs Indexes
|
@@ -30072,7 +30610,7 @@ paths:
|
|
30072
30610
|
- apiKeyAuth: []
|
30073
30611
|
appKeyAuth: []
|
30074
30612
|
- AuthZ:
|
30075
|
-
-
|
30613
|
+
- monitors_read
|
30076
30614
|
summary: Validate a monitor
|
30077
30615
|
tags:
|
30078
30616
|
- Monitors
|
@@ -30080,7 +30618,7 @@ paths:
|
|
30080
30618
|
x-permission:
|
30081
30619
|
operator: OR
|
30082
30620
|
permissions:
|
30083
|
-
-
|
30621
|
+
- monitors_read
|
30084
30622
|
/api/v1/monitor/{monitor_id}:
|
30085
30623
|
delete:
|
30086
30624
|
description: Delete the specified monitor
|
@@ -30373,7 +30911,7 @@ paths:
|
|
30373
30911
|
- apiKeyAuth: []
|
30374
30912
|
appKeyAuth: []
|
30375
30913
|
- AuthZ:
|
30376
|
-
-
|
30914
|
+
- monitors_read
|
30377
30915
|
summary: Validate an existing monitor
|
30378
30916
|
tags:
|
30379
30917
|
- Monitors
|
@@ -30381,7 +30919,7 @@ paths:
|
|
30381
30919
|
x-permission:
|
30382
30920
|
operator: OR
|
30383
30921
|
permissions:
|
30384
|
-
-
|
30922
|
+
- monitors_read
|
30385
30923
|
/api/v1/monthly_custom_reports:
|
30386
30924
|
get:
|
30387
30925
|
deprecated: true
|
@@ -31241,13 +31779,15 @@ paths:
|
|
31241
31779
|
security:
|
31242
31780
|
- apiKeyAuth: []
|
31243
31781
|
appKeyAuth: []
|
31244
|
-
- AuthZ:
|
31782
|
+
- AuthZ:
|
31783
|
+
- metrics_read
|
31245
31784
|
summary: Search metrics
|
31246
31785
|
tags:
|
31247
31786
|
- Metrics
|
31248
31787
|
x-permission:
|
31249
|
-
operator:
|
31250
|
-
permissions:
|
31788
|
+
operator: OR
|
31789
|
+
permissions:
|
31790
|
+
- metrics_read
|
31251
31791
|
/api/v1/security_analytics/signals/{signal_id}/add_to_incident:
|
31252
31792
|
patch:
|
31253
31793
|
description: Add a security signal to an incident. This makes it possible to
|
@@ -31300,7 +31840,9 @@ paths:
|
|
31300
31840
|
- security_monitoring_signals_write
|
31301
31841
|
/api/v1/security_analytics/signals/{signal_id}/assignee:
|
31302
31842
|
patch:
|
31303
|
-
|
31843
|
+
deprecated: true
|
31844
|
+
description: This endpoint is deprecated - Modify the triage assignee of a security
|
31845
|
+
signal.
|
31304
31846
|
operationId: EditSecurityMonitoringSignalAssignee
|
31305
31847
|
parameters:
|
31306
31848
|
- $ref: '#/components/parameters/SignalID'
|
@@ -31348,7 +31890,9 @@ paths:
|
|
31348
31890
|
- security_monitoring_signals_write
|
31349
31891
|
/api/v1/security_analytics/signals/{signal_id}/state:
|
31350
31892
|
patch:
|
31351
|
-
|
31893
|
+
deprecated: true
|
31894
|
+
description: This endpoint is deprecated - Change the triage state of a security
|
31895
|
+
signal.
|
31352
31896
|
operationId: EditSecurityMonitoringSignalState
|
31353
31897
|
parameters:
|
31354
31898
|
- $ref: '#/components/parameters/SignalID'
|
@@ -33409,6 +33953,92 @@ paths:
|
|
33409
33953
|
operator: OR
|
33410
33954
|
permissions:
|
33411
33955
|
- synthetics_write
|
33956
|
+
/api/v1/synthetics/tests/search:
|
33957
|
+
get:
|
33958
|
+
description: Search for Synthetic tests and Test Suites.
|
33959
|
+
operationId: SearchTests
|
33960
|
+
parameters:
|
33961
|
+
- description: The search query.
|
33962
|
+
in: query
|
33963
|
+
name: text
|
33964
|
+
required: false
|
33965
|
+
schema:
|
33966
|
+
type: string
|
33967
|
+
- description: If true, include the full configuration for each test in the
|
33968
|
+
response.
|
33969
|
+
in: query
|
33970
|
+
name: include_full_config
|
33971
|
+
required: false
|
33972
|
+
schema:
|
33973
|
+
type: boolean
|
33974
|
+
- description: If true, returns suites instead of tests.
|
33975
|
+
in: query
|
33976
|
+
name: search_suites
|
33977
|
+
required: false
|
33978
|
+
schema:
|
33979
|
+
type: boolean
|
33980
|
+
- description: If true, return only facets instead of full test details.
|
33981
|
+
in: query
|
33982
|
+
name: facets_only
|
33983
|
+
required: false
|
33984
|
+
schema:
|
33985
|
+
type: boolean
|
33986
|
+
- description: The offset from which to start returning results.
|
33987
|
+
in: query
|
33988
|
+
name: start
|
33989
|
+
required: false
|
33990
|
+
schema:
|
33991
|
+
default: 0
|
33992
|
+
format: int64
|
33993
|
+
type: integer
|
33994
|
+
- description: The maximum number of results to return.
|
33995
|
+
in: query
|
33996
|
+
name: count
|
33997
|
+
required: false
|
33998
|
+
schema:
|
33999
|
+
default: 50
|
34000
|
+
format: int64
|
34001
|
+
type: integer
|
34002
|
+
- description: The sort order for the results (e.g., `name,asc` or `name,desc`).
|
34003
|
+
in: query
|
34004
|
+
name: sort
|
34005
|
+
required: false
|
34006
|
+
schema:
|
34007
|
+
default: name,asc
|
34008
|
+
type: string
|
34009
|
+
responses:
|
34010
|
+
'200':
|
34011
|
+
content:
|
34012
|
+
application/json:
|
34013
|
+
schema:
|
34014
|
+
$ref: '#/components/schemas/SyntheticsListTestsResponse'
|
34015
|
+
description: OK - Returns the list of Synthetic tests matching the search.
|
34016
|
+
'403':
|
34017
|
+
content:
|
34018
|
+
application/json:
|
34019
|
+
schema:
|
34020
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
34021
|
+
description: Forbidden
|
34022
|
+
'404':
|
34023
|
+
content:
|
34024
|
+
application/json:
|
34025
|
+
schema:
|
34026
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
34027
|
+
description: Not found
|
34028
|
+
'429':
|
34029
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
34030
|
+
security:
|
34031
|
+
- apiKeyAuth: []
|
34032
|
+
appKeyAuth: []
|
34033
|
+
- AuthZ:
|
34034
|
+
- synthetics_read
|
34035
|
+
summary: Search Synthetic tests
|
34036
|
+
tags:
|
34037
|
+
- Synthetics
|
34038
|
+
x-permission:
|
34039
|
+
operator: OR
|
34040
|
+
permissions:
|
34041
|
+
- synthetics_read
|
33412
34042
|
/api/v1/synthetics/tests/trigger:
|
33413
34043
|
post:
|
33414
34044
|
description: Trigger a set of Synthetic tests.
|
@@ -33849,6 +34479,8 @@ paths:
|
|
33849
34479
|
appKeyAuth: []
|
33850
34480
|
- AuthZ:
|
33851
34481
|
- synthetics_global_variable_read
|
34482
|
+
- AuthZ:
|
34483
|
+
- apm_api_catalog_read
|
33852
34484
|
summary: Get all global variables
|
33853
34485
|
tags:
|
33854
34486
|
- Synthetics
|
@@ -33856,6 +34488,7 @@ paths:
|
|
33856
34488
|
operator: OR
|
33857
34489
|
permissions:
|
33858
34490
|
- synthetics_global_variable_read
|
34491
|
+
- apm_api_catalog_read
|
33859
34492
|
post:
|
33860
34493
|
description: Create a Synthetic global variable.
|
33861
34494
|
operationId: CreateGlobalVariable
|
@@ -34952,7 +35585,9 @@ paths:
|
|
34952
35585
|
schema:
|
34953
35586
|
format: date-time
|
34954
35587
|
type: string
|
34955
|
-
- description: Usage type to retrieve.
|
35588
|
+
- description: 'Usage type to retrieve. The following values have been **deprecated**:
|
35589
|
+
|
35590
|
+
`estimated_indexed_spans_usage`, `estimated_ingested_spans_usage`.'
|
34956
35591
|
in: query
|
34957
35592
|
name: usage_type
|
34958
35593
|
required: true
|
@@ -35502,8 +36137,13 @@ paths:
|
|
35502
36137
|
schema:
|
35503
36138
|
format: date-time
|
35504
36139
|
type: string
|
35505
|
-
- description: Comma-separated list of usage types to return, or `*` for all
|
36140
|
+
- description: 'Comma-separated list of usage types to return, or `*` for all
|
35506
36141
|
usage types.
|
36142
|
+
|
36143
|
+
The following values have been **deprecated**:
|
36144
|
+
|
36145
|
+
`estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`,
|
36146
|
+
`estimated_ingested_spans_percentage`.'
|
35507
36147
|
in: query
|
35508
36148
|
name: fields
|
35509
36149
|
required: true
|
@@ -35515,7 +36155,12 @@ paths:
|
|
35515
36155
|
required: false
|
35516
36156
|
schema:
|
35517
36157
|
$ref: '#/components/schemas/UsageSortDirection'
|
35518
|
-
- description: The field to sort by.
|
36158
|
+
- description: 'The field to sort by.
|
36159
|
+
|
36160
|
+
The following values have been **deprecated**:
|
36161
|
+
|
36162
|
+
`estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`,
|
36163
|
+
`estimated_ingested_spans_percentage`.'
|
35519
36164
|
in: query
|
35520
36165
|
name: sort_name
|
35521
36166
|
required: false
|
@@ -37055,13 +37700,18 @@ tags:
|
|
37055
37700
|
- description: Get a list of IP prefixes belonging to Datadog.
|
37056
37701
|
name: IP Ranges
|
37057
37702
|
- description: 'Manage your Datadog API and application keys. You need an API key
|
37058
|
-
and
|
37703
|
+
and an
|
37704
|
+
|
37705
|
+
application key for a user with the required permissions to interact with these
|
37706
|
+
endpoints.
|
37059
37707
|
|
37060
|
-
an application key for a user with the required permissions to interact
|
37061
37708
|
|
37062
|
-
|
37709
|
+
Consult the following pages to view and manage your keys:
|
37063
37710
|
|
37064
|
-
|
37711
|
+
|
37712
|
+
- [API Keys](https://app.datadoghq.com/organization-settings/api-keys)
|
37713
|
+
|
37714
|
+
- [Application Keys](https://app.datadoghq.com/personal-settings/application-keys)'
|
37065
37715
|
externalDocs:
|
37066
37716
|
description: Find out more at
|
37067
37717
|
url: https://docs.datadoghq.com/account_management/api-app-keys/
|
@@ -37204,13 +37854,21 @@ tags:
|
|
37204
37854
|
name: Slack Integration
|
37205
37855
|
- description: Take graph snapshots using the API.
|
37206
37856
|
name: Snapshots
|
37207
|
-
- description:
|
37208
|
-
rendering to help you ensure uptime
|
37209
|
-
|
37210
|
-
|
37211
|
-
|
37212
|
-
|
37213
|
-
|
37857
|
+
- description: 'Datadog Synthetic Monitoring uses simulated user requests and browser
|
37858
|
+
rendering to help you ensure uptime,
|
37859
|
+
|
37860
|
+
identify regional issues, and track your application performance. Synthetic tests
|
37861
|
+
come in
|
37862
|
+
|
37863
|
+
two different flavors, [API tests](https://docs.datadoghq.com/synthetics/api_tests/?tab=httptest)
|
37864
|
+
|
37865
|
+
and [browser tests](https://docs.datadoghq.com/synthetics/browser_tests). You
|
37866
|
+
can use Datadog''s API to
|
37867
|
+
|
37868
|
+
manage both test types programmatically.
|
37869
|
+
|
37870
|
+
|
37871
|
+
For more information, see the [Synthetic Monitoring documentation](https://docs.datadoghq.com/synthetics/).'
|
37214
37872
|
name: Synthetics
|
37215
37873
|
- description: 'The tag endpoint allows you to assign tags to hosts,
|
37216
37874
|
|