datadog_api_client 2.47.0 → 2.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.generator/schemas/v1/openapi.yaml +96 -5
- data/.generator/schemas/v2/openapi.yaml +2453 -707
- data/CHANGELOG.md +20 -0
- data/examples/v2/incidents/CreateIncidentAttachment.rb +22 -0
- data/examples/v2/incidents/DeleteIncidentAttachment.rb +8 -0
- data/examples/v2/incidents/ListIncidentAttachments.rb +1 -1
- data/examples/v2/incidents/UpdateIncidentAttachment.rb +20 -0
- data/examples/v2/on-call/CreateUserNotificationRule.rb +29 -0
- data/examples/v2/on-call/DeleteUserNotificationRule.rb +11 -0
- data/examples/v2/on-call/GetUserNotificationRule.rb +14 -0
- data/examples/v2/on-call/ListUserNotificationRules.rb +11 -0
- data/examples/v2/on-call/UpdateUserNotificationRule.rb +36 -0
- data/examples/v2/product-analytics/SubmitProductAnalyticsEvent.rb +24 -0
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_2323193894.rb +48 -0
- data/examples/v2/synthetics/PatchGlobalVariable.rb +19 -0
- data/examples/v2/teams/CreateTeamNotificationRule.rb +23 -0
- data/examples/v2/teams/DeleteTeamConnections.rb +0 -3
- data/examples/v2/teams/DeleteTeamNotificationRule.rb +11 -0
- data/examples/v2/teams/GetTeamNotificationRule.rb +11 -0
- data/examples/v2/teams/GetTeamNotificationRules.rb +8 -0
- data/examples/v2/teams/GetTeamSync.rb +0 -3
- data/examples/v2/teams/ListTeamConnections.rb +0 -3
- data/examples/v2/teams/ListTeamConnections_2418873869.rb +0 -3
- data/examples/v2/teams/SyncTeams.rb +0 -3
- data/examples/v2/teams/SyncTeams_3215592344.rb +0 -3
- data/examples/v2/teams/UpdateTeamNotificationRule.rb +27 -0
- data/lib/datadog_api_client/configuration.rb +55 -6
- data/lib/datadog_api_client/inflector.rb +92 -20
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +3 -3
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +6 -4
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +3 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +6 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +61 -1
- data/lib/datadog_api_client/v1/models/synthetics_list_tests_response.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_details_without_steps.rb +221 -0
- data/lib/datadog_api_client/v2/api/dora_metrics_api.rb +8 -8
- data/lib/datadog_api_client/v2/api/incidents_api.rb +188 -36
- data/lib/datadog_api_client/v2/api/on_call_api.rb +360 -0
- data/lib/datadog_api_client/v2/api/product_analytics_api.rb +121 -0
- data/lib/datadog_api_client/v2/api/software_catalog_api.rb +4 -0
- data/lib/datadog_api_client/v2/api/synthetics_api.rb +79 -0
- data/lib/datadog_api_client/v2/api/teams_api.rb +339 -30
- data/lib/datadog_api_client/v2/models/attachment.rb +117 -0
- data/lib/datadog_api_client/v2/models/{incident_attachments_response.rb → attachment_array.rb} +7 -7
- data/lib/datadog_api_client/v2/models/{incident_attachment_data.rb → attachment_data.rb} +8 -8
- data/lib/datadog_api_client/v2/models/attachment_data_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/attachment_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_attachment_type.rb → attachment_data_attributes_attachment_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/{incident_attachment_relationships.rb → attachment_data_relationships.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_request.rb → attachment_data_relationships_last_modified_by_user.rb} +6 -11
- data/lib/datadog_api_client/v2/models/attachment_data_relationships_last_modified_by_user_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/{incident_attachments_response_included_item.rb → attachment_included.rb} +3 -3
- data/lib/datadog_api_client/v2/models/case_create_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/{dora_fetch_response.rb → create_attachment_request.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_data.rb → create_attachment_request_data.rb} +6 -6
- data/lib/datadog_api_client/v2/models/create_attachment_request_data_attributes.rb +115 -0
- data/lib/datadog_api_client/v2/models/create_attachment_request_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/create_on_call_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/create_on_call_notification_rule_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/custom_attribute_type.rb +1 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_fetch_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_object.rb +125 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_object_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/dora_deployments_list_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/dora_failure_fetch_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/dora_failure_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/{dora_list_response.rb → dora_failures_list_response.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{dora_event.rb → dora_incident_object.rb} +8 -8
- data/lib/datadog_api_client/v2/models/dora_incident_object_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/global_variable_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request_data_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/global_variable_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attachment_type.rb → global_variable_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/incident_response_included_item.rb +1 -1
- data/lib/datadog_api_client/v2/models/{incident_attachments_postmortem_attributes_attachment_object.rb → json_patch_operation.rb} +40 -30
- data/lib/datadog_api_client/v2/models/json_patch_operation_op.rb +31 -0
- data/lib/datadog_api_client/v2/models/list_on_call_notification_rules_response.rb +119 -0
- data/lib/datadog_api_client/v2/models/observability_pipeline_add_env_vars_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_add_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_config_processor_group.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_custom_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_datadog_tags_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_dedupe_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_enrichment_table_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_filter_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_generate_metrics_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_ocsf_mapper_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_grok_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_json_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_quota_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_reduce_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_remove_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_rename_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_sample_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_sensitive_data_scanner_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_response.rb → on_call_notification_rule.rb} +8 -11
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_category.rb +27 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship.rb +123 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_attributes.rb → on_call_notification_rule_channel_settings.rb} +3 -4
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_relationships.rb +105 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_request_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_attributes.rb → on_call_notification_rules_included.rb} +3 -4
- data/lib/datadog_api_client/v2/models/on_call_phone_notification_rule_method.rb +27 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attributes_attachment_object.rb → on_call_phone_notification_rule_settings.rb} +30 -30
- data/lib/datadog_api_client/v2/models/patch_attachment_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes.rb +105 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_error.rb +125 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_errors.rb +107 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item.rb +195 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_account.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_application.rb +124 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_event.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_session.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_usr.rb +123 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options.rb +155 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_bucket_duration.rb +32 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_detection_tolerance.rb +31 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_learning_duration.rb +32 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/synthetics_global_variable.rb +248 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_options.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_postmortem_attributes.rb → synthetics_global_variable_parse_test_options.rb} +44 -35
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parse_test_options_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parser_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attributes.rb → synthetics_global_variable_totp_parameters.rb} +38 -40
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_value.rb +126 -0
- data/lib/datadog_api_client/v2/models/synthetics_variable_parser.rb +133 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule.rb +154 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes.rb +135 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_email.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_ms_teams.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_pagerduty.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_slack.rb +115 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_postmortem_attachment_type.rb → team_notification_rule_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/team_notification_rules_response.rb +117 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response_meta.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response_meta_page.rb +184 -0
- data/lib/datadog_api_client/v2/models/threat_hunting_job_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/user140420082644000.rb +143 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_related_object.rb → user_type.rb} +2 -2
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +109 -24
- data/examples/v2/incidents/ListIncidentAttachments_2457735435.rb +0 -11
- data/examples/v2/incidents/UpdateIncidentAttachments.rb +0 -38
- data/examples/v2/incidents/UpdateIncidentAttachments_3881702075.rb +0 -26
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 527fb4059552a14f9aff565a7c2430b166d812f489a0a538550f86108d846b52
|
|
4
|
+
data.tar.gz: d843defe6ea2ea97563b033719d2fc2973e2e52eff87f725cb32144586980feb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a9c01c06f6b4724a3c6832422c7cdc233050565b59f14be8219c205a8f3bac1aae908f4160a1aee8e1fd111730b22bd5f66420d4c7c898932dd24afc5aeab5e
|
|
7
|
+
data.tar.gz: 91420bb8c1d47897b34ce5ec7365441ad34d44cde574a87f136cd8187521a4dab4c8005314174286fdd4be91240a4e4a22fe4d86d87ebde7e00b94aaddad3a5e
|
|
@@ -4281,6 +4281,7 @@ components:
|
|
|
4281
4281
|
- appsec_usage
|
|
4282
4282
|
- asm_serverless_traced_invocations_usage
|
|
4283
4283
|
- asm_serverless_traced_invocations_percentage
|
|
4284
|
+
- bits_ai_investigations_usage
|
|
4284
4285
|
- browser_usage
|
|
4285
4286
|
- ci_pipeline_indexed_spans_usage
|
|
4286
4287
|
- ci_test_indexed_spans_usage
|
|
@@ -4306,6 +4307,7 @@ components:
|
|
|
4306
4307
|
- estimated_indexed_spans_usage
|
|
4307
4308
|
- estimated_ingested_spans_usage
|
|
4308
4309
|
- fargate_usage
|
|
4310
|
+
- flex_stored_logs
|
|
4309
4311
|
- functions_usage
|
|
4310
4312
|
- incident_management_monthly_active_users_usage
|
|
4311
4313
|
- indexed_spans_usage
|
|
@@ -4315,6 +4317,7 @@ components:
|
|
|
4315
4317
|
- invocations_usage
|
|
4316
4318
|
- lambda_traced_invocations_usage
|
|
4317
4319
|
- llm_observability_usage
|
|
4320
|
+
- llm_spans_usage
|
|
4318
4321
|
- logs_indexed_15day_usage
|
|
4319
4322
|
- logs_indexed_180day_usage
|
|
4320
4323
|
- logs_indexed_1day_usage
|
|
@@ -4362,6 +4365,7 @@ components:
|
|
|
4362
4365
|
- APPSEC_USAGE
|
|
4363
4366
|
- ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE
|
|
4364
4367
|
- ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE
|
|
4368
|
+
- BITS_AI_INVESTIGATIONS_USAGE
|
|
4365
4369
|
- BROWSER_USAGE
|
|
4366
4370
|
- CI_PIPELINE_INDEXED_SPANS_USAGE
|
|
4367
4371
|
- CI_TEST_INDEXED_SPANS_USAGE
|
|
@@ -4387,6 +4391,7 @@ components:
|
|
|
4387
4391
|
- ESTIMATED_INDEXED_SPANS_USAGE
|
|
4388
4392
|
- ESTIMATED_INGESTED_SPANS_USAGE
|
|
4389
4393
|
- FARGATE_USAGE
|
|
4394
|
+
- FLEX_STORED_LOGS
|
|
4390
4395
|
- FUNCTIONS_USAGE
|
|
4391
4396
|
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
|
|
4392
4397
|
- INDEXED_SPANS_USAGE
|
|
@@ -4396,6 +4401,7 @@ components:
|
|
|
4396
4401
|
- INVOCATIONS_USAGE
|
|
4397
4402
|
- LAMBDA_TRACED_INVOCATIONS_USAGE
|
|
4398
4403
|
- LLM_OBSERVABILITY_USAGE
|
|
4404
|
+
- LLM_SPANS_USAGE
|
|
4399
4405
|
- LOGS_INDEXED_15DAY_USAGE
|
|
4400
4406
|
- LOGS_INDEXED_180DAY_USAGE
|
|
4401
4407
|
- LOGS_INDEXED_1DAY_USAGE
|
|
@@ -8698,6 +8704,8 @@ components:
|
|
|
8698
8704
|
- appsec_percentage
|
|
8699
8705
|
- asm_serverless_traced_invocations_usage
|
|
8700
8706
|
- asm_serverless_traced_invocations_percentage
|
|
8707
|
+
- bits_ai_investigations_usage
|
|
8708
|
+
- bits_ai_investigations_percentage
|
|
8701
8709
|
- browser_usage
|
|
8702
8710
|
- browser_percentage
|
|
8703
8711
|
- ci_visibility_itr_usage
|
|
@@ -8740,6 +8748,8 @@ components:
|
|
|
8740
8748
|
- estimated_ingested_spans_percentage
|
|
8741
8749
|
- fargate_usage
|
|
8742
8750
|
- fargate_percentage
|
|
8751
|
+
- flex_stored_logs_usage
|
|
8752
|
+
- flex_stored_logs_percentage
|
|
8743
8753
|
- functions_usage
|
|
8744
8754
|
- functions_percentage
|
|
8745
8755
|
- incident_management_monthly_active_users_usage
|
|
@@ -8752,6 +8762,8 @@ components:
|
|
|
8752
8762
|
- lambda_traced_invocations_percentage
|
|
8753
8763
|
- llm_observability_usage
|
|
8754
8764
|
- llm_observability_percentage
|
|
8765
|
+
- llm_spans_usage
|
|
8766
|
+
- llm_spans_percentage
|
|
8755
8767
|
- mobile_app_testing_percentage
|
|
8756
8768
|
- mobile_app_testing_usage
|
|
8757
8769
|
- ndm_netflow_usage
|
|
@@ -8855,6 +8867,8 @@ components:
|
|
|
8855
8867
|
- APPSEC_PERCENTAGE
|
|
8856
8868
|
- ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE
|
|
8857
8869
|
- ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE
|
|
8870
|
+
- BITS_AI_INVESTIGATIONS_USAGE
|
|
8871
|
+
- BITS_AI_INVESTIGATIONS_PERCENTAGE
|
|
8858
8872
|
- BROWSER_USAGE
|
|
8859
8873
|
- BROWSER_PERCENTAGE
|
|
8860
8874
|
- CI_VISIBILITY_ITR_USAGE
|
|
@@ -8897,6 +8911,8 @@ components:
|
|
|
8897
8911
|
- ESTIMATED_INGESTED_SPANS_PERCENTAGE
|
|
8898
8912
|
- FARGATE_USAGE
|
|
8899
8913
|
- FARGATE_PERCENTAGE
|
|
8914
|
+
- FLEX_STORED_LOGS_USAGE
|
|
8915
|
+
- FLEX_STORED_LOGS_PERCENTAGE
|
|
8900
8916
|
- FUNCTIONS_USAGE
|
|
8901
8917
|
- FUNCTIONS_PERCENTAGE
|
|
8902
8918
|
- INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE
|
|
@@ -8909,6 +8925,8 @@ components:
|
|
|
8909
8925
|
- LAMBDA_TRACED_INVOCATIONS_PERCENTAGE
|
|
8910
8926
|
- LLM_OBSERVABILITY_USAGE
|
|
8911
8927
|
- LLM_OBSERVABILITY_PERCENTAGE
|
|
8928
|
+
- LLM_SPANS_USAGE
|
|
8929
|
+
- LLM_SPANS_PERCENTAGE
|
|
8912
8930
|
- MOBILE_APP_TESTING_USAGE
|
|
8913
8931
|
- MOBILE_APP_TESTING_PERCENTAGE
|
|
8914
8932
|
- NDM_NETFLOW_USAGE
|
|
@@ -9064,6 +9082,14 @@ components:
|
|
|
9064
9082
|
usage by tag(s).
|
|
9065
9083
|
format: double
|
|
9066
9084
|
type: number
|
|
9085
|
+
bits_ai_investigations_percentage:
|
|
9086
|
+
description: The percentage of Bits AI `SRE` investigation usage by tag(s).
|
|
9087
|
+
format: double
|
|
9088
|
+
type: number
|
|
9089
|
+
bits_ai_investigations_usage:
|
|
9090
|
+
description: The Bits AI `SRE` investigation usage by tag(s).
|
|
9091
|
+
format: double
|
|
9092
|
+
type: number
|
|
9067
9093
|
browser_percentage:
|
|
9068
9094
|
description: The percentage of synthetic browser test usage by tag(s).
|
|
9069
9095
|
format: double
|
|
@@ -9256,6 +9282,14 @@ components:
|
|
|
9256
9282
|
description: The Fargate usage by tags.
|
|
9257
9283
|
format: double
|
|
9258
9284
|
type: number
|
|
9285
|
+
flex_stored_logs_percentage:
|
|
9286
|
+
description: The percentage of Flex Stored Logs usage by tags.
|
|
9287
|
+
format: double
|
|
9288
|
+
type: number
|
|
9289
|
+
flex_stored_logs_usage:
|
|
9290
|
+
description: The Flex Stored Logs usage by tags.
|
|
9291
|
+
format: double
|
|
9292
|
+
type: number
|
|
9259
9293
|
functions_percentage:
|
|
9260
9294
|
description: The percentage of Lambda function usage by tag(s).
|
|
9261
9295
|
format: double
|
|
@@ -9329,6 +9363,14 @@ components:
|
|
|
9329
9363
|
description: The LLM Observability usage by tag(s).
|
|
9330
9364
|
format: double
|
|
9331
9365
|
type: number
|
|
9366
|
+
llm_spans_percentage:
|
|
9367
|
+
description: The percentage of LLM Spans usage by tag(s).
|
|
9368
|
+
format: double
|
|
9369
|
+
type: number
|
|
9370
|
+
llm_spans_usage:
|
|
9371
|
+
description: The LLM Spans usage by tag(s).
|
|
9372
|
+
format: double
|
|
9373
|
+
type: number
|
|
9332
9374
|
logs_indexed_15day_percentage:
|
|
9333
9375
|
description: The percentage of Indexed Logs (15-day Retention) usage by
|
|
9334
9376
|
tag(s).
|
|
@@ -16540,7 +16582,7 @@ components:
|
|
|
16540
16582
|
tests:
|
|
16541
16583
|
description: Array of Synthetic tests configuration.
|
|
16542
16584
|
items:
|
|
16543
|
-
$ref: '#/components/schemas/
|
|
16585
|
+
$ref: '#/components/schemas/SyntheticsTestDetailsWithoutSteps'
|
|
16544
16586
|
type: array
|
|
16545
16587
|
type: object
|
|
16546
16588
|
SyntheticsLocalVariableParsingOptionsType:
|
|
@@ -17571,7 +17613,7 @@ components:
|
|
|
17571
17613
|
status:
|
|
17572
17614
|
$ref: '#/components/schemas/SyntheticsTestPauseStatus'
|
|
17573
17615
|
steps:
|
|
17574
|
-
description:
|
|
17616
|
+
description: The steps of the test if they exist.
|
|
17575
17617
|
items:
|
|
17576
17618
|
$ref: '#/components/schemas/SyntheticsStep'
|
|
17577
17619
|
type: array
|
|
@@ -17623,6 +17665,52 @@ components:
|
|
|
17623
17665
|
- API
|
|
17624
17666
|
- BROWSER
|
|
17625
17667
|
- MOBILE
|
|
17668
|
+
SyntheticsTestDetailsWithoutSteps:
|
|
17669
|
+
description: Object containing details about your Synthetic test, without test
|
|
17670
|
+
steps.
|
|
17671
|
+
properties:
|
|
17672
|
+
config:
|
|
17673
|
+
$ref: '#/components/schemas/SyntheticsTestConfig'
|
|
17674
|
+
creator:
|
|
17675
|
+
$ref: '#/components/schemas/Creator'
|
|
17676
|
+
locations:
|
|
17677
|
+
description: Array of locations used to run the test.
|
|
17678
|
+
example:
|
|
17679
|
+
- aws:eu-west-3
|
|
17680
|
+
items:
|
|
17681
|
+
description: A location from which the test was run.
|
|
17682
|
+
type: string
|
|
17683
|
+
type: array
|
|
17684
|
+
message:
|
|
17685
|
+
description: Notification message associated with the test.
|
|
17686
|
+
type: string
|
|
17687
|
+
monitor_id:
|
|
17688
|
+
description: The associated monitor ID.
|
|
17689
|
+
format: int64
|
|
17690
|
+
readOnly: true
|
|
17691
|
+
type: integer
|
|
17692
|
+
name:
|
|
17693
|
+
description: Name of the test.
|
|
17694
|
+
type: string
|
|
17695
|
+
options:
|
|
17696
|
+
$ref: '#/components/schemas/SyntheticsTestOptions'
|
|
17697
|
+
public_id:
|
|
17698
|
+
description: The test public ID.
|
|
17699
|
+
readOnly: true
|
|
17700
|
+
type: string
|
|
17701
|
+
status:
|
|
17702
|
+
$ref: '#/components/schemas/SyntheticsTestPauseStatus'
|
|
17703
|
+
subtype:
|
|
17704
|
+
$ref: '#/components/schemas/SyntheticsTestDetailsSubType'
|
|
17705
|
+
tags:
|
|
17706
|
+
description: Array of tags attached to the test.
|
|
17707
|
+
items:
|
|
17708
|
+
description: A tag attached to the test.
|
|
17709
|
+
type: string
|
|
17710
|
+
type: array
|
|
17711
|
+
type:
|
|
17712
|
+
$ref: '#/components/schemas/SyntheticsTestDetailsType'
|
|
17713
|
+
type: object
|
|
17626
17714
|
SyntheticsTestExecutionRule:
|
|
17627
17715
|
description: Execution rule for a Synthetic test.
|
|
17628
17716
|
enum:
|
|
@@ -35215,7 +35303,7 @@ paths:
|
|
|
35215
35303
|
content:
|
|
35216
35304
|
application/json:
|
|
35217
35305
|
schema:
|
|
35218
|
-
$ref: '#/components/schemas/
|
|
35306
|
+
$ref: '#/components/schemas/SyntheticsTestDetailsWithoutSteps'
|
|
35219
35307
|
description: OK
|
|
35220
35308
|
'403':
|
|
35221
35309
|
content:
|
|
@@ -36599,7 +36687,10 @@ paths:
|
|
|
36599
36687
|
code example:\n\n```\nresponse := GetHourlyUsageAttribution(start_month)\ncursor
|
|
36600
36688
|
:= response.metadata.pagination.next_record_id\nWHILE cursor != null BEGIN\n
|
|
36601
36689
|
\ sleep(5 seconds) # Avoid running into rate limit\n response := GetHourlyUsageAttribution(start_month,
|
|
36602
|
-
next_record_id=cursor)\n cursor := response.metadata.pagination.next_record_id\nEND\n
|
|
36690
|
+
next_record_id=cursor)\n cursor := response.metadata.pagination.next_record_id\nEND\n```\nThe
|
|
36691
|
+
following values have been **deprecated**:\n `estimated_indexed_spans_usage`,
|
|
36692
|
+
`estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`,
|
|
36693
|
+
`llm_observability_usage`, `llm_observability_percentage`."
|
|
36603
36694
|
operationId: GetHourlyUsageAttribution
|
|
36604
36695
|
parameters:
|
|
36605
36696
|
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
@@ -37178,7 +37269,7 @@ paths:
|
|
|
37178
37269
|
The following values have been **deprecated**:
|
|
37179
37270
|
|
|
37180
37271
|
`estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`,
|
|
37181
|
-
`estimated_ingested_spans_percentage`.'
|
|
37272
|
+
`estimated_ingested_spans_percentage`, `llm_observability_usage`, `llm_observability_percentage`.'
|
|
37182
37273
|
in: query
|
|
37183
37274
|
name: fields
|
|
37184
37275
|
required: true
|