datadog_api_client 2.39.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 +2 -2
- data/.generator/schemas/v1/openapi.yaml +208 -30
- data/.generator/schemas/v2/openapi.yaml +2921 -243
- 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/CHANGELOG.md +26 -0
- data/Gemfile +1 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline_3336967838.rb +24 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1072503741.rb +1 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1279271422.rb +1 -0
- data/examples/v1/synthetics/SearchTests_195957771.rb +1 -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/UpdateAWSAccount.rb +10 -0
- data/examples/v2/case-management/UpdateAttributes.rb +26 -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 +7 -6
- data/examples/v2/datasets/DeleteDataset.rb +7 -1
- data/examples/v2/datasets/GetAllDatasets.rb +3 -0
- data/examples/v2/datasets/GetDataset.rb +7 -1
- 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/security-monitoring/CreateSecurityMonitoringRule_1965169892.rb +6 -0
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_868881438.rb +41 -0
- data/lib/datadog_api_client/configuration.rb +9 -1
- data/lib/datadog_api_client/inflector.rb +225 -2
- 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 +3 -1
- 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 +2 -1
- 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 +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/case_management_api.rb +72 -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 +102 -0
- data/lib/datadog_api_client/v2/api/events_api.rb +65 -2
- data/lib/datadog_api_client/v2/api/metrics_api.rb +65 -0
- data/lib/datadog_api_client/v2/api/monitors_api.rb +8 -8
- data/lib/datadog_api_client/v2/api/restriction_policies_api.rb +9 -5
- data/lib/datadog_api_client/v2/api/rum_api.rb +3 -3
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +17 -14
- 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/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/{dataset.rb → case_update_attributes.rb} +8 -18
- 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.rb → dataset_attributes_request.rb} +4 -32
- data/lib/datadog_api_client/v2/models/dataset_attributes_response.rb +157 -0
- data/lib/datadog_api_client/v2/models/dataset_create_request.rb +12 -2
- 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 +2 -20
- data/lib/datadog_api_client/v2/models/dataset_response_single.rb +13 -21
- 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 +2 -2
- 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/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/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/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/version.rb +1 -1
- metadata +233 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 502cff96e07734e9ef783c92722f3f2a1ff31020f268a7a6ee210f136e12b61c
|
4
|
+
data.tar.gz: 1ae2f1ba9de73f7095d6559b873f66d41a241f8aa584b6eb4bb5d5b5282c2241
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0e35f4742e427f40b220e694d11fd9702f0fc12d2233ca41213b3d428cb480acb20c073a36a7d8c033079ff57f1a711c9c89caff7ff6887febad3f2fec41390
|
7
|
+
data.tar.gz: ffb47cf355e1b9b667d62cae16187786fb5add926fdcd8824b5cec806c4bf0c362916e686e7e4bfe304a19f2dbe023d26f6eeb3066f5542d78e486532bb740ee
|
data/.generated-info
CHANGED
@@ -5547,6 +5547,72 @@ components:
|
|
5547
5547
|
type: string
|
5548
5548
|
x-enum-varnames:
|
5549
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
|
5550
5616
|
LogsExclusion:
|
5551
5617
|
description: Represents the index exclusion filter object from configuration
|
5552
5618
|
API.
|
@@ -6215,6 +6281,7 @@ components:
|
|
6215
6281
|
- $ref: '#/components/schemas/LogsTraceRemapper'
|
6216
6282
|
- $ref: '#/components/schemas/LogsSpanRemapper'
|
6217
6283
|
- $ref: '#/components/schemas/LogsArrayProcessor'
|
6284
|
+
- $ref: '#/components/schemas/LogsDecoderProcessor'
|
6218
6285
|
LogsQueryCompute:
|
6219
6286
|
description: Define computation for a log query.
|
6220
6287
|
properties:
|
@@ -17197,7 +17264,7 @@ components:
|
|
17197
17264
|
description: Object describing the extra options for a Synthetic test.
|
17198
17265
|
properties:
|
17199
17266
|
accept_self_signed:
|
17200
|
-
description: 'For SSL
|
17267
|
+
description: 'For SSL tests, whether or not the test should allow self signed
|
17201
17268
|
|
17202
17269
|
certificates.'
|
17203
17270
|
type: boolean
|
@@ -17206,7 +17273,7 @@ components:
|
|
17206
17273
|
test.
|
17207
17274
|
type: boolean
|
17208
17275
|
checkCertificateRevocation:
|
17209
|
-
description: For SSL
|
17276
|
+
description: For SSL tests, whether or not the test should fail on revoked
|
17210
17277
|
certificate in stapled OCSP.
|
17211
17278
|
type: boolean
|
17212
17279
|
ci:
|
@@ -17217,6 +17284,10 @@ components:
|
|
17217
17284
|
items:
|
17218
17285
|
$ref: '#/components/schemas/SyntheticsDeviceID'
|
17219
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
|
17220
17291
|
disableCors:
|
17221
17292
|
description: Whether or not to disable CORS mechanism.
|
17222
17293
|
type: boolean
|
@@ -17460,6 +17531,9 @@ components:
|
|
17460
17531
|
description: A protobuf file that needs to be gzipped first then base64
|
17461
17532
|
encoded.
|
17462
17533
|
type: string
|
17534
|
+
disableAiaIntermediateFetching:
|
17535
|
+
description: Disable fetching intermediate certificates from AIA.
|
17536
|
+
type: boolean
|
17463
17537
|
dnsServer:
|
17464
17538
|
description: DNS server to use for DNS tests.
|
17465
17539
|
type: string
|
@@ -18888,6 +18962,14 @@ components:
|
|
18888
18962
|
description: The total account usage.
|
18889
18963
|
format: int64
|
18890
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
|
18891
18973
|
elapsed_usage_hours:
|
18892
18974
|
description: Elapsed usage hours for some billable product.
|
18893
18975
|
format: int64
|
@@ -20685,6 +20767,21 @@ components:
|
|
20685
20767
|
hours in the current date for the given org.
|
20686
20768
|
format: int64
|
20687
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
|
20688
20785
|
fargate_container_profiler_profiling_fargate_avg:
|
20689
20786
|
description: The average number of Profiling Fargate tasks over all hours
|
20690
20787
|
in the current date for all organizations.
|
@@ -20720,6 +20817,11 @@ components:
|
|
20720
20817
|
over all hours in the current date for the given org.
|
20721
20818
|
format: int64
|
20722
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
|
20723
20825
|
flex_logs_compute_xsmall_avg:
|
20724
20826
|
description: Shows the average number of Flex Logs Compute Extra Small Instances
|
20725
20827
|
over all hours in the current date for the given org.
|
@@ -21615,6 +21717,21 @@ components:
|
|
21615
21717
|
hours in the current date for the given org.
|
21616
21718
|
format: int64
|
21617
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
|
21618
21735
|
fargate_container_profiler_profiling_fargate_avg:
|
21619
21736
|
description: The average number of Profiling Fargate tasks over all hours
|
21620
21737
|
in the current month for the given org.
|
@@ -21649,6 +21766,11 @@ components:
|
|
21649
21766
|
over all hours in the current date for the given org.
|
21650
21767
|
format: int64
|
21651
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
|
21652
21774
|
flex_logs_compute_xsmall_avg:
|
21653
21775
|
description: Shows the average number of Flex Logs Compute Extra Small Instances
|
21654
21776
|
over all hours in the current date for the given org.
|
@@ -22550,6 +22672,21 @@ components:
|
|
22550
22672
|
hours in the current month for all organizations.
|
22551
22673
|
format: int64
|
22552
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
|
22553
22690
|
fargate_container_profiler_profiling_fargate_avg_sum:
|
22554
22691
|
description: The average number of Profiling Fargate tasks over all hours
|
22555
22692
|
in the current month for all organizations.
|
@@ -22585,6 +22722,11 @@ components:
|
|
22585
22722
|
over all hours in the current months for all organizations.
|
22586
22723
|
format: int64
|
22587
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
|
22588
22730
|
flex_logs_compute_xsmall_avg_sum:
|
22589
22731
|
description: Shows the average number of Flex Logs Compute Extra Small Instances
|
22590
22732
|
over all hours in the current months for all organizations.
|
@@ -24523,6 +24665,8 @@ components:
|
|
24523
24665
|
code_analysis_read: View Code Analysis.
|
24524
24666
|
continuous_profiler_pgo_read: Read and query Continuous Profiler data
|
24525
24667
|
for Profile-Guided Optimization (PGO).
|
24668
|
+
coterm_read: Read terminal recordings.
|
24669
|
+
coterm_write: Write terminal recordings.
|
24526
24670
|
create_webhooks: Create webhooks integrations.
|
24527
24671
|
dashboards_embed_share: Create, modify, and delete shared dashboards with
|
24528
24672
|
share type 'embed'.
|
@@ -24559,10 +24703,6 @@ components:
|
|
24559
24703
|
security_monitoring_filters_write: Create, edit, and delete Security Filters.
|
24560
24704
|
security_monitoring_findings_read: View a list of findings that include
|
24561
24705
|
both misconfigurations and identity risks.
|
24562
|
-
security_monitoring_notification_profiles_read: View Rule Security Notification
|
24563
|
-
rules.
|
24564
|
-
security_monitoring_notification_profiles_write: Create, edit, and delete
|
24565
|
-
Security Notification rules.
|
24566
24706
|
security_monitoring_rules_read: Read Detection Rules.
|
24567
24707
|
security_monitoring_rules_write: Create and edit Detection Rules.
|
24568
24708
|
security_monitoring_signals_read: View Security Signals.
|
@@ -25768,6 +25908,10 @@ paths:
|
|
25768
25908
|
appKeyAuth: []
|
25769
25909
|
- AuthZ:
|
25770
25910
|
- dashboards_public_share
|
25911
|
+
- AuthZ:
|
25912
|
+
- dashboards_embed_share
|
25913
|
+
- AuthZ:
|
25914
|
+
- dashboards_invite_share
|
25771
25915
|
summary: Create a shared dashboard
|
25772
25916
|
tags:
|
25773
25917
|
- Dashboards
|
@@ -25776,6 +25920,8 @@ paths:
|
|
25776
25920
|
operator: OR
|
25777
25921
|
permissions:
|
25778
25922
|
- dashboards_public_share
|
25923
|
+
- dashboards_embed_share
|
25924
|
+
- dashboards_invite_share
|
25779
25925
|
/api/v1/dashboard/public/{token}:
|
25780
25926
|
delete:
|
25781
25927
|
description: Revoke the public URL for a dashboard (rendering it private) associated
|
@@ -25814,6 +25960,10 @@ paths:
|
|
25814
25960
|
appKeyAuth: []
|
25815
25961
|
- AuthZ:
|
25816
25962
|
- dashboards_public_share
|
25963
|
+
- AuthZ:
|
25964
|
+
- dashboards_embed_share
|
25965
|
+
- AuthZ:
|
25966
|
+
- dashboards_invite_share
|
25817
25967
|
summary: Revoke a shared dashboard URL
|
25818
25968
|
tags:
|
25819
25969
|
- Dashboards
|
@@ -25821,6 +25971,8 @@ paths:
|
|
25821
25971
|
operator: OR
|
25822
25972
|
permissions:
|
25823
25973
|
- dashboards_public_share
|
25974
|
+
- dashboards_embed_share
|
25975
|
+
- dashboards_invite_share
|
25824
25976
|
get:
|
25825
25977
|
description: Fetch an existing shared dashboard's sharing metadata associated
|
25826
25978
|
with the specified token.
|
@@ -25931,6 +26083,10 @@ paths:
|
|
25931
26083
|
appKeyAuth: []
|
25932
26084
|
- AuthZ:
|
25933
26085
|
- dashboards_public_share
|
26086
|
+
- AuthZ:
|
26087
|
+
- dashboards_embed_share
|
26088
|
+
- AuthZ:
|
26089
|
+
- dashboards_invite_share
|
25934
26090
|
summary: Update a shared dashboard
|
25935
26091
|
tags:
|
25936
26092
|
- Dashboards
|
@@ -25939,6 +26095,8 @@ paths:
|
|
25939
26095
|
operator: OR
|
25940
26096
|
permissions:
|
25941
26097
|
- dashboards_public_share
|
26098
|
+
- dashboards_embed_share
|
26099
|
+
- dashboards_invite_share
|
25942
26100
|
/api/v1/dashboard/public/{token}/invitation:
|
25943
26101
|
delete:
|
25944
26102
|
description: Revoke previously sent invitation emails and active sessions used
|
@@ -25986,7 +26144,7 @@ paths:
|
|
25986
26144
|
- apiKeyAuth: []
|
25987
26145
|
appKeyAuth: []
|
25988
26146
|
- AuthZ:
|
25989
|
-
-
|
26147
|
+
- dashboards_invite_share
|
25990
26148
|
summary: Revoke shared dashboard invitations
|
25991
26149
|
tags:
|
25992
26150
|
- Dashboards
|
@@ -25994,7 +26152,7 @@ paths:
|
|
25994
26152
|
x-permission:
|
25995
26153
|
operator: OR
|
25996
26154
|
permissions:
|
25997
|
-
-
|
26155
|
+
- dashboards_invite_share
|
25998
26156
|
get:
|
25999
26157
|
description: Describe the invitations that exist for the given shared dashboard
|
26000
26158
|
(paginated).
|
@@ -26045,14 +26203,14 @@ paths:
|
|
26045
26203
|
- apiKeyAuth: []
|
26046
26204
|
appKeyAuth: []
|
26047
26205
|
- AuthZ:
|
26048
|
-
-
|
26206
|
+
- dashboards_invite_share
|
26049
26207
|
summary: Get all invitations for a shared dashboard
|
26050
26208
|
tags:
|
26051
26209
|
- Dashboards
|
26052
26210
|
x-permission:
|
26053
26211
|
operator: OR
|
26054
26212
|
permissions:
|
26055
|
-
-
|
26213
|
+
- dashboards_invite_share
|
26056
26214
|
post:
|
26057
26215
|
description: Send emails to specified email addresses containing links to access
|
26058
26216
|
a given authenticated shared dashboard. Email addresses must already belong
|
@@ -26110,7 +26268,7 @@ paths:
|
|
26110
26268
|
- apiKeyAuth: []
|
26111
26269
|
appKeyAuth: []
|
26112
26270
|
- AuthZ:
|
26113
|
-
-
|
26271
|
+
- dashboards_invite_share
|
26114
26272
|
summary: Send shared dashboard invitation email
|
26115
26273
|
tags:
|
26116
26274
|
- Dashboards
|
@@ -26118,7 +26276,7 @@ paths:
|
|
26118
26276
|
x-permission:
|
26119
26277
|
operator: OR
|
26120
26278
|
permissions:
|
26121
|
-
-
|
26279
|
+
- dashboards_invite_share
|
26122
26280
|
/api/v1/dashboard/{dashboard_id}:
|
26123
26281
|
delete:
|
26124
26282
|
description: Delete a dashboard using the specified ID.
|
@@ -29147,6 +29305,10 @@ paths:
|
|
29147
29305
|
description: Authentication error
|
29148
29306
|
'429':
|
29149
29307
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
29308
|
+
security:
|
29309
|
+
- apiKeyAuth: []
|
29310
|
+
appKeyAuth: []
|
29311
|
+
- AuthZ: []
|
29150
29312
|
summary: Search logs
|
29151
29313
|
tags:
|
29152
29314
|
- Logs
|
@@ -29245,10 +29407,6 @@ paths:
|
|
29245
29407
|
description: Forbidden
|
29246
29408
|
'429':
|
29247
29409
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
29248
|
-
security:
|
29249
|
-
- apiKeyAuth: []
|
29250
|
-
appKeyAuth: []
|
29251
|
-
- AuthZ: []
|
29252
29410
|
summary: Get all indexes
|
29253
29411
|
tags:
|
29254
29412
|
- Logs Indexes
|
@@ -30452,7 +30610,7 @@ paths:
|
|
30452
30610
|
- apiKeyAuth: []
|
30453
30611
|
appKeyAuth: []
|
30454
30612
|
- AuthZ:
|
30455
|
-
-
|
30613
|
+
- monitors_read
|
30456
30614
|
summary: Validate a monitor
|
30457
30615
|
tags:
|
30458
30616
|
- Monitors
|
@@ -30460,7 +30618,7 @@ paths:
|
|
30460
30618
|
x-permission:
|
30461
30619
|
operator: OR
|
30462
30620
|
permissions:
|
30463
|
-
-
|
30621
|
+
- monitors_read
|
30464
30622
|
/api/v1/monitor/{monitor_id}:
|
30465
30623
|
delete:
|
30466
30624
|
description: Delete the specified monitor
|
@@ -30753,7 +30911,7 @@ paths:
|
|
30753
30911
|
- apiKeyAuth: []
|
30754
30912
|
appKeyAuth: []
|
30755
30913
|
- AuthZ:
|
30756
|
-
-
|
30914
|
+
- monitors_read
|
30757
30915
|
summary: Validate an existing monitor
|
30758
30916
|
tags:
|
30759
30917
|
- Monitors
|
@@ -30761,7 +30919,7 @@ paths:
|
|
30761
30919
|
x-permission:
|
30762
30920
|
operator: OR
|
30763
30921
|
permissions:
|
30764
|
-
-
|
30922
|
+
- monitors_read
|
30765
30923
|
/api/v1/monthly_custom_reports:
|
30766
30924
|
get:
|
30767
30925
|
deprecated: true
|
@@ -31621,13 +31779,15 @@ paths:
|
|
31621
31779
|
security:
|
31622
31780
|
- apiKeyAuth: []
|
31623
31781
|
appKeyAuth: []
|
31624
|
-
- AuthZ:
|
31782
|
+
- AuthZ:
|
31783
|
+
- metrics_read
|
31625
31784
|
summary: Search metrics
|
31626
31785
|
tags:
|
31627
31786
|
- Metrics
|
31628
31787
|
x-permission:
|
31629
|
-
operator:
|
31630
|
-
permissions:
|
31788
|
+
operator: OR
|
31789
|
+
permissions:
|
31790
|
+
- metrics_read
|
31631
31791
|
/api/v1/security_analytics/signals/{signal_id}/add_to_incident:
|
31632
31792
|
patch:
|
31633
31793
|
description: Add a security signal to an incident. This makes it possible to
|
@@ -31680,7 +31840,9 @@ paths:
|
|
31680
31840
|
- security_monitoring_signals_write
|
31681
31841
|
/api/v1/security_analytics/signals/{signal_id}/assignee:
|
31682
31842
|
patch:
|
31683
|
-
|
31843
|
+
deprecated: true
|
31844
|
+
description: This endpoint is deprecated - Modify the triage assignee of a security
|
31845
|
+
signal.
|
31684
31846
|
operationId: EditSecurityMonitoringSignalAssignee
|
31685
31847
|
parameters:
|
31686
31848
|
- $ref: '#/components/parameters/SignalID'
|
@@ -31728,7 +31890,9 @@ paths:
|
|
31728
31890
|
- security_monitoring_signals_write
|
31729
31891
|
/api/v1/security_analytics/signals/{signal_id}/state:
|
31730
31892
|
patch:
|
31731
|
-
|
31893
|
+
deprecated: true
|
31894
|
+
description: This endpoint is deprecated - Change the triage state of a security
|
31895
|
+
signal.
|
31732
31896
|
operationId: EditSecurityMonitoringSignalState
|
31733
31897
|
parameters:
|
31734
31898
|
- $ref: '#/components/parameters/SignalID'
|
@@ -33794,6 +33958,12 @@ paths:
|
|
33794
33958
|
description: Search for Synthetic tests and Test Suites.
|
33795
33959
|
operationId: SearchTests
|
33796
33960
|
parameters:
|
33961
|
+
- description: The search query.
|
33962
|
+
in: query
|
33963
|
+
name: text
|
33964
|
+
required: false
|
33965
|
+
schema:
|
33966
|
+
type: string
|
33797
33967
|
- description: If true, include the full configuration for each test in the
|
33798
33968
|
response.
|
33799
33969
|
in: query
|
@@ -33829,7 +33999,7 @@ paths:
|
|
33829
33999
|
default: 50
|
33830
34000
|
format: int64
|
33831
34001
|
type: integer
|
33832
|
-
- description: The sort order for the results (e.g.,
|
34002
|
+
- description: The sort order for the results (e.g., `name,asc` or `name,desc`).
|
33833
34003
|
in: query
|
33834
34004
|
name: sort
|
33835
34005
|
required: false
|
@@ -34309,6 +34479,8 @@ paths:
|
|
34309
34479
|
appKeyAuth: []
|
34310
34480
|
- AuthZ:
|
34311
34481
|
- synthetics_global_variable_read
|
34482
|
+
- AuthZ:
|
34483
|
+
- apm_api_catalog_read
|
34312
34484
|
summary: Get all global variables
|
34313
34485
|
tags:
|
34314
34486
|
- Synthetics
|
@@ -34316,6 +34488,7 @@ paths:
|
|
34316
34488
|
operator: OR
|
34317
34489
|
permissions:
|
34318
34490
|
- synthetics_global_variable_read
|
34491
|
+
- apm_api_catalog_read
|
34319
34492
|
post:
|
34320
34493
|
description: Create a Synthetic global variable.
|
34321
34494
|
operationId: CreateGlobalVariable
|
@@ -37527,13 +37700,18 @@ tags:
|
|
37527
37700
|
- description: Get a list of IP prefixes belonging to Datadog.
|
37528
37701
|
name: IP Ranges
|
37529
37702
|
- description: 'Manage your Datadog API and application keys. You need an API key
|
37530
|
-
and
|
37703
|
+
and an
|
37704
|
+
|
37705
|
+
application key for a user with the required permissions to interact with these
|
37706
|
+
endpoints.
|
37707
|
+
|
37708
|
+
|
37709
|
+
Consult the following pages to view and manage your keys:
|
37531
37710
|
|
37532
|
-
an application key for a user with the required permissions to interact
|
37533
37711
|
|
37534
|
-
|
37712
|
+
- [API Keys](https://app.datadoghq.com/organization-settings/api-keys)
|
37535
37713
|
|
37536
|
-
|
37714
|
+
- [Application Keys](https://app.datadoghq.com/personal-settings/application-keys)'
|
37537
37715
|
externalDocs:
|
37538
37716
|
description: Find out more at
|
37539
37717
|
url: https://docs.datadoghq.com/account_management/api-app-keys/
|