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
@@ -763,11 +763,11 @@ components:
|
|
763
763
|
schema:
|
764
764
|
type: string
|
765
765
|
ResourceID:
|
766
|
-
description: 'Identifier, formatted as `type:id`. Supported types: `
|
767
|
-
`
|
768
|
-
`
|
769
|
-
`
|
770
|
-
`
|
766
|
+
description: 'Identifier, formatted as `type:id`. Supported types: `dashboard`,
|
767
|
+
`integration-service`, `integration-webhook`, `notebook`, `reference-table`,
|
768
|
+
`security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`,
|
769
|
+
`rum-application`, `cross-org-connection`, `spreadsheet`, `on-call-schedule`,
|
770
|
+
`on-call-escalation-policy`, `on-call-team-routing-rules.'
|
771
771
|
example: dashboard:abc-def-ghi
|
772
772
|
in: path
|
773
773
|
name: resource_id
|
@@ -1625,6 +1625,8 @@ components:
|
|
1625
1625
|
example: arn:aws:lambda:us-east-1:123456789012:function:DatadogLambdaLogForwarder
|
1626
1626
|
type: string
|
1627
1627
|
type: array
|
1628
|
+
log_source_config:
|
1629
|
+
$ref: '#/components/schemas/AWSLambdaForwarderConfigLogSourceConfig'
|
1628
1630
|
sources:
|
1629
1631
|
description: 'List of service IDs set to enable automatic log collection.
|
1630
1632
|
Discover the list of available services with the
|
@@ -1636,6 +1638,44 @@ components:
|
|
1636
1638
|
type: string
|
1637
1639
|
type: array
|
1638
1640
|
type: object
|
1641
|
+
AWSLambdaForwarderConfigLogSourceConfig:
|
1642
|
+
description: Log source configuration.
|
1643
|
+
properties:
|
1644
|
+
tag_filters:
|
1645
|
+
description: List of AWS log source tag filters. Defaults to `[]`.
|
1646
|
+
items:
|
1647
|
+
$ref: '#/components/schemas/AWSLogSourceTagFilter'
|
1648
|
+
type: array
|
1649
|
+
type: object
|
1650
|
+
AWSLogSourceTagFilter:
|
1651
|
+
description: 'AWS log source tag filter list. Defaults to `[]`.
|
1652
|
+
|
1653
|
+
Array of log source to AWS resource tag mappings. Each mapping contains a
|
1654
|
+
log source and its associated AWS resource tags (in `key:value` format) used
|
1655
|
+
to filter logs submitted to Datadog.
|
1656
|
+
|
1657
|
+
Tag filters are applied for tags on the AWS resource emitting logs; tags associated
|
1658
|
+
with the log storage entity (such as a CloudWatch Log Group or S3 Bucket)
|
1659
|
+
are not considered.
|
1660
|
+
|
1661
|
+
For more information on resource tag filter syntax, [see AWS resource exclusion](https://docs.datadoghq.com/account_management/billing/aws/#aws-resource-exclusion)
|
1662
|
+
in the AWS integration billing page.'
|
1663
|
+
properties:
|
1664
|
+
source:
|
1665
|
+
description: The AWS log source to which the tag filters defined in `tags`
|
1666
|
+
are applied.
|
1667
|
+
example: s3
|
1668
|
+
type: string
|
1669
|
+
tags:
|
1670
|
+
description: The AWS resource tags to filter on for the log source specified
|
1671
|
+
by `source`.
|
1672
|
+
items:
|
1673
|
+
description: Tag in the form `key:value`.
|
1674
|
+
example: env:prod
|
1675
|
+
type: string
|
1676
|
+
nullable: true
|
1677
|
+
type: array
|
1678
|
+
type: object
|
1639
1679
|
AWSLogsConfig:
|
1640
1680
|
description: AWS Logs Collection config.
|
1641
1681
|
properties:
|
@@ -2016,12 +2056,56 @@ components:
|
|
2016
2056
|
description: The definition of `ActionConnectionIntegration` object.
|
2017
2057
|
oneOf:
|
2018
2058
|
- $ref: '#/components/schemas/AWSIntegration'
|
2059
|
+
- $ref: '#/components/schemas/AnthropicIntegration'
|
2060
|
+
- $ref: '#/components/schemas/AsanaIntegration'
|
2061
|
+
- $ref: '#/components/schemas/AzureIntegration'
|
2062
|
+
- $ref: '#/components/schemas/CircleCIIntegration'
|
2063
|
+
- $ref: '#/components/schemas/ClickupIntegration'
|
2064
|
+
- $ref: '#/components/schemas/CloudflareIntegration'
|
2065
|
+
- $ref: '#/components/schemas/ConfigCatIntegration'
|
2066
|
+
- $ref: '#/components/schemas/DatadogIntegration'
|
2067
|
+
- $ref: '#/components/schemas/FastlyIntegration'
|
2068
|
+
- $ref: '#/components/schemas/FreshserviceIntegration'
|
2069
|
+
- $ref: '#/components/schemas/GCPIntegration'
|
2070
|
+
- $ref: '#/components/schemas/GeminiIntegration'
|
2071
|
+
- $ref: '#/components/schemas/GitlabIntegration'
|
2072
|
+
- $ref: '#/components/schemas/GreyNoiseIntegration'
|
2019
2073
|
- $ref: '#/components/schemas/HTTPIntegration'
|
2074
|
+
- $ref: '#/components/schemas/LaunchDarklyIntegration'
|
2075
|
+
- $ref: '#/components/schemas/NotionIntegration'
|
2076
|
+
- $ref: '#/components/schemas/OktaIntegration'
|
2077
|
+
- $ref: '#/components/schemas/OpenAIIntegration'
|
2078
|
+
- $ref: '#/components/schemas/ServiceNowIntegration'
|
2079
|
+
- $ref: '#/components/schemas/SplitIntegration'
|
2080
|
+
- $ref: '#/components/schemas/StatsigIntegration'
|
2081
|
+
- $ref: '#/components/schemas/VirusTotalIntegration'
|
2020
2082
|
ActionConnectionIntegrationUpdate:
|
2021
2083
|
description: The definition of `ActionConnectionIntegrationUpdate` object.
|
2022
2084
|
oneOf:
|
2023
2085
|
- $ref: '#/components/schemas/AWSIntegrationUpdate'
|
2086
|
+
- $ref: '#/components/schemas/AnthropicIntegrationUpdate'
|
2087
|
+
- $ref: '#/components/schemas/AsanaIntegrationUpdate'
|
2088
|
+
- $ref: '#/components/schemas/AzureIntegrationUpdate'
|
2089
|
+
- $ref: '#/components/schemas/CircleCIIntegrationUpdate'
|
2090
|
+
- $ref: '#/components/schemas/ClickupIntegrationUpdate'
|
2091
|
+
- $ref: '#/components/schemas/CloudflareIntegrationUpdate'
|
2092
|
+
- $ref: '#/components/schemas/ConfigCatIntegrationUpdate'
|
2093
|
+
- $ref: '#/components/schemas/DatadogIntegrationUpdate'
|
2094
|
+
- $ref: '#/components/schemas/FastlyIntegrationUpdate'
|
2095
|
+
- $ref: '#/components/schemas/FreshserviceIntegrationUpdate'
|
2096
|
+
- $ref: '#/components/schemas/GCPIntegrationUpdate'
|
2097
|
+
- $ref: '#/components/schemas/GeminiIntegrationUpdate'
|
2098
|
+
- $ref: '#/components/schemas/GitlabIntegrationUpdate'
|
2099
|
+
- $ref: '#/components/schemas/GreyNoiseIntegrationUpdate'
|
2024
2100
|
- $ref: '#/components/schemas/HTTPIntegrationUpdate'
|
2101
|
+
- $ref: '#/components/schemas/LaunchDarklyIntegrationUpdate'
|
2102
|
+
- $ref: '#/components/schemas/NotionIntegrationUpdate'
|
2103
|
+
- $ref: '#/components/schemas/OktaIntegrationUpdate'
|
2104
|
+
- $ref: '#/components/schemas/OpenAIIntegrationUpdate'
|
2105
|
+
- $ref: '#/components/schemas/ServiceNowIntegrationUpdate'
|
2106
|
+
- $ref: '#/components/schemas/SplitIntegrationUpdate'
|
2107
|
+
- $ref: '#/components/schemas/StatsigIntegrationUpdate'
|
2108
|
+
- $ref: '#/components/schemas/VirusTotalIntegrationUpdate'
|
2025
2109
|
ActionQuery:
|
2026
2110
|
description: An action query. This query type is used to trigger an action,
|
2027
2111
|
such as sending a HTTP request.
|
@@ -2291,6 +2375,88 @@ components:
|
|
2291
2375
|
- id
|
2292
2376
|
- base_severity
|
2293
2377
|
type: object
|
2378
|
+
AlertEventAttributes:
|
2379
|
+
description: Alert event attributes.
|
2380
|
+
properties:
|
2381
|
+
aggregation_key:
|
2382
|
+
$ref: '#/components/schemas/V2EventAggregationKey'
|
2383
|
+
custom:
|
2384
|
+
description: JSON object of custom attributes.
|
2385
|
+
example: {}
|
2386
|
+
type: object
|
2387
|
+
evt:
|
2388
|
+
$ref: '#/components/schemas/EventSystemAttributes'
|
2389
|
+
links:
|
2390
|
+
description: The links related to the event.
|
2391
|
+
example:
|
2392
|
+
- category: runbook
|
2393
|
+
title: Runbook Link
|
2394
|
+
url: https://app.datadoghq.com/runbook
|
2395
|
+
items:
|
2396
|
+
$ref: '#/components/schemas/AlertEventAttributesLinksItem'
|
2397
|
+
type: array
|
2398
|
+
priority:
|
2399
|
+
$ref: '#/components/schemas/AlertEventAttributesPriority'
|
2400
|
+
service:
|
2401
|
+
$ref: '#/components/schemas/V2EventService'
|
2402
|
+
status:
|
2403
|
+
$ref: '#/components/schemas/AlertEventAttributesStatus'
|
2404
|
+
timestamp:
|
2405
|
+
$ref: '#/components/schemas/V2EventTimestamp'
|
2406
|
+
title:
|
2407
|
+
$ref: '#/components/schemas/V2EventTitle'
|
2408
|
+
type: object
|
2409
|
+
AlertEventAttributesLinksItem:
|
2410
|
+
description: A link.
|
2411
|
+
properties:
|
2412
|
+
category:
|
2413
|
+
$ref: '#/components/schemas/AlertEventAttributesLinksItemCategory'
|
2414
|
+
title:
|
2415
|
+
description: The display text of the link.
|
2416
|
+
type: string
|
2417
|
+
url:
|
2418
|
+
description: The URL of the link.
|
2419
|
+
type: string
|
2420
|
+
type: object
|
2421
|
+
AlertEventAttributesLinksItemCategory:
|
2422
|
+
description: The category of the link.
|
2423
|
+
enum:
|
2424
|
+
- runbook
|
2425
|
+
- documentation
|
2426
|
+
- dashboard
|
2427
|
+
type: string
|
2428
|
+
x-enum-varnames:
|
2429
|
+
- RUNBOOK
|
2430
|
+
- DOCUMENTATION
|
2431
|
+
- DASHBOARD
|
2432
|
+
AlertEventAttributesPriority:
|
2433
|
+
description: The priority of the alert.
|
2434
|
+
enum:
|
2435
|
+
- '1'
|
2436
|
+
- '2'
|
2437
|
+
- '3'
|
2438
|
+
- '4'
|
2439
|
+
- '5'
|
2440
|
+
example: '5'
|
2441
|
+
type: string
|
2442
|
+
x-enum-varnames:
|
2443
|
+
- PRIORITY_ONE
|
2444
|
+
- PRIORITY_TWO
|
2445
|
+
- PRIORITY_THREE
|
2446
|
+
- PRIORITY_FOUR
|
2447
|
+
- PRIORITY_FIVE
|
2448
|
+
AlertEventAttributesStatus:
|
2449
|
+
description: The status of the alert.
|
2450
|
+
enum:
|
2451
|
+
- warn
|
2452
|
+
- error
|
2453
|
+
- ok
|
2454
|
+
example: error
|
2455
|
+
type: string
|
2456
|
+
x-enum-varnames:
|
2457
|
+
- WARN
|
2458
|
+
- ERROR
|
2459
|
+
- OK
|
2294
2460
|
AlertEventCustomAttributes:
|
2295
2461
|
additionalProperties: false
|
2296
2462
|
description: Alert event attributes.
|
@@ -2432,6 +2598,75 @@ components:
|
|
2432
2598
|
description: The `markdownTextAnnotation` `text`.
|
2433
2599
|
type: string
|
2434
2600
|
type: object
|
2601
|
+
AnthropicAPIKey:
|
2602
|
+
description: The definition of the `AnthropicAPIKey` object.
|
2603
|
+
properties:
|
2604
|
+
api_token:
|
2605
|
+
description: The `AnthropicAPIKey` `api_token`.
|
2606
|
+
example: ''
|
2607
|
+
type: string
|
2608
|
+
type:
|
2609
|
+
$ref: '#/components/schemas/AnthropicAPIKeyType'
|
2610
|
+
required:
|
2611
|
+
- type
|
2612
|
+
- api_token
|
2613
|
+
type: object
|
2614
|
+
AnthropicAPIKeyType:
|
2615
|
+
description: The definition of the `AnthropicAPIKey` object.
|
2616
|
+
enum:
|
2617
|
+
- AnthropicAPIKey
|
2618
|
+
example: AnthropicAPIKey
|
2619
|
+
type: string
|
2620
|
+
x-enum-varnames:
|
2621
|
+
- ANTHROPICAPIKEY
|
2622
|
+
AnthropicAPIKeyUpdate:
|
2623
|
+
description: The definition of the `AnthropicAPIKey` object.
|
2624
|
+
properties:
|
2625
|
+
api_token:
|
2626
|
+
description: The `AnthropicAPIKeyUpdate` `api_token`.
|
2627
|
+
type: string
|
2628
|
+
type:
|
2629
|
+
$ref: '#/components/schemas/AnthropicAPIKeyType'
|
2630
|
+
required:
|
2631
|
+
- type
|
2632
|
+
type: object
|
2633
|
+
AnthropicCredentials:
|
2634
|
+
description: The definition of the `AnthropicCredentials` object.
|
2635
|
+
oneOf:
|
2636
|
+
- $ref: '#/components/schemas/AnthropicAPIKey'
|
2637
|
+
AnthropicCredentialsUpdate:
|
2638
|
+
description: The definition of the `AnthropicCredentialsUpdate` object.
|
2639
|
+
oneOf:
|
2640
|
+
- $ref: '#/components/schemas/AnthropicAPIKeyUpdate'
|
2641
|
+
AnthropicIntegration:
|
2642
|
+
description: The definition of the `AnthropicIntegration` object.
|
2643
|
+
properties:
|
2644
|
+
credentials:
|
2645
|
+
$ref: '#/components/schemas/AnthropicCredentials'
|
2646
|
+
type:
|
2647
|
+
$ref: '#/components/schemas/AnthropicIntegrationType'
|
2648
|
+
required:
|
2649
|
+
- type
|
2650
|
+
- credentials
|
2651
|
+
type: object
|
2652
|
+
AnthropicIntegrationType:
|
2653
|
+
description: The definition of the `AnthropicIntegrationType` object.
|
2654
|
+
enum:
|
2655
|
+
- Anthropic
|
2656
|
+
example: Anthropic
|
2657
|
+
type: string
|
2658
|
+
x-enum-varnames:
|
2659
|
+
- ANTHROPIC
|
2660
|
+
AnthropicIntegrationUpdate:
|
2661
|
+
description: The definition of the `AnthropicIntegrationUpdate` object.
|
2662
|
+
properties:
|
2663
|
+
credentials:
|
2664
|
+
$ref: '#/components/schemas/AnthropicCredentialsUpdate'
|
2665
|
+
type:
|
2666
|
+
$ref: '#/components/schemas/AnthropicIntegrationType'
|
2667
|
+
required:
|
2668
|
+
- type
|
2669
|
+
type: object
|
2435
2670
|
ApiID:
|
2436
2671
|
description: API identifier.
|
2437
2672
|
example: 90646597-5fdb-4a17-a240-647003f8c028
|
@@ -3544,6 +3779,75 @@ components:
|
|
3544
3779
|
- CREATED_AT_DESC
|
3545
3780
|
- UPDATED_AT_DESC
|
3546
3781
|
- USER_NAME_DESC
|
3782
|
+
AsanaAccessToken:
|
3783
|
+
description: The definition of the `AsanaAccessToken` object.
|
3784
|
+
properties:
|
3785
|
+
access_token:
|
3786
|
+
description: The `AsanaAccessToken` `access_token`.
|
3787
|
+
example: ''
|
3788
|
+
type: string
|
3789
|
+
type:
|
3790
|
+
$ref: '#/components/schemas/AsanaAccessTokenType'
|
3791
|
+
required:
|
3792
|
+
- type
|
3793
|
+
- access_token
|
3794
|
+
type: object
|
3795
|
+
AsanaAccessTokenType:
|
3796
|
+
description: The definition of the `AsanaAccessToken` object.
|
3797
|
+
enum:
|
3798
|
+
- AsanaAccessToken
|
3799
|
+
example: AsanaAccessToken
|
3800
|
+
type: string
|
3801
|
+
x-enum-varnames:
|
3802
|
+
- ASANAACCESSTOKEN
|
3803
|
+
AsanaAccessTokenUpdate:
|
3804
|
+
description: The definition of the `AsanaAccessToken` object.
|
3805
|
+
properties:
|
3806
|
+
access_token:
|
3807
|
+
description: The `AsanaAccessTokenUpdate` `access_token`.
|
3808
|
+
type: string
|
3809
|
+
type:
|
3810
|
+
$ref: '#/components/schemas/AsanaAccessTokenType'
|
3811
|
+
required:
|
3812
|
+
- type
|
3813
|
+
type: object
|
3814
|
+
AsanaCredentials:
|
3815
|
+
description: The definition of the `AsanaCredentials` object.
|
3816
|
+
oneOf:
|
3817
|
+
- $ref: '#/components/schemas/AsanaAccessToken'
|
3818
|
+
AsanaCredentialsUpdate:
|
3819
|
+
description: The definition of the `AsanaCredentialsUpdate` object.
|
3820
|
+
oneOf:
|
3821
|
+
- $ref: '#/components/schemas/AsanaAccessTokenUpdate'
|
3822
|
+
AsanaIntegration:
|
3823
|
+
description: The definition of the `AsanaIntegration` object.
|
3824
|
+
properties:
|
3825
|
+
credentials:
|
3826
|
+
$ref: '#/components/schemas/AsanaCredentials'
|
3827
|
+
type:
|
3828
|
+
$ref: '#/components/schemas/AsanaIntegrationType'
|
3829
|
+
required:
|
3830
|
+
- type
|
3831
|
+
- credentials
|
3832
|
+
type: object
|
3833
|
+
AsanaIntegrationType:
|
3834
|
+
description: The definition of the `AsanaIntegrationType` object.
|
3835
|
+
enum:
|
3836
|
+
- Asana
|
3837
|
+
example: Asana
|
3838
|
+
type: string
|
3839
|
+
x-enum-varnames:
|
3840
|
+
- ASANA
|
3841
|
+
AsanaIntegrationUpdate:
|
3842
|
+
description: The definition of the `AsanaIntegrationUpdate` object.
|
3843
|
+
properties:
|
3844
|
+
credentials:
|
3845
|
+
$ref: '#/components/schemas/AsanaCredentialsUpdate'
|
3846
|
+
type:
|
3847
|
+
$ref: '#/components/schemas/AsanaIntegrationType'
|
3848
|
+
required:
|
3849
|
+
- type
|
3850
|
+
type: object
|
3547
3851
|
Asset:
|
3548
3852
|
description: A single vulnerable asset
|
3549
3853
|
properties:
|
@@ -4637,6 +4941,43 @@ components:
|
|
4637
4941
|
required:
|
4638
4942
|
- data
|
4639
4943
|
type: object
|
4944
|
+
AzureCredentials:
|
4945
|
+
description: The definition of the `AzureCredentials` object.
|
4946
|
+
oneOf:
|
4947
|
+
- $ref: '#/components/schemas/AzureTenant'
|
4948
|
+
AzureCredentialsUpdate:
|
4949
|
+
description: The definition of the `AzureCredentialsUpdate` object.
|
4950
|
+
oneOf:
|
4951
|
+
- $ref: '#/components/schemas/AzureTenantUpdate'
|
4952
|
+
AzureIntegration:
|
4953
|
+
description: The definition of the `AzureIntegration` object.
|
4954
|
+
properties:
|
4955
|
+
credentials:
|
4956
|
+
$ref: '#/components/schemas/AzureCredentials'
|
4957
|
+
type:
|
4958
|
+
$ref: '#/components/schemas/AzureIntegrationType'
|
4959
|
+
required:
|
4960
|
+
- type
|
4961
|
+
- credentials
|
4962
|
+
type: object
|
4963
|
+
AzureIntegrationType:
|
4964
|
+
description: The definition of the `AzureIntegrationType` object.
|
4965
|
+
enum:
|
4966
|
+
- Azure
|
4967
|
+
example: Azure
|
4968
|
+
type: string
|
4969
|
+
x-enum-varnames:
|
4970
|
+
- AZURE
|
4971
|
+
AzureIntegrationUpdate:
|
4972
|
+
description: The definition of the `AzureIntegrationUpdate` object.
|
4973
|
+
properties:
|
4974
|
+
credentials:
|
4975
|
+
$ref: '#/components/schemas/AzureCredentialsUpdate'
|
4976
|
+
type:
|
4977
|
+
$ref: '#/components/schemas/AzureIntegrationType'
|
4978
|
+
required:
|
4979
|
+
- type
|
4980
|
+
type: object
|
4640
4981
|
AzureStorageDestination:
|
4641
4982
|
description: The `azure_storage` destination forwards logs to an Azure Blob
|
4642
4983
|
Storage container.
|
@@ -4679,6 +5020,88 @@ components:
|
|
4679
5020
|
type: string
|
4680
5021
|
x-enum-varnames:
|
4681
5022
|
- AZURE_STORAGE
|
5023
|
+
AzureTenant:
|
5024
|
+
description: The definition of the `AzureTenant` object.
|
5025
|
+
properties:
|
5026
|
+
app_client_id:
|
5027
|
+
description: 'The Client ID, also known as the Application ID in Azure,
|
5028
|
+
is a unique identifier for an application. It''s used to identify the
|
5029
|
+
application during the authentication process. Your Application (client)
|
5030
|
+
ID is listed in the application''s overview page. You can navigate to
|
5031
|
+
your application via the Azure Directory. '
|
5032
|
+
example: ''
|
5033
|
+
type: string
|
5034
|
+
client_secret:
|
5035
|
+
description: "The Client Secret is a confidential piece of information known
|
5036
|
+
only to the application and Azure AD. It's used to prove the application's
|
5037
|
+
identity. Your Client Secret is available from the application\u2019s
|
5038
|
+
secrets page. You can navigate to your application via the Azure Directory."
|
5039
|
+
example: ''
|
5040
|
+
type: string
|
5041
|
+
custom_scopes:
|
5042
|
+
description: If provided, the custom scope to be requested from Microsoft
|
5043
|
+
when acquiring an OAuth 2 access token. This custom scope is used only
|
5044
|
+
in conjunction with the HTTP action. A resource's scope is constructed
|
5045
|
+
by using the identifier URI for the resource and .default, separated by
|
5046
|
+
a forward slash (/) as follows:{identifierURI}/.default.
|
5047
|
+
type: string
|
5048
|
+
tenant_id:
|
5049
|
+
description: The Tenant ID, also known as the Directory ID in Azure, is
|
5050
|
+
a unique identifier that represents an Azure AD instance. Your Tenant
|
5051
|
+
ID (Directory ID) is listed in your Active Directory overview page under
|
5052
|
+
the 'Tenant information' section.
|
5053
|
+
example: ''
|
5054
|
+
type: string
|
5055
|
+
type:
|
5056
|
+
$ref: '#/components/schemas/AzureTenantType'
|
5057
|
+
required:
|
5058
|
+
- type
|
5059
|
+
- tenant_id
|
5060
|
+
- app_client_id
|
5061
|
+
- client_secret
|
5062
|
+
type: object
|
5063
|
+
AzureTenantType:
|
5064
|
+
description: The definition of the `AzureTenant` object.
|
5065
|
+
enum:
|
5066
|
+
- AzureTenant
|
5067
|
+
example: AzureTenant
|
5068
|
+
type: string
|
5069
|
+
x-enum-varnames:
|
5070
|
+
- AZURETENANT
|
5071
|
+
AzureTenantUpdate:
|
5072
|
+
description: The definition of the `AzureTenant` object.
|
5073
|
+
properties:
|
5074
|
+
app_client_id:
|
5075
|
+
description: 'The Client ID, also known as the Application ID in Azure,
|
5076
|
+
is a unique identifier for an application. It''s used to identify the
|
5077
|
+
application during the authentication process. Your Application (client)
|
5078
|
+
ID is listed in the application''s overview page. You can navigate to
|
5079
|
+
your application via the Azure Directory. '
|
5080
|
+
type: string
|
5081
|
+
client_secret:
|
5082
|
+
description: "The Client Secret is a confidential piece of information known
|
5083
|
+
only to the application and Azure AD. It's used to prove the application's
|
5084
|
+
identity. Your Client Secret is available from the application\u2019s
|
5085
|
+
secrets page. You can navigate to your application via the Azure Directory."
|
5086
|
+
type: string
|
5087
|
+
custom_scopes:
|
5088
|
+
description: If provided, the custom scope to be requested from Microsoft
|
5089
|
+
when acquiring an OAuth 2 access token. This custom scope is used only
|
5090
|
+
in conjunction with the HTTP action. A resource's scope is constructed
|
5091
|
+
by using the identifier URI for the resource and .default, separated by
|
5092
|
+
a forward slash (/) as follows:{identifierURI}/.default.
|
5093
|
+
type: string
|
5094
|
+
tenant_id:
|
5095
|
+
description: The Tenant ID, also known as the Directory ID in Azure, is
|
5096
|
+
a unique identifier that represents an Azure AD instance. Your Tenant
|
5097
|
+
ID (Directory ID) is listed in your Active Directory overview page under
|
5098
|
+
the 'Tenant information' section.
|
5099
|
+
type: string
|
5100
|
+
type:
|
5101
|
+
$ref: '#/components/schemas/AzureTenantType'
|
5102
|
+
required:
|
5103
|
+
- type
|
5104
|
+
type: object
|
4682
5105
|
AzureUCConfig:
|
4683
5106
|
description: Azure config.
|
4684
5107
|
properties:
|
@@ -6808,7 +7231,7 @@ components:
|
|
6808
7231
|
- data
|
6809
7232
|
type: object
|
6810
7233
|
CaseAttributes:
|
6811
|
-
description: Case attributes
|
7234
|
+
description: Case resource attributes
|
6812
7235
|
properties:
|
6813
7236
|
archived_at:
|
6814
7237
|
description: Timestamp of when the case was archived
|
@@ -6816,6 +7239,8 @@ components:
|
|
6816
7239
|
nullable: true
|
6817
7240
|
readOnly: true
|
6818
7241
|
type: string
|
7242
|
+
attributes:
|
7243
|
+
$ref: '#/components/schemas/CaseObjectAttributes'
|
6819
7244
|
closed_at:
|
6820
7245
|
description: Timestamp of when the case was closed
|
6821
7246
|
format: date-time
|
@@ -6920,6 +7345,13 @@ components:
|
|
6920
7345
|
required:
|
6921
7346
|
- data
|
6922
7347
|
type: object
|
7348
|
+
CaseObjectAttributes:
|
7349
|
+
additionalProperties:
|
7350
|
+
items:
|
7351
|
+
type: string
|
7352
|
+
type: array
|
7353
|
+
description: The definition of `CaseObjectAttributes` object.
|
7354
|
+
type: object
|
6923
7355
|
CasePriority:
|
6924
7356
|
default: NOT_DEFINED
|
6925
7357
|
description: Case priority
|
@@ -7015,6 +7447,33 @@ components:
|
|
7015
7447
|
type: string
|
7016
7448
|
x-enum-varnames:
|
7017
7449
|
- STANDARD
|
7450
|
+
CaseUpdateAttributes:
|
7451
|
+
description: Case update attributes
|
7452
|
+
properties:
|
7453
|
+
attributes:
|
7454
|
+
$ref: '#/components/schemas/CaseUpdateAttributesAttributes'
|
7455
|
+
type:
|
7456
|
+
$ref: '#/components/schemas/CaseResourceType'
|
7457
|
+
required:
|
7458
|
+
- attributes
|
7459
|
+
- type
|
7460
|
+
type: object
|
7461
|
+
CaseUpdateAttributesAttributes:
|
7462
|
+
description: Case update attributes attributes
|
7463
|
+
properties:
|
7464
|
+
attributes:
|
7465
|
+
$ref: '#/components/schemas/CaseObjectAttributes'
|
7466
|
+
required:
|
7467
|
+
- attributes
|
7468
|
+
type: object
|
7469
|
+
CaseUpdateAttributesRequest:
|
7470
|
+
description: Case update attributes request
|
7471
|
+
properties:
|
7472
|
+
data:
|
7473
|
+
$ref: '#/components/schemas/CaseUpdateAttributes'
|
7474
|
+
required:
|
7475
|
+
- data
|
7476
|
+
type: object
|
7018
7477
|
CaseUpdatePriority:
|
7019
7478
|
description: Case priority status
|
7020
7479
|
properties:
|
@@ -7102,6 +7561,116 @@ components:
|
|
7102
7561
|
format: int64
|
7103
7562
|
type: integer
|
7104
7563
|
type: object
|
7564
|
+
ChangeEventAttributes:
|
7565
|
+
description: Change event attributes.
|
7566
|
+
properties:
|
7567
|
+
aggregation_key:
|
7568
|
+
$ref: '#/components/schemas/V2EventAggregationKey'
|
7569
|
+
author:
|
7570
|
+
$ref: '#/components/schemas/ChangeEventAttributesAuthor'
|
7571
|
+
change_metadata:
|
7572
|
+
description: JSON object of change metadata.
|
7573
|
+
example:
|
7574
|
+
dd:
|
7575
|
+
team: datadog_team
|
7576
|
+
user_email: datadog@datadog.com
|
7577
|
+
user_id: datadog_user_id
|
7578
|
+
user_name: datadog_username
|
7579
|
+
type: object
|
7580
|
+
changed_resource:
|
7581
|
+
$ref: '#/components/schemas/ChangeEventAttributesChangedResource'
|
7582
|
+
evt:
|
7583
|
+
$ref: '#/components/schemas/EventSystemAttributes'
|
7584
|
+
impacted_resources:
|
7585
|
+
description: A list of resources impacted by this change.
|
7586
|
+
example:
|
7587
|
+
- name: service-name
|
7588
|
+
type: service
|
7589
|
+
items:
|
7590
|
+
$ref: '#/components/schemas/ChangeEventAttributesImpactedResourcesItem'
|
7591
|
+
type: array
|
7592
|
+
new_value:
|
7593
|
+
description: The new state of the changed resource.
|
7594
|
+
example:
|
7595
|
+
enabled: true
|
7596
|
+
percentage: 50%
|
7597
|
+
rule:
|
7598
|
+
datacenter: devcycle.us1.prod
|
7599
|
+
type: object
|
7600
|
+
prev_value:
|
7601
|
+
description: The previous state of the changed resource.
|
7602
|
+
example:
|
7603
|
+
enabled: true
|
7604
|
+
percentage: 10%
|
7605
|
+
rule:
|
7606
|
+
datacenter: devcycle.us1.prod
|
7607
|
+
type: object
|
7608
|
+
service:
|
7609
|
+
$ref: '#/components/schemas/V2EventService'
|
7610
|
+
timestamp:
|
7611
|
+
$ref: '#/components/schemas/V2EventTimestamp'
|
7612
|
+
title:
|
7613
|
+
$ref: '#/components/schemas/V2EventTitle'
|
7614
|
+
type: object
|
7615
|
+
ChangeEventAttributesAuthor:
|
7616
|
+
description: The entity that made the change.
|
7617
|
+
properties:
|
7618
|
+
name:
|
7619
|
+
description: The name of the user or system that made the change.
|
7620
|
+
example: example@datadog.com
|
7621
|
+
type: string
|
7622
|
+
type:
|
7623
|
+
$ref: '#/components/schemas/ChangeEventAttributesAuthorType'
|
7624
|
+
type: object
|
7625
|
+
ChangeEventAttributesAuthorType:
|
7626
|
+
description: The type of the author.
|
7627
|
+
enum:
|
7628
|
+
- user
|
7629
|
+
- system
|
7630
|
+
- api
|
7631
|
+
- automation
|
7632
|
+
example: user
|
7633
|
+
type: string
|
7634
|
+
x-enum-varnames:
|
7635
|
+
- USER
|
7636
|
+
- SYSTEM
|
7637
|
+
- API
|
7638
|
+
- AUTOMATION
|
7639
|
+
ChangeEventAttributesChangedResource:
|
7640
|
+
description: A uniquely identified resource.
|
7641
|
+
properties:
|
7642
|
+
name:
|
7643
|
+
description: The name of the changed resource.
|
7644
|
+
type: string
|
7645
|
+
type:
|
7646
|
+
$ref: '#/components/schemas/ChangeEventAttributesChangedResourceType'
|
7647
|
+
type: object
|
7648
|
+
ChangeEventAttributesChangedResourceType:
|
7649
|
+
description: The type of the changed resource.
|
7650
|
+
enum:
|
7651
|
+
- feature_flag
|
7652
|
+
- configuration
|
7653
|
+
example: feature_flag
|
7654
|
+
type: string
|
7655
|
+
x-enum-varnames:
|
7656
|
+
- FEATURE_FLAG
|
7657
|
+
- CONFIGURATION
|
7658
|
+
ChangeEventAttributesImpactedResourcesItem:
|
7659
|
+
description: A uniquely identified resource.
|
7660
|
+
properties:
|
7661
|
+
name:
|
7662
|
+
description: The name of the impacted resource.
|
7663
|
+
type: string
|
7664
|
+
type:
|
7665
|
+
$ref: '#/components/schemas/ChangeEventAttributesImpactedResourcesItemType'
|
7666
|
+
type: object
|
7667
|
+
ChangeEventAttributesImpactedResourcesItemType:
|
7668
|
+
description: The type of the impacted resource.
|
7669
|
+
enum:
|
7670
|
+
- service
|
7671
|
+
type: string
|
7672
|
+
x-enum-varnames:
|
7673
|
+
- SERVICE
|
7105
7674
|
ChangeEventCustomAttributes:
|
7106
7675
|
additionalProperties: false
|
7107
7676
|
description: Change event attributes.
|
@@ -7269,6 +7838,144 @@ components:
|
|
7269
7838
|
example: infra_host
|
7270
7839
|
type: string
|
7271
7840
|
type: object
|
7841
|
+
CircleCIAPIKey:
|
7842
|
+
description: The definition of the `CircleCIAPIKey` object.
|
7843
|
+
properties:
|
7844
|
+
api_token:
|
7845
|
+
description: The `CircleCIAPIKey` `api_token`.
|
7846
|
+
example: ''
|
7847
|
+
type: string
|
7848
|
+
type:
|
7849
|
+
$ref: '#/components/schemas/CircleCIAPIKeyType'
|
7850
|
+
required:
|
7851
|
+
- type
|
7852
|
+
- api_token
|
7853
|
+
type: object
|
7854
|
+
CircleCIAPIKeyType:
|
7855
|
+
description: The definition of the `CircleCIAPIKey` object.
|
7856
|
+
enum:
|
7857
|
+
- CircleCIAPIKey
|
7858
|
+
example: CircleCIAPIKey
|
7859
|
+
type: string
|
7860
|
+
x-enum-varnames:
|
7861
|
+
- CIRCLECIAPIKEY
|
7862
|
+
CircleCIAPIKeyUpdate:
|
7863
|
+
description: The definition of the `CircleCIAPIKey` object.
|
7864
|
+
properties:
|
7865
|
+
api_token:
|
7866
|
+
description: The `CircleCIAPIKeyUpdate` `api_token`.
|
7867
|
+
type: string
|
7868
|
+
type:
|
7869
|
+
$ref: '#/components/schemas/CircleCIAPIKeyType'
|
7870
|
+
required:
|
7871
|
+
- type
|
7872
|
+
type: object
|
7873
|
+
CircleCICredentials:
|
7874
|
+
description: The definition of the `CircleCICredentials` object.
|
7875
|
+
oneOf:
|
7876
|
+
- $ref: '#/components/schemas/CircleCIAPIKey'
|
7877
|
+
CircleCICredentialsUpdate:
|
7878
|
+
description: The definition of the `CircleCICredentialsUpdate` object.
|
7879
|
+
oneOf:
|
7880
|
+
- $ref: '#/components/schemas/CircleCIAPIKeyUpdate'
|
7881
|
+
CircleCIIntegration:
|
7882
|
+
description: The definition of the `CircleCIIntegration` object.
|
7883
|
+
properties:
|
7884
|
+
credentials:
|
7885
|
+
$ref: '#/components/schemas/CircleCICredentials'
|
7886
|
+
type:
|
7887
|
+
$ref: '#/components/schemas/CircleCIIntegrationType'
|
7888
|
+
required:
|
7889
|
+
- type
|
7890
|
+
- credentials
|
7891
|
+
type: object
|
7892
|
+
CircleCIIntegrationType:
|
7893
|
+
description: The definition of the `CircleCIIntegrationType` object.
|
7894
|
+
enum:
|
7895
|
+
- CircleCI
|
7896
|
+
example: CircleCI
|
7897
|
+
type: string
|
7898
|
+
x-enum-varnames:
|
7899
|
+
- CIRCLECI
|
7900
|
+
CircleCIIntegrationUpdate:
|
7901
|
+
description: The definition of the `CircleCIIntegrationUpdate` object.
|
7902
|
+
properties:
|
7903
|
+
credentials:
|
7904
|
+
$ref: '#/components/schemas/CircleCICredentialsUpdate'
|
7905
|
+
type:
|
7906
|
+
$ref: '#/components/schemas/CircleCIIntegrationType'
|
7907
|
+
required:
|
7908
|
+
- type
|
7909
|
+
type: object
|
7910
|
+
ClickupAPIKey:
|
7911
|
+
description: The definition of the `ClickupAPIKey` object.
|
7912
|
+
properties:
|
7913
|
+
api_token:
|
7914
|
+
description: The `ClickupAPIKey` `api_token`.
|
7915
|
+
example: ''
|
7916
|
+
type: string
|
7917
|
+
type:
|
7918
|
+
$ref: '#/components/schemas/ClickupAPIKeyType'
|
7919
|
+
required:
|
7920
|
+
- type
|
7921
|
+
- api_token
|
7922
|
+
type: object
|
7923
|
+
ClickupAPIKeyType:
|
7924
|
+
description: The definition of the `ClickupAPIKey` object.
|
7925
|
+
enum:
|
7926
|
+
- ClickupAPIKey
|
7927
|
+
example: ClickupAPIKey
|
7928
|
+
type: string
|
7929
|
+
x-enum-varnames:
|
7930
|
+
- CLICKUPAPIKEY
|
7931
|
+
ClickupAPIKeyUpdate:
|
7932
|
+
description: The definition of the `ClickupAPIKey` object.
|
7933
|
+
properties:
|
7934
|
+
api_token:
|
7935
|
+
description: The `ClickupAPIKeyUpdate` `api_token`.
|
7936
|
+
type: string
|
7937
|
+
type:
|
7938
|
+
$ref: '#/components/schemas/ClickupAPIKeyType'
|
7939
|
+
required:
|
7940
|
+
- type
|
7941
|
+
type: object
|
7942
|
+
ClickupCredentials:
|
7943
|
+
description: The definition of the `ClickupCredentials` object.
|
7944
|
+
oneOf:
|
7945
|
+
- $ref: '#/components/schemas/ClickupAPIKey'
|
7946
|
+
ClickupCredentialsUpdate:
|
7947
|
+
description: The definition of the `ClickupCredentialsUpdate` object.
|
7948
|
+
oneOf:
|
7949
|
+
- $ref: '#/components/schemas/ClickupAPIKeyUpdate'
|
7950
|
+
ClickupIntegration:
|
7951
|
+
description: The definition of the `ClickupIntegration` object.
|
7952
|
+
properties:
|
7953
|
+
credentials:
|
7954
|
+
$ref: '#/components/schemas/ClickupCredentials'
|
7955
|
+
type:
|
7956
|
+
$ref: '#/components/schemas/ClickupIntegrationType'
|
7957
|
+
required:
|
7958
|
+
- type
|
7959
|
+
- credentials
|
7960
|
+
type: object
|
7961
|
+
ClickupIntegrationType:
|
7962
|
+
description: The definition of the `ClickupIntegrationType` object.
|
7963
|
+
enum:
|
7964
|
+
- Clickup
|
7965
|
+
example: Clickup
|
7966
|
+
type: string
|
7967
|
+
x-enum-varnames:
|
7968
|
+
- CLICKUP
|
7969
|
+
ClickupIntegrationUpdate:
|
7970
|
+
description: The definition of the `ClickupIntegrationUpdate` object.
|
7971
|
+
properties:
|
7972
|
+
credentials:
|
7973
|
+
$ref: '#/components/schemas/ClickupCredentialsUpdate'
|
7974
|
+
type:
|
7975
|
+
$ref: '#/components/schemas/ClickupIntegrationType'
|
7976
|
+
required:
|
7977
|
+
- type
|
7978
|
+
type: object
|
7272
7979
|
CloudConfigurationComplianceRuleOptions:
|
7273
7980
|
additionalProperties: {}
|
7274
7981
|
description: 'Options for cloud_configuration rules.
|
@@ -8108,6 +8815,38 @@ components:
|
|
8108
8815
|
$ref: '#/components/schemas/CloudWorkloadSecurityAgentRuleData'
|
8109
8816
|
type: array
|
8110
8817
|
type: object
|
8818
|
+
CloudflareAPIToken:
|
8819
|
+
description: The definition of the `CloudflareAPIToken` object.
|
8820
|
+
properties:
|
8821
|
+
api_token:
|
8822
|
+
description: The `CloudflareAPIToken` `api_token`.
|
8823
|
+
example: ''
|
8824
|
+
type: string
|
8825
|
+
type:
|
8826
|
+
$ref: '#/components/schemas/CloudflareAPITokenType'
|
8827
|
+
required:
|
8828
|
+
- type
|
8829
|
+
- api_token
|
8830
|
+
type: object
|
8831
|
+
CloudflareAPITokenType:
|
8832
|
+
description: The definition of the `CloudflareAPIToken` object.
|
8833
|
+
enum:
|
8834
|
+
- CloudflareAPIToken
|
8835
|
+
example: CloudflareAPIToken
|
8836
|
+
type: string
|
8837
|
+
x-enum-varnames:
|
8838
|
+
- CLOUDFLAREAPITOKEN
|
8839
|
+
CloudflareAPITokenUpdate:
|
8840
|
+
description: The definition of the `CloudflareAPIToken` object.
|
8841
|
+
properties:
|
8842
|
+
api_token:
|
8843
|
+
description: The `CloudflareAPITokenUpdate` `api_token`.
|
8844
|
+
type: string
|
8845
|
+
type:
|
8846
|
+
$ref: '#/components/schemas/CloudflareAPITokenType'
|
8847
|
+
required:
|
8848
|
+
- type
|
8849
|
+
type: object
|
8111
8850
|
CloudflareAccountCreateRequest:
|
8112
8851
|
description: Payload schema when adding a Cloudflare account.
|
8113
8852
|
properties:
|
@@ -8292,6 +9031,85 @@ components:
|
|
8292
9031
|
$ref: '#/components/schemas/CloudflareAccountResponseData'
|
8293
9032
|
type: array
|
8294
9033
|
type: object
|
9034
|
+
CloudflareCredentials:
|
9035
|
+
description: The definition of the `CloudflareCredentials` object.
|
9036
|
+
oneOf:
|
9037
|
+
- $ref: '#/components/schemas/CloudflareAPIToken'
|
9038
|
+
- $ref: '#/components/schemas/CloudflareGlobalAPIToken'
|
9039
|
+
CloudflareCredentialsUpdate:
|
9040
|
+
description: The definition of the `CloudflareCredentialsUpdate` object.
|
9041
|
+
oneOf:
|
9042
|
+
- $ref: '#/components/schemas/CloudflareAPITokenUpdate'
|
9043
|
+
- $ref: '#/components/schemas/CloudflareGlobalAPITokenUpdate'
|
9044
|
+
CloudflareGlobalAPIToken:
|
9045
|
+
description: The definition of the `CloudflareGlobalAPIToken` object.
|
9046
|
+
properties:
|
9047
|
+
auth_email:
|
9048
|
+
description: The `CloudflareGlobalAPIToken` `auth_email`.
|
9049
|
+
example: ''
|
9050
|
+
type: string
|
9051
|
+
global_api_key:
|
9052
|
+
description: The `CloudflareGlobalAPIToken` `global_api_key`.
|
9053
|
+
example: ''
|
9054
|
+
type: string
|
9055
|
+
type:
|
9056
|
+
$ref: '#/components/schemas/CloudflareGlobalAPITokenType'
|
9057
|
+
required:
|
9058
|
+
- type
|
9059
|
+
- auth_email
|
9060
|
+
- global_api_key
|
9061
|
+
type: object
|
9062
|
+
CloudflareGlobalAPITokenType:
|
9063
|
+
description: The definition of the `CloudflareGlobalAPIToken` object.
|
9064
|
+
enum:
|
9065
|
+
- CloudflareGlobalAPIToken
|
9066
|
+
example: CloudflareGlobalAPIToken
|
9067
|
+
type: string
|
9068
|
+
x-enum-varnames:
|
9069
|
+
- CLOUDFLAREGLOBALAPITOKEN
|
9070
|
+
CloudflareGlobalAPITokenUpdate:
|
9071
|
+
description: The definition of the `CloudflareGlobalAPIToken` object.
|
9072
|
+
properties:
|
9073
|
+
auth_email:
|
9074
|
+
description: The `CloudflareGlobalAPITokenUpdate` `auth_email`.
|
9075
|
+
type: string
|
9076
|
+
global_api_key:
|
9077
|
+
description: The `CloudflareGlobalAPITokenUpdate` `global_api_key`.
|
9078
|
+
type: string
|
9079
|
+
type:
|
9080
|
+
$ref: '#/components/schemas/CloudflareGlobalAPITokenType'
|
9081
|
+
required:
|
9082
|
+
- type
|
9083
|
+
type: object
|
9084
|
+
CloudflareIntegration:
|
9085
|
+
description: The definition of the `CloudflareIntegration` object.
|
9086
|
+
properties:
|
9087
|
+
credentials:
|
9088
|
+
$ref: '#/components/schemas/CloudflareCredentials'
|
9089
|
+
type:
|
9090
|
+
$ref: '#/components/schemas/CloudflareIntegrationType'
|
9091
|
+
required:
|
9092
|
+
- type
|
9093
|
+
- credentials
|
9094
|
+
type: object
|
9095
|
+
CloudflareIntegrationType:
|
9096
|
+
description: The definition of the `CloudflareIntegrationType` object.
|
9097
|
+
enum:
|
9098
|
+
- Cloudflare
|
9099
|
+
example: Cloudflare
|
9100
|
+
type: string
|
9101
|
+
x-enum-varnames:
|
9102
|
+
- CLOUDFLARE
|
9103
|
+
CloudflareIntegrationUpdate:
|
9104
|
+
description: The definition of the `CloudflareIntegrationUpdate` object.
|
9105
|
+
properties:
|
9106
|
+
credentials:
|
9107
|
+
$ref: '#/components/schemas/CloudflareCredentialsUpdate'
|
9108
|
+
type:
|
9109
|
+
$ref: '#/components/schemas/CloudflareIntegrationType'
|
9110
|
+
required:
|
9111
|
+
- type
|
9112
|
+
type: object
|
8295
9113
|
CodeLocation:
|
8296
9114
|
description: Code vulnerability location.
|
8297
9115
|
properties:
|
@@ -8518,6 +9336,91 @@ components:
|
|
8518
9336
|
- SEARCH
|
8519
9337
|
- CONTAINER
|
8520
9338
|
- CALLOUTVALUE
|
9339
|
+
ConfigCatCredentials:
|
9340
|
+
description: The definition of the `ConfigCatCredentials` object.
|
9341
|
+
oneOf:
|
9342
|
+
- $ref: '#/components/schemas/ConfigCatSDKKey'
|
9343
|
+
ConfigCatCredentialsUpdate:
|
9344
|
+
description: The definition of the `ConfigCatCredentialsUpdate` object.
|
9345
|
+
oneOf:
|
9346
|
+
- $ref: '#/components/schemas/ConfigCatSDKKeyUpdate'
|
9347
|
+
ConfigCatIntegration:
|
9348
|
+
description: The definition of the `ConfigCatIntegration` object.
|
9349
|
+
properties:
|
9350
|
+
credentials:
|
9351
|
+
$ref: '#/components/schemas/ConfigCatCredentials'
|
9352
|
+
type:
|
9353
|
+
$ref: '#/components/schemas/ConfigCatIntegrationType'
|
9354
|
+
required:
|
9355
|
+
- type
|
9356
|
+
- credentials
|
9357
|
+
type: object
|
9358
|
+
ConfigCatIntegrationType:
|
9359
|
+
description: The definition of the `ConfigCatIntegrationType` object.
|
9360
|
+
enum:
|
9361
|
+
- ConfigCat
|
9362
|
+
example: ConfigCat
|
9363
|
+
type: string
|
9364
|
+
x-enum-varnames:
|
9365
|
+
- CONFIGCAT
|
9366
|
+
ConfigCatIntegrationUpdate:
|
9367
|
+
description: The definition of the `ConfigCatIntegrationUpdate` object.
|
9368
|
+
properties:
|
9369
|
+
credentials:
|
9370
|
+
$ref: '#/components/schemas/ConfigCatCredentialsUpdate'
|
9371
|
+
type:
|
9372
|
+
$ref: '#/components/schemas/ConfigCatIntegrationType'
|
9373
|
+
required:
|
9374
|
+
- type
|
9375
|
+
type: object
|
9376
|
+
ConfigCatSDKKey:
|
9377
|
+
description: The definition of the `ConfigCatSDKKey` object.
|
9378
|
+
properties:
|
9379
|
+
api_password:
|
9380
|
+
description: The `ConfigCatSDKKey` `api_password`.
|
9381
|
+
example: ''
|
9382
|
+
type: string
|
9383
|
+
api_username:
|
9384
|
+
description: The `ConfigCatSDKKey` `api_username`.
|
9385
|
+
example: ''
|
9386
|
+
type: string
|
9387
|
+
sdk_key:
|
9388
|
+
description: The `ConfigCatSDKKey` `sdk_key`.
|
9389
|
+
example: ''
|
9390
|
+
type: string
|
9391
|
+
type:
|
9392
|
+
$ref: '#/components/schemas/ConfigCatSDKKeyType'
|
9393
|
+
required:
|
9394
|
+
- type
|
9395
|
+
- sdk_key
|
9396
|
+
- api_username
|
9397
|
+
- api_password
|
9398
|
+
type: object
|
9399
|
+
ConfigCatSDKKeyType:
|
9400
|
+
description: The definition of the `ConfigCatSDKKey` object.
|
9401
|
+
enum:
|
9402
|
+
- ConfigCatSDKKey
|
9403
|
+
example: ConfigCatSDKKey
|
9404
|
+
type: string
|
9405
|
+
x-enum-varnames:
|
9406
|
+
- CONFIGCATSDKKEY
|
9407
|
+
ConfigCatSDKKeyUpdate:
|
9408
|
+
description: The definition of the `ConfigCatSDKKey` object.
|
9409
|
+
properties:
|
9410
|
+
api_password:
|
9411
|
+
description: The `ConfigCatSDKKeyUpdate` `api_password`.
|
9412
|
+
type: string
|
9413
|
+
api_username:
|
9414
|
+
description: The `ConfigCatSDKKeyUpdate` `api_username`.
|
9415
|
+
type: string
|
9416
|
+
sdk_key:
|
9417
|
+
description: The `ConfigCatSDKKeyUpdate` `sdk_key`.
|
9418
|
+
type: string
|
9419
|
+
type:
|
9420
|
+
$ref: '#/components/schemas/ConfigCatSDKKeyType'
|
9421
|
+
required:
|
9422
|
+
- type
|
9423
|
+
type: object
|
8521
9424
|
ConfluentAccountCreateRequest:
|
8522
9425
|
description: Payload schema when adding a Confluent account.
|
8523
9426
|
properties:
|
@@ -12186,24 +13089,130 @@ components:
|
|
12186
13089
|
required:
|
12187
13090
|
- databaseMonitoringTrigger
|
12188
13091
|
type: object
|
12189
|
-
|
12190
|
-
description:
|
13092
|
+
DatadogAPIKey:
|
13093
|
+
description: The definition of the `DatadogAPIKey` object.
|
12191
13094
|
properties:
|
12192
|
-
|
12193
|
-
|
12194
|
-
|
12195
|
-
|
12196
|
-
|
13095
|
+
api_key:
|
13096
|
+
description: The `DatadogAPIKey` `api_key`.
|
13097
|
+
example: ''
|
13098
|
+
type: string
|
13099
|
+
app_key:
|
13100
|
+
description: The `DatadogAPIKey` `app_key`.
|
13101
|
+
example: ''
|
13102
|
+
type: string
|
13103
|
+
datacenter:
|
13104
|
+
description: The `DatadogAPIKey` `datacenter`.
|
13105
|
+
example: ''
|
13106
|
+
type: string
|
13107
|
+
subdomain:
|
13108
|
+
description: Custom subdomain used for Datadog URLs generated with this
|
13109
|
+
Connection. For example, if this org uses `https://acme.datadoghq.com`
|
13110
|
+
to access Datadog, set this field to `acme`. If this field is omitted,
|
13111
|
+
generated URLs will use the default site URL for its datacenter (see [https://docs.datadoghq.com/getting_started/site](https://docs.datadoghq.com/getting_started/site)).
|
12197
13112
|
type: string
|
12198
13113
|
type:
|
12199
|
-
|
12200
|
-
|
13114
|
+
$ref: '#/components/schemas/DatadogAPIKeyType'
|
13115
|
+
required:
|
13116
|
+
- type
|
13117
|
+
- datacenter
|
13118
|
+
- api_key
|
13119
|
+
- app_key
|
13120
|
+
type: object
|
13121
|
+
DatadogAPIKeyType:
|
13122
|
+
description: The definition of the `DatadogAPIKey` object.
|
13123
|
+
enum:
|
13124
|
+
- DatadogAPIKey
|
13125
|
+
example: DatadogAPIKey
|
13126
|
+
type: string
|
13127
|
+
x-enum-varnames:
|
13128
|
+
- DATADOGAPIKEY
|
13129
|
+
DatadogAPIKeyUpdate:
|
13130
|
+
description: The definition of the `DatadogAPIKey` object.
|
13131
|
+
properties:
|
13132
|
+
api_key:
|
13133
|
+
description: The `DatadogAPIKeyUpdate` `api_key`.
|
13134
|
+
type: string
|
13135
|
+
app_key:
|
13136
|
+
description: The `DatadogAPIKeyUpdate` `app_key`.
|
13137
|
+
type: string
|
13138
|
+
datacenter:
|
13139
|
+
description: The `DatadogAPIKeyUpdate` `datacenter`.
|
12201
13140
|
type: string
|
13141
|
+
subdomain:
|
13142
|
+
description: Custom subdomain used for Datadog URLs generated with this
|
13143
|
+
Connection. For example, if this org uses `https://acme.datadoghq.com`
|
13144
|
+
to access Datadog, set this field to `acme`. If this field is omitted,
|
13145
|
+
generated URLs will use the default site URL for its datacenter (see [https://docs.datadoghq.com/getting_started/site](https://docs.datadoghq.com/getting_started/site)).
|
13146
|
+
type: string
|
13147
|
+
type:
|
13148
|
+
$ref: '#/components/schemas/DatadogAPIKeyType'
|
12202
13149
|
required:
|
12203
13150
|
- type
|
12204
|
-
- attributes
|
12205
13151
|
type: object
|
12206
|
-
|
13152
|
+
DatadogCredentials:
|
13153
|
+
description: The definition of the `DatadogCredentials` object.
|
13154
|
+
oneOf:
|
13155
|
+
- $ref: '#/components/schemas/DatadogAPIKey'
|
13156
|
+
DatadogCredentialsUpdate:
|
13157
|
+
description: The definition of the `DatadogCredentialsUpdate` object.
|
13158
|
+
oneOf:
|
13159
|
+
- $ref: '#/components/schemas/DatadogAPIKeyUpdate'
|
13160
|
+
DatadogIntegration:
|
13161
|
+
description: The definition of the `DatadogIntegration` object.
|
13162
|
+
properties:
|
13163
|
+
credentials:
|
13164
|
+
$ref: '#/components/schemas/DatadogCredentials'
|
13165
|
+
type:
|
13166
|
+
$ref: '#/components/schemas/DatadogIntegrationType'
|
13167
|
+
required:
|
13168
|
+
- type
|
13169
|
+
- credentials
|
13170
|
+
type: object
|
13171
|
+
DatadogIntegrationType:
|
13172
|
+
description: The definition of the `DatadogIntegrationType` object.
|
13173
|
+
enum:
|
13174
|
+
- Datadog
|
13175
|
+
example: Datadog
|
13176
|
+
type: string
|
13177
|
+
x-enum-varnames:
|
13178
|
+
- DATADOG
|
13179
|
+
DatadogIntegrationUpdate:
|
13180
|
+
description: The definition of the `DatadogIntegrationUpdate` object.
|
13181
|
+
properties:
|
13182
|
+
credentials:
|
13183
|
+
$ref: '#/components/schemas/DatadogCredentialsUpdate'
|
13184
|
+
type:
|
13185
|
+
$ref: '#/components/schemas/DatadogIntegrationType'
|
13186
|
+
required:
|
13187
|
+
- type
|
13188
|
+
type: object
|
13189
|
+
DatasetAttributesRequest:
|
13190
|
+
description: Dataset metadata and configurations.
|
13191
|
+
properties:
|
13192
|
+
name:
|
13193
|
+
description: Name of the dataset.
|
13194
|
+
example: Security Audit Dataset
|
13195
|
+
type: string
|
13196
|
+
principals:
|
13197
|
+
description: List of access principals, formatted as `principal_type:id`.
|
13198
|
+
Principal can be 'team' or 'role'.
|
13199
|
+
example:
|
13200
|
+
- role:94172442-be03-11e9-a77a-3b7612558ac1
|
13201
|
+
items:
|
13202
|
+
example: role:94172442-be03-11e9-a77a-3b7612558ac1
|
13203
|
+
type: string
|
13204
|
+
type: array
|
13205
|
+
product_filters:
|
13206
|
+
description: List of product-specific filters.
|
13207
|
+
items:
|
13208
|
+
$ref: '#/components/schemas/FiltersPerProduct'
|
13209
|
+
type: array
|
13210
|
+
required:
|
13211
|
+
- name
|
13212
|
+
- product_filters
|
13213
|
+
- principals
|
13214
|
+
type: object
|
13215
|
+
DatasetAttributesResponse:
|
12207
13216
|
description: Dataset metadata and configuration(s).
|
12208
13217
|
properties:
|
12209
13218
|
created_at:
|
@@ -12233,35 +13242,76 @@ components:
|
|
12233
13242
|
items:
|
12234
13243
|
$ref: '#/components/schemas/FiltersPerProduct'
|
12235
13244
|
type: array
|
12236
|
-
required:
|
12237
|
-
- name
|
12238
|
-
- product_filters
|
12239
|
-
- principals
|
12240
13245
|
type: object
|
12241
13246
|
DatasetCreateRequest:
|
12242
13247
|
description: Create request for a dataset.
|
12243
13248
|
properties:
|
12244
13249
|
data:
|
12245
|
-
$ref: '#/components/schemas/
|
13250
|
+
$ref: '#/components/schemas/DatasetRequest'
|
12246
13251
|
required:
|
12247
13252
|
- data
|
12248
13253
|
type: object
|
13254
|
+
DatasetRequest:
|
13255
|
+
description: "**Datasets Object Constraints**\n- **Tag limit per dataset**:\n
|
13256
|
+
\ - Each restricted dataset supports a maximum of 10 key:value pairs per product.\n\n-
|
13257
|
+
**Tag key rules per telemetry type**:\n - Only one tag key or attribute may
|
13258
|
+
be used to define access within a single telemetry type.\n - The same or
|
13259
|
+
different tag key may be used across different telemetry types.\n\n- **Tag
|
13260
|
+
value uniqueness**:\n - Tag values must be unique within a single dataset.\n
|
13261
|
+
\ - A tag value used in one dataset cannot be reused in another dataset of
|
13262
|
+
the same telemetry type."
|
13263
|
+
properties:
|
13264
|
+
attributes:
|
13265
|
+
$ref: '#/components/schemas/DatasetAttributesRequest'
|
13266
|
+
type:
|
13267
|
+
description: Resource type, always "dataset".
|
13268
|
+
example: dataset
|
13269
|
+
type: string
|
13270
|
+
required:
|
13271
|
+
- type
|
13272
|
+
- attributes
|
13273
|
+
type: object
|
13274
|
+
DatasetResponse:
|
13275
|
+
description: "**Datasets Object Constraints**\n- **Tag Limit per Dataset**:\n
|
13276
|
+
\ - Each restricted dataset supports a maximum of 10 key:value pairs per product.\n\n-
|
13277
|
+
**Tag Key Rules per Telemetry Type**:\n - Only one tag key or attribute may
|
13278
|
+
be used to define access within a single telemetry type.\n - The same or
|
13279
|
+
different tag key may be used across different telemetry types.\n\n- **Tag
|
13280
|
+
Value Uniqueness**:\n - Tag values must be unique within a single dataset.\n
|
13281
|
+
\ - A tag value used in one dataset cannot be reused in another dataset of
|
13282
|
+
the same telemetry type."
|
13283
|
+
properties:
|
13284
|
+
attributes:
|
13285
|
+
$ref: '#/components/schemas/DatasetAttributesResponse'
|
13286
|
+
id:
|
13287
|
+
description: Unique identifier for the dataset.
|
13288
|
+
example: 123e4567-e89b-12d3-a456-426614174000
|
13289
|
+
type: string
|
13290
|
+
type:
|
13291
|
+
description: Resource type, always "dataset".
|
13292
|
+
example: dataset
|
13293
|
+
type: string
|
13294
|
+
type: object
|
12249
13295
|
DatasetResponseMulti:
|
12250
13296
|
description: Response containing a list of datasets.
|
12251
13297
|
properties:
|
12252
13298
|
data:
|
12253
13299
|
description: The list of datasets returned in response.
|
12254
13300
|
items:
|
12255
|
-
$ref: '#/components/schemas/
|
13301
|
+
$ref: '#/components/schemas/DatasetResponse'
|
12256
13302
|
type: array
|
12257
|
-
required:
|
12258
|
-
- data
|
12259
13303
|
type: object
|
12260
13304
|
DatasetResponseSingle:
|
12261
13305
|
description: Response containing a single dataset object.
|
12262
13306
|
properties:
|
12263
13307
|
data:
|
12264
|
-
$ref: '#/components/schemas/
|
13308
|
+
$ref: '#/components/schemas/DatasetResponse'
|
13309
|
+
type: object
|
13310
|
+
DatasetUpdateRequest:
|
13311
|
+
description: Edit request for a dataset.
|
13312
|
+
properties:
|
13313
|
+
data:
|
13314
|
+
$ref: '#/components/schemas/DatasetRequest'
|
12265
13315
|
required:
|
12266
13316
|
- data
|
12267
13317
|
type: object
|
@@ -12634,6 +13684,42 @@ components:
|
|
12634
13684
|
description: The type of the resource. The value should always be device.
|
12635
13685
|
type: string
|
12636
13686
|
type: object
|
13687
|
+
DnsMetricKey:
|
13688
|
+
description: The metric key for DNS metrics.
|
13689
|
+
enum:
|
13690
|
+
- dns_total_requests
|
13691
|
+
- dns_failures
|
13692
|
+
- dns_successful_responses
|
13693
|
+
- dns_failed_responses
|
13694
|
+
- dns_timeouts
|
13695
|
+
- dns_responses.nxdomain
|
13696
|
+
- dns_responses.servfail
|
13697
|
+
- dns_responses.other
|
13698
|
+
- dns_success_latency_percentile
|
13699
|
+
- dns_failure_latency_percentile
|
13700
|
+
type: string
|
13701
|
+
x-enum-descriptions:
|
13702
|
+
- The total number of DNS requests made by the client.
|
13703
|
+
- The total number of timeouts and errors in DNS requests.
|
13704
|
+
- The total number of successful DNS responses.
|
13705
|
+
- The total number of failed DNS responses.
|
13706
|
+
- The total number of DNS timeouts.
|
13707
|
+
- The total number of DNS responses with the NXDOMAIN error code.
|
13708
|
+
- The total number of DNS responses with the SERVFAIL error code.
|
13709
|
+
- The total number of DNS responses with other error codes.
|
13710
|
+
- The latency percentile for successful DNS responses.
|
13711
|
+
- The latency percentile for failed DNS responses.
|
13712
|
+
x-enum-varnames:
|
13713
|
+
- DNS_TOTAL_REQUESTS
|
13714
|
+
- DNS_FAILURES
|
13715
|
+
- DNS_SUCCESSFUL_RESPONSES
|
13716
|
+
- DNS_FAILED_RESPONSES
|
13717
|
+
- DNS_TIMEOUTS
|
13718
|
+
- DNS_RESPONSES_NXDOMAIN
|
13719
|
+
- DNS_RESPONSES_SERVFAIL
|
13720
|
+
- DNS_RESPONSES_OTHER
|
13721
|
+
- DNS_SUCCESS_LATENCY_PERCENTILE
|
13722
|
+
- DNS_FAILURE_LATENCY_PERCENTILE
|
12637
13723
|
DomainAllowlist:
|
12638
13724
|
description: The email domain allowlist for an org.
|
12639
13725
|
properties:
|
@@ -13719,14 +14805,21 @@ components:
|
|
13719
14805
|
type: string
|
13720
14806
|
type: object
|
13721
14807
|
EntityV3APIVersion:
|
13722
|
-
description: The
|
13723
|
-
|
14808
|
+
description: The version of the schema data that was used to populate this entity's
|
14809
|
+
data. This could be via the API, Terraform, or YAML file in a repository.
|
14810
|
+
The field is known as schema-version in the previous version.
|
13724
14811
|
enum:
|
13725
14812
|
- v3
|
14813
|
+
- v2.2
|
14814
|
+
- v2.1
|
14815
|
+
- v2
|
13726
14816
|
example: v3
|
13727
14817
|
type: string
|
13728
14818
|
x-enum-varnames:
|
13729
14819
|
- V3
|
14820
|
+
- V2_2
|
14821
|
+
- V2_1
|
14822
|
+
- V2
|
13730
14823
|
EntityV3DatadogCodeLocationItem:
|
13731
14824
|
additionalProperties: false
|
13732
14825
|
description: Code location item.
|
@@ -15189,6 +16282,44 @@ components:
|
|
15189
16282
|
- USER_UPDATE
|
15190
16283
|
- RECOMMENDATION
|
15191
16284
|
- SNAPSHOT
|
16285
|
+
EventSystemAttributes:
|
16286
|
+
description: JSON object of event system attributes.
|
16287
|
+
properties:
|
16288
|
+
category:
|
16289
|
+
$ref: '#/components/schemas/EventSystemAttributesCategory'
|
16290
|
+
id:
|
16291
|
+
description: Event identifier. This field is deprecated and will be removed
|
16292
|
+
in a future version. Use the `uid` field instead.
|
16293
|
+
type: string
|
16294
|
+
integration_id:
|
16295
|
+
$ref: '#/components/schemas/EventSystemAttributesIntegrationId'
|
16296
|
+
source_id:
|
16297
|
+
description: The source type ID of the event.
|
16298
|
+
format: int64
|
16299
|
+
type: integer
|
16300
|
+
uid:
|
16301
|
+
description: A unique identifier for the event. You can use this identifier
|
16302
|
+
to query or reference the event.
|
16303
|
+
type: string
|
16304
|
+
type: object
|
16305
|
+
EventSystemAttributesCategory:
|
16306
|
+
description: Event category identifying the type of event.
|
16307
|
+
enum:
|
16308
|
+
- change
|
16309
|
+
- alert
|
16310
|
+
example: change
|
16311
|
+
type: string
|
16312
|
+
x-enum-varnames:
|
16313
|
+
- CHANGE
|
16314
|
+
- ALERT
|
16315
|
+
EventSystemAttributesIntegrationId:
|
16316
|
+
description: Integration ID sourced from integration manifests.
|
16317
|
+
enum:
|
16318
|
+
- custom-events
|
16319
|
+
example: custom-events
|
16320
|
+
type: string
|
16321
|
+
x-enum-varnames:
|
16322
|
+
- CUSTOM_EVENTS
|
15192
16323
|
EventType:
|
15193
16324
|
default: event
|
15194
16325
|
description: Type of the event.
|
@@ -15249,11 +16380,13 @@ components:
|
|
15249
16380
|
enum:
|
15250
16381
|
- logs
|
15251
16382
|
- rum
|
16383
|
+
- dora
|
15252
16384
|
example: logs
|
15253
16385
|
type: string
|
15254
16386
|
x-enum-varnames:
|
15255
16387
|
- LOGS
|
15256
16388
|
- RUM
|
16389
|
+
- DORA
|
15257
16390
|
EventsGroupBy:
|
15258
16391
|
description: A dimension on which to split a query's results.
|
15259
16392
|
properties:
|
@@ -15525,6 +16658,38 @@ components:
|
|
15525
16658
|
from the other indexes.
|
15526
16659
|
type: string
|
15527
16660
|
type: object
|
16661
|
+
FastlyAPIKey:
|
16662
|
+
description: The definition of the `FastlyAPIKey` object.
|
16663
|
+
properties:
|
16664
|
+
api_key:
|
16665
|
+
description: The `FastlyAPIKey` `api_key`.
|
16666
|
+
example: ''
|
16667
|
+
type: string
|
16668
|
+
type:
|
16669
|
+
$ref: '#/components/schemas/FastlyAPIKeyType'
|
16670
|
+
required:
|
16671
|
+
- type
|
16672
|
+
- api_key
|
16673
|
+
type: object
|
16674
|
+
FastlyAPIKeyType:
|
16675
|
+
description: The definition of the `FastlyAPIKey` object.
|
16676
|
+
enum:
|
16677
|
+
- FastlyAPIKey
|
16678
|
+
example: FastlyAPIKey
|
16679
|
+
type: string
|
16680
|
+
x-enum-varnames:
|
16681
|
+
- FASTLYAPIKEY
|
16682
|
+
FastlyAPIKeyUpdate:
|
16683
|
+
description: The definition of the `FastlyAPIKey` object.
|
16684
|
+
properties:
|
16685
|
+
api_key:
|
16686
|
+
description: The `FastlyAPIKeyUpdate` `api_key`.
|
16687
|
+
type: string
|
16688
|
+
type:
|
16689
|
+
$ref: '#/components/schemas/FastlyAPIKeyType'
|
16690
|
+
required:
|
16691
|
+
- type
|
16692
|
+
type: object
|
15528
16693
|
FastlyAccounResponseAttributes:
|
15529
16694
|
description: Attributes object of a Fastly account.
|
15530
16695
|
properties:
|
@@ -15646,6 +16811,43 @@ components:
|
|
15646
16811
|
$ref: '#/components/schemas/FastlyAccountResponseData'
|
15647
16812
|
type: array
|
15648
16813
|
type: object
|
16814
|
+
FastlyCredentials:
|
16815
|
+
description: The definition of the `FastlyCredentials` object.
|
16816
|
+
oneOf:
|
16817
|
+
- $ref: '#/components/schemas/FastlyAPIKey'
|
16818
|
+
FastlyCredentialsUpdate:
|
16819
|
+
description: The definition of the `FastlyCredentialsUpdate` object.
|
16820
|
+
oneOf:
|
16821
|
+
- $ref: '#/components/schemas/FastlyAPIKeyUpdate'
|
16822
|
+
FastlyIntegration:
|
16823
|
+
description: The definition of the `FastlyIntegration` object.
|
16824
|
+
properties:
|
16825
|
+
credentials:
|
16826
|
+
$ref: '#/components/schemas/FastlyCredentials'
|
16827
|
+
type:
|
16828
|
+
$ref: '#/components/schemas/FastlyIntegrationType'
|
16829
|
+
required:
|
16830
|
+
- type
|
16831
|
+
- credentials
|
16832
|
+
type: object
|
16833
|
+
FastlyIntegrationType:
|
16834
|
+
description: The definition of the `FastlyIntegrationType` object.
|
16835
|
+
enum:
|
16836
|
+
- Fastly
|
16837
|
+
example: Fastly
|
16838
|
+
type: string
|
16839
|
+
x-enum-varnames:
|
16840
|
+
- FASTLY
|
16841
|
+
FastlyIntegrationUpdate:
|
16842
|
+
description: The definition of the `FastlyIntegrationUpdate` object.
|
16843
|
+
properties:
|
16844
|
+
credentials:
|
16845
|
+
$ref: '#/components/schemas/FastlyCredentialsUpdate'
|
16846
|
+
type:
|
16847
|
+
$ref: '#/components/schemas/FastlyIntegrationType'
|
16848
|
+
required:
|
16849
|
+
- type
|
16850
|
+
type: object
|
15649
16851
|
FastlyService:
|
15650
16852
|
description: The schema representation of a Fastly service.
|
15651
16853
|
properties:
|
@@ -15745,10 +16947,9 @@ components:
|
|
15745
16947
|
type: array
|
15746
16948
|
product:
|
15747
16949
|
description: 'Name of the product the dataset is for. Possible values are
|
15748
|
-
''apm'', ''rum'',
|
16950
|
+
''apm'', ''rum'',
|
15749
16951
|
|
15750
|
-
''metrics'', ''logs'', ''
|
15751
|
-
and ''ml_obs''.'
|
16952
|
+
''metrics'', ''logs'', ''error_tracking'', and ''cloud_cost''.'
|
15752
16953
|
example: logs
|
15753
16954
|
type: string
|
15754
16955
|
required:
|
@@ -15992,6 +17193,83 @@ components:
|
|
15992
17193
|
- type
|
15993
17194
|
- attributes
|
15994
17195
|
type: object
|
17196
|
+
FreshserviceAPIKey:
|
17197
|
+
description: The definition of the `FreshserviceAPIKey` object.
|
17198
|
+
properties:
|
17199
|
+
api_key:
|
17200
|
+
description: The `FreshserviceAPIKey` `api_key`.
|
17201
|
+
example: ''
|
17202
|
+
type: string
|
17203
|
+
domain:
|
17204
|
+
description: The `FreshserviceAPIKey` `domain`.
|
17205
|
+
example: ''
|
17206
|
+
type: string
|
17207
|
+
type:
|
17208
|
+
$ref: '#/components/schemas/FreshserviceAPIKeyType'
|
17209
|
+
required:
|
17210
|
+
- type
|
17211
|
+
- domain
|
17212
|
+
- api_key
|
17213
|
+
type: object
|
17214
|
+
FreshserviceAPIKeyType:
|
17215
|
+
description: The definition of the `FreshserviceAPIKey` object.
|
17216
|
+
enum:
|
17217
|
+
- FreshserviceAPIKey
|
17218
|
+
example: FreshserviceAPIKey
|
17219
|
+
type: string
|
17220
|
+
x-enum-varnames:
|
17221
|
+
- FRESHSERVICEAPIKEY
|
17222
|
+
FreshserviceAPIKeyUpdate:
|
17223
|
+
description: The definition of the `FreshserviceAPIKey` object.
|
17224
|
+
properties:
|
17225
|
+
api_key:
|
17226
|
+
description: The `FreshserviceAPIKeyUpdate` `api_key`.
|
17227
|
+
type: string
|
17228
|
+
domain:
|
17229
|
+
description: The `FreshserviceAPIKeyUpdate` `domain`.
|
17230
|
+
type: string
|
17231
|
+
type:
|
17232
|
+
$ref: '#/components/schemas/FreshserviceAPIKeyType'
|
17233
|
+
required:
|
17234
|
+
- type
|
17235
|
+
type: object
|
17236
|
+
FreshserviceCredentials:
|
17237
|
+
description: The definition of the `FreshserviceCredentials` object.
|
17238
|
+
oneOf:
|
17239
|
+
- $ref: '#/components/schemas/FreshserviceAPIKey'
|
17240
|
+
FreshserviceCredentialsUpdate:
|
17241
|
+
description: The definition of the `FreshserviceCredentialsUpdate` object.
|
17242
|
+
oneOf:
|
17243
|
+
- $ref: '#/components/schemas/FreshserviceAPIKeyUpdate'
|
17244
|
+
FreshserviceIntegration:
|
17245
|
+
description: The definition of the `FreshserviceIntegration` object.
|
17246
|
+
properties:
|
17247
|
+
credentials:
|
17248
|
+
$ref: '#/components/schemas/FreshserviceCredentials'
|
17249
|
+
type:
|
17250
|
+
$ref: '#/components/schemas/FreshserviceIntegrationType'
|
17251
|
+
required:
|
17252
|
+
- type
|
17253
|
+
- credentials
|
17254
|
+
type: object
|
17255
|
+
FreshserviceIntegrationType:
|
17256
|
+
description: The definition of the `FreshserviceIntegrationType` object.
|
17257
|
+
enum:
|
17258
|
+
- Freshservice
|
17259
|
+
example: Freshservice
|
17260
|
+
type: string
|
17261
|
+
x-enum-varnames:
|
17262
|
+
- FRESHSERVICE
|
17263
|
+
FreshserviceIntegrationUpdate:
|
17264
|
+
description: The definition of the `FreshserviceIntegrationUpdate` object.
|
17265
|
+
properties:
|
17266
|
+
credentials:
|
17267
|
+
$ref: '#/components/schemas/FreshserviceCredentialsUpdate'
|
17268
|
+
type:
|
17269
|
+
$ref: '#/components/schemas/FreshserviceIntegrationType'
|
17270
|
+
required:
|
17271
|
+
- type
|
17272
|
+
type: object
|
15995
17273
|
FullAPIKey:
|
15996
17274
|
description: Datadog API key.
|
15997
17275
|
properties:
|
@@ -16137,6 +17415,43 @@ components:
|
|
16137
17415
|
- name
|
16138
17416
|
- requirements
|
16139
17417
|
type: object
|
17418
|
+
GCPCredentials:
|
17419
|
+
description: The definition of the `GCPCredentials` object.
|
17420
|
+
oneOf:
|
17421
|
+
- $ref: '#/components/schemas/GCPServiceAccount'
|
17422
|
+
GCPCredentialsUpdate:
|
17423
|
+
description: The definition of the `GCPCredentialsUpdate` object.
|
17424
|
+
oneOf:
|
17425
|
+
- $ref: '#/components/schemas/GCPServiceAccountUpdate'
|
17426
|
+
GCPIntegration:
|
17427
|
+
description: The definition of the `GCPIntegration` object.
|
17428
|
+
properties:
|
17429
|
+
credentials:
|
17430
|
+
$ref: '#/components/schemas/GCPCredentials'
|
17431
|
+
type:
|
17432
|
+
$ref: '#/components/schemas/GCPIntegrationType'
|
17433
|
+
required:
|
17434
|
+
- type
|
17435
|
+
- credentials
|
17436
|
+
type: object
|
17437
|
+
GCPIntegrationType:
|
17438
|
+
description: The definition of the `GCPIntegrationType` object.
|
17439
|
+
enum:
|
17440
|
+
- GCP
|
17441
|
+
example: GCP
|
17442
|
+
type: string
|
17443
|
+
x-enum-varnames:
|
17444
|
+
- GCP
|
17445
|
+
GCPIntegrationUpdate:
|
17446
|
+
description: The definition of the `GCPIntegrationUpdate` object.
|
17447
|
+
properties:
|
17448
|
+
credentials:
|
17449
|
+
$ref: '#/components/schemas/GCPCredentialsUpdate'
|
17450
|
+
type:
|
17451
|
+
$ref: '#/components/schemas/GCPIntegrationType'
|
17452
|
+
required:
|
17453
|
+
- type
|
17454
|
+
type: object
|
16140
17455
|
GCPMetricNamespaceConfig:
|
16141
17456
|
description: Configuration for a GCP metric namespace.
|
16142
17457
|
properties:
|
@@ -16319,6 +17634,32 @@ components:
|
|
16319
17634
|
$ref: '#/components/schemas/GCPSTSServiceAccount'
|
16320
17635
|
type: array
|
16321
17636
|
type: object
|
17637
|
+
GCPServiceAccount:
|
17638
|
+
description: The definition of the `GCPServiceAccount` object.
|
17639
|
+
properties:
|
17640
|
+
private_key:
|
17641
|
+
description: The `GCPServiceAccount` `private_key`.
|
17642
|
+
example: ''
|
17643
|
+
type: string
|
17644
|
+
service_account_email:
|
17645
|
+
description: The `GCPServiceAccount` `service_account_email`.
|
17646
|
+
example: ''
|
17647
|
+
type: string
|
17648
|
+
type:
|
17649
|
+
$ref: '#/components/schemas/GCPServiceAccountCredentialType'
|
17650
|
+
required:
|
17651
|
+
- type
|
17652
|
+
- service_account_email
|
17653
|
+
- private_key
|
17654
|
+
type: object
|
17655
|
+
GCPServiceAccountCredentialType:
|
17656
|
+
description: The definition of the `GCPServiceAccount` object.
|
17657
|
+
enum:
|
17658
|
+
- GCPServiceAccount
|
17659
|
+
example: GCPServiceAccount
|
17660
|
+
type: string
|
17661
|
+
x-enum-varnames:
|
17662
|
+
- GCPSERVICEACCOUNT
|
16322
17663
|
GCPServiceAccountMeta:
|
16323
17664
|
description: Additional information related to your service account.
|
16324
17665
|
properties:
|
@@ -16338,6 +17679,20 @@ components:
|
|
16338
17679
|
type: string
|
16339
17680
|
x-enum-varnames:
|
16340
17681
|
- GCP_SERVICE_ACCOUNT
|
17682
|
+
GCPServiceAccountUpdate:
|
17683
|
+
description: The definition of the `GCPServiceAccount` object.
|
17684
|
+
properties:
|
17685
|
+
private_key:
|
17686
|
+
description: The `GCPServiceAccountUpdate` `private_key`.
|
17687
|
+
type: string
|
17688
|
+
service_account_email:
|
17689
|
+
description: The `GCPServiceAccountUpdate` `service_account_email`.
|
17690
|
+
type: string
|
17691
|
+
type:
|
17692
|
+
$ref: '#/components/schemas/GCPServiceAccountCredentialType'
|
17693
|
+
required:
|
17694
|
+
- type
|
17695
|
+
type: object
|
16341
17696
|
GCPUsageCostConfig:
|
16342
17697
|
description: GCP Usage Cost config.
|
16343
17698
|
properties:
|
@@ -16544,6 +17899,75 @@ components:
|
|
16544
17899
|
$ref: '#/components/schemas/GCPUsageCostConfig'
|
16545
17900
|
type: array
|
16546
17901
|
type: object
|
17902
|
+
GeminiAPIKey:
|
17903
|
+
description: The definition of the `GeminiAPIKey` object.
|
17904
|
+
properties:
|
17905
|
+
api_key:
|
17906
|
+
description: The `GeminiAPIKey` `api_key`.
|
17907
|
+
example: ''
|
17908
|
+
type: string
|
17909
|
+
type:
|
17910
|
+
$ref: '#/components/schemas/GeminiAPIKeyType'
|
17911
|
+
required:
|
17912
|
+
- type
|
17913
|
+
- api_key
|
17914
|
+
type: object
|
17915
|
+
GeminiAPIKeyType:
|
17916
|
+
description: The definition of the `GeminiAPIKey` object.
|
17917
|
+
enum:
|
17918
|
+
- GeminiAPIKey
|
17919
|
+
example: GeminiAPIKey
|
17920
|
+
type: string
|
17921
|
+
x-enum-varnames:
|
17922
|
+
- GEMINIAPIKEY
|
17923
|
+
GeminiAPIKeyUpdate:
|
17924
|
+
description: The definition of the `GeminiAPIKey` object.
|
17925
|
+
properties:
|
17926
|
+
api_key:
|
17927
|
+
description: The `GeminiAPIKeyUpdate` `api_key`.
|
17928
|
+
type: string
|
17929
|
+
type:
|
17930
|
+
$ref: '#/components/schemas/GeminiAPIKeyType'
|
17931
|
+
required:
|
17932
|
+
- type
|
17933
|
+
type: object
|
17934
|
+
GeminiCredentials:
|
17935
|
+
description: The definition of the `GeminiCredentials` object.
|
17936
|
+
oneOf:
|
17937
|
+
- $ref: '#/components/schemas/GeminiAPIKey'
|
17938
|
+
GeminiCredentialsUpdate:
|
17939
|
+
description: The definition of the `GeminiCredentialsUpdate` object.
|
17940
|
+
oneOf:
|
17941
|
+
- $ref: '#/components/schemas/GeminiAPIKeyUpdate'
|
17942
|
+
GeminiIntegration:
|
17943
|
+
description: The definition of the `GeminiIntegration` object.
|
17944
|
+
properties:
|
17945
|
+
credentials:
|
17946
|
+
$ref: '#/components/schemas/GeminiCredentials'
|
17947
|
+
type:
|
17948
|
+
$ref: '#/components/schemas/GeminiIntegrationType'
|
17949
|
+
required:
|
17950
|
+
- type
|
17951
|
+
- credentials
|
17952
|
+
type: object
|
17953
|
+
GeminiIntegrationType:
|
17954
|
+
description: The definition of the `GeminiIntegrationType` object.
|
17955
|
+
enum:
|
17956
|
+
- Gemini
|
17957
|
+
example: Gemini
|
17958
|
+
type: string
|
17959
|
+
x-enum-varnames:
|
17960
|
+
- GEMINI
|
17961
|
+
GeminiIntegrationUpdate:
|
17962
|
+
description: The definition of the `GeminiIntegrationUpdate` object.
|
17963
|
+
properties:
|
17964
|
+
credentials:
|
17965
|
+
$ref: '#/components/schemas/GeminiCredentialsUpdate'
|
17966
|
+
type:
|
17967
|
+
$ref: '#/components/schemas/GeminiIntegrationType'
|
17968
|
+
required:
|
17969
|
+
- type
|
17970
|
+
type: object
|
16547
17971
|
GetActionConnectionResponse:
|
16548
17972
|
description: The response for found connection
|
16549
17973
|
properties:
|
@@ -16885,6 +18309,144 @@ components:
|
|
16885
18309
|
required:
|
16886
18310
|
- githubWebhookTrigger
|
16887
18311
|
type: object
|
18312
|
+
GitlabAPIKey:
|
18313
|
+
description: The definition of the `GitlabAPIKey` object.
|
18314
|
+
properties:
|
18315
|
+
api_token:
|
18316
|
+
description: The `GitlabAPIKey` `api_token`.
|
18317
|
+
example: ''
|
18318
|
+
type: string
|
18319
|
+
type:
|
18320
|
+
$ref: '#/components/schemas/GitlabAPIKeyType'
|
18321
|
+
required:
|
18322
|
+
- type
|
18323
|
+
- api_token
|
18324
|
+
type: object
|
18325
|
+
GitlabAPIKeyType:
|
18326
|
+
description: The definition of the `GitlabAPIKey` object.
|
18327
|
+
enum:
|
18328
|
+
- GitlabAPIKey
|
18329
|
+
example: GitlabAPIKey
|
18330
|
+
type: string
|
18331
|
+
x-enum-varnames:
|
18332
|
+
- GITLABAPIKEY
|
18333
|
+
GitlabAPIKeyUpdate:
|
18334
|
+
description: The definition of the `GitlabAPIKey` object.
|
18335
|
+
properties:
|
18336
|
+
api_token:
|
18337
|
+
description: The `GitlabAPIKeyUpdate` `api_token`.
|
18338
|
+
type: string
|
18339
|
+
type:
|
18340
|
+
$ref: '#/components/schemas/GitlabAPIKeyType'
|
18341
|
+
required:
|
18342
|
+
- type
|
18343
|
+
type: object
|
18344
|
+
GitlabCredentials:
|
18345
|
+
description: The definition of the `GitlabCredentials` object.
|
18346
|
+
oneOf:
|
18347
|
+
- $ref: '#/components/schemas/GitlabAPIKey'
|
18348
|
+
GitlabCredentialsUpdate:
|
18349
|
+
description: The definition of the `GitlabCredentialsUpdate` object.
|
18350
|
+
oneOf:
|
18351
|
+
- $ref: '#/components/schemas/GitlabAPIKeyUpdate'
|
18352
|
+
GitlabIntegration:
|
18353
|
+
description: The definition of the `GitlabIntegration` object.
|
18354
|
+
properties:
|
18355
|
+
credentials:
|
18356
|
+
$ref: '#/components/schemas/GitlabCredentials'
|
18357
|
+
type:
|
18358
|
+
$ref: '#/components/schemas/GitlabIntegrationType'
|
18359
|
+
required:
|
18360
|
+
- type
|
18361
|
+
- credentials
|
18362
|
+
type: object
|
18363
|
+
GitlabIntegrationType:
|
18364
|
+
description: The definition of the `GitlabIntegrationType` object.
|
18365
|
+
enum:
|
18366
|
+
- Gitlab
|
18367
|
+
example: Gitlab
|
18368
|
+
type: string
|
18369
|
+
x-enum-varnames:
|
18370
|
+
- GITLAB
|
18371
|
+
GitlabIntegrationUpdate:
|
18372
|
+
description: The definition of the `GitlabIntegrationUpdate` object.
|
18373
|
+
properties:
|
18374
|
+
credentials:
|
18375
|
+
$ref: '#/components/schemas/GitlabCredentialsUpdate'
|
18376
|
+
type:
|
18377
|
+
$ref: '#/components/schemas/GitlabIntegrationType'
|
18378
|
+
required:
|
18379
|
+
- type
|
18380
|
+
type: object
|
18381
|
+
GreyNoiseAPIKey:
|
18382
|
+
description: The definition of the `GreyNoiseAPIKey` object.
|
18383
|
+
properties:
|
18384
|
+
api_key:
|
18385
|
+
description: The `GreyNoiseAPIKey` `api_key`.
|
18386
|
+
example: ''
|
18387
|
+
type: string
|
18388
|
+
type:
|
18389
|
+
$ref: '#/components/schemas/GreyNoiseAPIKeyType'
|
18390
|
+
required:
|
18391
|
+
- type
|
18392
|
+
- api_key
|
18393
|
+
type: object
|
18394
|
+
GreyNoiseAPIKeyType:
|
18395
|
+
description: The definition of the `GreyNoiseAPIKey` object.
|
18396
|
+
enum:
|
18397
|
+
- GreyNoiseAPIKey
|
18398
|
+
example: GreyNoiseAPIKey
|
18399
|
+
type: string
|
18400
|
+
x-enum-varnames:
|
18401
|
+
- GREYNOISEAPIKEY
|
18402
|
+
GreyNoiseAPIKeyUpdate:
|
18403
|
+
description: The definition of the `GreyNoiseAPIKey` object.
|
18404
|
+
properties:
|
18405
|
+
api_key:
|
18406
|
+
description: The `GreyNoiseAPIKeyUpdate` `api_key`.
|
18407
|
+
type: string
|
18408
|
+
type:
|
18409
|
+
$ref: '#/components/schemas/GreyNoiseAPIKeyType'
|
18410
|
+
required:
|
18411
|
+
- type
|
18412
|
+
type: object
|
18413
|
+
GreyNoiseCredentials:
|
18414
|
+
description: The definition of the `GreyNoiseCredentials` object.
|
18415
|
+
oneOf:
|
18416
|
+
- $ref: '#/components/schemas/GreyNoiseAPIKey'
|
18417
|
+
GreyNoiseCredentialsUpdate:
|
18418
|
+
description: The definition of the `GreyNoiseCredentialsUpdate` object.
|
18419
|
+
oneOf:
|
18420
|
+
- $ref: '#/components/schemas/GreyNoiseAPIKeyUpdate'
|
18421
|
+
GreyNoiseIntegration:
|
18422
|
+
description: The definition of the `GreyNoiseIntegration` object.
|
18423
|
+
properties:
|
18424
|
+
credentials:
|
18425
|
+
$ref: '#/components/schemas/GreyNoiseCredentials'
|
18426
|
+
type:
|
18427
|
+
$ref: '#/components/schemas/GreyNoiseIntegrationType'
|
18428
|
+
required:
|
18429
|
+
- type
|
18430
|
+
- credentials
|
18431
|
+
type: object
|
18432
|
+
GreyNoiseIntegrationType:
|
18433
|
+
description: The definition of the `GreyNoiseIntegrationType` object.
|
18434
|
+
enum:
|
18435
|
+
- GreyNoise
|
18436
|
+
example: GreyNoise
|
18437
|
+
type: string
|
18438
|
+
x-enum-varnames:
|
18439
|
+
- GREYNOISE
|
18440
|
+
GreyNoiseIntegrationUpdate:
|
18441
|
+
description: The definition of the `GreyNoiseIntegrationUpdate` object.
|
18442
|
+
properties:
|
18443
|
+
credentials:
|
18444
|
+
$ref: '#/components/schemas/GreyNoiseCredentialsUpdate'
|
18445
|
+
type:
|
18446
|
+
$ref: '#/components/schemas/GreyNoiseIntegrationType'
|
18447
|
+
required:
|
18448
|
+
- type
|
18449
|
+
type: object
|
16888
18450
|
GroupScalarColumn:
|
16889
18451
|
description: A column containing the tag keys and values in a group.
|
16890
18452
|
properties:
|
@@ -20089,6 +21651,75 @@ components:
|
|
20089
21651
|
format: int64
|
20090
21652
|
type: integer
|
20091
21653
|
type: object
|
21654
|
+
LaunchDarklyAPIKey:
|
21655
|
+
description: The definition of the `LaunchDarklyAPIKey` object.
|
21656
|
+
properties:
|
21657
|
+
api_token:
|
21658
|
+
description: The `LaunchDarklyAPIKey` `api_token`.
|
21659
|
+
example: ''
|
21660
|
+
type: string
|
21661
|
+
type:
|
21662
|
+
$ref: '#/components/schemas/LaunchDarklyAPIKeyType'
|
21663
|
+
required:
|
21664
|
+
- type
|
21665
|
+
- api_token
|
21666
|
+
type: object
|
21667
|
+
LaunchDarklyAPIKeyType:
|
21668
|
+
description: The definition of the `LaunchDarklyAPIKey` object.
|
21669
|
+
enum:
|
21670
|
+
- LaunchDarklyAPIKey
|
21671
|
+
example: LaunchDarklyAPIKey
|
21672
|
+
type: string
|
21673
|
+
x-enum-varnames:
|
21674
|
+
- LAUNCHDARKLYAPIKEY
|
21675
|
+
LaunchDarklyAPIKeyUpdate:
|
21676
|
+
description: The definition of the `LaunchDarklyAPIKey` object.
|
21677
|
+
properties:
|
21678
|
+
api_token:
|
21679
|
+
description: The `LaunchDarklyAPIKeyUpdate` `api_token`.
|
21680
|
+
type: string
|
21681
|
+
type:
|
21682
|
+
$ref: '#/components/schemas/LaunchDarklyAPIKeyType'
|
21683
|
+
required:
|
21684
|
+
- type
|
21685
|
+
type: object
|
21686
|
+
LaunchDarklyCredentials:
|
21687
|
+
description: The definition of the `LaunchDarklyCredentials` object.
|
21688
|
+
oneOf:
|
21689
|
+
- $ref: '#/components/schemas/LaunchDarklyAPIKey'
|
21690
|
+
LaunchDarklyCredentialsUpdate:
|
21691
|
+
description: The definition of the `LaunchDarklyCredentialsUpdate` object.
|
21692
|
+
oneOf:
|
21693
|
+
- $ref: '#/components/schemas/LaunchDarklyAPIKeyUpdate'
|
21694
|
+
LaunchDarklyIntegration:
|
21695
|
+
description: The definition of the `LaunchDarklyIntegration` object.
|
21696
|
+
properties:
|
21697
|
+
credentials:
|
21698
|
+
$ref: '#/components/schemas/LaunchDarklyCredentials'
|
21699
|
+
type:
|
21700
|
+
$ref: '#/components/schemas/LaunchDarklyIntegrationType'
|
21701
|
+
required:
|
21702
|
+
- type
|
21703
|
+
- credentials
|
21704
|
+
type: object
|
21705
|
+
LaunchDarklyIntegrationType:
|
21706
|
+
description: The definition of the `LaunchDarklyIntegrationType` object.
|
21707
|
+
enum:
|
21708
|
+
- LaunchDarkly
|
21709
|
+
example: LaunchDarkly
|
21710
|
+
type: string
|
21711
|
+
x-enum-varnames:
|
21712
|
+
- LAUNCHDARKLY
|
21713
|
+
LaunchDarklyIntegrationUpdate:
|
21714
|
+
description: The definition of the `LaunchDarklyIntegrationUpdate` object.
|
21715
|
+
properties:
|
21716
|
+
credentials:
|
21717
|
+
$ref: '#/components/schemas/LaunchDarklyCredentialsUpdate'
|
21718
|
+
type:
|
21719
|
+
$ref: '#/components/schemas/LaunchDarklyIntegrationType'
|
21720
|
+
required:
|
21721
|
+
- type
|
21722
|
+
type: object
|
20092
21723
|
Layer:
|
20093
21724
|
description: Encapsulates a layer resource, holding attributes like rotation
|
20094
21725
|
details, plus relationships to the members covering that layer.
|
@@ -22116,8 +23747,19 @@ components:
|
|
22116
23747
|
readOnly: true
|
22117
23748
|
type: object
|
22118
23749
|
MetricAssetAttributes:
|
22119
|
-
description: Assets related to the object, including title and
|
23750
|
+
description: Assets related to the object, including title, url, and tags.
|
22120
23751
|
properties:
|
23752
|
+
tags:
|
23753
|
+
description: List of tag keys used in the asset.
|
23754
|
+
example:
|
23755
|
+
- env
|
23756
|
+
- service
|
23757
|
+
- host
|
23758
|
+
- datacenter
|
23759
|
+
items:
|
23760
|
+
description: Tag key used in assets.
|
23761
|
+
type: string
|
23762
|
+
type: array
|
22121
23763
|
title:
|
22122
23764
|
description: Title of the asset.
|
22123
23765
|
type: string
|
@@ -22504,6 +24146,17 @@ components:
|
|
22504
24146
|
maximum: 5
|
22505
24147
|
minimum: 0
|
22506
24148
|
type: number
|
24149
|
+
tags:
|
24150
|
+
description: List of tag keys used in the asset.
|
24151
|
+
example:
|
24152
|
+
- env
|
24153
|
+
- service
|
24154
|
+
- host
|
24155
|
+
- datacenter
|
24156
|
+
items:
|
24157
|
+
description: Tag key used in assets.
|
24158
|
+
type: string
|
24159
|
+
type: array
|
22507
24160
|
title:
|
22508
24161
|
description: Title of the asset.
|
22509
24162
|
type: string
|
@@ -22950,6 +24603,61 @@ components:
|
|
22950
24603
|
type: string
|
22951
24604
|
type: array
|
22952
24605
|
type: object
|
24606
|
+
MetricTagCardinalitiesData:
|
24607
|
+
description: A list of tag cardinalities associated with the given metric.
|
24608
|
+
items:
|
24609
|
+
$ref: '#/components/schemas/MetricTagCardinality'
|
24610
|
+
type: array
|
24611
|
+
MetricTagCardinalitiesMeta:
|
24612
|
+
description: Response metadata object.
|
24613
|
+
properties:
|
24614
|
+
metric_name:
|
24615
|
+
description: 'The name of metric for which the tag cardinalities are returned.
|
24616
|
+
|
24617
|
+
This matches the metric name provided in the request.
|
24618
|
+
|
24619
|
+
'
|
24620
|
+
type: string
|
24621
|
+
type: object
|
24622
|
+
MetricTagCardinalitiesResponse:
|
24623
|
+
description: 'Response object that includes an array of objects representing
|
24624
|
+
the cardinality details of a metric''s tags.
|
24625
|
+
|
24626
|
+
'
|
24627
|
+
properties:
|
24628
|
+
data:
|
24629
|
+
$ref: '#/components/schemas/MetricTagCardinalitiesData'
|
24630
|
+
meta:
|
24631
|
+
$ref: '#/components/schemas/MetricTagCardinalitiesMeta'
|
24632
|
+
readOnly: true
|
24633
|
+
type: object
|
24634
|
+
MetricTagCardinality:
|
24635
|
+
description: Object containing metadata and attributes related to a specific
|
24636
|
+
tag key associated with the metric.
|
24637
|
+
example:
|
24638
|
+
attributes:
|
24639
|
+
cardinality_delta: 25
|
24640
|
+
id: http.request.latency
|
24641
|
+
type: tag_cardinality
|
24642
|
+
properties:
|
24643
|
+
attributes:
|
24644
|
+
$ref: '#/components/schemas/MetricTagCardinalityAttributes'
|
24645
|
+
id:
|
24646
|
+
description: The name of the tag key.
|
24647
|
+
type: string
|
24648
|
+
type:
|
24649
|
+
default: tag_cardinality
|
24650
|
+
description: This describes the endpoint action.
|
24651
|
+
type: string
|
24652
|
+
type: object
|
24653
|
+
MetricTagCardinalityAttributes:
|
24654
|
+
description: An object containing properties related to the tag key
|
24655
|
+
properties:
|
24656
|
+
cardinality_delta:
|
24657
|
+
description: This describes the recent change in the tag keys cardinality
|
24658
|
+
format: int64
|
24659
|
+
type: integer
|
24660
|
+
type: object
|
22953
24661
|
MetricTagConfiguration:
|
22954
24662
|
description: Object for a single metric tag configuration.
|
22955
24663
|
example:
|
@@ -24700,6 +26408,75 @@ components:
|
|
24700
26408
|
type: string
|
24701
26409
|
x-enum-varnames:
|
24702
26410
|
- NOTIFICATION_RULES
|
26411
|
+
NotionAPIKey:
|
26412
|
+
description: The definition of the `NotionAPIKey` object.
|
26413
|
+
properties:
|
26414
|
+
api_token:
|
26415
|
+
description: The `NotionAPIKey` `api_token`.
|
26416
|
+
example: ''
|
26417
|
+
type: string
|
26418
|
+
type:
|
26419
|
+
$ref: '#/components/schemas/NotionAPIKeyType'
|
26420
|
+
required:
|
26421
|
+
- type
|
26422
|
+
- api_token
|
26423
|
+
type: object
|
26424
|
+
NotionAPIKeyType:
|
26425
|
+
description: The definition of the `NotionAPIKey` object.
|
26426
|
+
enum:
|
26427
|
+
- NotionAPIKey
|
26428
|
+
example: NotionAPIKey
|
26429
|
+
type: string
|
26430
|
+
x-enum-varnames:
|
26431
|
+
- NOTIONAPIKEY
|
26432
|
+
NotionAPIKeyUpdate:
|
26433
|
+
description: The definition of the `NotionAPIKey` object.
|
26434
|
+
properties:
|
26435
|
+
api_token:
|
26436
|
+
description: The `NotionAPIKeyUpdate` `api_token`.
|
26437
|
+
type: string
|
26438
|
+
type:
|
26439
|
+
$ref: '#/components/schemas/NotionAPIKeyType'
|
26440
|
+
required:
|
26441
|
+
- type
|
26442
|
+
type: object
|
26443
|
+
NotionCredentials:
|
26444
|
+
description: The definition of the `NotionCredentials` object.
|
26445
|
+
oneOf:
|
26446
|
+
- $ref: '#/components/schemas/NotionAPIKey'
|
26447
|
+
NotionCredentialsUpdate:
|
26448
|
+
description: The definition of the `NotionCredentialsUpdate` object.
|
26449
|
+
oneOf:
|
26450
|
+
- $ref: '#/components/schemas/NotionAPIKeyUpdate'
|
26451
|
+
NotionIntegration:
|
26452
|
+
description: The definition of the `NotionIntegration` object.
|
26453
|
+
properties:
|
26454
|
+
credentials:
|
26455
|
+
$ref: '#/components/schemas/NotionCredentials'
|
26456
|
+
type:
|
26457
|
+
$ref: '#/components/schemas/NotionIntegrationType'
|
26458
|
+
required:
|
26459
|
+
- type
|
26460
|
+
- credentials
|
26461
|
+
type: object
|
26462
|
+
NotionIntegrationType:
|
26463
|
+
description: The definition of the `NotionIntegrationType` object.
|
26464
|
+
enum:
|
26465
|
+
- Notion
|
26466
|
+
example: Notion
|
26467
|
+
type: string
|
26468
|
+
x-enum-varnames:
|
26469
|
+
- NOTION
|
26470
|
+
NotionIntegrationUpdate:
|
26471
|
+
description: The definition of the `NotionIntegrationUpdate` object.
|
26472
|
+
properties:
|
26473
|
+
credentials:
|
26474
|
+
$ref: '#/components/schemas/NotionCredentialsUpdate'
|
26475
|
+
type:
|
26476
|
+
$ref: '#/components/schemas/NotionIntegrationType'
|
26477
|
+
required:
|
26478
|
+
- type
|
26479
|
+
type: object
|
24703
26480
|
NullableRelationshipToUser:
|
24704
26481
|
description: Relationship to user.
|
24705
26482
|
nullable: true
|
@@ -26487,7 +28264,6 @@ components:
|
|
26487
28264
|
required:
|
26488
28265
|
- source
|
26489
28266
|
- match_rules
|
26490
|
-
- support_rules
|
26491
28267
|
type: object
|
26492
28268
|
ObservabilityPipelineParseGrokProcessorRuleMatchRule:
|
26493
28269
|
description: 'Defines a Grok parsing rule, which extracts structured fields
|
@@ -27875,6 +29651,46 @@ components:
|
|
27875
29651
|
required:
|
27876
29652
|
- crt_file
|
27877
29653
|
type: object
|
29654
|
+
OktaAPIToken:
|
29655
|
+
description: The definition of the `OktaAPIToken` object.
|
29656
|
+
properties:
|
29657
|
+
api_token:
|
29658
|
+
description: The `OktaAPIToken` `api_token`.
|
29659
|
+
example: ''
|
29660
|
+
type: string
|
29661
|
+
domain:
|
29662
|
+
description: The `OktaAPIToken` `domain`.
|
29663
|
+
example: ''
|
29664
|
+
type: string
|
29665
|
+
type:
|
29666
|
+
$ref: '#/components/schemas/OktaAPITokenType'
|
29667
|
+
required:
|
29668
|
+
- type
|
29669
|
+
- domain
|
29670
|
+
- api_token
|
29671
|
+
type: object
|
29672
|
+
OktaAPITokenType:
|
29673
|
+
description: The definition of the `OktaAPIToken` object.
|
29674
|
+
enum:
|
29675
|
+
- OktaAPIToken
|
29676
|
+
example: OktaAPIToken
|
29677
|
+
type: string
|
29678
|
+
x-enum-varnames:
|
29679
|
+
- OKTAAPITOKEN
|
29680
|
+
OktaAPITokenUpdate:
|
29681
|
+
description: The definition of the `OktaAPIToken` object.
|
29682
|
+
properties:
|
29683
|
+
api_token:
|
29684
|
+
description: The `OktaAPITokenUpdate` `api_token`.
|
29685
|
+
type: string
|
29686
|
+
domain:
|
29687
|
+
description: The `OktaAPITokenUpdate` `domain`.
|
29688
|
+
type: string
|
29689
|
+
type:
|
29690
|
+
$ref: '#/components/schemas/OktaAPITokenType'
|
29691
|
+
required:
|
29692
|
+
- type
|
29693
|
+
type: object
|
27878
29694
|
OktaAccount:
|
27879
29695
|
description: Schema for an Okta account.
|
27880
29696
|
properties:
|
@@ -28011,6 +29827,43 @@ components:
|
|
28011
29827
|
$ref: '#/components/schemas/OktaAccountResponseData'
|
28012
29828
|
type: array
|
28013
29829
|
type: object
|
29830
|
+
OktaCredentials:
|
29831
|
+
description: The definition of the `OktaCredentials` object.
|
29832
|
+
oneOf:
|
29833
|
+
- $ref: '#/components/schemas/OktaAPIToken'
|
29834
|
+
OktaCredentialsUpdate:
|
29835
|
+
description: The definition of the `OktaCredentialsUpdate` object.
|
29836
|
+
oneOf:
|
29837
|
+
- $ref: '#/components/schemas/OktaAPITokenUpdate'
|
29838
|
+
OktaIntegration:
|
29839
|
+
description: The definition of the `OktaIntegration` object.
|
29840
|
+
properties:
|
29841
|
+
credentials:
|
29842
|
+
$ref: '#/components/schemas/OktaCredentials'
|
29843
|
+
type:
|
29844
|
+
$ref: '#/components/schemas/OktaIntegrationType'
|
29845
|
+
required:
|
29846
|
+
- type
|
29847
|
+
- credentials
|
29848
|
+
type: object
|
29849
|
+
OktaIntegrationType:
|
29850
|
+
description: The definition of the `OktaIntegrationType` object.
|
29851
|
+
enum:
|
29852
|
+
- Okta
|
29853
|
+
example: Okta
|
29854
|
+
type: string
|
29855
|
+
x-enum-varnames:
|
29856
|
+
- OKTA
|
29857
|
+
OktaIntegrationUpdate:
|
29858
|
+
description: The definition of the `OktaIntegrationUpdate` object.
|
29859
|
+
properties:
|
29860
|
+
credentials:
|
29861
|
+
$ref: '#/components/schemas/OktaCredentialsUpdate'
|
29862
|
+
type:
|
29863
|
+
$ref: '#/components/schemas/OktaIntegrationType'
|
29864
|
+
required:
|
29865
|
+
- type
|
29866
|
+
type: object
|
28014
29867
|
OnCallPageTargetType:
|
28015
29868
|
description: The kind of target, `team_id` | `team_handle` | `user_id`.
|
28016
29869
|
enum:
|
@@ -28052,6 +29905,75 @@ components:
|
|
28052
29905
|
type: string
|
28053
29906
|
x-enum-varnames:
|
28054
29907
|
- ON_DEMAND_CONCURRENCY_CAP
|
29908
|
+
OpenAIAPIKey:
|
29909
|
+
description: The definition of the `OpenAIAPIKey` object.
|
29910
|
+
properties:
|
29911
|
+
api_token:
|
29912
|
+
description: The `OpenAIAPIKey` `api_token`.
|
29913
|
+
example: ''
|
29914
|
+
type: string
|
29915
|
+
type:
|
29916
|
+
$ref: '#/components/schemas/OpenAIAPIKeyType'
|
29917
|
+
required:
|
29918
|
+
- type
|
29919
|
+
- api_token
|
29920
|
+
type: object
|
29921
|
+
OpenAIAPIKeyType:
|
29922
|
+
description: The definition of the `OpenAIAPIKey` object.
|
29923
|
+
enum:
|
29924
|
+
- OpenAIAPIKey
|
29925
|
+
example: OpenAIAPIKey
|
29926
|
+
type: string
|
29927
|
+
x-enum-varnames:
|
29928
|
+
- OPENAIAPIKEY
|
29929
|
+
OpenAIAPIKeyUpdate:
|
29930
|
+
description: The definition of the `OpenAIAPIKey` object.
|
29931
|
+
properties:
|
29932
|
+
api_token:
|
29933
|
+
description: The `OpenAIAPIKeyUpdate` `api_token`.
|
29934
|
+
type: string
|
29935
|
+
type:
|
29936
|
+
$ref: '#/components/schemas/OpenAIAPIKeyType'
|
29937
|
+
required:
|
29938
|
+
- type
|
29939
|
+
type: object
|
29940
|
+
OpenAICredentials:
|
29941
|
+
description: The definition of the `OpenAICredentials` object.
|
29942
|
+
oneOf:
|
29943
|
+
- $ref: '#/components/schemas/OpenAIAPIKey'
|
29944
|
+
OpenAICredentialsUpdate:
|
29945
|
+
description: The definition of the `OpenAICredentialsUpdate` object.
|
29946
|
+
oneOf:
|
29947
|
+
- $ref: '#/components/schemas/OpenAIAPIKeyUpdate'
|
29948
|
+
OpenAIIntegration:
|
29949
|
+
description: The definition of the `OpenAIIntegration` object.
|
29950
|
+
properties:
|
29951
|
+
credentials:
|
29952
|
+
$ref: '#/components/schemas/OpenAICredentials'
|
29953
|
+
type:
|
29954
|
+
$ref: '#/components/schemas/OpenAIIntegrationType'
|
29955
|
+
required:
|
29956
|
+
- type
|
29957
|
+
- credentials
|
29958
|
+
type: object
|
29959
|
+
OpenAIIntegrationType:
|
29960
|
+
description: The definition of the `OpenAIIntegrationType` object.
|
29961
|
+
enum:
|
29962
|
+
- OpenAI
|
29963
|
+
example: OpenAI
|
29964
|
+
type: string
|
29965
|
+
x-enum-varnames:
|
29966
|
+
- OPENAI
|
29967
|
+
OpenAIIntegrationUpdate:
|
29968
|
+
description: The definition of the `OpenAIIntegrationUpdate` object.
|
29969
|
+
properties:
|
29970
|
+
credentials:
|
29971
|
+
$ref: '#/components/schemas/OpenAICredentialsUpdate'
|
29972
|
+
type:
|
29973
|
+
$ref: '#/components/schemas/OpenAIIntegrationType'
|
29974
|
+
required:
|
29975
|
+
- type
|
29976
|
+
type: object
|
28055
29977
|
OpenAPIEndpoint:
|
28056
29978
|
description: Endpoint info extracted from an `OpenAPI` specification.
|
28057
29979
|
properties:
|
@@ -31866,7 +33788,7 @@ components:
|
|
31866
33788
|
rule types application_code_vulnerability,
|
31867
33789
|
|
31868
33790
|
application_library_vulnerability, attack_path, container_image_vulnerability,
|
31869
|
-
identity_risk, misconfiguration, and
|
33791
|
+
identity_risk, misconfiguration, api_security, host_vulnerability and iac_misconfiguration.'
|
31870
33792
|
enum:
|
31871
33793
|
- application_security
|
31872
33794
|
- log_detection
|
@@ -31881,6 +33803,8 @@ components:
|
|
31881
33803
|
- identity_risk
|
31882
33804
|
- misconfiguration
|
31883
33805
|
- api_security
|
33806
|
+
- host_vulnerability
|
33807
|
+
- iac_misconfiguration
|
31884
33808
|
type: string
|
31885
33809
|
x-enum-varnames:
|
31886
33810
|
- APPLICATION_SECURITY
|
@@ -31896,6 +33820,8 @@ components:
|
|
31896
33820
|
- IDENTITY_RISK
|
31897
33821
|
- MISCONFIGURATION
|
31898
33822
|
- API_SECURITY
|
33823
|
+
- HOST_VULNERABILITY
|
33824
|
+
- IAC_MISCONFIGURATION
|
31899
33825
|
RuleUser:
|
31900
33826
|
description: User creating or modifying a rule.
|
31901
33827
|
properties:
|
@@ -33903,9 +35829,22 @@ components:
|
|
33903
35829
|
format: int64
|
33904
35830
|
minimum: 0
|
33905
35831
|
type: integer
|
35832
|
+
flaggedIPType:
|
35833
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleCaseActionOptionsFlaggedIPType'
|
33906
35834
|
userBehaviorName:
|
33907
35835
|
$ref: '#/components/schemas/SecurityMonitoringRuleCaseActionOptionsUserBehaviorName'
|
33908
35836
|
type: object
|
35837
|
+
SecurityMonitoringRuleCaseActionOptionsFlaggedIPType:
|
35838
|
+
description: Used with the case action of type 'flag_ip'. The value specified
|
35839
|
+
in this field is applied as a flag to the IP addresses.
|
35840
|
+
enum:
|
35841
|
+
- SUSPICIOUS
|
35842
|
+
- FLAGGED
|
35843
|
+
example: FLAGGED
|
35844
|
+
type: string
|
35845
|
+
x-enum-varnames:
|
35846
|
+
- SUSPICIOUS
|
35847
|
+
- FLAGGED
|
33909
35848
|
SecurityMonitoringRuleCaseActionOptionsUserBehaviorName:
|
33910
35849
|
description: Used with the case action of type 'user_behavior'. The value specified
|
33911
35850
|
in this field is applied as a risk tag to all users affected by the rule.
|
@@ -33916,11 +35855,13 @@ components:
|
|
33916
35855
|
- block_ip
|
33917
35856
|
- block_user
|
33918
35857
|
- user_behavior
|
35858
|
+
- flag_ip
|
33919
35859
|
type: string
|
33920
35860
|
x-enum-varnames:
|
33921
35861
|
- BLOCK_IP
|
33922
35862
|
- BLOCK_USER
|
33923
35863
|
- USER_BEHAVIOR
|
35864
|
+
- FLAG_IP
|
33924
35865
|
SecurityMonitoringRuleCaseCreate:
|
33925
35866
|
description: Case when signal is generated.
|
33926
35867
|
properties:
|
@@ -34395,6 +36336,12 @@ components:
|
|
34395
36336
|
SecurityMonitoringRuleUpdatePayload:
|
34396
36337
|
description: Update an existing rule.
|
34397
36338
|
properties:
|
36339
|
+
calculatedFields:
|
36340
|
+
description: Calculated fields. Only allowed for scheduled rules - in other
|
36341
|
+
words, when schedulingOptions is also defined.
|
36342
|
+
items:
|
36343
|
+
$ref: '#/components/schemas/CalculatedField'
|
36344
|
+
type: array
|
34398
36345
|
cases:
|
34399
36346
|
description: Cases for generating signals.
|
34400
36347
|
items:
|
@@ -34451,6 +36398,8 @@ components:
|
|
34451
36398
|
items:
|
34452
36399
|
$ref: '#/components/schemas/SecurityMonitoringReferenceTable'
|
34453
36400
|
type: array
|
36401
|
+
schedulingOptions:
|
36402
|
+
$ref: '#/components/schemas/SecurityMonitoringSchedulingOptions'
|
34454
36403
|
tags:
|
34455
36404
|
description: Tags for generated signals.
|
34456
36405
|
items:
|
@@ -34477,6 +36426,27 @@ components:
|
|
34477
36426
|
- $ref: '#/components/schemas/SecurityMonitoringStandardRulePayload'
|
34478
36427
|
- $ref: '#/components/schemas/SecurityMonitoringSignalRulePayload'
|
34479
36428
|
- $ref: '#/components/schemas/CloudConfigurationRulePayload'
|
36429
|
+
SecurityMonitoringSchedulingOptions:
|
36430
|
+
description: Options for scheduled rules. When this field is present, the rule
|
36431
|
+
runs based on the schedule. When absent, it runs real-time on ingested logs.
|
36432
|
+
nullable: true
|
36433
|
+
properties:
|
36434
|
+
rrule:
|
36435
|
+
description: Schedule for the rule queries, written in RRULE syntax. See
|
36436
|
+
[RFC](https://icalendar.org/iCalendar-RFC-5545/3-8-5-3-recurrence-rule.html)
|
36437
|
+
for syntax reference.
|
36438
|
+
example: FREQ=HOURLY;INTERVAL=1;
|
36439
|
+
type: string
|
36440
|
+
start:
|
36441
|
+
description: Start date for the schedule, in ISO 8601 format without timezone.
|
36442
|
+
example: '2025-07-14T12:00:00'
|
36443
|
+
type: string
|
36444
|
+
timezone:
|
36445
|
+
description: Time zone of the start date, in the [tz database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
|
36446
|
+
format.
|
36447
|
+
example: America/New_York
|
36448
|
+
type: string
|
36449
|
+
type: object
|
34480
36450
|
SecurityMonitoringSignal:
|
34481
36451
|
description: Object description of a security signal.
|
34482
36452
|
properties:
|
@@ -35155,6 +37125,12 @@ components:
|
|
35155
37125
|
SecurityMonitoringStandardRuleCreatePayload:
|
35156
37126
|
description: Create a new rule.
|
35157
37127
|
properties:
|
37128
|
+
calculatedFields:
|
37129
|
+
description: Calculated fields. Only allowed for scheduled rules - in other
|
37130
|
+
words, when schedulingOptions is also defined.
|
37131
|
+
items:
|
37132
|
+
$ref: '#/components/schemas/CalculatedField'
|
37133
|
+
type: array
|
35158
37134
|
cases:
|
35159
37135
|
description: Cases for generating signals.
|
35160
37136
|
example: []
|
@@ -35207,6 +37183,8 @@ components:
|
|
35207
37183
|
items:
|
35208
37184
|
$ref: '#/components/schemas/SecurityMonitoringReferenceTable'
|
35209
37185
|
type: array
|
37186
|
+
schedulingOptions:
|
37187
|
+
$ref: '#/components/schemas/SecurityMonitoringSchedulingOptions'
|
35210
37188
|
tags:
|
35211
37189
|
description: Tags for generated signals.
|
35212
37190
|
example:
|
@@ -35236,6 +37214,12 @@ components:
|
|
35236
37214
|
SecurityMonitoringStandardRulePayload:
|
35237
37215
|
description: The payload of a rule.
|
35238
37216
|
properties:
|
37217
|
+
calculatedFields:
|
37218
|
+
description: Calculated fields. Only allowed for scheduled rules - in other
|
37219
|
+
words, when schedulingOptions is also defined.
|
37220
|
+
items:
|
37221
|
+
$ref: '#/components/schemas/CalculatedField'
|
37222
|
+
type: array
|
35239
37223
|
cases:
|
35240
37224
|
description: Cases for generating signals.
|
35241
37225
|
example: []
|
@@ -35296,6 +37280,8 @@ components:
|
|
35296
37280
|
items:
|
35297
37281
|
$ref: '#/components/schemas/SecurityMonitoringReferenceTable'
|
35298
37282
|
type: array
|
37283
|
+
schedulingOptions:
|
37284
|
+
$ref: '#/components/schemas/SecurityMonitoringSchedulingOptions'
|
35299
37285
|
tags:
|
35300
37286
|
description: Tags for generated signals.
|
35301
37287
|
example:
|
@@ -35352,6 +37338,14 @@ components:
|
|
35352
37338
|
example: false
|
35353
37339
|
readOnly: true
|
35354
37340
|
type: boolean
|
37341
|
+
index:
|
37342
|
+
description: '**This field is currently unstable and might be removed in
|
37343
|
+
a minor version upgrade.**
|
37344
|
+
|
37345
|
+
The index to run the query on, if the `dataSource` is `logs`. Only used
|
37346
|
+
for scheduled rules - in other words, when the `schedulingOptions` field
|
37347
|
+
is present in the rule payload.'
|
37348
|
+
type: string
|
35355
37349
|
metric:
|
35356
37350
|
deprecated: true
|
35357
37351
|
description: '(Deprecated) The target field to aggregate over when using
|
@@ -35379,6 +37373,12 @@ components:
|
|
35379
37373
|
SecurityMonitoringStandardRuleResponse:
|
35380
37374
|
description: Rule.
|
35381
37375
|
properties:
|
37376
|
+
calculatedFields:
|
37377
|
+
description: Calculated fields. Only allowed for scheduled rules - in other
|
37378
|
+
words, when schedulingOptions is also defined.
|
37379
|
+
items:
|
37380
|
+
$ref: '#/components/schemas/CalculatedField'
|
37381
|
+
type: array
|
35382
37382
|
cases:
|
35383
37383
|
description: Cases for generating signals.
|
35384
37384
|
items:
|
@@ -35464,6 +37464,8 @@ components:
|
|
35464
37464
|
items:
|
35465
37465
|
$ref: '#/components/schemas/SecurityMonitoringReferenceTable'
|
35466
37466
|
type: array
|
37467
|
+
schedulingOptions:
|
37468
|
+
$ref: '#/components/schemas/SecurityMonitoringSchedulingOptions'
|
35467
37469
|
tags:
|
35468
37470
|
description: Tags for generated signals.
|
35469
37471
|
items:
|
@@ -35495,6 +37497,12 @@ components:
|
|
35495
37497
|
SecurityMonitoringStandardRuleTestPayload:
|
35496
37498
|
description: The payload of a rule to test
|
35497
37499
|
properties:
|
37500
|
+
calculatedFields:
|
37501
|
+
description: Calculated fields. Only allowed for scheduled rules - in other
|
37502
|
+
words, when schedulingOptions is also defined.
|
37503
|
+
items:
|
37504
|
+
$ref: '#/components/schemas/CalculatedField'
|
37505
|
+
type: array
|
35498
37506
|
cases:
|
35499
37507
|
description: Cases for generating signals.
|
35500
37508
|
example: []
|
@@ -35547,6 +37555,8 @@ components:
|
|
35547
37555
|
items:
|
35548
37556
|
$ref: '#/components/schemas/SecurityMonitoringReferenceTable'
|
35549
37557
|
type: array
|
37558
|
+
schedulingOptions:
|
37559
|
+
$ref: '#/components/schemas/SecurityMonitoringSchedulingOptions'
|
35550
37560
|
tags:
|
35551
37561
|
description: Tags for generated signals.
|
35552
37562
|
example:
|
@@ -37715,6 +39725,91 @@ components:
|
|
37715
39725
|
$ref: '#/components/schemas/ServiceDefinitionData'
|
37716
39726
|
type: array
|
37717
39727
|
type: object
|
39728
|
+
ServiceNowBasicAuth:
|
39729
|
+
description: The definition of the `ServiceNowBasicAuth` object.
|
39730
|
+
properties:
|
39731
|
+
instance:
|
39732
|
+
description: The `ServiceNowBasicAuth` `instance`.
|
39733
|
+
example: ''
|
39734
|
+
type: string
|
39735
|
+
password:
|
39736
|
+
description: The `ServiceNowBasicAuth` `password`.
|
39737
|
+
example: ''
|
39738
|
+
type: string
|
39739
|
+
type:
|
39740
|
+
$ref: '#/components/schemas/ServiceNowBasicAuthType'
|
39741
|
+
username:
|
39742
|
+
description: The `ServiceNowBasicAuth` `username`.
|
39743
|
+
example: ''
|
39744
|
+
type: string
|
39745
|
+
required:
|
39746
|
+
- type
|
39747
|
+
- instance
|
39748
|
+
- username
|
39749
|
+
- password
|
39750
|
+
type: object
|
39751
|
+
ServiceNowBasicAuthType:
|
39752
|
+
description: The definition of the `ServiceNowBasicAuth` object.
|
39753
|
+
enum:
|
39754
|
+
- ServiceNowBasicAuth
|
39755
|
+
example: ServiceNowBasicAuth
|
39756
|
+
type: string
|
39757
|
+
x-enum-varnames:
|
39758
|
+
- SERVICENOWBASICAUTH
|
39759
|
+
ServiceNowBasicAuthUpdate:
|
39760
|
+
description: The definition of the `ServiceNowBasicAuth` object.
|
39761
|
+
properties:
|
39762
|
+
instance:
|
39763
|
+
description: The `ServiceNowBasicAuthUpdate` `instance`.
|
39764
|
+
type: string
|
39765
|
+
password:
|
39766
|
+
description: The `ServiceNowBasicAuthUpdate` `password`.
|
39767
|
+
type: string
|
39768
|
+
type:
|
39769
|
+
$ref: '#/components/schemas/ServiceNowBasicAuthType'
|
39770
|
+
username:
|
39771
|
+
description: The `ServiceNowBasicAuthUpdate` `username`.
|
39772
|
+
type: string
|
39773
|
+
required:
|
39774
|
+
- type
|
39775
|
+
type: object
|
39776
|
+
ServiceNowCredentials:
|
39777
|
+
description: The definition of the `ServiceNowCredentials` object.
|
39778
|
+
oneOf:
|
39779
|
+
- $ref: '#/components/schemas/ServiceNowBasicAuth'
|
39780
|
+
ServiceNowCredentialsUpdate:
|
39781
|
+
description: The definition of the `ServiceNowCredentialsUpdate` object.
|
39782
|
+
oneOf:
|
39783
|
+
- $ref: '#/components/schemas/ServiceNowBasicAuthUpdate'
|
39784
|
+
ServiceNowIntegration:
|
39785
|
+
description: The definition of the `ServiceNowIntegration` object.
|
39786
|
+
properties:
|
39787
|
+
credentials:
|
39788
|
+
$ref: '#/components/schemas/ServiceNowCredentials'
|
39789
|
+
type:
|
39790
|
+
$ref: '#/components/schemas/ServiceNowIntegrationType'
|
39791
|
+
required:
|
39792
|
+
- type
|
39793
|
+
- credentials
|
39794
|
+
type: object
|
39795
|
+
ServiceNowIntegrationType:
|
39796
|
+
description: The definition of the `ServiceNowIntegrationType` object.
|
39797
|
+
enum:
|
39798
|
+
- ServiceNow
|
39799
|
+
example: ServiceNow
|
39800
|
+
type: string
|
39801
|
+
x-enum-varnames:
|
39802
|
+
- SERVICENOW
|
39803
|
+
ServiceNowIntegrationUpdate:
|
39804
|
+
description: The definition of the `ServiceNowIntegrationUpdate` object.
|
39805
|
+
properties:
|
39806
|
+
credentials:
|
39807
|
+
$ref: '#/components/schemas/ServiceNowCredentialsUpdate'
|
39808
|
+
type:
|
39809
|
+
$ref: '#/components/schemas/ServiceNowIntegrationType'
|
39810
|
+
required:
|
39811
|
+
- type
|
39812
|
+
type: object
|
37718
39813
|
ServiceNowTicket:
|
37719
39814
|
description: ServiceNow ticket attached to case
|
37720
39815
|
nullable: true
|
@@ -37990,6 +40085,100 @@ components:
|
|
37990
40085
|
type: string
|
37991
40086
|
x-enum-varnames:
|
37992
40087
|
- AGGREGATED_CONNECTION
|
40088
|
+
SingleAggregatedDnsResponseArray:
|
40089
|
+
description: List of aggregated DNS flows.
|
40090
|
+
example:
|
40091
|
+
data:
|
40092
|
+
- attributes:
|
40093
|
+
group_bys:
|
40094
|
+
- key: client_service
|
40095
|
+
value: example-service
|
40096
|
+
- key: network.dns_query
|
40097
|
+
value: example.com
|
40098
|
+
metrics:
|
40099
|
+
- key: dns_total_requests
|
40100
|
+
value: 100
|
40101
|
+
- key: dns_failures
|
40102
|
+
value: 7
|
40103
|
+
- key: dns_successful_responses
|
40104
|
+
value: 93
|
40105
|
+
- key: dns_failed_responses
|
40106
|
+
value: 5
|
40107
|
+
- key: dns_timeouts
|
40108
|
+
value: 2
|
40109
|
+
- key: dns_responses.nxdomain
|
40110
|
+
value: 1
|
40111
|
+
- key: dns_responses.servfail
|
40112
|
+
value: 1
|
40113
|
+
- key: dns_responses.other
|
40114
|
+
value: 3
|
40115
|
+
- key: dns_success_latency_percentile
|
40116
|
+
value: 50
|
40117
|
+
- key: dns_failure_latency_percentile
|
40118
|
+
value: 75
|
40119
|
+
id: client_service:example-service,network.dns_query:example.com
|
40120
|
+
type: aggregated_dns
|
40121
|
+
properties:
|
40122
|
+
data:
|
40123
|
+
description: Array of aggregated DNS objects.
|
40124
|
+
items:
|
40125
|
+
$ref: '#/components/schemas/SingleAggregatedDnsResponseData'
|
40126
|
+
type: array
|
40127
|
+
type: object
|
40128
|
+
SingleAggregatedDnsResponseData:
|
40129
|
+
description: Object describing an aggregated DNS flow.
|
40130
|
+
properties:
|
40131
|
+
attributes:
|
40132
|
+
$ref: '#/components/schemas/SingleAggregatedDnsResponseDataAttributes'
|
40133
|
+
id:
|
40134
|
+
description: A unique identifier for the aggregated DNS traffic based on
|
40135
|
+
the group by values.
|
40136
|
+
type: string
|
40137
|
+
type:
|
40138
|
+
$ref: '#/components/schemas/SingleAggregatedDnsResponseDataType'
|
40139
|
+
type: object
|
40140
|
+
SingleAggregatedDnsResponseDataAttributes:
|
40141
|
+
description: Attributes for an aggregated DNS flow.
|
40142
|
+
properties:
|
40143
|
+
group_bys:
|
40144
|
+
description: The key, value pairs for each group by.
|
40145
|
+
items:
|
40146
|
+
$ref: '#/components/schemas/SingleAggregatedDnsResponseDataAttributesGroupByItems'
|
40147
|
+
type: array
|
40148
|
+
metrics:
|
40149
|
+
description: Metrics associated with an aggregated DNS flow.
|
40150
|
+
items:
|
40151
|
+
$ref: '#/components/schemas/SingleAggregatedDnsResponseDataAttributesMetricsItems'
|
40152
|
+
type: array
|
40153
|
+
type: object
|
40154
|
+
SingleAggregatedDnsResponseDataAttributesGroupByItems:
|
40155
|
+
description: Attributes associated with a group by
|
40156
|
+
properties:
|
40157
|
+
key:
|
40158
|
+
description: The group by key.
|
40159
|
+
type: string
|
40160
|
+
value:
|
40161
|
+
description: The group by value.
|
40162
|
+
type: string
|
40163
|
+
type: object
|
40164
|
+
SingleAggregatedDnsResponseDataAttributesMetricsItems:
|
40165
|
+
description: Metrics associated with an aggregated DNS flow.
|
40166
|
+
properties:
|
40167
|
+
key:
|
40168
|
+
$ref: '#/components/schemas/DnsMetricKey'
|
40169
|
+
value:
|
40170
|
+
description: The metric value.
|
40171
|
+
format: int64
|
40172
|
+
type: integer
|
40173
|
+
type: object
|
40174
|
+
SingleAggregatedDnsResponseDataType:
|
40175
|
+
default: aggregated_dns
|
40176
|
+
description: Aggregated DNS resource type.
|
40177
|
+
enum:
|
40178
|
+
- aggregated_dns
|
40179
|
+
type: string
|
40180
|
+
x-enum-varnames:
|
40181
|
+
- AGGREGATED_DNS
|
37993
40182
|
SlackIntegrationMetadata:
|
37994
40183
|
description: Incident integration metadata for the Slack integration.
|
37995
40184
|
properties:
|
@@ -39023,6 +41212,75 @@ components:
|
|
39023
41212
|
- ONE_THREE
|
39024
41213
|
- ONE_FOUR
|
39025
41214
|
- ONE_FIVE
|
41215
|
+
SplitAPIKey:
|
41216
|
+
description: The definition of the `SplitAPIKey` object.
|
41217
|
+
properties:
|
41218
|
+
api_key:
|
41219
|
+
description: The `SplitAPIKey` `api_key`.
|
41220
|
+
example: ''
|
41221
|
+
type: string
|
41222
|
+
type:
|
41223
|
+
$ref: '#/components/schemas/SplitAPIKeyType'
|
41224
|
+
required:
|
41225
|
+
- type
|
41226
|
+
- api_key
|
41227
|
+
type: object
|
41228
|
+
SplitAPIKeyType:
|
41229
|
+
description: The definition of the `SplitAPIKey` object.
|
41230
|
+
enum:
|
41231
|
+
- SplitAPIKey
|
41232
|
+
example: SplitAPIKey
|
41233
|
+
type: string
|
41234
|
+
x-enum-varnames:
|
41235
|
+
- SPLITAPIKEY
|
41236
|
+
SplitAPIKeyUpdate:
|
41237
|
+
description: The definition of the `SplitAPIKey` object.
|
41238
|
+
properties:
|
41239
|
+
api_key:
|
41240
|
+
description: The `SplitAPIKeyUpdate` `api_key`.
|
41241
|
+
type: string
|
41242
|
+
type:
|
41243
|
+
$ref: '#/components/schemas/SplitAPIKeyType'
|
41244
|
+
required:
|
41245
|
+
- type
|
41246
|
+
type: object
|
41247
|
+
SplitCredentials:
|
41248
|
+
description: The definition of the `SplitCredentials` object.
|
41249
|
+
oneOf:
|
41250
|
+
- $ref: '#/components/schemas/SplitAPIKey'
|
41251
|
+
SplitCredentialsUpdate:
|
41252
|
+
description: The definition of the `SplitCredentialsUpdate` object.
|
41253
|
+
oneOf:
|
41254
|
+
- $ref: '#/components/schemas/SplitAPIKeyUpdate'
|
41255
|
+
SplitIntegration:
|
41256
|
+
description: The definition of the `SplitIntegration` object.
|
41257
|
+
properties:
|
41258
|
+
credentials:
|
41259
|
+
$ref: '#/components/schemas/SplitCredentials'
|
41260
|
+
type:
|
41261
|
+
$ref: '#/components/schemas/SplitIntegrationType'
|
41262
|
+
required:
|
41263
|
+
- type
|
41264
|
+
- credentials
|
41265
|
+
type: object
|
41266
|
+
SplitIntegrationType:
|
41267
|
+
description: The definition of the `SplitIntegrationType` object.
|
41268
|
+
enum:
|
41269
|
+
- Split
|
41270
|
+
example: Split
|
41271
|
+
type: string
|
41272
|
+
x-enum-varnames:
|
41273
|
+
- SPLIT
|
41274
|
+
SplitIntegrationUpdate:
|
41275
|
+
description: The definition of the `SplitIntegrationUpdate` object.
|
41276
|
+
properties:
|
41277
|
+
credentials:
|
41278
|
+
$ref: '#/components/schemas/SplitCredentialsUpdate'
|
41279
|
+
type:
|
41280
|
+
$ref: '#/components/schemas/SplitIntegrationType'
|
41281
|
+
required:
|
41282
|
+
- type
|
41283
|
+
type: object
|
39026
41284
|
StartStepNames:
|
39027
41285
|
description: A list of steps that run first after a trigger fires.
|
39028
41286
|
example:
|
@@ -39083,6 +41341,75 @@ components:
|
|
39083
41341
|
type: string
|
39084
41342
|
x-enum-varnames:
|
39085
41343
|
- STATEVARIABLE
|
41344
|
+
StatsigAPIKey:
|
41345
|
+
description: The definition of the `StatsigAPIKey` object.
|
41346
|
+
properties:
|
41347
|
+
api_key:
|
41348
|
+
description: The `StatsigAPIKey` `api_key`.
|
41349
|
+
example: ''
|
41350
|
+
type: string
|
41351
|
+
type:
|
41352
|
+
$ref: '#/components/schemas/StatsigAPIKeyType'
|
41353
|
+
required:
|
41354
|
+
- type
|
41355
|
+
- api_key
|
41356
|
+
type: object
|
41357
|
+
StatsigAPIKeyType:
|
41358
|
+
description: The definition of the `StatsigAPIKey` object.
|
41359
|
+
enum:
|
41360
|
+
- StatsigAPIKey
|
41361
|
+
example: StatsigAPIKey
|
41362
|
+
type: string
|
41363
|
+
x-enum-varnames:
|
41364
|
+
- STATSIGAPIKEY
|
41365
|
+
StatsigAPIKeyUpdate:
|
41366
|
+
description: The definition of the `StatsigAPIKey` object.
|
41367
|
+
properties:
|
41368
|
+
api_key:
|
41369
|
+
description: The `StatsigAPIKeyUpdate` `api_key`.
|
41370
|
+
type: string
|
41371
|
+
type:
|
41372
|
+
$ref: '#/components/schemas/StatsigAPIKeyType'
|
41373
|
+
required:
|
41374
|
+
- type
|
41375
|
+
type: object
|
41376
|
+
StatsigCredentials:
|
41377
|
+
description: The definition of the `StatsigCredentials` object.
|
41378
|
+
oneOf:
|
41379
|
+
- $ref: '#/components/schemas/StatsigAPIKey'
|
41380
|
+
StatsigCredentialsUpdate:
|
41381
|
+
description: The definition of the `StatsigCredentialsUpdate` object.
|
41382
|
+
oneOf:
|
41383
|
+
- $ref: '#/components/schemas/StatsigAPIKeyUpdate'
|
41384
|
+
StatsigIntegration:
|
41385
|
+
description: The definition of the `StatsigIntegration` object.
|
41386
|
+
properties:
|
41387
|
+
credentials:
|
41388
|
+
$ref: '#/components/schemas/StatsigCredentials'
|
41389
|
+
type:
|
41390
|
+
$ref: '#/components/schemas/StatsigIntegrationType'
|
41391
|
+
required:
|
41392
|
+
- type
|
41393
|
+
- credentials
|
41394
|
+
type: object
|
41395
|
+
StatsigIntegrationType:
|
41396
|
+
description: The definition of the `StatsigIntegrationType` object.
|
41397
|
+
enum:
|
41398
|
+
- Statsig
|
41399
|
+
example: Statsig
|
41400
|
+
type: string
|
41401
|
+
x-enum-varnames:
|
41402
|
+
- STATSIG
|
41403
|
+
StatsigIntegrationUpdate:
|
41404
|
+
description: The definition of the `StatsigIntegrationUpdate` object.
|
41405
|
+
properties:
|
41406
|
+
credentials:
|
41407
|
+
$ref: '#/components/schemas/StatsigCredentialsUpdate'
|
41408
|
+
type:
|
41409
|
+
$ref: '#/components/schemas/StatsigIntegrationType'
|
41410
|
+
required:
|
41411
|
+
- type
|
41412
|
+
type: object
|
39086
41413
|
Step:
|
39087
41414
|
description: A Step is a sub-component of a workflow. Each Step performs an
|
39088
41415
|
action.
|
@@ -41557,6 +43884,70 @@ components:
|
|
41557
43884
|
type: string
|
41558
43885
|
x-enum-varnames:
|
41559
43886
|
- USERS
|
43887
|
+
V2Event:
|
43888
|
+
description: An event object.
|
43889
|
+
properties:
|
43890
|
+
attributes:
|
43891
|
+
$ref: '#/components/schemas/V2EventAttributes'
|
43892
|
+
id:
|
43893
|
+
description: The event's ID.
|
43894
|
+
example: ''
|
43895
|
+
type: string
|
43896
|
+
type:
|
43897
|
+
description: Entity type.
|
43898
|
+
example: event
|
43899
|
+
type: string
|
43900
|
+
type: object
|
43901
|
+
V2EventAggregationKey:
|
43902
|
+
description: Aggregation key of the event.
|
43903
|
+
example: aggregation-key
|
43904
|
+
type: string
|
43905
|
+
V2EventAttributes:
|
43906
|
+
description: Event attributes.
|
43907
|
+
properties:
|
43908
|
+
attributes:
|
43909
|
+
$ref: '#/components/schemas/V2EventAttributesAttributes'
|
43910
|
+
message:
|
43911
|
+
description: Free-form text associated with the event.
|
43912
|
+
example: The event message
|
43913
|
+
type: string
|
43914
|
+
tags:
|
43915
|
+
description: A list of tags associated with the event.
|
43916
|
+
example:
|
43917
|
+
- env:api_client_test
|
43918
|
+
items:
|
43919
|
+
description: A tag.
|
43920
|
+
type: string
|
43921
|
+
type: array
|
43922
|
+
timestamp:
|
43923
|
+
description: Timestamp when the event occurred.
|
43924
|
+
example: '2017-01-15T01:30:15.010000Z'
|
43925
|
+
type: string
|
43926
|
+
type: object
|
43927
|
+
V2EventAttributesAttributes:
|
43928
|
+
description: JSON object for category-specific attributes.
|
43929
|
+
oneOf:
|
43930
|
+
- $ref: '#/components/schemas/ChangeEventAttributes'
|
43931
|
+
- $ref: '#/components/schemas/AlertEventAttributes'
|
43932
|
+
V2EventResponse:
|
43933
|
+
description: Get an event response.
|
43934
|
+
properties:
|
43935
|
+
data:
|
43936
|
+
$ref: '#/components/schemas/V2Event'
|
43937
|
+
type: object
|
43938
|
+
V2EventService:
|
43939
|
+
description: Service that triggered the event.
|
43940
|
+
example: service-name
|
43941
|
+
type: string
|
43942
|
+
V2EventTimestamp:
|
43943
|
+
description: POSIX timestamp of the event.
|
43944
|
+
example: 175019386627
|
43945
|
+
format: int64
|
43946
|
+
type: integer
|
43947
|
+
V2EventTitle:
|
43948
|
+
description: The title of the event.
|
43949
|
+
example: The event title
|
43950
|
+
type: string
|
41560
43951
|
ValidationError:
|
41561
43952
|
description: Represents a single validation error, including a human-readable
|
41562
43953
|
title and metadata.
|
@@ -41612,6 +44003,75 @@ components:
|
|
41612
44003
|
example: 1
|
41613
44004
|
format: int64
|
41614
44005
|
type: integer
|
44006
|
+
VirusTotalAPIKey:
|
44007
|
+
description: The definition of the `VirusTotalAPIKey` object.
|
44008
|
+
properties:
|
44009
|
+
api_key:
|
44010
|
+
description: The `VirusTotalAPIKey` `api_key`.
|
44011
|
+
example: ''
|
44012
|
+
type: string
|
44013
|
+
type:
|
44014
|
+
$ref: '#/components/schemas/VirusTotalAPIKeyType'
|
44015
|
+
required:
|
44016
|
+
- type
|
44017
|
+
- api_key
|
44018
|
+
type: object
|
44019
|
+
VirusTotalAPIKeyType:
|
44020
|
+
description: The definition of the `VirusTotalAPIKey` object.
|
44021
|
+
enum:
|
44022
|
+
- VirusTotalAPIKey
|
44023
|
+
example: VirusTotalAPIKey
|
44024
|
+
type: string
|
44025
|
+
x-enum-varnames:
|
44026
|
+
- VIRUSTOTALAPIKEY
|
44027
|
+
VirusTotalAPIKeyUpdate:
|
44028
|
+
description: The definition of the `VirusTotalAPIKey` object.
|
44029
|
+
properties:
|
44030
|
+
api_key:
|
44031
|
+
description: The `VirusTotalAPIKeyUpdate` `api_key`.
|
44032
|
+
type: string
|
44033
|
+
type:
|
44034
|
+
$ref: '#/components/schemas/VirusTotalAPIKeyType'
|
44035
|
+
required:
|
44036
|
+
- type
|
44037
|
+
type: object
|
44038
|
+
VirusTotalCredentials:
|
44039
|
+
description: The definition of the `VirusTotalCredentials` object.
|
44040
|
+
oneOf:
|
44041
|
+
- $ref: '#/components/schemas/VirusTotalAPIKey'
|
44042
|
+
VirusTotalCredentialsUpdate:
|
44043
|
+
description: The definition of the `VirusTotalCredentialsUpdate` object.
|
44044
|
+
oneOf:
|
44045
|
+
- $ref: '#/components/schemas/VirusTotalAPIKeyUpdate'
|
44046
|
+
VirusTotalIntegration:
|
44047
|
+
description: The definition of the `VirusTotalIntegration` object.
|
44048
|
+
properties:
|
44049
|
+
credentials:
|
44050
|
+
$ref: '#/components/schemas/VirusTotalCredentials'
|
44051
|
+
type:
|
44052
|
+
$ref: '#/components/schemas/VirusTotalIntegrationType'
|
44053
|
+
required:
|
44054
|
+
- type
|
44055
|
+
- credentials
|
44056
|
+
type: object
|
44057
|
+
VirusTotalIntegrationType:
|
44058
|
+
description: The definition of the `VirusTotalIntegrationType` object.
|
44059
|
+
enum:
|
44060
|
+
- VirusTotal
|
44061
|
+
example: VirusTotal
|
44062
|
+
type: string
|
44063
|
+
x-enum-varnames:
|
44064
|
+
- VIRUSTOTAL
|
44065
|
+
VirusTotalIntegrationUpdate:
|
44066
|
+
description: The definition of the `VirusTotalIntegrationUpdate` object.
|
44067
|
+
properties:
|
44068
|
+
credentials:
|
44069
|
+
$ref: '#/components/schemas/VirusTotalCredentialsUpdate'
|
44070
|
+
type:
|
44071
|
+
$ref: '#/components/schemas/VirusTotalIntegrationType'
|
44072
|
+
required:
|
44073
|
+
- type
|
44074
|
+
type: object
|
41615
44075
|
VulnerabilitiesType:
|
41616
44076
|
description: The JSON:API type.
|
41617
44077
|
enum:
|
@@ -42359,9 +44819,6 @@ components:
|
|
42359
44819
|
apm_service_catalog_read: View service catalog and service definitions.
|
42360
44820
|
apm_service_catalog_write: Add, modify, and delete service catalog definitions
|
42361
44821
|
when those definitions are maintained by Datadog.
|
42362
|
-
appsec_vm_read: View infrastructure, application code, and library vulnerabilities.
|
42363
|
-
This does not restrict API or inventory SQL access to the vulnerability
|
42364
|
-
data source.
|
42365
44822
|
billing_read: View your organization's billing information.
|
42366
44823
|
cases_read: View Cases.
|
42367
44824
|
cases_write: Create and update cases.
|
@@ -42376,6 +44833,8 @@ components:
|
|
42376
44833
|
code_analysis_read: View Code Analysis.
|
42377
44834
|
continuous_profiler_pgo_read: Read and query Continuous Profiler data
|
42378
44835
|
for Profile-Guided Optimization (PGO).
|
44836
|
+
coterm_read: Read terminal recordings.
|
44837
|
+
coterm_write: Write terminal recordings.
|
42379
44838
|
create_webhooks: Create webhooks integrations.
|
42380
44839
|
dashboards_embed_share: Create, modify, and delete shared dashboards with
|
42381
44840
|
share type 'embed'.
|
@@ -42397,7 +44856,6 @@ components:
|
|
42397
44856
|
incident_settings_write: Configure Incident Settings.
|
42398
44857
|
incident_write: Create, view, and manage incidents in Datadog.
|
42399
44858
|
metrics_read: View custom metrics.
|
42400
|
-
monitor_config_policy_write: Edit and delete monitor configuration.
|
42401
44859
|
monitors_downtime: Set downtimes to suppress alerts from any monitor in
|
42402
44860
|
an organization. Mute and unmute monitors. The ability to write monitors
|
42403
44861
|
is not required to set downtimes.
|
@@ -42413,10 +44871,6 @@ components:
|
|
42413
44871
|
security_monitoring_filters_write: Create, edit, and delete Security Filters.
|
42414
44872
|
security_monitoring_findings_read: View a list of findings that include
|
42415
44873
|
both misconfigurations and identity risks.
|
42416
|
-
security_monitoring_notification_profiles_read: View Rule Security Notification
|
42417
|
-
rules.
|
42418
|
-
security_monitoring_notification_profiles_write: Create, edit, and delete
|
42419
|
-
Security Notification rules.
|
42420
44874
|
security_monitoring_rules_read: Read Detection Rules.
|
42421
44875
|
security_monitoring_rules_write: Create and edit Detection Rules.
|
42422
44876
|
security_monitoring_signals_read: View Security Signals.
|
@@ -44596,8 +47050,9 @@ paths:
|
|
44596
47050
|
tags:
|
44597
47051
|
- AuthN Mappings
|
44598
47052
|
x-permission:
|
44599
|
-
operator:
|
44600
|
-
permissions:
|
47053
|
+
operator: OR
|
47054
|
+
permissions:
|
47055
|
+
- user_access_read
|
44601
47056
|
post:
|
44602
47057
|
description: Create an AuthN Mapping.
|
44603
47058
|
operationId: CreateAuthNMapping
|
@@ -44702,8 +47157,9 @@ paths:
|
|
44702
47157
|
tags:
|
44703
47158
|
- AuthN Mappings
|
44704
47159
|
x-permission:
|
44705
|
-
operator:
|
44706
|
-
permissions:
|
47160
|
+
operator: OR
|
47161
|
+
permissions:
|
47162
|
+
- user_access_read
|
44707
47163
|
patch:
|
44708
47164
|
description: Edit an AuthN Mapping.
|
44709
47165
|
operationId: UpdateAuthNMapping
|
@@ -45076,6 +47532,44 @@ paths:
|
|
45076
47532
|
summary: Assign case
|
45077
47533
|
tags:
|
45078
47534
|
- Case Management
|
47535
|
+
/api/v2/cases/{case_id}/attributes:
|
47536
|
+
post:
|
47537
|
+
description: Update case attributes
|
47538
|
+
operationId: UpdateAttributes
|
47539
|
+
parameters:
|
47540
|
+
- $ref: '#/components/parameters/CaseIDPathParameter'
|
47541
|
+
requestBody:
|
47542
|
+
content:
|
47543
|
+
application/json:
|
47544
|
+
schema:
|
47545
|
+
$ref: '#/components/schemas/CaseUpdateAttributesRequest'
|
47546
|
+
description: Case attributes update payload
|
47547
|
+
required: true
|
47548
|
+
responses:
|
47549
|
+
'200':
|
47550
|
+
content:
|
47551
|
+
application/json:
|
47552
|
+
schema:
|
47553
|
+
$ref: '#/components/schemas/CaseResponse'
|
47554
|
+
description: OK
|
47555
|
+
'400':
|
47556
|
+
$ref: '#/components/responses/BadRequestResponse'
|
47557
|
+
'401':
|
47558
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
47559
|
+
'403':
|
47560
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
47561
|
+
'404':
|
47562
|
+
$ref: '#/components/responses/NotFoundResponse'
|
47563
|
+
'429':
|
47564
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
47565
|
+
security:
|
47566
|
+
- apiKeyAuth: []
|
47567
|
+
appKeyAuth: []
|
47568
|
+
- AuthZ:
|
47569
|
+
- cases_write
|
47570
|
+
summary: Update case attributes
|
47571
|
+
tags:
|
47572
|
+
- Case Management
|
45079
47573
|
/api/v2/cases/{case_id}/priority:
|
45080
47574
|
post:
|
45081
47575
|
description: Update case priority
|
@@ -45750,6 +48244,8 @@ paths:
|
|
45750
48244
|
appKeyAuth: []
|
45751
48245
|
- AuthZ:
|
45752
48246
|
- ci_visibility_read
|
48247
|
+
- AuthZ:
|
48248
|
+
- test_optimization_read
|
45753
48249
|
summary: Aggregate tests events
|
45754
48250
|
tags:
|
45755
48251
|
- CI Visibility Tests
|
@@ -45758,6 +48254,7 @@ paths:
|
|
45758
48254
|
operator: OR
|
45759
48255
|
permissions:
|
45760
48256
|
- ci_visibility_read
|
48257
|
+
- test_optimization_read
|
45761
48258
|
/api/v2/ci/tests/events:
|
45762
48259
|
get:
|
45763
48260
|
description: 'List endpoint returns CI Visibility test events that match a [search
|
@@ -45834,6 +48331,8 @@ paths:
|
|
45834
48331
|
appKeyAuth: []
|
45835
48332
|
- AuthZ:
|
45836
48333
|
- ci_visibility_read
|
48334
|
+
- AuthZ:
|
48335
|
+
- test_optimization_read
|
45837
48336
|
summary: Get a list of tests events
|
45838
48337
|
tags:
|
45839
48338
|
- CI Visibility Tests
|
@@ -45846,6 +48345,7 @@ paths:
|
|
45846
48345
|
operator: OR
|
45847
48346
|
permissions:
|
45848
48347
|
- ci_visibility_read
|
48348
|
+
- test_optimization_read
|
45849
48349
|
/api/v2/ci/tests/events/search:
|
45850
48350
|
post:
|
45851
48351
|
description: 'List endpoint returns CI Visibility test events that match a [search
|
@@ -45880,6 +48380,8 @@ paths:
|
|
45880
48380
|
appKeyAuth: []
|
45881
48381
|
- AuthZ:
|
45882
48382
|
- ci_visibility_read
|
48383
|
+
- AuthZ:
|
48384
|
+
- test_optimization_read
|
45883
48385
|
summary: Search tests events
|
45884
48386
|
tags:
|
45885
48387
|
- CI Visibility Tests
|
@@ -45893,6 +48395,7 @@ paths:
|
|
45893
48395
|
operator: OR
|
45894
48396
|
permissions:
|
45895
48397
|
- ci_visibility_read
|
48398
|
+
- test_optimization_read
|
45896
48399
|
/api/v2/cloud_security_management/custom_frameworks:
|
45897
48400
|
post:
|
45898
48401
|
description: Create a custom framework.
|
@@ -47096,15 +49599,13 @@ paths:
|
|
47096
49599
|
appKeyAuth: []
|
47097
49600
|
- AuthZ:
|
47098
49601
|
- usage_read
|
47099
|
-
- billing_read
|
47100
49602
|
summary: Get Monthly Cost Attribution
|
47101
49603
|
tags:
|
47102
49604
|
- Usage Metering
|
47103
49605
|
x-permission:
|
47104
|
-
operator:
|
49606
|
+
operator: OR
|
47105
49607
|
permissions:
|
47106
49608
|
- usage_read
|
47107
|
-
- billing_read
|
47108
49609
|
/api/v2/csm/onboarding/agents:
|
47109
49610
|
get:
|
47110
49611
|
description: Get the list of all CSM Agents running on your hosts and containers.
|
@@ -47681,13 +50182,18 @@ paths:
|
|
47681
50182
|
security:
|
47682
50183
|
- apiKeyAuth: []
|
47683
50184
|
appKeyAuth: []
|
47684
|
-
- AuthZ:
|
50185
|
+
- AuthZ:
|
50186
|
+
- user_access_read
|
47685
50187
|
summary: Get all datasets
|
47686
50188
|
tags:
|
47687
50189
|
- Datasets
|
47688
50190
|
x-permission:
|
47689
|
-
operator:
|
47690
|
-
permissions:
|
50191
|
+
operator: OR
|
50192
|
+
permissions:
|
50193
|
+
- user_access_read
|
50194
|
+
x-unstable: '**Note: Data Access is in preview. If you have any feedback,
|
50195
|
+
|
50196
|
+
contact [Datadog support](https://docs.datadoghq.com/help/).**'
|
47691
50197
|
post:
|
47692
50198
|
description: Create a dataset with the configurations in the request.
|
47693
50199
|
operationId: CreateDataset
|
@@ -47699,7 +50205,7 @@ paths:
|
|
47699
50205
|
attributes:
|
47700
50206
|
name: Test RUM Dataset
|
47701
50207
|
principals:
|
47702
|
-
- role:
|
50208
|
+
- role:94172442-be03-11e9-a77a-3b7612558ac1
|
47703
50209
|
product_filters:
|
47704
50210
|
- filters:
|
47705
50211
|
- '@application.id:application_123'
|
@@ -47727,14 +50233,19 @@ paths:
|
|
47727
50233
|
security:
|
47728
50234
|
- apiKeyAuth: []
|
47729
50235
|
appKeyAuth: []
|
47730
|
-
- AuthZ:
|
50236
|
+
- AuthZ:
|
50237
|
+
- user_access_manage
|
47731
50238
|
summary: Create a dataset
|
47732
50239
|
tags:
|
47733
50240
|
- Datasets
|
47734
50241
|
x-codegen-request-body-name: body
|
47735
50242
|
x-permission:
|
47736
|
-
operator:
|
47737
|
-
permissions:
|
50243
|
+
operator: OR
|
50244
|
+
permissions:
|
50245
|
+
- user_access_manage
|
50246
|
+
x-unstable: '**Note: Data Access is in preview. If you have any feedback,
|
50247
|
+
|
50248
|
+
contact [Datadog support](https://docs.datadoghq.com/help/).**'
|
47738
50249
|
/api/v2/datasets/{dataset_id}:
|
47739
50250
|
delete:
|
47740
50251
|
description: Deletes the dataset associated with the ID.
|
@@ -47762,6 +50273,9 @@ paths:
|
|
47762
50273
|
x-permission:
|
47763
50274
|
operator: OPEN
|
47764
50275
|
permissions: []
|
50276
|
+
x-unstable: '**Note: Data Access is in preview. If you have any feedback,
|
50277
|
+
|
50278
|
+
contact [Datadog support](https://docs.datadoghq.com/help/).**'
|
47765
50279
|
get:
|
47766
50280
|
description: Retrieves the dataset associated with the ID.
|
47767
50281
|
operationId: GetDataset
|
@@ -47792,6 +50306,50 @@ paths:
|
|
47792
50306
|
x-permission:
|
47793
50307
|
operator: OPEN
|
47794
50308
|
permissions: []
|
50309
|
+
x-unstable: '**Note: Data Access is in preview. If you have any feedback,
|
50310
|
+
|
50311
|
+
contact [Datadog support](https://docs.datadoghq.com/help/).**'
|
50312
|
+
put:
|
50313
|
+
description: Edits the dataset associated with the ID.
|
50314
|
+
operationId: UpdateDataset
|
50315
|
+
parameters:
|
50316
|
+
- $ref: '#/components/parameters/DatasetID'
|
50317
|
+
requestBody:
|
50318
|
+
content:
|
50319
|
+
application/json:
|
50320
|
+
schema:
|
50321
|
+
$ref: '#/components/schemas/DatasetUpdateRequest'
|
50322
|
+
description: Dataset payload
|
50323
|
+
required: true
|
50324
|
+
responses:
|
50325
|
+
'200':
|
50326
|
+
content:
|
50327
|
+
application/json:
|
50328
|
+
schema:
|
50329
|
+
$ref: '#/components/schemas/DatasetResponseSingle'
|
50330
|
+
description: OK
|
50331
|
+
'400':
|
50332
|
+
$ref: '#/components/responses/BadRequestResponse'
|
50333
|
+
'403':
|
50334
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
50335
|
+
'404':
|
50336
|
+
$ref: '#/components/responses/NotFoundResponse'
|
50337
|
+
'429':
|
50338
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
50339
|
+
security:
|
50340
|
+
- apiKeyAuth: []
|
50341
|
+
appKeyAuth: []
|
50342
|
+
- AuthZ: []
|
50343
|
+
summary: Edit a dataset
|
50344
|
+
tags:
|
50345
|
+
- Datasets
|
50346
|
+
x-codegen-request-body-name: body
|
50347
|
+
x-permission:
|
50348
|
+
operator: OPEN
|
50349
|
+
permissions: []
|
50350
|
+
x-unstable: '**Note: Data Access is in preview. If you have any feedback,
|
50351
|
+
|
50352
|
+
contact [Datadog support](https://docs.datadoghq.com/help/).**'
|
47795
50353
|
/api/v2/deletion/data/{product}:
|
47796
50354
|
post:
|
47797
50355
|
description: Creates a data deletion request by providing a query and a timeframe
|
@@ -47985,6 +50543,8 @@ paths:
|
|
47985
50543
|
appKeyAuth: []
|
47986
50544
|
- AuthZ:
|
47987
50545
|
- org_management
|
50546
|
+
- AuthZ:
|
50547
|
+
- monitors_write
|
47988
50548
|
summary: Get Domain Allowlist
|
47989
50549
|
tags:
|
47990
50550
|
- Domain Allowlist
|
@@ -47992,6 +50552,10 @@ paths:
|
|
47992
50552
|
operator: OR
|
47993
50553
|
permissions:
|
47994
50554
|
- org_management
|
50555
|
+
- monitors_write
|
50556
|
+
- generate_dashboard_reports
|
50557
|
+
- generate_log_reports
|
50558
|
+
- manage_log_reports
|
47995
50559
|
patch:
|
47996
50560
|
description: Update the domain allowlist for an organization.
|
47997
50561
|
operationId: PatchDomainAllowlist
|
@@ -48015,6 +50579,8 @@ paths:
|
|
48015
50579
|
appKeyAuth: []
|
48016
50580
|
- AuthZ:
|
48017
50581
|
- org_management
|
50582
|
+
- AuthZ:
|
50583
|
+
- monitors_write
|
48018
50584
|
summary: Sets Domain Allowlist
|
48019
50585
|
tags:
|
48020
50586
|
- Domain Allowlist
|
@@ -48022,6 +50588,10 @@ paths:
|
|
48022
50588
|
operator: OR
|
48023
50589
|
permissions:
|
48024
50590
|
- org_management
|
50591
|
+
- monitors_write
|
50592
|
+
- generate_dashboard_reports
|
50593
|
+
- generate_log_reports
|
50594
|
+
- manage_log_reports
|
48025
50595
|
/api/v2/dora/deployment:
|
48026
50596
|
post:
|
48027
50597
|
description: 'Use this API endpoint to provide data about deployments for DORA
|
@@ -48683,9 +51253,7 @@ paths:
|
|
48683
51253
|
for more details.\n\n\u274C For use cases involving other event categories,
|
48684
51254
|
use the V1 endpoint or reach out to [support](https://www.datadoghq.com/support/).\n\n\u274C
|
48685
51255
|
Notifications are not yet supported for events sent to this endpoint. Use
|
48686
|
-
the V1 endpoint for notification functionality
|
48687
|
-
not available for the Government (US1-FED) site. Contact your account representative
|
48688
|
-
for more information."
|
51256
|
+
the V1 endpoint for notification functionality."
|
48689
51257
|
operationId: CreateEvent
|
48690
51258
|
requestBody:
|
48691
51259
|
content:
|
@@ -48836,6 +51404,46 @@ paths:
|
|
48836
51404
|
operator: OR
|
48837
51405
|
permissions:
|
48838
51406
|
- events_read
|
51407
|
+
/api/v2/events/{event_id}:
|
51408
|
+
get:
|
51409
|
+
description: Get the details of an event by `event_id`.
|
51410
|
+
operationId: GetEvent
|
51411
|
+
parameters:
|
51412
|
+
- description: The UID of the event.
|
51413
|
+
in: path
|
51414
|
+
name: event_id
|
51415
|
+
required: true
|
51416
|
+
schema:
|
51417
|
+
type: string
|
51418
|
+
responses:
|
51419
|
+
'200':
|
51420
|
+
content:
|
51421
|
+
application/json:
|
51422
|
+
schema:
|
51423
|
+
$ref: '#/components/schemas/V2EventResponse'
|
51424
|
+
description: OK
|
51425
|
+
'400':
|
51426
|
+
$ref: '#/components/responses/BadRequestResponse'
|
51427
|
+
'401':
|
51428
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
51429
|
+
'403':
|
51430
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
51431
|
+
'404':
|
51432
|
+
$ref: '#/components/responses/NotFoundResponse'
|
51433
|
+
'429':
|
51434
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
51435
|
+
security:
|
51436
|
+
- apiKeyAuth: []
|
51437
|
+
appKeyAuth: []
|
51438
|
+
- AuthZ:
|
51439
|
+
- events_read
|
51440
|
+
summary: Get an event
|
51441
|
+
tags:
|
51442
|
+
- Events
|
51443
|
+
x-permission:
|
51444
|
+
operator: OR
|
51445
|
+
permissions:
|
51446
|
+
- events_read
|
48839
51447
|
/api/v2/incidents:
|
48840
51448
|
get:
|
48841
51449
|
description: Get all incidents for the user's organization.
|
@@ -52301,8 +54909,8 @@ paths:
|
|
52301
54909
|
x-permission:
|
52302
54910
|
operator: OR
|
52303
54911
|
permissions:
|
52304
|
-
- logs_read_data
|
52305
54912
|
- logs_read_config
|
54913
|
+
- logs_read_data
|
52306
54914
|
post:
|
52307
54915
|
description: Create a custom destination in your organization.
|
52308
54916
|
operationId: CreateLogsCustomDestination
|
@@ -52386,8 +54994,8 @@ paths:
|
|
52386
54994
|
x-permission:
|
52387
54995
|
operator: OR
|
52388
54996
|
permissions:
|
52389
|
-
- logs_read_data
|
52390
54997
|
- logs_read_config
|
54998
|
+
- logs_read_data
|
52391
54999
|
patch:
|
52392
55000
|
description: Update the given fields of a specific custom destination in your
|
52393
55001
|
organization.
|
@@ -53153,103 +55761,147 @@ paths:
|
|
53153
55761
|
schema:
|
53154
55762
|
$ref: '#/components/schemas/APIErrorResponse'
|
53155
55763
|
description: Too Many Requests
|
53156
|
-
security:
|
53157
|
-
- apiKeyAuth: []
|
53158
|
-
appKeyAuth: []
|
53159
|
-
- AuthZ: []
|
53160
|
-
summary: Related Assets to a Metric
|
55764
|
+
security:
|
55765
|
+
- apiKeyAuth: []
|
55766
|
+
appKeyAuth: []
|
55767
|
+
- AuthZ: []
|
55768
|
+
summary: Related Assets to a Metric
|
55769
|
+
tags:
|
55770
|
+
- Metrics
|
55771
|
+
/api/v2/metrics/{metric_name}/estimate:
|
55772
|
+
get:
|
55773
|
+
description: Returns the estimated cardinality for a metric with a given tag,
|
55774
|
+
percentile and number of aggregations configuration using Metrics without
|
55775
|
+
Limits™.
|
55776
|
+
operationId: EstimateMetricsOutputSeries
|
55777
|
+
parameters:
|
55778
|
+
- $ref: '#/components/parameters/MetricName'
|
55779
|
+
- description: Filtered tag keys that the metric is configured to query with.
|
55780
|
+
example: app,host
|
55781
|
+
in: query
|
55782
|
+
name: filter[groups]
|
55783
|
+
required: false
|
55784
|
+
schema:
|
55785
|
+
type: string
|
55786
|
+
- description: The number of hours of look back (from now) to estimate cardinality
|
55787
|
+
with. If unspecified, it defaults to 0 hours.
|
55788
|
+
example: 49
|
55789
|
+
in: query
|
55790
|
+
name: filter[hours_ago]
|
55791
|
+
required: false
|
55792
|
+
schema:
|
55793
|
+
format: int32
|
55794
|
+
maximum: 2147483647
|
55795
|
+
minimum: 49
|
55796
|
+
type: integer
|
55797
|
+
- description: Deprecated. Number of aggregations has no impact on volume.
|
55798
|
+
example: 1
|
55799
|
+
in: query
|
55800
|
+
name: filter[num_aggregations]
|
55801
|
+
required: false
|
55802
|
+
schema:
|
55803
|
+
format: int32
|
55804
|
+
maximum: 9
|
55805
|
+
type: integer
|
55806
|
+
- description: A boolean, for distribution metrics only, to estimate cardinality
|
55807
|
+
if the metric includes additional percentile aggregators.
|
55808
|
+
example: true
|
55809
|
+
in: query
|
55810
|
+
name: filter[pct]
|
55811
|
+
required: false
|
55812
|
+
schema:
|
55813
|
+
type: boolean
|
55814
|
+
- description: A window, in hours, from the look back to estimate cardinality
|
55815
|
+
with. The minimum and default is 1 hour.
|
55816
|
+
example: 6
|
55817
|
+
in: query
|
55818
|
+
name: filter[timespan_h]
|
55819
|
+
required: false
|
55820
|
+
schema:
|
55821
|
+
format: int32
|
55822
|
+
maximum: 2147483647
|
55823
|
+
type: integer
|
55824
|
+
responses:
|
55825
|
+
'200':
|
55826
|
+
content:
|
55827
|
+
application/json:
|
55828
|
+
schema:
|
55829
|
+
$ref: '#/components/schemas/MetricEstimateResponse'
|
55830
|
+
description: Success
|
55831
|
+
'400':
|
55832
|
+
content:
|
55833
|
+
application/json:
|
55834
|
+
schema:
|
55835
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
55836
|
+
description: API error response.
|
55837
|
+
'403':
|
55838
|
+
content:
|
55839
|
+
application/json:
|
55840
|
+
schema:
|
55841
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
55842
|
+
description: API error response.
|
55843
|
+
'404':
|
55844
|
+
content:
|
55845
|
+
application/json:
|
55846
|
+
schema:
|
55847
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
55848
|
+
description: API error response.
|
55849
|
+
'429':
|
55850
|
+
content:
|
55851
|
+
application/json:
|
55852
|
+
schema:
|
55853
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
55854
|
+
description: Too Many Requests
|
55855
|
+
summary: Tag Configuration Cardinality Estimator
|
53161
55856
|
tags:
|
53162
55857
|
- Metrics
|
53163
|
-
|
55858
|
+
x-permission:
|
55859
|
+
operator: OPEN
|
55860
|
+
permissions: []
|
55861
|
+
/api/v2/metrics/{metric_name}/tag-cardinalities:
|
53164
55862
|
get:
|
53165
|
-
description: Returns the
|
53166
|
-
|
53167
|
-
Limits™.
|
53168
|
-
operationId: EstimateMetricsOutputSeries
|
55863
|
+
description: Returns the cardinality details of tags for a specific metric.
|
55864
|
+
operationId: GetMetricTagCardinalityDetails
|
53169
55865
|
parameters:
|
53170
55866
|
- $ref: '#/components/parameters/MetricName'
|
53171
|
-
- description: Filtered tag keys that the metric is configured to query with.
|
53172
|
-
example: app,host
|
53173
|
-
in: query
|
53174
|
-
name: filter[groups]
|
53175
|
-
required: false
|
53176
|
-
schema:
|
53177
|
-
type: string
|
53178
|
-
- description: The number of hours of look back (from now) to estimate cardinality
|
53179
|
-
with. If unspecified, it defaults to 0 hours.
|
53180
|
-
example: 49
|
53181
|
-
in: query
|
53182
|
-
name: filter[hours_ago]
|
53183
|
-
required: false
|
53184
|
-
schema:
|
53185
|
-
format: int32
|
53186
|
-
maximum: 2147483647
|
53187
|
-
minimum: 49
|
53188
|
-
type: integer
|
53189
|
-
- description: Deprecated. Number of aggregations has no impact on volume.
|
53190
|
-
example: 1
|
53191
|
-
in: query
|
53192
|
-
name: filter[num_aggregations]
|
53193
|
-
required: false
|
53194
|
-
schema:
|
53195
|
-
format: int32
|
53196
|
-
maximum: 9
|
53197
|
-
type: integer
|
53198
|
-
- description: A boolean, for distribution metrics only, to estimate cardinality
|
53199
|
-
if the metric includes additional percentile aggregators.
|
53200
|
-
example: true
|
53201
|
-
in: query
|
53202
|
-
name: filter[pct]
|
53203
|
-
required: false
|
53204
|
-
schema:
|
53205
|
-
type: boolean
|
53206
|
-
- description: A window, in hours, from the look back to estimate cardinality
|
53207
|
-
with. The minimum and default is 1 hour.
|
53208
|
-
example: 6
|
53209
|
-
in: query
|
53210
|
-
name: filter[timespan_h]
|
53211
|
-
required: false
|
53212
|
-
schema:
|
53213
|
-
format: int32
|
53214
|
-
maximum: 2147483647
|
53215
|
-
type: integer
|
53216
55867
|
responses:
|
53217
55868
|
'200':
|
53218
55869
|
content:
|
53219
55870
|
application/json:
|
53220
55871
|
schema:
|
53221
|
-
$ref: '#/components/schemas/
|
55872
|
+
$ref: '#/components/schemas/MetricTagCardinalitiesResponse'
|
53222
55873
|
description: Success
|
53223
55874
|
'400':
|
53224
55875
|
content:
|
53225
55876
|
application/json:
|
53226
55877
|
schema:
|
53227
55878
|
$ref: '#/components/schemas/APIErrorResponse'
|
53228
|
-
description:
|
55879
|
+
description: Bad Request
|
53229
55880
|
'403':
|
53230
55881
|
content:
|
53231
55882
|
application/json:
|
53232
55883
|
schema:
|
53233
55884
|
$ref: '#/components/schemas/APIErrorResponse'
|
53234
|
-
description:
|
55885
|
+
description: Forbidden
|
53235
55886
|
'404':
|
53236
55887
|
content:
|
53237
55888
|
application/json:
|
53238
55889
|
schema:
|
53239
55890
|
$ref: '#/components/schemas/APIErrorResponse'
|
53240
|
-
description:
|
55891
|
+
description: Not Found
|
53241
55892
|
'429':
|
53242
55893
|
content:
|
53243
55894
|
application/json:
|
53244
55895
|
schema:
|
53245
55896
|
$ref: '#/components/schemas/APIErrorResponse'
|
53246
55897
|
description: Too Many Requests
|
53247
|
-
summary:
|
55898
|
+
summary: Get tag key cardinality details
|
53248
55899
|
tags:
|
53249
55900
|
- Metrics
|
53250
55901
|
x-permission:
|
53251
|
-
operator:
|
53252
|
-
permissions:
|
55902
|
+
operator: OR
|
55903
|
+
permissions:
|
55904
|
+
- metrics_read
|
53253
55905
|
/api/v2/metrics/{metric_name}/tags:
|
53254
55906
|
delete:
|
53255
55907
|
description: 'Deletes a metric''s tag configuration. Can only be used with application
|
@@ -53572,11 +56224,6 @@ paths:
|
|
53572
56224
|
description: Forbidden
|
53573
56225
|
'429':
|
53574
56226
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
53575
|
-
security:
|
53576
|
-
- apiKeyAuth: []
|
53577
|
-
appKeyAuth: []
|
53578
|
-
- AuthZ:
|
53579
|
-
- monitor_config_policy_write
|
53580
56227
|
summary: Create a monitor notification rule
|
53581
56228
|
tags:
|
53582
56229
|
- Monitors
|
@@ -53612,11 +56259,6 @@ paths:
|
|
53612
56259
|
description: Not Found
|
53613
56260
|
'429':
|
53614
56261
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
53615
|
-
security:
|
53616
|
-
- apiKeyAuth: []
|
53617
|
-
appKeyAuth: []
|
53618
|
-
- AuthZ:
|
53619
|
-
- monitor_config_policy_write
|
53620
56262
|
summary: Delete a monitor notification rule
|
53621
56263
|
tags:
|
53622
56264
|
- Monitors
|
@@ -53721,11 +56363,6 @@ paths:
|
|
53721
56363
|
description: Not Found
|
53722
56364
|
'429':
|
53723
56365
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
53724
|
-
security:
|
53725
|
-
- apiKeyAuth: []
|
53726
|
-
appKeyAuth: []
|
53727
|
-
- AuthZ:
|
53728
|
-
- monitor_config_policy_write
|
53729
56366
|
summary: Update a monitor notification rule
|
53730
56367
|
tags:
|
53731
56368
|
- Monitors
|
@@ -53964,6 +56601,10 @@ paths:
|
|
53964
56601
|
summary: Get all monitor user templates
|
53965
56602
|
tags:
|
53966
56603
|
- Monitors
|
56604
|
+
x-permission:
|
56605
|
+
operator: OR
|
56606
|
+
permissions:
|
56607
|
+
- monitors_read
|
53967
56608
|
x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
|
53968
56609
|
|
53969
56610
|
contact [Datadog support](https://docs.datadoghq.com/help/).'
|
@@ -53991,14 +56632,13 @@ paths:
|
|
53991
56632
|
description: Bad Request
|
53992
56633
|
'429':
|
53993
56634
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
53994
|
-
security:
|
53995
|
-
- apiKeyAuth: []
|
53996
|
-
appKeyAuth: []
|
53997
|
-
- AuthZ:
|
53998
|
-
- monitor_config_policy_write
|
53999
56635
|
summary: Create a monitor user template
|
54000
56636
|
tags:
|
54001
56637
|
- Monitors
|
56638
|
+
x-permission:
|
56639
|
+
operator: OR
|
56640
|
+
permissions:
|
56641
|
+
- monitor_config_policy_write
|
54002
56642
|
x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
|
54003
56643
|
|
54004
56644
|
contact [Datadog support](https://docs.datadoghq.com/help/).'
|
@@ -54023,14 +56663,13 @@ paths:
|
|
54023
56663
|
description: Bad Request
|
54024
56664
|
'429':
|
54025
56665
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
54026
|
-
security:
|
54027
|
-
- apiKeyAuth: []
|
54028
|
-
appKeyAuth: []
|
54029
|
-
- AuthZ:
|
54030
|
-
- monitor_config_policy_write
|
54031
56666
|
summary: Validate a monitor user template
|
54032
56667
|
tags:
|
54033
56668
|
- Monitors
|
56669
|
+
x-permission:
|
56670
|
+
operator: OR
|
56671
|
+
permissions:
|
56672
|
+
- monitor_config_policy_write
|
54034
56673
|
x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
|
54035
56674
|
|
54036
56675
|
contact [Datadog support](https://docs.datadoghq.com/help/).'
|
@@ -54056,14 +56695,13 @@ paths:
|
|
54056
56695
|
description: Not Found
|
54057
56696
|
'429':
|
54058
56697
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
54059
|
-
security:
|
54060
|
-
- apiKeyAuth: []
|
54061
|
-
appKeyAuth: []
|
54062
|
-
- AuthZ:
|
54063
|
-
- monitor_config_policy_write
|
54064
56698
|
summary: Delete a monitor user template
|
54065
56699
|
tags:
|
54066
56700
|
- Monitors
|
56701
|
+
x-permission:
|
56702
|
+
operator: OR
|
56703
|
+
permissions:
|
56704
|
+
- monitor_config_policy_write
|
54067
56705
|
x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
|
54068
56706
|
|
54069
56707
|
contact [Datadog support](https://docs.datadoghq.com/help/).'
|
@@ -54109,6 +56747,10 @@ paths:
|
|
54109
56747
|
summary: Get a monitor user template
|
54110
56748
|
tags:
|
54111
56749
|
- Monitors
|
56750
|
+
x-permission:
|
56751
|
+
operator: OR
|
56752
|
+
permissions:
|
56753
|
+
- monitors_read
|
54112
56754
|
x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
|
54113
56755
|
|
54114
56756
|
contact [Datadog support](https://docs.datadoghq.com/help/).'
|
@@ -54149,14 +56791,13 @@ paths:
|
|
54149
56791
|
description: Not Found
|
54150
56792
|
'429':
|
54151
56793
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
54152
|
-
security:
|
54153
|
-
- apiKeyAuth: []
|
54154
|
-
appKeyAuth: []
|
54155
|
-
- AuthZ:
|
54156
|
-
- monitor_config_policy_write
|
54157
56794
|
summary: Update a monitor user template to a new version
|
54158
56795
|
tags:
|
54159
56796
|
- Monitors
|
56797
|
+
x-permission:
|
56798
|
+
operator: OR
|
56799
|
+
permissions:
|
56800
|
+
- monitor_config_policy_write
|
54160
56801
|
x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
|
54161
56802
|
|
54162
56803
|
contact [Datadog support](https://docs.datadoghq.com/help/).'
|
@@ -54196,14 +56837,13 @@ paths:
|
|
54196
56837
|
description: Not Found
|
54197
56838
|
'429':
|
54198
56839
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
54199
|
-
security:
|
54200
|
-
- apiKeyAuth: []
|
54201
|
-
appKeyAuth: []
|
54202
|
-
- AuthZ:
|
54203
|
-
- monitor_config_policy_write
|
54204
56840
|
summary: Validate an existing monitor user template
|
54205
56841
|
tags:
|
54206
56842
|
- Monitors
|
56843
|
+
x-permission:
|
56844
|
+
operator: OR
|
56845
|
+
permissions:
|
56846
|
+
- monitor_config_policy_write
|
54207
56847
|
x-unstable: '**Note**: This endpoint is in Preview. If you have any feedback,
|
54208
56848
|
|
54209
56849
|
contact [Datadog support](https://docs.datadoghq.com/help/).'
|
@@ -54447,7 +57087,8 @@ paths:
|
|
54447
57087
|
schema:
|
54448
57088
|
format: int64
|
54449
57089
|
type: integer
|
54450
|
-
- description: Comma-separated list of fields to group connections by.
|
57090
|
+
- description: Comma-separated list of fields to group connections by. The maximum
|
57091
|
+
number of group_by(s) is 10.
|
54451
57092
|
in: query
|
54452
57093
|
name: group_by
|
54453
57094
|
schema:
|
@@ -54458,13 +57099,13 @@ paths:
|
|
54458
57099
|
schema:
|
54459
57100
|
type: string
|
54460
57101
|
- description: The number of connections to be returned. The maximum value is
|
54461
|
-
|
57102
|
+
7500. The default is 100.
|
54462
57103
|
in: query
|
54463
57104
|
name: limit
|
54464
57105
|
schema:
|
54465
57106
|
default: 100
|
54466
57107
|
format: int32
|
54467
|
-
maximum:
|
57108
|
+
maximum: 7500
|
54468
57109
|
minimum: 1
|
54469
57110
|
type: integer
|
54470
57111
|
responses:
|
@@ -54481,9 +57122,66 @@ paths:
|
|
54481
57122
|
summary: Get all aggregated connections
|
54482
57123
|
tags:
|
54483
57124
|
- Cloud Network Monitoring
|
54484
|
-
|
54485
|
-
|
54486
|
-
|
57125
|
+
/api/v2/network/dns/aggregate:
|
57126
|
+
get:
|
57127
|
+
description: Get all aggregated DNS traffic.
|
57128
|
+
operationId: GetAggregatedDns
|
57129
|
+
parameters:
|
57130
|
+
- description: Unix timestamp (number of seconds since epoch) of the start of
|
57131
|
+
the query window. If not provided, the start of the query window is 15 minutes
|
57132
|
+
before the `to` timestamp. If neither `from` nor `to` are provided, the
|
57133
|
+
query window is `[now - 15m, now]`.
|
57134
|
+
in: query
|
57135
|
+
name: from
|
57136
|
+
schema:
|
57137
|
+
format: int64
|
57138
|
+
type: integer
|
57139
|
+
- description: Unix timestamp (number of seconds since epoch) of the end of
|
57140
|
+
the query window. If not provided, the end of the query window is the current
|
57141
|
+
time. If neither `from` nor `to` are provided, the query window is `[now
|
57142
|
+
- 15m, now]`.
|
57143
|
+
in: query
|
57144
|
+
name: to
|
57145
|
+
schema:
|
57146
|
+
format: int64
|
57147
|
+
type: integer
|
57148
|
+
- description: Comma-separated list of fields to group DNS traffic by. The server
|
57149
|
+
side defaults to `network.dns_query` if unspecified. `server_ungrouped`
|
57150
|
+
may be used if groups are not desired. The maximum number of group_by(s)
|
57151
|
+
is 10.
|
57152
|
+
in: query
|
57153
|
+
name: group_by
|
57154
|
+
schema:
|
57155
|
+
type: string
|
57156
|
+
- description: Comma-separated list of tags to filter DNS traffic by.
|
57157
|
+
in: query
|
57158
|
+
name: tags
|
57159
|
+
schema:
|
57160
|
+
type: string
|
57161
|
+
- description: The number of aggregated DNS entries to be returned. The maximum
|
57162
|
+
value is 7500. The default is 100.
|
57163
|
+
in: query
|
57164
|
+
name: limit
|
57165
|
+
schema:
|
57166
|
+
default: 100
|
57167
|
+
format: int32
|
57168
|
+
maximum: 7500
|
57169
|
+
minimum: 1
|
57170
|
+
type: integer
|
57171
|
+
responses:
|
57172
|
+
'200':
|
57173
|
+
content:
|
57174
|
+
application/json:
|
57175
|
+
schema:
|
57176
|
+
$ref: '#/components/schemas/SingleAggregatedDnsResponseArray'
|
57177
|
+
description: OK
|
57178
|
+
'400':
|
57179
|
+
$ref: '#/components/responses/BadRequestResponse'
|
57180
|
+
'429':
|
57181
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
57182
|
+
summary: Get all aggregated DNS traffic
|
57183
|
+
tags:
|
57184
|
+
- Cloud Network Monitoring
|
54487
57185
|
/api/v2/on-call/escalation-policies:
|
54488
57186
|
post:
|
54489
57187
|
description: Create a new On-Call escalation policy
|
@@ -54689,6 +57387,7 @@ paths:
|
|
54689
57387
|
default: navy.oncall.datadoghq.com
|
54690
57388
|
description: The globally available endpoint for On-Call.
|
54691
57389
|
enum:
|
57390
|
+
- lava.oncall.datadoghq.com
|
54692
57391
|
- saffron.oncall.datadoghq.com
|
54693
57392
|
- navy.oncall.datadoghq.com
|
54694
57393
|
- coral.oncall.datadoghq.com
|
@@ -54744,6 +57443,7 @@ paths:
|
|
54744
57443
|
default: navy.oncall.datadoghq.com
|
54745
57444
|
description: The globally available endpoint for On-Call.
|
54746
57445
|
enum:
|
57446
|
+
- lava.oncall.datadoghq.com
|
54747
57447
|
- saffron.oncall.datadoghq.com
|
54748
57448
|
- navy.oncall.datadoghq.com
|
54749
57449
|
- coral.oncall.datadoghq.com
|
@@ -54799,6 +57499,7 @@ paths:
|
|
54799
57499
|
default: navy.oncall.datadoghq.com
|
54800
57500
|
description: The globally available endpoint for On-Call.
|
54801
57501
|
enum:
|
57502
|
+
- lava.oncall.datadoghq.com
|
54802
57503
|
- saffron.oncall.datadoghq.com
|
54803
57504
|
- navy.oncall.datadoghq.com
|
54804
57505
|
- coral.oncall.datadoghq.com
|
@@ -54854,6 +57555,7 @@ paths:
|
|
54854
57555
|
default: navy.oncall.datadoghq.com
|
54855
57556
|
description: The globally available endpoint for On-Call.
|
54856
57557
|
enum:
|
57558
|
+
- lava.oncall.datadoghq.com
|
54857
57559
|
- saffron.oncall.datadoghq.com
|
54858
57560
|
- navy.oncall.datadoghq.com
|
54859
57561
|
- coral.oncall.datadoghq.com
|
@@ -55373,12 +58075,13 @@ paths:
|
|
55373
58075
|
following fields are available for findings:\n- `external_id`: The resource
|
55374
58076
|
external ID related to the finding.\n- `description`: The description and
|
55375
58077
|
remediation steps for the finding.\n- `datadog_link`: The Datadog relative
|
55376
|
-
link for the finding.\n
|
55377
|
-
|
55378
|
-
|
55379
|
-
|
55380
|
-
|
55381
|
-
|
58078
|
+
link for the finding.\n- `ip_addresses`: The list of private IP addresses
|
58079
|
+
for the resource related to the finding.\n\n### Response\n\nThe response includes
|
58080
|
+
an array of finding objects, pagination metadata, and a count of items that
|
58081
|
+
match the query.\n\nEach finding object contains the following:\n\n- The finding
|
58082
|
+
ID that can be used in a `GetFinding` request to retrieve the full finding
|
58083
|
+
details.\n- Core attributes, including status, evaluation, high-level resource
|
58084
|
+
details, muted state, and rule details.\n- `evaluation_changed_at` and `resource_discovery_date`
|
55382
58085
|
time stamps.\n- An array of associated tags.\n"
|
55383
58086
|
operationId: ListFindings
|
55384
58087
|
parameters:
|
@@ -55449,6 +58152,12 @@ paths:
|
|
55449
58152
|
required: false
|
55450
58153
|
schema:
|
55451
58154
|
type: string
|
58155
|
+
- description: Return only findings for the specified resource id.
|
58156
|
+
in: query
|
58157
|
+
name: filter[@resource_id]
|
58158
|
+
required: false
|
58159
|
+
schema:
|
58160
|
+
type: string
|
55452
58161
|
- description: Return findings that were found on a specified date (Unix ms)
|
55453
58162
|
or date range (using comparison operators).
|
55454
58163
|
example: '>=1678721573794'
|
@@ -56875,8 +59584,6 @@ paths:
|
|
56875
59584
|
|
56876
59585
|
- Dashboards: `dashboard`
|
56877
59586
|
|
56878
|
-
- Integration Accounts: `integration-account`
|
56879
|
-
|
56880
59587
|
- Integration Services: `integration-service`
|
56881
59588
|
|
56882
59589
|
- Integration Webhooks: `integration-webhook`
|
@@ -56913,6 +59620,12 @@ paths:
|
|
56913
59620
|
|
56914
59621
|
- Spreadsheets: `spreadsheet`
|
56915
59622
|
|
59623
|
+
- On-Call Schedules: `on-call-schedule`
|
59624
|
+
|
59625
|
+
- On-Call Escalation Policies: `on-call-escalation-policy`
|
59626
|
+
|
59627
|
+
- On-Call Team Routing Rules: `on-call-team-routing-rules`
|
59628
|
+
|
56916
59629
|
|
56917
59630
|
#### Supported relations for resources
|
56918
59631
|
|
@@ -56922,8 +59635,6 @@ paths:
|
|
56922
59635
|
|
56923
59636
|
Dashboards | `viewer`, `editor`
|
56924
59637
|
|
56925
|
-
Integration Accounts | `viewer`, `editor`
|
56926
|
-
|
56927
59638
|
Integration Services | `viewer`, `editor`
|
56928
59639
|
|
56929
59640
|
Integration Webhooks | `viewer`, `editor`
|
@@ -56958,7 +59669,13 @@ paths:
|
|
56958
59669
|
|
56959
59670
|
Cross Org Connections | `viewer`, `editor`
|
56960
59671
|
|
56961
|
-
Spreadsheets | `viewer`, `editor`
|
59672
|
+
Spreadsheets | `viewer`, `editor`
|
59673
|
+
|
59674
|
+
On-Call Schedules | `viewer`, `overrider`, `editor`
|
59675
|
+
|
59676
|
+
On-Call Escalation Policies | `viewer`, `editor`
|
59677
|
+
|
59678
|
+
On-Call Team Routing Rules | `viewer`, `editor`'
|
56962
59679
|
operationId: UpdateRestrictionPolicy
|
56963
59680
|
parameters:
|
56964
59681
|
- $ref: '#/components/parameters/ResourceID'
|
@@ -57604,17 +60321,14 @@ paths:
|
|
57604
60321
|
$ref: '#/components/responses/NotAuthorizedResponse'
|
57605
60322
|
'429':
|
57606
60323
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
57607
|
-
security:
|
57608
|
-
- apiKeyAuth: []
|
57609
|
-
appKeyAuth: []
|
57610
|
-
- AuthZ: []
|
57611
60324
|
summary: Aggregate RUM events
|
57612
60325
|
tags:
|
57613
60326
|
- RUM
|
57614
60327
|
x-codegen-request-body-name: body
|
57615
60328
|
x-permission:
|
57616
|
-
operator:
|
57617
|
-
permissions:
|
60329
|
+
operator: OR
|
60330
|
+
permissions:
|
60331
|
+
- rum_apps_read
|
57618
60332
|
/api/v2/rum/applications:
|
57619
60333
|
get:
|
57620
60334
|
description: List all the RUM applications in your organization.
|
@@ -58120,10 +60834,6 @@ paths:
|
|
58120
60834
|
$ref: '#/components/responses/NotAuthorizedResponse'
|
58121
60835
|
'429':
|
58122
60836
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
58123
|
-
security:
|
58124
|
-
- apiKeyAuth: []
|
58125
|
-
appKeyAuth: []
|
58126
|
-
- AuthZ: []
|
58127
60837
|
summary: Get a list of RUM events
|
58128
60838
|
tags:
|
58129
60839
|
- RUM
|
@@ -58133,8 +60843,9 @@ paths:
|
|
58133
60843
|
limitParam: page[limit]
|
58134
60844
|
resultsPath: data
|
58135
60845
|
x-permission:
|
58136
|
-
operator:
|
58137
|
-
permissions:
|
60846
|
+
operator: OR
|
60847
|
+
permissions:
|
60848
|
+
- rum_apps_read
|
58138
60849
|
/api/v2/rum/events/search:
|
58139
60850
|
post:
|
58140
60851
|
description: 'List endpoint returns RUM events that match a RUM search query.
|
@@ -58166,10 +60877,6 @@ paths:
|
|
58166
60877
|
$ref: '#/components/responses/NotAuthorizedResponse'
|
58167
60878
|
'429':
|
58168
60879
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
58169
|
-
security:
|
58170
|
-
- apiKeyAuth: []
|
58171
|
-
appKeyAuth: []
|
58172
|
-
- AuthZ: []
|
58173
60880
|
summary: Search RUM events
|
58174
60881
|
tags:
|
58175
60882
|
- RUM
|
@@ -58180,8 +60887,9 @@ paths:
|
|
58180
60887
|
limitParam: body.page.limit
|
58181
60888
|
resultsPath: data
|
58182
60889
|
x-permission:
|
58183
|
-
operator:
|
58184
|
-
permissions:
|
60890
|
+
operator: OR
|
60891
|
+
permissions:
|
60892
|
+
- rum_apps_read
|
58185
60893
|
/api/v2/saml_configurations/idp_metadata:
|
58186
60894
|
post:
|
58187
60895
|
description: 'Endpoint for uploading IdP metadata for SAML setup.
|
@@ -58723,8 +61431,6 @@ paths:
|
|
58723
61431
|
security:
|
58724
61432
|
- apiKeyAuth: []
|
58725
61433
|
appKeyAuth: []
|
58726
|
-
- AuthZ:
|
58727
|
-
- appsec_vm_read
|
58728
61434
|
summary: List vulnerable assets
|
58729
61435
|
tags:
|
58730
61436
|
- Security Monitoring
|
@@ -58882,8 +61588,6 @@ paths:
|
|
58882
61588
|
security:
|
58883
61589
|
- apiKeyAuth: []
|
58884
61590
|
appKeyAuth: []
|
58885
|
-
- AuthZ:
|
58886
|
-
- appsec_vm_read
|
58887
61591
|
summary: List assets SBOMs
|
58888
61592
|
tags:
|
58889
61593
|
- Security Monitoring
|
@@ -58950,8 +61654,6 @@ paths:
|
|
58950
61654
|
security:
|
58951
61655
|
- apiKeyAuth: []
|
58952
61656
|
appKeyAuth: []
|
58953
|
-
- AuthZ:
|
58954
|
-
- appsec_vm_read
|
58955
61657
|
summary: Get SBOM
|
58956
61658
|
tags:
|
58957
61659
|
- Security Monitoring
|
@@ -58972,8 +61674,6 @@ paths:
|
|
58972
61674
|
security:
|
58973
61675
|
- apiKeyAuth: []
|
58974
61676
|
appKeyAuth: []
|
58975
|
-
- AuthZ:
|
58976
|
-
- security_monitoring_notification_profiles_read
|
58977
61677
|
summary: Get the list of signal-based notification rules
|
58978
61678
|
tags:
|
58979
61679
|
- Security Monitoring
|
@@ -59014,8 +61714,6 @@ paths:
|
|
59014
61714
|
security:
|
59015
61715
|
- apiKeyAuth: []
|
59016
61716
|
appKeyAuth: []
|
59017
|
-
- AuthZ:
|
59018
|
-
- security_monitoring_notification_profiles_write
|
59019
61717
|
summary: Create a new signal-based notification rule
|
59020
61718
|
tags:
|
59021
61719
|
- Security Monitoring
|
@@ -59047,8 +61745,6 @@ paths:
|
|
59047
61745
|
security:
|
59048
61746
|
- apiKeyAuth: []
|
59049
61747
|
appKeyAuth: []
|
59050
|
-
- AuthZ:
|
59051
|
-
- security_monitoring_notification_profiles_write
|
59052
61748
|
summary: Delete a signal-based notification rule
|
59053
61749
|
tags:
|
59054
61750
|
- Security Monitoring
|
@@ -59084,8 +61780,6 @@ paths:
|
|
59084
61780
|
security:
|
59085
61781
|
- apiKeyAuth: []
|
59086
61782
|
appKeyAuth: []
|
59087
|
-
- AuthZ:
|
59088
|
-
- security_monitoring_notification_profiles_read
|
59089
61783
|
summary: Get details of a signal-based notification rule
|
59090
61784
|
tags:
|
59091
61785
|
- Security Monitoring
|
@@ -59130,8 +61824,6 @@ paths:
|
|
59130
61824
|
security:
|
59131
61825
|
- apiKeyAuth: []
|
59132
61826
|
appKeyAuth: []
|
59133
|
-
- AuthZ:
|
59134
|
-
- security_monitoring_notification_profiles_write
|
59135
61827
|
summary: Patch a signal-based notification rule
|
59136
61828
|
tags:
|
59137
61829
|
- Security Monitoring
|
@@ -59527,8 +62219,6 @@ paths:
|
|
59527
62219
|
security:
|
59528
62220
|
- apiKeyAuth: []
|
59529
62221
|
appKeyAuth: []
|
59530
|
-
- AuthZ:
|
59531
|
-
- appsec_vm_read
|
59532
62222
|
summary: List vulnerabilities
|
59533
62223
|
tags:
|
59534
62224
|
- Security Monitoring
|
@@ -59549,8 +62239,6 @@ paths:
|
|
59549
62239
|
security:
|
59550
62240
|
- apiKeyAuth: []
|
59551
62241
|
appKeyAuth: []
|
59552
|
-
- AuthZ:
|
59553
|
-
- security_monitoring_notification_profiles_read
|
59554
62242
|
summary: Get the list of vulnerability notification rules
|
59555
62243
|
tags:
|
59556
62244
|
- Security Monitoring
|
@@ -59591,8 +62279,6 @@ paths:
|
|
59591
62279
|
security:
|
59592
62280
|
- apiKeyAuth: []
|
59593
62281
|
appKeyAuth: []
|
59594
|
-
- AuthZ:
|
59595
|
-
- security_monitoring_notification_profiles_write
|
59596
62282
|
summary: Create a new vulnerability-based notification rule
|
59597
62283
|
tags:
|
59598
62284
|
- Security Monitoring
|
@@ -59624,8 +62310,6 @@ paths:
|
|
59624
62310
|
security:
|
59625
62311
|
- apiKeyAuth: []
|
59626
62312
|
appKeyAuth: []
|
59627
|
-
- AuthZ:
|
59628
|
-
- security_monitoring_notification_profiles_write
|
59629
62313
|
summary: Delete a vulnerability-based notification rule
|
59630
62314
|
tags:
|
59631
62315
|
- Security Monitoring
|
@@ -59661,8 +62345,6 @@ paths:
|
|
59661
62345
|
security:
|
59662
62346
|
- apiKeyAuth: []
|
59663
62347
|
appKeyAuth: []
|
59664
|
-
- AuthZ:
|
59665
|
-
- security_monitoring_notification_profiles_read
|
59666
62348
|
summary: Get details of a vulnerability notification rule
|
59667
62349
|
tags:
|
59668
62350
|
- Security Monitoring
|
@@ -59707,8 +62389,6 @@ paths:
|
|
59707
62389
|
security:
|
59708
62390
|
- apiKeyAuth: []
|
59709
62391
|
appKeyAuth: []
|
59710
|
-
- AuthZ:
|
59711
|
-
- security_monitoring_notification_profiles_write
|
59712
62392
|
summary: Patch a vulnerability-based notification rule
|
59713
62393
|
tags:
|
59714
62394
|
- Security Monitoring
|
@@ -63845,15 +66525,13 @@ paths:
|
|
63845
66525
|
appKeyAuth: []
|
63846
66526
|
- AuthZ:
|
63847
66527
|
- usage_read
|
63848
|
-
- billing_read
|
63849
66528
|
summary: Get cost across multi-org account
|
63850
66529
|
tags:
|
63851
66530
|
- Usage Metering
|
63852
66531
|
x-permission:
|
63853
|
-
operator:
|
66532
|
+
operator: OR
|
63854
66533
|
permissions:
|
63855
66534
|
- usage_read
|
63856
|
-
- billing_read
|
63857
66535
|
/api/v2/usage/estimated_cost:
|
63858
66536
|
get:
|
63859
66537
|
description: 'Get estimated cost across multi-org and single root-org accounts.
|
@@ -63951,15 +66629,13 @@ paths:
|
|
63951
66629
|
appKeyAuth: []
|
63952
66630
|
- AuthZ:
|
63953
66631
|
- usage_read
|
63954
|
-
- billing_read
|
63955
66632
|
summary: Get estimated cost across your account
|
63956
66633
|
tags:
|
63957
66634
|
- Usage Metering
|
63958
66635
|
x-permission:
|
63959
|
-
operator:
|
66636
|
+
operator: OR
|
63960
66637
|
permissions:
|
63961
66638
|
- usage_read
|
63962
|
-
- billing_read
|
63963
66639
|
/api/v2/usage/historical_cost:
|
63964
66640
|
get:
|
63965
66641
|
description: 'Get historical cost across multi-org and single root-org accounts.
|
@@ -64034,15 +66710,13 @@ paths:
|
|
64034
66710
|
appKeyAuth: []
|
64035
66711
|
- AuthZ:
|
64036
66712
|
- usage_read
|
64037
|
-
- billing_read
|
64038
66713
|
summary: Get historical cost across your account
|
64039
66714
|
tags:
|
64040
66715
|
- Usage Metering
|
64041
66716
|
x-permission:
|
64042
|
-
operator:
|
66717
|
+
operator: OR
|
64043
66718
|
permissions:
|
64044
66719
|
- usage_read
|
64045
|
-
- billing_read
|
64046
66720
|
/api/v2/usage/hourly_usage:
|
64047
66721
|
get:
|
64048
66722
|
description: Get hourly usage by product family.
|
@@ -64371,15 +67045,13 @@ paths:
|
|
64371
67045
|
appKeyAuth: []
|
64372
67046
|
- AuthZ:
|
64373
67047
|
- usage_read
|
64374
|
-
- billing_read
|
64375
67048
|
summary: Get projected cost across your account
|
64376
67049
|
tags:
|
64377
67050
|
- Usage Metering
|
64378
67051
|
x-permission:
|
64379
|
-
operator:
|
67052
|
+
operator: OR
|
64380
67053
|
permissions:
|
64381
67054
|
- usage_read
|
64382
|
-
- billing_read
|
64383
67055
|
/api/v2/user_invitations:
|
64384
67056
|
post:
|
64385
67057
|
description: Sends emails to one or more users inviting them to join the organization.
|
@@ -65316,7 +67988,8 @@ tags:
|
|
65316
67988
|
documentation](https://docs.datadoghq.com/cloud_cost_management/).
|
65317
67989
|
name: Cloud Cost Management
|
65318
67990
|
- description: The Cloud Network Monitoring API allows you to fetch aggregated connections
|
65319
|
-
and their attributes. See the [Cloud Network Monitoring page](https://docs.datadoghq.com/network_monitoring/cloud_network_monitoring/)
|
67991
|
+
and DNS traffic with their attributes. See the [Cloud Network Monitoring page](https://docs.datadoghq.com/network_monitoring/cloud_network_monitoring/)
|
67992
|
+
and [DNS Monitoring page](https://docs.datadoghq.com/network_monitoring/dns/)
|
65320
67993
|
for more information.
|
65321
67994
|
name: Cloud Network Monitoring
|
65322
67995
|
- description: Manage your Datadog Cloudflare integration directly through the Datadog
|
@@ -65427,13 +68100,18 @@ tags:
|
|
65427
68100
|
for more information.
|
65428
68101
|
name: Incidents
|
65429
68102
|
- description: 'Manage your Datadog API and application keys. You need an API key
|
65430
|
-
and
|
68103
|
+
and an
|
68104
|
+
|
68105
|
+
application key for a user with the required permissions to interact with these
|
68106
|
+
endpoints.
|
68107
|
+
|
68108
|
+
|
68109
|
+
Consult the following pages to view and manage your keys:
|
65431
68110
|
|
65432
|
-
an application key for a user with the required permissions to interact
|
65433
68111
|
|
65434
|
-
|
68112
|
+
- [API Keys](https://app.datadoghq.com/organization-settings/api-keys)
|
65435
68113
|
|
65436
|
-
|
68114
|
+
- [Application Keys](https://app.datadoghq.com/personal-settings/application-keys)'
|
65437
68115
|
externalDocs:
|
65438
68116
|
description: Find out more at
|
65439
68117
|
url: https://docs.datadoghq.com/account_management/api-app-keys/
|