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
|
@@ -727,6 +727,7 @@ module DatadogAPIClient
|
|
|
727
727
|
"v1.synthetics_test_details" => "SyntheticsTestDetails",
|
|
728
728
|
"v1.synthetics_test_details_sub_type" => "SyntheticsTestDetailsSubType",
|
|
729
729
|
"v1.synthetics_test_details_type" => "SyntheticsTestDetailsType",
|
|
730
|
+
"v1.synthetics_test_details_without_steps" => "SyntheticsTestDetailsWithoutSteps",
|
|
730
731
|
"v1.synthetics_test_execution_rule" => "SyntheticsTestExecutionRule",
|
|
731
732
|
"v1.synthetics_test_monitor_status" => "SyntheticsTestMonitorStatus",
|
|
732
733
|
"v1.synthetics_test_options" => "SyntheticsTestOptions",
|
|
@@ -1140,6 +1141,16 @@ module DatadogAPIClient
|
|
|
1140
1141
|
"v2.attach_jira_issue_request_data" => "AttachJiraIssueRequestData",
|
|
1141
1142
|
"v2.attach_jira_issue_request_data_attributes" => "AttachJiraIssueRequestDataAttributes",
|
|
1142
1143
|
"v2.attach_jira_issue_request_data_relationships" => "AttachJiraIssueRequestDataRelationships",
|
|
1144
|
+
"v2.attachment" => "Attachment",
|
|
1145
|
+
"v2.attachment_array" => "AttachmentArray",
|
|
1146
|
+
"v2.attachment_data" => "AttachmentData",
|
|
1147
|
+
"v2.attachment_data_attributes" => "AttachmentDataAttributes",
|
|
1148
|
+
"v2.attachment_data_attributes_attachment" => "AttachmentDataAttributesAttachment",
|
|
1149
|
+
"v2.attachment_data_attributes_attachment_type" => "AttachmentDataAttributesAttachmentType",
|
|
1150
|
+
"v2.attachment_data_relationships" => "AttachmentDataRelationships",
|
|
1151
|
+
"v2.attachment_data_relationships_last_modified_by_user" => "AttachmentDataRelationshipsLastModifiedByUser",
|
|
1152
|
+
"v2.attachment_data_relationships_last_modified_by_user_data" => "AttachmentDataRelationshipsLastModifiedByUserData",
|
|
1153
|
+
"v2.attachment_included" => "AttachmentIncluded",
|
|
1143
1154
|
"v2.audit_logs_event" => "AuditLogsEvent",
|
|
1144
1155
|
"v2.audit_logs_event_attributes" => "AuditLogsEventAttributes",
|
|
1145
1156
|
"v2.audit_logs_events_response" => "AuditLogsEventsResponse",
|
|
@@ -1687,6 +1698,10 @@ module DatadogAPIClient
|
|
|
1687
1698
|
"v2.create_apps_datastore_request_data_attributes_org_access" => "CreateAppsDatastoreRequestDataAttributesOrgAccess",
|
|
1688
1699
|
"v2.create_apps_datastore_response" => "CreateAppsDatastoreResponse",
|
|
1689
1700
|
"v2.create_apps_datastore_response_data" => "CreateAppsDatastoreResponseData",
|
|
1701
|
+
"v2.create_attachment_request" => "CreateAttachmentRequest",
|
|
1702
|
+
"v2.create_attachment_request_data" => "CreateAttachmentRequestData",
|
|
1703
|
+
"v2.create_attachment_request_data_attributes" => "CreateAttachmentRequestDataAttributes",
|
|
1704
|
+
"v2.create_attachment_request_data_attributes_attachment" => "CreateAttachmentRequestDataAttributesAttachment",
|
|
1690
1705
|
"v2.create_case_request_array" => "CreateCaseRequestArray",
|
|
1691
1706
|
"v2.create_case_request_data" => "CreateCaseRequestData",
|
|
1692
1707
|
"v2.create_case_request_data_attributes" => "CreateCaseRequestDataAttributes",
|
|
@@ -1721,6 +1736,8 @@ module DatadogAPIClient
|
|
|
1721
1736
|
"v2.create_notification_rule_parameters" => "CreateNotificationRuleParameters",
|
|
1722
1737
|
"v2.create_notification_rule_parameters_data" => "CreateNotificationRuleParametersData",
|
|
1723
1738
|
"v2.create_notification_rule_parameters_data_attributes" => "CreateNotificationRuleParametersDataAttributes",
|
|
1739
|
+
"v2.create_on_call_notification_rule_request" => "CreateOnCallNotificationRuleRequest",
|
|
1740
|
+
"v2.create_on_call_notification_rule_request_data" => "CreateOnCallNotificationRuleRequestData",
|
|
1724
1741
|
"v2.create_open_api_response" => "CreateOpenAPIResponse",
|
|
1725
1742
|
"v2.create_open_api_response_attributes" => "CreateOpenAPIResponseAttributes",
|
|
1726
1743
|
"v2.create_open_api_response_data" => "CreateOpenAPIResponseData",
|
|
@@ -1969,21 +1986,27 @@ module DatadogAPIClient
|
|
|
1969
1986
|
"v2.domain_allowlist_response_data" => "DomainAllowlistResponseData",
|
|
1970
1987
|
"v2.domain_allowlist_response_data_attributes" => "DomainAllowlistResponseDataAttributes",
|
|
1971
1988
|
"v2.domain_allowlist_type" => "DomainAllowlistType",
|
|
1989
|
+
"v2.dora_deployment_fetch_response" => "DORADeploymentFetchResponse",
|
|
1990
|
+
"v2.dora_deployment_object" => "DORADeploymentObject",
|
|
1991
|
+
"v2.dora_deployment_object_attributes" => "DORADeploymentObjectAttributes",
|
|
1972
1992
|
"v2.dora_deployment_request" => "DORADeploymentRequest",
|
|
1973
1993
|
"v2.dora_deployment_request_attributes" => "DORADeploymentRequestAttributes",
|
|
1974
1994
|
"v2.dora_deployment_request_data" => "DORADeploymentRequestData",
|
|
1975
1995
|
"v2.dora_deployment_response" => "DORADeploymentResponse",
|
|
1976
1996
|
"v2.dora_deployment_response_data" => "DORADeploymentResponseData",
|
|
1997
|
+
"v2.dora_deployments_list_response" => "DORADeploymentsListResponse",
|
|
1977
1998
|
"v2.dora_deployment_type" => "DORADeploymentType",
|
|
1978
|
-
"v2.
|
|
1999
|
+
"v2.dora_failure_fetch_response" => "DORAFailureFetchResponse",
|
|
1979
2000
|
"v2.dora_failure_request" => "DORAFailureRequest",
|
|
1980
2001
|
"v2.dora_failure_request_attributes" => "DORAFailureRequestAttributes",
|
|
1981
2002
|
"v2.dora_failure_request_data" => "DORAFailureRequestData",
|
|
1982
2003
|
"v2.dora_failure_response" => "DORAFailureResponse",
|
|
1983
2004
|
"v2.dora_failure_response_data" => "DORAFailureResponseData",
|
|
2005
|
+
"v2.dora_failures_list_response" => "DORAFailuresListResponse",
|
|
1984
2006
|
"v2.dora_failure_type" => "DORAFailureType",
|
|
1985
|
-
"v2.dora_fetch_response" => "DORAFetchResponse",
|
|
1986
2007
|
"v2.dora_git_info" => "DORAGitInfo",
|
|
2008
|
+
"v2.dora_incident_object" => "DORAIncidentObject",
|
|
2009
|
+
"v2.dora_incident_object_attributes" => "DORAIncidentObjectAttributes",
|
|
1987
2010
|
"v2.dora_list_deployments_request" => "DORAListDeploymentsRequest",
|
|
1988
2011
|
"v2.dora_list_deployments_request_attributes" => "DORAListDeploymentsRequestAttributes",
|
|
1989
2012
|
"v2.dora_list_deployments_request_data" => "DORAListDeploymentsRequestData",
|
|
@@ -1992,7 +2015,6 @@ module DatadogAPIClient
|
|
|
1992
2015
|
"v2.dora_list_failures_request_attributes" => "DORAListFailuresRequestAttributes",
|
|
1993
2016
|
"v2.dora_list_failures_request_data" => "DORAListFailuresRequestData",
|
|
1994
2017
|
"v2.dora_list_failures_request_data_type" => "DORAListFailuresRequestDataType",
|
|
1995
|
-
"v2.dora_list_response" => "DORAListResponse",
|
|
1996
2018
|
"v2.downtime_create_request" => "DowntimeCreateRequest",
|
|
1997
2019
|
"v2.downtime_create_request_attributes" => "DowntimeCreateRequestAttributes",
|
|
1998
2020
|
"v2.downtime_create_request_data" => "DowntimeCreateRequestData",
|
|
@@ -2459,6 +2481,13 @@ module DatadogAPIClient
|
|
|
2459
2481
|
"v2.gitlab_integration" => "GitlabIntegration",
|
|
2460
2482
|
"v2.gitlab_integration_type" => "GitlabIntegrationType",
|
|
2461
2483
|
"v2.gitlab_integration_update" => "GitlabIntegrationUpdate",
|
|
2484
|
+
"v2.global_variable_data" => "GlobalVariableData",
|
|
2485
|
+
"v2.global_variable_json_patch_request" => "GlobalVariableJsonPatchRequest",
|
|
2486
|
+
"v2.global_variable_json_patch_request_data" => "GlobalVariableJsonPatchRequestData",
|
|
2487
|
+
"v2.global_variable_json_patch_request_data_attributes" => "GlobalVariableJsonPatchRequestDataAttributes",
|
|
2488
|
+
"v2.global_variable_json_patch_type" => "GlobalVariableJsonPatchType",
|
|
2489
|
+
"v2.global_variable_response" => "GlobalVariableResponse",
|
|
2490
|
+
"v2.global_variable_type" => "GlobalVariableType",
|
|
2462
2491
|
"v2.google_meet_configuration_reference" => "GoogleMeetConfigurationReference",
|
|
2463
2492
|
"v2.google_meet_configuration_reference_data" => "GoogleMeetConfigurationReferenceData",
|
|
2464
2493
|
"v2.grey_noise_api_key" => "GreyNoiseAPIKey",
|
|
@@ -2499,24 +2528,7 @@ module DatadogAPIClient
|
|
|
2499
2528
|
"v2.http_token_auth_update" => "HTTPTokenAuthUpdate",
|
|
2500
2529
|
"v2.http_token_update" => "HTTPTokenUpdate",
|
|
2501
2530
|
"v2.idp_metadata_form_data" => "IdPMetadataFormData",
|
|
2502
|
-
"v2.incident_attachment_attachment_type" => "IncidentAttachmentAttachmentType",
|
|
2503
|
-
"v2.incident_attachment_attributes" => "IncidentAttachmentAttributes",
|
|
2504
|
-
"v2.incident_attachment_data" => "IncidentAttachmentData",
|
|
2505
|
-
"v2.incident_attachment_link_attachment_type" => "IncidentAttachmentLinkAttachmentType",
|
|
2506
|
-
"v2.incident_attachment_link_attributes" => "IncidentAttachmentLinkAttributes",
|
|
2507
|
-
"v2.incident_attachment_link_attributes_attachment_object" => "IncidentAttachmentLinkAttributesAttachmentObject",
|
|
2508
|
-
"v2.incident_attachment_postmortem_attachment_type" => "IncidentAttachmentPostmortemAttachmentType",
|
|
2509
|
-
"v2.incident_attachment_postmortem_attributes" => "IncidentAttachmentPostmortemAttributes",
|
|
2510
|
-
"v2.incident_attachment_related_object" => "IncidentAttachmentRelatedObject",
|
|
2511
|
-
"v2.incident_attachment_relationships" => "IncidentAttachmentRelationships",
|
|
2512
|
-
"v2.incident_attachments_postmortem_attributes_attachment_object" => "IncidentAttachmentsPostmortemAttributesAttachmentObject",
|
|
2513
|
-
"v2.incident_attachments_response" => "IncidentAttachmentsResponse",
|
|
2514
|
-
"v2.incident_attachments_response_included_item" => "IncidentAttachmentsResponseIncludedItem",
|
|
2515
2531
|
"v2.incident_attachment_type" => "IncidentAttachmentType",
|
|
2516
|
-
"v2.incident_attachment_update_attributes" => "IncidentAttachmentUpdateAttributes",
|
|
2517
|
-
"v2.incident_attachment_update_data" => "IncidentAttachmentUpdateData",
|
|
2518
|
-
"v2.incident_attachment_update_request" => "IncidentAttachmentUpdateRequest",
|
|
2519
|
-
"v2.incident_attachment_update_response" => "IncidentAttachmentUpdateResponse",
|
|
2520
2532
|
"v2.incident_create_attributes" => "IncidentCreateAttributes",
|
|
2521
2533
|
"v2.incident_create_data" => "IncidentCreateData",
|
|
2522
2534
|
"v2.incident_create_relationships" => "IncidentCreateRelationships",
|
|
@@ -2758,6 +2770,8 @@ module DatadogAPIClient
|
|
|
2758
2770
|
"v2.jsonapi_error_item" => "JSONAPIErrorItem",
|
|
2759
2771
|
"v2.jsonapi_error_item_source" => "JSONAPIErrorItemSource",
|
|
2760
2772
|
"v2.jsonapi_error_response" => "JSONAPIErrorResponse",
|
|
2773
|
+
"v2.json_patch_operation" => "JsonPatchOperation",
|
|
2774
|
+
"v2.json_patch_operation_op" => "JsonPatchOperationOp",
|
|
2761
2775
|
"v2.kind_attributes" => "KindAttributes",
|
|
2762
2776
|
"v2.kind_data" => "KindData",
|
|
2763
2777
|
"v2.kind_metadata" => "KindMetadata",
|
|
@@ -2820,6 +2834,7 @@ module DatadogAPIClient
|
|
|
2820
2834
|
"v2.list_findings_response" => "ListFindingsResponse",
|
|
2821
2835
|
"v2.list_kind_catalog_response" => "ListKindCatalogResponse",
|
|
2822
2836
|
"v2.list_notification_channels_response" => "ListNotificationChannelsResponse",
|
|
2837
|
+
"v2.list_on_call_notification_rules_response" => "ListOnCallNotificationRulesResponse",
|
|
2823
2838
|
"v2.list_pipelines_response" => "ListPipelinesResponse",
|
|
2824
2839
|
"v2.list_pipelines_response_meta" => "ListPipelinesResponseMeta",
|
|
2825
2840
|
"v2.list_powerpacks_response" => "ListPowerpacksResponse",
|
|
@@ -3372,7 +3387,20 @@ module DatadogAPIClient
|
|
|
3372
3387
|
"v2.okta_integration" => "OktaIntegration",
|
|
3373
3388
|
"v2.okta_integration_type" => "OktaIntegrationType",
|
|
3374
3389
|
"v2.okta_integration_update" => "OktaIntegrationUpdate",
|
|
3390
|
+
"v2.on_call_notification_rule" => "OnCallNotificationRule",
|
|
3391
|
+
"v2.on_call_notification_rule_attributes" => "OnCallNotificationRuleAttributes",
|
|
3392
|
+
"v2.on_call_notification_rule_category" => "OnCallNotificationRuleCategory",
|
|
3393
|
+
"v2.on_call_notification_rule_channel_relationship" => "OnCallNotificationRuleChannelRelationship",
|
|
3394
|
+
"v2.on_call_notification_rule_channel_relationship_data" => "OnCallNotificationRuleChannelRelationshipData",
|
|
3395
|
+
"v2.on_call_notification_rule_channel_settings" => "OnCallNotificationRuleChannelSettings",
|
|
3396
|
+
"v2.on_call_notification_rule_data" => "OnCallNotificationRuleData",
|
|
3397
|
+
"v2.on_call_notification_rule_relationships" => "OnCallNotificationRuleRelationships",
|
|
3398
|
+
"v2.on_call_notification_rule_request_attributes" => "OnCallNotificationRuleRequestAttributes",
|
|
3399
|
+
"v2.on_call_notification_rules_included" => "OnCallNotificationRulesIncluded",
|
|
3400
|
+
"v2.on_call_notification_rule_type" => "OnCallNotificationRuleType",
|
|
3375
3401
|
"v2.on_call_page_target_type" => "OnCallPageTargetType",
|
|
3402
|
+
"v2.on_call_phone_notification_rule_method" => "OnCallPhoneNotificationRuleMethod",
|
|
3403
|
+
"v2.on_call_phone_notification_rule_settings" => "OnCallPhoneNotificationRuleSettings",
|
|
3376
3404
|
"v2.on_demand_concurrency_cap" => "OnDemandConcurrencyCap",
|
|
3377
3405
|
"v2.on_demand_concurrency_cap_attributes" => "OnDemandConcurrencyCapAttributes",
|
|
3378
3406
|
"v2.on_demand_concurrency_cap_response" => "OnDemandConcurrencyCapResponse",
|
|
@@ -3459,6 +3487,10 @@ module DatadogAPIClient
|
|
|
3459
3487
|
"v2.partial_application_key" => "PartialApplicationKey",
|
|
3460
3488
|
"v2.partial_application_key_attributes" => "PartialApplicationKeyAttributes",
|
|
3461
3489
|
"v2.partial_application_key_response" => "PartialApplicationKeyResponse",
|
|
3490
|
+
"v2.patch_attachment_request" => "PatchAttachmentRequest",
|
|
3491
|
+
"v2.patch_attachment_request_data" => "PatchAttachmentRequestData",
|
|
3492
|
+
"v2.patch_attachment_request_data_attributes" => "PatchAttachmentRequestDataAttributes",
|
|
3493
|
+
"v2.patch_attachment_request_data_attributes_attachment" => "PatchAttachmentRequestDataAttributesAttachment",
|
|
3462
3494
|
"v2.patch_incident_notification_template_request" => "PatchIncidentNotificationTemplateRequest",
|
|
3463
3495
|
"v2.patch_notification_rule_parameters" => "PatchNotificationRuleParameters",
|
|
3464
3496
|
"v2.patch_notification_rule_parameters_data" => "PatchNotificationRuleParametersData",
|
|
@@ -3501,6 +3533,15 @@ module DatadogAPIClient
|
|
|
3501
3533
|
"v2.process_summary" => "ProcessSummary",
|
|
3502
3534
|
"v2.process_summary_attributes" => "ProcessSummaryAttributes",
|
|
3503
3535
|
"v2.process_summary_type" => "ProcessSummaryType",
|
|
3536
|
+
"v2.product_analytics_server_side_event_error" => "ProductAnalyticsServerSideEventError",
|
|
3537
|
+
"v2.product_analytics_server_side_event_errors" => "ProductAnalyticsServerSideEventErrors",
|
|
3538
|
+
"v2.product_analytics_server_side_event_item" => "ProductAnalyticsServerSideEventItem",
|
|
3539
|
+
"v2.product_analytics_server_side_event_item_account" => "ProductAnalyticsServerSideEventItemAccount",
|
|
3540
|
+
"v2.product_analytics_server_side_event_item_application" => "ProductAnalyticsServerSideEventItemApplication",
|
|
3541
|
+
"v2.product_analytics_server_side_event_item_event" => "ProductAnalyticsServerSideEventItemEvent",
|
|
3542
|
+
"v2.product_analytics_server_side_event_item_session" => "ProductAnalyticsServerSideEventItemSession",
|
|
3543
|
+
"v2.product_analytics_server_side_event_item_type" => "ProductAnalyticsServerSideEventItemType",
|
|
3544
|
+
"v2.product_analytics_server_side_event_item_usr" => "ProductAnalyticsServerSideEventItemUsr",
|
|
3504
3545
|
"v2.project" => "Project",
|
|
3505
3546
|
"v2.project_attributes" => "ProjectAttributes",
|
|
3506
3547
|
"v2.project_create" => "ProjectCreate",
|
|
@@ -3946,6 +3987,10 @@ module DatadogAPIClient
|
|
|
3946
3987
|
"v2.security_monitoring_filter_action" => "SecurityMonitoringFilterAction",
|
|
3947
3988
|
"v2.security_monitoring_list_rules_response" => "SecurityMonitoringListRulesResponse",
|
|
3948
3989
|
"v2.security_monitoring_reference_table" => "SecurityMonitoringReferenceTable",
|
|
3990
|
+
"v2.security_monitoring_rule_anomaly_detection_options" => "SecurityMonitoringRuleAnomalyDetectionOptions",
|
|
3991
|
+
"v2.security_monitoring_rule_anomaly_detection_options_bucket_duration" => "SecurityMonitoringRuleAnomalyDetectionOptionsBucketDuration",
|
|
3992
|
+
"v2.security_monitoring_rule_anomaly_detection_options_detection_tolerance" => "SecurityMonitoringRuleAnomalyDetectionOptionsDetectionTolerance",
|
|
3993
|
+
"v2.security_monitoring_rule_anomaly_detection_options_learning_duration" => "SecurityMonitoringRuleAnomalyDetectionOptionsLearningDuration",
|
|
3949
3994
|
"v2.security_monitoring_rule_case" => "SecurityMonitoringRuleCase",
|
|
3950
3995
|
"v2.security_monitoring_rule_case_action" => "SecurityMonitoringRuleCaseAction",
|
|
3951
3996
|
"v2.security_monitoring_rule_case_action_options" => "SecurityMonitoringRuleCaseActionOptions",
|
|
@@ -4301,6 +4346,15 @@ module DatadogAPIClient
|
|
|
4301
4346
|
"v2.step_display_bounds" => "StepDisplayBounds",
|
|
4302
4347
|
"v2.suppression_version_history" => "SuppressionVersionHistory",
|
|
4303
4348
|
"v2.suppression_versions" => "SuppressionVersions",
|
|
4349
|
+
"v2.synthetics_global_variable" => "SyntheticsGlobalVariable",
|
|
4350
|
+
"v2.synthetics_global_variable_attributes" => "SyntheticsGlobalVariableAttributes",
|
|
4351
|
+
"v2.synthetics_global_variable_options" => "SyntheticsGlobalVariableOptions",
|
|
4352
|
+
"v2.synthetics_global_variable_parser_type" => "SyntheticsGlobalVariableParserType",
|
|
4353
|
+
"v2.synthetics_global_variable_parse_test_options" => "SyntheticsGlobalVariableParseTestOptions",
|
|
4354
|
+
"v2.synthetics_global_variable_parse_test_options_type" => "SyntheticsGlobalVariableParseTestOptionsType",
|
|
4355
|
+
"v2.synthetics_global_variable_totp_parameters" => "SyntheticsGlobalVariableTOTPParameters",
|
|
4356
|
+
"v2.synthetics_global_variable_value" => "SyntheticsGlobalVariableValue",
|
|
4357
|
+
"v2.synthetics_variable_parser" => "SyntheticsVariableParser",
|
|
4304
4358
|
"v2.table_result_v2" => "TableResultV2",
|
|
4305
4359
|
"v2.table_result_v2_array" => "TableResultV2Array",
|
|
4306
4360
|
"v2.table_result_v2_data" => "TableResultV2Data",
|
|
@@ -4356,6 +4410,18 @@ module DatadogAPIClient
|
|
|
4356
4410
|
"v2.team_link_response" => "TeamLinkResponse",
|
|
4357
4411
|
"v2.team_links_response" => "TeamLinksResponse",
|
|
4358
4412
|
"v2.team_link_type" => "TeamLinkType",
|
|
4413
|
+
"v2.team_notification_rule" => "TeamNotificationRule",
|
|
4414
|
+
"v2.team_notification_rule_attributes" => "TeamNotificationRuleAttributes",
|
|
4415
|
+
"v2.team_notification_rule_attributes_email" => "TeamNotificationRuleAttributesEmail",
|
|
4416
|
+
"v2.team_notification_rule_attributes_ms_teams" => "TeamNotificationRuleAttributesMsTeams",
|
|
4417
|
+
"v2.team_notification_rule_attributes_pagerduty" => "TeamNotificationRuleAttributesPagerduty",
|
|
4418
|
+
"v2.team_notification_rule_attributes_slack" => "TeamNotificationRuleAttributesSlack",
|
|
4419
|
+
"v2.team_notification_rule_request" => "TeamNotificationRuleRequest",
|
|
4420
|
+
"v2.team_notification_rule_response" => "TeamNotificationRuleResponse",
|
|
4421
|
+
"v2.team_notification_rules_response" => "TeamNotificationRulesResponse",
|
|
4422
|
+
"v2.team_notification_rules_response_meta" => "TeamNotificationRulesResponseMeta",
|
|
4423
|
+
"v2.team_notification_rules_response_meta_page" => "TeamNotificationRulesResponseMetaPage",
|
|
4424
|
+
"v2.team_notification_rule_type" => "TeamNotificationRuleType",
|
|
4359
4425
|
"v2.team_on_call_responders" => "TeamOnCallResponders",
|
|
4360
4426
|
"v2.team_on_call_responders_data" => "TeamOnCallRespondersData",
|
|
4361
4427
|
"v2.team_on_call_responders_data_relationships" => "TeamOnCallRespondersDataRelationships",
|
|
@@ -4492,6 +4558,9 @@ module DatadogAPIClient
|
|
|
4492
4558
|
"v2.update_deployment_rule_params" => "UpdateDeploymentRuleParams",
|
|
4493
4559
|
"v2.update_deployment_rule_params_data" => "UpdateDeploymentRuleParamsData",
|
|
4494
4560
|
"v2.update_deployment_rule_params_data_attributes" => "UpdateDeploymentRuleParamsDataAttributes",
|
|
4561
|
+
"v2.update_on_call_notification_rule_request" => "UpdateOnCallNotificationRuleRequest",
|
|
4562
|
+
"v2.update_on_call_notification_rule_request_attributes" => "UpdateOnCallNotificationRuleRequestAttributes",
|
|
4563
|
+
"v2.update_on_call_notification_rule_request_data" => "UpdateOnCallNotificationRuleRequestData",
|
|
4495
4564
|
"v2.update_open_api_response" => "UpdateOpenAPIResponse",
|
|
4496
4565
|
"v2.update_open_api_response_attributes" => "UpdateOpenAPIResponseAttributes",
|
|
4497
4566
|
"v2.update_open_api_response_data" => "UpdateOpenAPIResponseData",
|
|
@@ -4536,6 +4605,7 @@ module DatadogAPIClient
|
|
|
4536
4605
|
"v2.usage_time_series_object" => "UsageTimeSeriesObject",
|
|
4537
4606
|
"v2.usage_time_series_type" => "UsageTimeSeriesType",
|
|
4538
4607
|
"v2.user" => "User",
|
|
4608
|
+
"v2.user140420082644000" => "User140420082644000",
|
|
4539
4609
|
"v2.user_attributes" => "UserAttributes",
|
|
4540
4610
|
"v2.user_attributes_status" => "UserAttributesStatus",
|
|
4541
4611
|
"v2.user_create_attributes" => "UserCreateAttributes",
|
|
@@ -4577,6 +4647,7 @@ module DatadogAPIClient
|
|
|
4577
4647
|
"v2.user_team_update" => "UserTeamUpdate",
|
|
4578
4648
|
"v2.user_team_update_request" => "UserTeamUpdateRequest",
|
|
4579
4649
|
"v2.user_team_user_type" => "UserTeamUserType",
|
|
4650
|
+
"v2.user_type" => "UserType",
|
|
4580
4651
|
"v2.user_update_attributes" => "UserUpdateAttributes",
|
|
4581
4652
|
"v2.user_update_data" => "UserUpdateData",
|
|
4582
4653
|
"v2.user_update_request" => "UserUpdateRequest",
|
|
@@ -4735,6 +4806,7 @@ module DatadogAPIClient
|
|
|
4735
4806
|
"v2.organizations_api" => "OrganizationsAPI",
|
|
4736
4807
|
"v2.powerpack_api" => "PowerpackAPI",
|
|
4737
4808
|
"v2.processes_api" => "ProcessesAPI",
|
|
4809
|
+
"v2.product_analytics_api" => "ProductAnalyticsAPI",
|
|
4738
4810
|
"v2.reference_tables_api" => "ReferenceTablesAPI",
|
|
4739
4811
|
"v2.restriction_policies_api" => "RestrictionPoliciesAPI",
|
|
4740
4812
|
"v2.roles_api" => "RolesAPI",
|
|
@@ -1445,7 +1445,7 @@ module DatadogAPIClient::V1
|
|
|
1445
1445
|
#
|
|
1446
1446
|
# @param public_id [String] The public ID of the test to get details from.
|
|
1447
1447
|
# @param opts [Hash] the optional parameters
|
|
1448
|
-
# @return [Array<(
|
|
1448
|
+
# @return [Array<(SyntheticsTestDetailsWithoutSteps, Integer, Hash)>] SyntheticsTestDetailsWithoutSteps data, response status code and response headers
|
|
1449
1449
|
def get_test_with_http_info(public_id, opts = {})
|
|
1450
1450
|
|
|
1451
1451
|
if @api_client.config.debugging
|
|
@@ -1473,7 +1473,7 @@ module DatadogAPIClient::V1
|
|
|
1473
1473
|
post_body = opts[:debug_body]
|
|
1474
1474
|
|
|
1475
1475
|
# return_type
|
|
1476
|
-
return_type = opts[:debug_return_type] || '
|
|
1476
|
+
return_type = opts[:debug_return_type] || 'SyntheticsTestDetailsWithoutSteps'
|
|
1477
1477
|
|
|
1478
1478
|
# auth_names
|
|
1479
1479
|
auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ]
|
|
@@ -1687,7 +1687,7 @@ module DatadogAPIClient::V1
|
|
|
1687
1687
|
#
|
|
1688
1688
|
# To use it you need to use a block: list_tests_with_pagination { |item| p item }
|
|
1689
1689
|
#
|
|
1690
|
-
# @yield [
|
|
1690
|
+
# @yield [SyntheticsTestDetailsWithoutSteps] Paginated items
|
|
1691
1691
|
def list_tests_with_pagination(opts = {})
|
|
1692
1692
|
api_version = "V1"
|
|
1693
1693
|
page_size = @api_client.get_attribute_from_path(opts, "page_size", 100)
|
|
@@ -129,6 +129,8 @@ module DatadogAPIClient::V1
|
|
|
129
129
|
# cursor := response.metadata.pagination.next_record_id
|
|
130
130
|
# END
|
|
131
131
|
# ```
|
|
132
|
+
# The following values have been **deprecated**:
|
|
133
|
+
# `estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`, `llm_observability_usage`, `llm_observability_percentage`.
|
|
132
134
|
#
|
|
133
135
|
# @param start_hr [Time] Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]` for usage beginning at this hour.
|
|
134
136
|
# @param usage_type [HourlyUsageAttributionUsageType] Usage type to retrieve. The following values have been **deprecated**: `estimated_indexed_spans_usage`, `estimated_ingested_spans_usage`.
|
|
@@ -152,7 +154,7 @@ module DatadogAPIClient::V1
|
|
|
152
154
|
fail ArgumentError, "Missing the required parameter 'usage_type' when calling UsageMeteringAPI.get_hourly_usage_attribution"
|
|
153
155
|
end
|
|
154
156
|
# verify enum value
|
|
155
|
-
allowable_values = ['api_usage', 'apm_fargate_usage', 'apm_host_usage', 'apm_usm_usage', 'appsec_fargate_usage', 'appsec_usage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'browser_usage', 'ci_pipeline_indexed_spans_usage', 'ci_test_indexed_spans_usage', 'ci_visibility_itr_usage', 'cloud_siem_usage', 'code_security_host_usage', 'container_excl_agent_usage', 'container_usage', 'cspm_containers_usage', 'cspm_hosts_usage', 'custom_event_usage', 'custom_ingested_timeseries_usage', 'custom_timeseries_usage', 'cws_containers_usage', 'cws_fargate_task_usage', 'cws_hosts_usage', 'data_jobs_monitoring_usage', 'data_stream_monitoring_usage', 'dbm_hosts_usage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_ingested_spans_usage', 'fargate_usage', 'functions_usage', 'incident_management_monthly_active_users_usage', 'indexed_spans_usage', 'infra_host_usage', 'ingested_logs_bytes_usage', 'ingested_spans_bytes_usage', 'invocations_usage', 'lambda_traced_invocations_usage', 'llm_observability_usage', 'logs_indexed_15day_usage', 'logs_indexed_180day_usage', 'logs_indexed_1day_usage', 'logs_indexed_30day_usage', 'logs_indexed_360day_usage', 'logs_indexed_3day_usage', 'logs_indexed_45day_usage', 'logs_indexed_60day_usage', 'logs_indexed_7day_usage', 'logs_indexed_90day_usage', 'logs_indexed_custom_retention_usage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'npm_host_usage', 'network_device_wireless_usage', 'obs_pipeline_bytes_usage', 'obs_pipelines_vcpu_usage', 'online_archive_usage', 'product_analytics_session_usage', 'profiled_container_usage', 'profiled_fargate_usage', 'profiled_host_usage', 'published_app', 'rum_browser_mobile_sessions_usage', 'rum_ingested_usage', 'rum_investigate_usage', 'rum_replay_sessions_usage', 'rum_session_replay_add_on_usage', 'sca_fargate_usage', 'sds_scanned_bytes_usage', 'serverless_apps_usage', 'siem_analyzed_logs_add_on_usage', 'siem_ingested_bytes_usage', 'snmp_usage', 'universal_service_monitoring_usage', 'vuln_management_hosts_usage', 'workflow_executions_usage']
|
|
157
|
+
allowable_values = ['api_usage', 'apm_fargate_usage', 'apm_host_usage', 'apm_usm_usage', 'appsec_fargate_usage', 'appsec_usage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'bits_ai_investigations_usage', 'browser_usage', 'ci_pipeline_indexed_spans_usage', 'ci_test_indexed_spans_usage', 'ci_visibility_itr_usage', 'cloud_siem_usage', 'code_security_host_usage', 'container_excl_agent_usage', 'container_usage', 'cspm_containers_usage', 'cspm_hosts_usage', 'custom_event_usage', 'custom_ingested_timeseries_usage', 'custom_timeseries_usage', 'cws_containers_usage', 'cws_fargate_task_usage', 'cws_hosts_usage', 'data_jobs_monitoring_usage', 'data_stream_monitoring_usage', 'dbm_hosts_usage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_ingested_spans_usage', 'fargate_usage', 'flex_stored_logs', 'functions_usage', 'incident_management_monthly_active_users_usage', 'indexed_spans_usage', 'infra_host_usage', 'ingested_logs_bytes_usage', 'ingested_spans_bytes_usage', 'invocations_usage', 'lambda_traced_invocations_usage', 'llm_observability_usage', 'llm_spans_usage', 'logs_indexed_15day_usage', 'logs_indexed_180day_usage', 'logs_indexed_1day_usage', 'logs_indexed_30day_usage', 'logs_indexed_360day_usage', 'logs_indexed_3day_usage', 'logs_indexed_45day_usage', 'logs_indexed_60day_usage', 'logs_indexed_7day_usage', 'logs_indexed_90day_usage', 'logs_indexed_custom_retention_usage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'npm_host_usage', 'network_device_wireless_usage', 'obs_pipeline_bytes_usage', 'obs_pipelines_vcpu_usage', 'online_archive_usage', 'product_analytics_session_usage', 'profiled_container_usage', 'profiled_fargate_usage', 'profiled_host_usage', 'published_app', 'rum_browser_mobile_sessions_usage', 'rum_ingested_usage', 'rum_investigate_usage', 'rum_replay_sessions_usage', 'rum_session_replay_add_on_usage', 'sca_fargate_usage', 'sds_scanned_bytes_usage', 'serverless_apps_usage', 'siem_analyzed_logs_add_on_usage', 'siem_ingested_bytes_usage', 'snmp_usage', 'universal_service_monitoring_usage', 'vuln_management_hosts_usage', 'workflow_executions_usage']
|
|
156
158
|
if @api_client.config.client_side_validation && !allowable_values.include?(usage_type)
|
|
157
159
|
fail ArgumentError, "invalid value for \"usage_type\", must be one of #{allowable_values}"
|
|
158
160
|
end
|
|
@@ -455,7 +457,7 @@ module DatadogAPIClient::V1
|
|
|
455
457
|
# ```
|
|
456
458
|
#
|
|
457
459
|
# @param start_month [Time] Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]` for usage beginning in this month. Maximum of 15 months ago.
|
|
458
|
-
# @param fields [MonthlyUsageAttributionSupportedMetrics] Comma-separated list of usage types to return, or `*` for all usage types. The following values have been **deprecated**: `estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`.
|
|
460
|
+
# @param fields [MonthlyUsageAttributionSupportedMetrics] Comma-separated list of usage types to return, or `*` for all usage types. The following values have been **deprecated**: `estimated_indexed_spans_usage`, `estimated_indexed_spans_percentage`, `estimated_ingested_spans_usage`, `estimated_ingested_spans_percentage`, `llm_observability_usage`, `llm_observability_percentage`.
|
|
459
461
|
# @param opts [Hash] the optional parameters
|
|
460
462
|
# @option opts [Time] :end_month Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]` for usage ending this month.
|
|
461
463
|
# @option opts [UsageSortDirection] :sort_direction The direction to sort by: `[desc, asc]`.
|
|
@@ -478,7 +480,7 @@ module DatadogAPIClient::V1
|
|
|
478
480
|
fail ArgumentError, "Missing the required parameter 'fields' when calling UsageMeteringAPI.get_monthly_usage_attribution"
|
|
479
481
|
end
|
|
480
482
|
# verify enum value
|
|
481
|
-
allowable_values = ['api_usage', 'api_percentage', 'apm_fargate_usage', 'apm_fargate_percentage', 'appsec_fargate_usage', 'appsec_fargate_percentage', 'apm_host_usage', 'apm_host_percentage', 'apm_usm_usage', 'apm_usm_percentage', 'appsec_usage', 'appsec_percentage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'browser_usage', 'browser_percentage', 'ci_visibility_itr_usage', 'ci_visibility_itr_percentage', 'cloud_siem_usage', 'cloud_siem_percentage', 'code_security_host_usage', 'code_security_host_percentage', 'container_excl_agent_usage', 'container_excl_agent_percentage', 'container_usage', 'container_percentage', 'cspm_containers_percentage', 'cspm_containers_usage', 'cspm_hosts_percentage', 'cspm_hosts_usage', 'custom_timeseries_usage', 'custom_timeseries_percentage', 'custom_ingested_timeseries_usage', 'custom_ingested_timeseries_percentage', 'cws_containers_percentage', 'cws_containers_usage', 'cws_fargate_task_percentage', 'cws_fargate_task_usage', 'cws_hosts_percentage', 'cws_hosts_usage', 'data_jobs_monitoring_usage', 'data_jobs_monitoring_percentage', 'data_stream_monitoring_usage', 'data_stream_monitoring_percentage', 'dbm_hosts_percentage', 'dbm_hosts_usage', 'dbm_queries_percentage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_indexed_spans_percentage', 'estimated_ingested_spans_usage', 'estimated_ingested_spans_percentage', 'fargate_usage', 'fargate_percentage', 'functions_usage', 'functions_percentage', 'incident_management_monthly_active_users_usage', 'incident_management_monthly_active_users_percentage', 'infra_host_usage', 'infra_host_percentage', 'invocations_usage', 'invocations_percentage', 'lambda_traced_invocations_usage', 'lambda_traced_invocations_percentage', 'llm_observability_usage', 'llm_observability_percentage', 'mobile_app_testing_percentage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'ndm_netflow_percentage', 'network_device_wireless_usage', 'network_device_wireless_percentage', 'npm_host_usage', 'npm_host_percentage', 'obs_pipeline_bytes_usage', 'obs_pipeline_bytes_percentage', 'obs_pipelines_vcpu_usage', 'obs_pipelines_vcpu_percentage', 'online_archive_usage', 'online_archive_percentage', 'product_analytics_session_usage', 'product_analytics_session_percentage', 'profiled_container_usage', 'profiled_container_percentage', 'profiled_fargate_usage', 'profiled_fargate_percentage', 'profiled_host_usage', 'profiled_host_percentage', 'published_app_usage', 'published_app_percentage', 'serverless_apps_usage', 'serverless_apps_percentage', 'snmp_usage', 'snmp_percentage', 'universal_service_monitoring_usage', 'universal_service_monitoring_percentage', 'vuln_management_hosts_usage', 'vuln_management_hosts_percentage', 'sds_scanned_bytes_usage', 'sds_scanned_bytes_percentage', 'ci_test_indexed_spans_usage', 'ci_test_indexed_spans_percentage', 'ingested_logs_bytes_usage', 'ingested_logs_bytes_percentage', 'ci_pipeline_indexed_spans_usage', 'ci_pipeline_indexed_spans_percentage', 'indexed_spans_usage', 'indexed_spans_percentage', 'custom_event_usage', 'custom_event_percentage', 'logs_indexed_custom_retention_usage', 'logs_indexed_custom_retention_percentage', 'logs_indexed_360day_usage', 'logs_indexed_360day_percentage', 'logs_indexed_180day_usage', 'logs_indexed_180day_percentage', 'logs_indexed_90day_usage', 'logs_indexed_90day_percentage', 'logs_indexed_60day_usage', 'logs_indexed_60day_percentage', 'logs_indexed_45day_usage', 'logs_indexed_45day_percentage', 'logs_indexed_30day_usage', 'logs_indexed_30day_percentage', 'logs_indexed_15day_usage', 'logs_indexed_15day_percentage', 'logs_indexed_7day_usage', 'logs_indexed_7day_percentage', 'logs_indexed_3day_usage', 'logs_indexed_3day_percentage', 'logs_indexed_1day_usage', 'logs_indexed_1day_percentage', 'rum_ingested_usage', 'rum_ingested_percentage', 'rum_investigate_usage', 'rum_investigate_percentage', 'rum_replay_sessions_usage', 'rum_replay_sessions_percentage', 'rum_session_replay_add_on_usage', 'rum_session_replay_add_on_percentage', 'rum_browser_mobile_sessions_usage', 'rum_browser_mobile_sessions_percentage', 'ingested_spans_bytes_usage', 'ingested_spans_bytes_percentage', 'siem_analyzed_logs_add_on_usage', 'siem_analyzed_logs_add_on_percentage', 'siem_ingested_bytes_usage', 'siem_ingested_bytes_percentage', 'workflow_executions_usage', 'workflow_executions_percentage', 'sca_fargate_usage', 'sca_fargate_percentage', '*']
|
|
483
|
+
allowable_values = ['api_usage', 'api_percentage', 'apm_fargate_usage', 'apm_fargate_percentage', 'appsec_fargate_usage', 'appsec_fargate_percentage', 'apm_host_usage', 'apm_host_percentage', 'apm_usm_usage', 'apm_usm_percentage', 'appsec_usage', 'appsec_percentage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'bits_ai_investigations_usage', 'bits_ai_investigations_percentage', 'browser_usage', 'browser_percentage', 'ci_visibility_itr_usage', 'ci_visibility_itr_percentage', 'cloud_siem_usage', 'cloud_siem_percentage', 'code_security_host_usage', 'code_security_host_percentage', 'container_excl_agent_usage', 'container_excl_agent_percentage', 'container_usage', 'container_percentage', 'cspm_containers_percentage', 'cspm_containers_usage', 'cspm_hosts_percentage', 'cspm_hosts_usage', 'custom_timeseries_usage', 'custom_timeseries_percentage', 'custom_ingested_timeseries_usage', 'custom_ingested_timeseries_percentage', 'cws_containers_percentage', 'cws_containers_usage', 'cws_fargate_task_percentage', 'cws_fargate_task_usage', 'cws_hosts_percentage', 'cws_hosts_usage', 'data_jobs_monitoring_usage', 'data_jobs_monitoring_percentage', 'data_stream_monitoring_usage', 'data_stream_monitoring_percentage', 'dbm_hosts_percentage', 'dbm_hosts_usage', 'dbm_queries_percentage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_indexed_spans_percentage', 'estimated_ingested_spans_usage', 'estimated_ingested_spans_percentage', 'fargate_usage', 'fargate_percentage', 'flex_stored_logs_usage', 'flex_stored_logs_percentage', 'functions_usage', 'functions_percentage', 'incident_management_monthly_active_users_usage', 'incident_management_monthly_active_users_percentage', 'infra_host_usage', 'infra_host_percentage', 'invocations_usage', 'invocations_percentage', 'lambda_traced_invocations_usage', 'lambda_traced_invocations_percentage', 'llm_observability_usage', 'llm_observability_percentage', 'llm_spans_usage', 'llm_spans_percentage', 'mobile_app_testing_percentage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'ndm_netflow_percentage', 'network_device_wireless_usage', 'network_device_wireless_percentage', 'npm_host_usage', 'npm_host_percentage', 'obs_pipeline_bytes_usage', 'obs_pipeline_bytes_percentage', 'obs_pipelines_vcpu_usage', 'obs_pipelines_vcpu_percentage', 'online_archive_usage', 'online_archive_percentage', 'product_analytics_session_usage', 'product_analytics_session_percentage', 'profiled_container_usage', 'profiled_container_percentage', 'profiled_fargate_usage', 'profiled_fargate_percentage', 'profiled_host_usage', 'profiled_host_percentage', 'published_app_usage', 'published_app_percentage', 'serverless_apps_usage', 'serverless_apps_percentage', 'snmp_usage', 'snmp_percentage', 'universal_service_monitoring_usage', 'universal_service_monitoring_percentage', 'vuln_management_hosts_usage', 'vuln_management_hosts_percentage', 'sds_scanned_bytes_usage', 'sds_scanned_bytes_percentage', 'ci_test_indexed_spans_usage', 'ci_test_indexed_spans_percentage', 'ingested_logs_bytes_usage', 'ingested_logs_bytes_percentage', 'ci_pipeline_indexed_spans_usage', 'ci_pipeline_indexed_spans_percentage', 'indexed_spans_usage', 'indexed_spans_percentage', 'custom_event_usage', 'custom_event_percentage', 'logs_indexed_custom_retention_usage', 'logs_indexed_custom_retention_percentage', 'logs_indexed_360day_usage', 'logs_indexed_360day_percentage', 'logs_indexed_180day_usage', 'logs_indexed_180day_percentage', 'logs_indexed_90day_usage', 'logs_indexed_90day_percentage', 'logs_indexed_60day_usage', 'logs_indexed_60day_percentage', 'logs_indexed_45day_usage', 'logs_indexed_45day_percentage', 'logs_indexed_30day_usage', 'logs_indexed_30day_percentage', 'logs_indexed_15day_usage', 'logs_indexed_15day_percentage', 'logs_indexed_7day_usage', 'logs_indexed_7day_percentage', 'logs_indexed_3day_usage', 'logs_indexed_3day_percentage', 'logs_indexed_1day_usage', 'logs_indexed_1day_percentage', 'rum_ingested_usage', 'rum_ingested_percentage', 'rum_investigate_usage', 'rum_investigate_percentage', 'rum_replay_sessions_usage', 'rum_replay_sessions_percentage', 'rum_session_replay_add_on_usage', 'rum_session_replay_add_on_percentage', 'rum_browser_mobile_sessions_usage', 'rum_browser_mobile_sessions_percentage', 'ingested_spans_bytes_usage', 'ingested_spans_bytes_percentage', 'siem_analyzed_logs_add_on_usage', 'siem_analyzed_logs_add_on_percentage', 'siem_ingested_bytes_usage', 'siem_ingested_bytes_percentage', 'workflow_executions_usage', 'workflow_executions_percentage', 'sca_fargate_usage', 'sca_fargate_percentage', '*']
|
|
482
484
|
if @api_client.config.client_side_validation && !allowable_values.include?(fields)
|
|
483
485
|
fail ArgumentError, "invalid value for \"fields\", must be one of #{allowable_values}"
|
|
484
486
|
end
|
|
@@ -486,7 +488,7 @@ module DatadogAPIClient::V1
|
|
|
486
488
|
if @api_client.config.client_side_validation && opts[:'sort_direction'] && !allowable_values.include?(opts[:'sort_direction'])
|
|
487
489
|
fail ArgumentError, "invalid value for \"sort_direction\", must be one of #{allowable_values}"
|
|
488
490
|
end
|
|
489
|
-
allowable_values = ['api_usage', 'api_percentage', 'apm_fargate_usage', 'apm_fargate_percentage', 'appsec_fargate_usage', 'appsec_fargate_percentage', 'apm_host_usage', 'apm_host_percentage', 'apm_usm_usage', 'apm_usm_percentage', 'appsec_usage', 'appsec_percentage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'browser_usage', 'browser_percentage', 'ci_visibility_itr_usage', 'ci_visibility_itr_percentage', 'cloud_siem_usage', 'cloud_siem_percentage', 'code_security_host_usage', 'code_security_host_percentage', 'container_excl_agent_usage', 'container_excl_agent_percentage', 'container_usage', 'container_percentage', 'cspm_containers_percentage', 'cspm_containers_usage', 'cspm_hosts_percentage', 'cspm_hosts_usage', 'custom_timeseries_usage', 'custom_timeseries_percentage', 'custom_ingested_timeseries_usage', 'custom_ingested_timeseries_percentage', 'cws_containers_percentage', 'cws_containers_usage', 'cws_fargate_task_percentage', 'cws_fargate_task_usage', 'cws_hosts_percentage', 'cws_hosts_usage', 'data_jobs_monitoring_usage', 'data_jobs_monitoring_percentage', 'data_stream_monitoring_usage', 'data_stream_monitoring_percentage', 'dbm_hosts_percentage', 'dbm_hosts_usage', 'dbm_queries_percentage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_indexed_spans_percentage', 'estimated_ingested_spans_usage', 'estimated_ingested_spans_percentage', 'fargate_usage', 'fargate_percentage', 'functions_usage', 'functions_percentage', 'incident_management_monthly_active_users_usage', 'incident_management_monthly_active_users_percentage', 'infra_host_usage', 'infra_host_percentage', 'invocations_usage', 'invocations_percentage', 'lambda_traced_invocations_usage', 'lambda_traced_invocations_percentage', 'llm_observability_usage', 'llm_observability_percentage', 'mobile_app_testing_percentage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'ndm_netflow_percentage', 'network_device_wireless_usage', 'network_device_wireless_percentage', 'npm_host_usage', 'npm_host_percentage', 'obs_pipeline_bytes_usage', 'obs_pipeline_bytes_percentage', 'obs_pipelines_vcpu_usage', 'obs_pipelines_vcpu_percentage', 'online_archive_usage', 'online_archive_percentage', 'product_analytics_session_usage', 'product_analytics_session_percentage', 'profiled_container_usage', 'profiled_container_percentage', 'profiled_fargate_usage', 'profiled_fargate_percentage', 'profiled_host_usage', 'profiled_host_percentage', 'published_app_usage', 'published_app_percentage', 'serverless_apps_usage', 'serverless_apps_percentage', 'snmp_usage', 'snmp_percentage', 'universal_service_monitoring_usage', 'universal_service_monitoring_percentage', 'vuln_management_hosts_usage', 'vuln_management_hosts_percentage', 'sds_scanned_bytes_usage', 'sds_scanned_bytes_percentage', 'ci_test_indexed_spans_usage', 'ci_test_indexed_spans_percentage', 'ingested_logs_bytes_usage', 'ingested_logs_bytes_percentage', 'ci_pipeline_indexed_spans_usage', 'ci_pipeline_indexed_spans_percentage', 'indexed_spans_usage', 'indexed_spans_percentage', 'custom_event_usage', 'custom_event_percentage', 'logs_indexed_custom_retention_usage', 'logs_indexed_custom_retention_percentage', 'logs_indexed_360day_usage', 'logs_indexed_360day_percentage', 'logs_indexed_180day_usage', 'logs_indexed_180day_percentage', 'logs_indexed_90day_usage', 'logs_indexed_90day_percentage', 'logs_indexed_60day_usage', 'logs_indexed_60day_percentage', 'logs_indexed_45day_usage', 'logs_indexed_45day_percentage', 'logs_indexed_30day_usage', 'logs_indexed_30day_percentage', 'logs_indexed_15day_usage', 'logs_indexed_15day_percentage', 'logs_indexed_7day_usage', 'logs_indexed_7day_percentage', 'logs_indexed_3day_usage', 'logs_indexed_3day_percentage', 'logs_indexed_1day_usage', 'logs_indexed_1day_percentage', 'rum_ingested_usage', 'rum_ingested_percentage', 'rum_investigate_usage', 'rum_investigate_percentage', 'rum_replay_sessions_usage', 'rum_replay_sessions_percentage', 'rum_session_replay_add_on_usage', 'rum_session_replay_add_on_percentage', 'rum_browser_mobile_sessions_usage', 'rum_browser_mobile_sessions_percentage', 'ingested_spans_bytes_usage', 'ingested_spans_bytes_percentage', 'siem_analyzed_logs_add_on_usage', 'siem_analyzed_logs_add_on_percentage', 'siem_ingested_bytes_usage', 'siem_ingested_bytes_percentage', 'workflow_executions_usage', 'workflow_executions_percentage', 'sca_fargate_usage', 'sca_fargate_percentage', '*']
|
|
491
|
+
allowable_values = ['api_usage', 'api_percentage', 'apm_fargate_usage', 'apm_fargate_percentage', 'appsec_fargate_usage', 'appsec_fargate_percentage', 'apm_host_usage', 'apm_host_percentage', 'apm_usm_usage', 'apm_usm_percentage', 'appsec_usage', 'appsec_percentage', 'asm_serverless_traced_invocations_usage', 'asm_serverless_traced_invocations_percentage', 'bits_ai_investigations_usage', 'bits_ai_investigations_percentage', 'browser_usage', 'browser_percentage', 'ci_visibility_itr_usage', 'ci_visibility_itr_percentage', 'cloud_siem_usage', 'cloud_siem_percentage', 'code_security_host_usage', 'code_security_host_percentage', 'container_excl_agent_usage', 'container_excl_agent_percentage', 'container_usage', 'container_percentage', 'cspm_containers_percentage', 'cspm_containers_usage', 'cspm_hosts_percentage', 'cspm_hosts_usage', 'custom_timeseries_usage', 'custom_timeseries_percentage', 'custom_ingested_timeseries_usage', 'custom_ingested_timeseries_percentage', 'cws_containers_percentage', 'cws_containers_usage', 'cws_fargate_task_percentage', 'cws_fargate_task_usage', 'cws_hosts_percentage', 'cws_hosts_usage', 'data_jobs_monitoring_usage', 'data_jobs_monitoring_percentage', 'data_stream_monitoring_usage', 'data_stream_monitoring_percentage', 'dbm_hosts_percentage', 'dbm_hosts_usage', 'dbm_queries_percentage', 'dbm_queries_usage', 'error_tracking_usage', 'error_tracking_percentage', 'estimated_indexed_spans_usage', 'estimated_indexed_spans_percentage', 'estimated_ingested_spans_usage', 'estimated_ingested_spans_percentage', 'fargate_usage', 'fargate_percentage', 'flex_stored_logs_usage', 'flex_stored_logs_percentage', 'functions_usage', 'functions_percentage', 'incident_management_monthly_active_users_usage', 'incident_management_monthly_active_users_percentage', 'infra_host_usage', 'infra_host_percentage', 'invocations_usage', 'invocations_percentage', 'lambda_traced_invocations_usage', 'lambda_traced_invocations_percentage', 'llm_observability_usage', 'llm_observability_percentage', 'llm_spans_usage', 'llm_spans_percentage', 'mobile_app_testing_percentage', 'mobile_app_testing_usage', 'ndm_netflow_usage', 'ndm_netflow_percentage', 'network_device_wireless_usage', 'network_device_wireless_percentage', 'npm_host_usage', 'npm_host_percentage', 'obs_pipeline_bytes_usage', 'obs_pipeline_bytes_percentage', 'obs_pipelines_vcpu_usage', 'obs_pipelines_vcpu_percentage', 'online_archive_usage', 'online_archive_percentage', 'product_analytics_session_usage', 'product_analytics_session_percentage', 'profiled_container_usage', 'profiled_container_percentage', 'profiled_fargate_usage', 'profiled_fargate_percentage', 'profiled_host_usage', 'profiled_host_percentage', 'published_app_usage', 'published_app_percentage', 'serverless_apps_usage', 'serverless_apps_percentage', 'snmp_usage', 'snmp_percentage', 'universal_service_monitoring_usage', 'universal_service_monitoring_percentage', 'vuln_management_hosts_usage', 'vuln_management_hosts_percentage', 'sds_scanned_bytes_usage', 'sds_scanned_bytes_percentage', 'ci_test_indexed_spans_usage', 'ci_test_indexed_spans_percentage', 'ingested_logs_bytes_usage', 'ingested_logs_bytes_percentage', 'ci_pipeline_indexed_spans_usage', 'ci_pipeline_indexed_spans_percentage', 'indexed_spans_usage', 'indexed_spans_percentage', 'custom_event_usage', 'custom_event_percentage', 'logs_indexed_custom_retention_usage', 'logs_indexed_custom_retention_percentage', 'logs_indexed_360day_usage', 'logs_indexed_360day_percentage', 'logs_indexed_180day_usage', 'logs_indexed_180day_percentage', 'logs_indexed_90day_usage', 'logs_indexed_90day_percentage', 'logs_indexed_60day_usage', 'logs_indexed_60day_percentage', 'logs_indexed_45day_usage', 'logs_indexed_45day_percentage', 'logs_indexed_30day_usage', 'logs_indexed_30day_percentage', 'logs_indexed_15day_usage', 'logs_indexed_15day_percentage', 'logs_indexed_7day_usage', 'logs_indexed_7day_percentage', 'logs_indexed_3day_usage', 'logs_indexed_3day_percentage', 'logs_indexed_1day_usage', 'logs_indexed_1day_percentage', 'rum_ingested_usage', 'rum_ingested_percentage', 'rum_investigate_usage', 'rum_investigate_percentage', 'rum_replay_sessions_usage', 'rum_replay_sessions_percentage', 'rum_session_replay_add_on_usage', 'rum_session_replay_add_on_percentage', 'rum_browser_mobile_sessions_usage', 'rum_browser_mobile_sessions_percentage', 'ingested_spans_bytes_usage', 'ingested_spans_bytes_percentage', 'siem_analyzed_logs_add_on_usage', 'siem_analyzed_logs_add_on_percentage', 'siem_ingested_bytes_usage', 'siem_ingested_bytes_percentage', 'workflow_executions_usage', 'workflow_executions_percentage', 'sca_fargate_usage', 'sca_fargate_percentage', '*']
|
|
490
492
|
if @api_client.config.client_side_validation && opts[:'sort_name'] && !allowable_values.include?(opts[:'sort_name'])
|
|
491
493
|
fail ArgumentError, "invalid value for \"sort_name\", must be one of #{allowable_values}"
|
|
492
494
|
end
|
|
@@ -30,6 +30,7 @@ module DatadogAPIClient::V1
|
|
|
30
30
|
APPSEC_USAGE = "appsec_usage".freeze
|
|
31
31
|
ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE = "asm_serverless_traced_invocations_usage".freeze
|
|
32
32
|
ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE = "asm_serverless_traced_invocations_percentage".freeze
|
|
33
|
+
BITS_AI_INVESTIGATIONS_USAGE = "bits_ai_investigations_usage".freeze
|
|
33
34
|
BROWSER_USAGE = "browser_usage".freeze
|
|
34
35
|
CI_PIPELINE_INDEXED_SPANS_USAGE = "ci_pipeline_indexed_spans_usage".freeze
|
|
35
36
|
CI_TEST_INDEXED_SPANS_USAGE = "ci_test_indexed_spans_usage".freeze
|
|
@@ -55,6 +56,7 @@ module DatadogAPIClient::V1
|
|
|
55
56
|
ESTIMATED_INDEXED_SPANS_USAGE = "estimated_indexed_spans_usage".freeze
|
|
56
57
|
ESTIMATED_INGESTED_SPANS_USAGE = "estimated_ingested_spans_usage".freeze
|
|
57
58
|
FARGATE_USAGE = "fargate_usage".freeze
|
|
59
|
+
FLEX_STORED_LOGS = "flex_stored_logs".freeze
|
|
58
60
|
FUNCTIONS_USAGE = "functions_usage".freeze
|
|
59
61
|
INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE = "incident_management_monthly_active_users_usage".freeze
|
|
60
62
|
INDEXED_SPANS_USAGE = "indexed_spans_usage".freeze
|
|
@@ -64,6 +66,7 @@ module DatadogAPIClient::V1
|
|
|
64
66
|
INVOCATIONS_USAGE = "invocations_usage".freeze
|
|
65
67
|
LAMBDA_TRACED_INVOCATIONS_USAGE = "lambda_traced_invocations_usage".freeze
|
|
66
68
|
LLM_OBSERVABILITY_USAGE = "llm_observability_usage".freeze
|
|
69
|
+
LLM_SPANS_USAGE = "llm_spans_usage".freeze
|
|
67
70
|
LOGS_INDEXED_15DAY_USAGE = "logs_indexed_15day_usage".freeze
|
|
68
71
|
LOGS_INDEXED_180DAY_USAGE = "logs_indexed_180day_usage".freeze
|
|
69
72
|
LOGS_INDEXED_1DAY_USAGE = "logs_indexed_1day_usage".freeze
|
|
@@ -35,6 +35,8 @@ module DatadogAPIClient::V1
|
|
|
35
35
|
APPSEC_PERCENTAGE = "appsec_percentage".freeze
|
|
36
36
|
ASM_SERVERLESS_TRACED_INVOCATIONS_USAGE = "asm_serverless_traced_invocations_usage".freeze
|
|
37
37
|
ASM_SERVERLESS_TRACED_INVOCATIONS_PERCENTAGE = "asm_serverless_traced_invocations_percentage".freeze
|
|
38
|
+
BITS_AI_INVESTIGATIONS_USAGE = "bits_ai_investigations_usage".freeze
|
|
39
|
+
BITS_AI_INVESTIGATIONS_PERCENTAGE = "bits_ai_investigations_percentage".freeze
|
|
38
40
|
BROWSER_USAGE = "browser_usage".freeze
|
|
39
41
|
BROWSER_PERCENTAGE = "browser_percentage".freeze
|
|
40
42
|
CI_VISIBILITY_ITR_USAGE = "ci_visibility_itr_usage".freeze
|
|
@@ -77,6 +79,8 @@ module DatadogAPIClient::V1
|
|
|
77
79
|
ESTIMATED_INGESTED_SPANS_PERCENTAGE = "estimated_ingested_spans_percentage".freeze
|
|
78
80
|
FARGATE_USAGE = "fargate_usage".freeze
|
|
79
81
|
FARGATE_PERCENTAGE = "fargate_percentage".freeze
|
|
82
|
+
FLEX_STORED_LOGS_USAGE = "flex_stored_logs_usage".freeze
|
|
83
|
+
FLEX_STORED_LOGS_PERCENTAGE = "flex_stored_logs_percentage".freeze
|
|
80
84
|
FUNCTIONS_USAGE = "functions_usage".freeze
|
|
81
85
|
FUNCTIONS_PERCENTAGE = "functions_percentage".freeze
|
|
82
86
|
INCIDENT_MANAGEMENT_MONTHLY_ACTIVE_USERS_USAGE = "incident_management_monthly_active_users_usage".freeze
|
|
@@ -89,6 +93,8 @@ module DatadogAPIClient::V1
|
|
|
89
93
|
LAMBDA_TRACED_INVOCATIONS_PERCENTAGE = "lambda_traced_invocations_percentage".freeze
|
|
90
94
|
LLM_OBSERVABILITY_USAGE = "llm_observability_usage".freeze
|
|
91
95
|
LLM_OBSERVABILITY_PERCENTAGE = "llm_observability_percentage".freeze
|
|
96
|
+
LLM_SPANS_USAGE = "llm_spans_usage".freeze
|
|
97
|
+
LLM_SPANS_PERCENTAGE = "llm_spans_percentage".freeze
|
|
92
98
|
MOBILE_APP_TESTING_USAGE = "mobile_app_testing_percentage".freeze
|
|
93
99
|
MOBILE_APP_TESTING_PERCENTAGE = "mobile_app_testing_usage".freeze
|
|
94
100
|
NDM_NETFLOW_USAGE = "ndm_netflow_usage".freeze
|