datadog_api_client 1.8.0 → 1.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.apigentools-info +4 -4
- data/.generator/conftest.py +476 -0
- data/.generator/poetry.lock +288 -71
- data/.generator/pyproject.toml +3 -0
- data/.generator/schemas/v1/openapi.yaml +1461 -270
- data/.generator/schemas/v2/openapi.yaml +1887 -221
- data/.generator/src/generator/__main__.py +1 -1
- data/.generator/src/generator/cli.py +16 -13
- data/.generator/src/generator/formatter.py +106 -39
- data/.generator/src/generator/openapi.py +184 -44
- data/.generator/src/generator/replacement.json +1 -0
- data/.generator/src/generator/templates/api.j2 +38 -17
- data/.generator/src/generator/templates/api_client.j2 +107 -67
- data/.generator/src/generator/templates/api_error.j2 +1 -1
- data/.generator/src/generator/templates/configuration.j2 +2 -13
- data/.generator/src/generator/templates/example.j2 +40 -0
- data/.generator/src/generator/templates/model.j2 +2 -2
- data/.generator/src/generator/templates/model_base.j2 +6 -6
- data/.generator/src/generator/templates/model_generic.j2 +46 -59
- data/.generator/src/generator/templates/model_oneof.j2 +4 -4
- data/.generator/src/generator/templates/package.j2 +9 -8
- data/.generator/tests/test_scenarios.py +6 -0
- data/.github/workflows/prepare_release.yml +15 -3
- data/.github/workflows/test.yml +10 -5
- data/.github/workflows/test_integration.yml +0 -7
- data/.pre-commit-config.yaml +12 -3
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +98 -0
- data/Makefile +3 -1
- data/README.md +17 -1
- data/check-examples.sh +0 -2
- data/datadog_api_client.gemspec +1 -1
- data/examples/v1/aws-integration/CreateAWSAccount.rb +26 -0
- data/examples/v1/aws-integration/CreateAWSTagFilter.rb +11 -0
- data/examples/v1/aws-integration/CreateNewAWSExternalID.rb +26 -0
- data/examples/v1/aws-integration/DeleteAWSAccount.rb +10 -0
- data/examples/v1/aws-integration/DeleteAWSTagFilter.rb +10 -0
- data/examples/v1/aws-integration/ListAWSAccounts.rb +5 -0
- data/examples/v1/aws-integration/ListAWSTagFilters.rb +5 -0
- data/examples/v1/aws-integration/ListAvailableAWSNamespaces.rb +5 -0
- data/examples/v1/aws-integration/UpdateAWSAccount.rb +30 -0
- data/examples/v1/aws-logs-integration/CheckAWSLogsLambdaAsync.rb +10 -0
- data/examples/v1/aws-logs-integration/CheckAWSLogsServicesAsync.rb +17 -0
- data/examples/v1/aws-logs-integration/CreateAWSLambdaARN.rb +10 -0
- data/examples/v1/aws-logs-integration/DeleteAWSLambdaARN.rb +10 -0
- data/examples/v1/aws-logs-integration/EnableAWSLogServices.rb +17 -0
- data/examples/v1/aws-logs-integration/ListAWSLogsIntegrations.rb +5 -0
- data/examples/v1/aws-logs-integration/ListAWSLogsServices.rb +5 -0
- data/examples/v1/azure-integration/CreateAzureIntegration.rb +18 -0
- data/examples/v1/azure-integration/DeleteAzureIntegration.rb +18 -0
- data/examples/v1/azure-integration/ListAzureIntegration.rb +5 -0
- data/examples/v1/azure-integration/UpdateAzureHostFilters.rb +18 -0
- data/examples/v1/azure-integration/UpdateAzureIntegration.rb +18 -0
- data/examples/v1/dashboards/CreateDashboard_1442588603.rb +61 -0
- data/examples/v1/dashboards/CreateDashboard_2308247857.rb +1 -1
- data/examples/v1/dashboards/CreateDashboard_2316374332.rb +1 -1
- data/examples/v1/dashboards/CreateDashboard_2338918735.rb +1 -1
- data/examples/v1/dashboards/CreateDashboard_252716965.rb +52 -0
- data/examples/v1/dashboards/CreateDashboard_3882428227.rb +60 -0
- data/examples/v1/dashboards/CreateDashboard_4026341408.rb +32 -0
- data/examples/v1/dashboards/CreateDashboard_4076476470.rb +32 -0
- data/examples/v1/dashboards/CreateDashboard_765140092.rb +53 -0
- data/examples/v1/dashboards/UpdateDashboard.rb +1 -1
- data/examples/v1/downtimes/CreateDowntime_2908359488.rb +1 -0
- data/examples/v1/downtimes/CreateDowntime_3059354445.rb +1 -0
- data/examples/v1/downtimes/ListDowntimes.rb +5 -0
- data/examples/v1/downtimes/ListMonitorDowntimes.rb +5 -0
- data/examples/v1/downtimes/UpdateDowntime.rb +1 -0
- data/examples/v1/events/GetEvent.rb +5 -0
- data/examples/v1/events/ListEvents.rb +5 -0
- data/examples/v1/gcp-integration/CreateGCPIntegration.rb +22 -0
- data/examples/v1/gcp-integration/DeleteGCPIntegration.rb +22 -0
- data/examples/v1/gcp-integration/ListGCPIntegration.rb +5 -0
- data/examples/v1/gcp-integration/UpdateGCPIntegration.rb +22 -0
- data/examples/v1/hosts/GetHostTotals.rb +5 -0
- data/examples/v1/hosts/MuteHost.rb +11 -0
- data/examples/v1/hosts/UnmuteHost.rb +5 -0
- data/examples/v1/key-management/CreateAPIKey.rb +9 -0
- data/examples/v1/key-management/CreateApplicationKey.rb +9 -0
- data/examples/v1/key-management/DeleteAPIKey.rb +5 -0
- data/examples/v1/key-management/DeleteApplicationKey.rb +5 -0
- data/examples/v1/key-management/GetAPIKey.rb +5 -0
- data/examples/v1/key-management/GetApplicationKey.rb +5 -0
- data/examples/v1/key-management/ListAPIKeys.rb +5 -0
- data/examples/v1/key-management/ListApplicationKeys.rb +5 -0
- data/examples/v1/key-management/UpdateAPIKey.rb +9 -0
- data/examples/v1/key-management/UpdateApplicationKey.rb +9 -0
- data/examples/v1/logs/ListLogs.rb +15 -0
- data/examples/v1/logs/ListLogs_235998668.rb +1 -1
- data/examples/v1/logs-indexes/CreateLogsIndex.rb +23 -0
- data/examples/v1/logs-indexes/GetLogsIndex.rb +5 -0
- data/examples/v1/logs-indexes/GetLogsIndexOrder.rb +5 -0
- data/examples/v1/logs-indexes/ListLogIndexes.rb +5 -0
- data/examples/v1/logs-indexes/UpdateLogsIndex.rb +20 -0
- data/examples/v1/logs-indexes/UpdateLogsIndexOrder.rb +13 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline.rb +24 -0
- data/examples/v1/logs-pipelines/DeleteLogsPipeline.rb +5 -0
- data/examples/v1/logs-pipelines/GetLogsPipeline.rb +5 -0
- data/examples/v1/logs-pipelines/GetLogsPipelineOrder.rb +5 -0
- data/examples/v1/logs-pipelines/ListLogsPipelines.rb +5 -0
- data/examples/v1/logs-pipelines/UpdateLogsPipeline.rb +24 -0
- data/examples/v1/logs-pipelines/UpdateLogsPipelineOrder.rb +13 -0
- data/examples/v1/metrics/GetMetricMetadata.rb +5 -0
- data/examples/v1/metrics/ListActiveMetrics.rb +5 -0
- data/examples/v1/metrics/ListMetrics.rb +5 -0
- data/examples/v1/metrics/SubmitDistributionPoints.rb +22 -0
- data/examples/v1/metrics/SubmitDistributionPoints_3109558960.rb +25 -0
- data/examples/v1/metrics/UpdateMetricMetadata.rb +11 -0
- data/examples/v1/monitors/CreateMonitor_1969035628.rb +52 -0
- data/examples/v1/monitors/CreateMonitor_2520912138.rb +22 -0
- data/examples/v1/monitors/CreateMonitor_3824294658.rb +52 -0
- data/examples/v1/monitors/ListMonitors_3448441939.rb +9 -0
- data/examples/v1/monitors/ValidateExistingMonitor.rb +39 -0
- data/examples/v1/organizations/CreateChildOrg.rb +15 -0
- data/examples/v1/organizations/DowngradeOrg.rb +5 -0
- data/examples/v1/organizations/GetOrg.rb +5 -0
- data/examples/v1/organizations/ListOrgs.rb +5 -0
- data/examples/v1/organizations/UpdateOrg.rb +41 -0
- data/examples/v1/organizations/UploadIdPForOrg.rb +5 -0
- data/examples/v1/pagerduty-integration/CreatePagerDutyIntegrationService.rb +10 -0
- data/examples/v1/pagerduty-integration/DeletePagerDutyIntegrationService.rb +5 -0
- data/examples/v1/pagerduty-integration/GetPagerDutyIntegrationService.rb +5 -0
- data/examples/v1/pagerduty-integration/UpdatePagerDutyIntegrationService.rb +9 -0
- data/examples/v1/security-monitoring/AddSecurityMonitoringSignalToIncident.rb +9 -0
- data/examples/v1/security-monitoring/EditSecurityMonitoringSignalAssignee.rb +9 -0
- data/examples/v1/security-monitoring/EditSecurityMonitoringSignalState.rb +10 -0
- data/examples/v1/service-level-objective-corrections/CreateSLOCorrection.rb +0 -3
- data/examples/v1/service-level-objective-corrections/CreateSLOCorrection_1326388368.rb +0 -3
- data/examples/v1/service-level-objective-corrections/DeleteSLOCorrection.rb +5 -0
- data/examples/v1/service-level-objective-corrections/GetSLOCorrection.rb +0 -3
- data/examples/v1/service-level-objective-corrections/ListSLOCorrection.rb +0 -3
- data/examples/v1/service-level-objective-corrections/UpdateSLOCorrection.rb +0 -3
- data/examples/v1/service-level-objectives/CheckCanDeleteSLO.rb +5 -0
- data/examples/v1/service-level-objectives/DeleteSLOTimeframeInBulk.rb +15 -0
- data/examples/v1/service-level-objectives/GetSLOCorrections.rb +0 -3
- data/examples/v1/service-level-objectives/ListSLOs.rb +1 -1
- data/examples/v1/service-level-objectives/SearchSLO.rb +16 -0
- data/examples/v1/slack-integration/CreateSlackIntegrationChannel.rb +15 -0
- data/examples/v1/slack-integration/GetSlackIntegrationChannel.rb +5 -0
- data/examples/v1/slack-integration/GetSlackIntegrationChannels.rb +5 -0
- data/examples/v1/slack-integration/RemoveSlackIntegrationChannel.rb +5 -0
- data/examples/v1/slack-integration/UpdateSlackIntegrationChannel.rb +15 -0
- data/examples/v1/snapshots/GetGraphSnapshot.rb +2 -0
- data/examples/v1/synthetics/CreateGlobalVariable.rb +32 -0
- data/examples/v1/synthetics/CreatePrivateLocation.rb +21 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +22 -60
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1402674167.rb +44 -0
- data/examples/v1/synthetics/CreateSyntheticsBrowserTest.rb +1 -1
- data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +67 -0
- data/examples/v1/synthetics/DeleteGlobalVariable.rb +5 -0
- data/examples/v1/synthetics/DeletePrivateLocation.rb +5 -0
- data/examples/v1/synthetics/DeleteTests.rb +14 -0
- data/examples/v1/synthetics/EditGlobalVariable.rb +32 -0
- data/examples/v1/synthetics/GetAPITest.rb +5 -0
- data/examples/v1/synthetics/GetAPITestLatestResults.rb +5 -0
- data/examples/v1/synthetics/GetAPITestResult.rb +5 -0
- data/examples/v1/synthetics/GetBrowserTest.rb +5 -0
- data/examples/v1/synthetics/GetBrowserTestLatestResults.rb +5 -0
- data/examples/v1/synthetics/GetBrowserTestResult.rb +5 -0
- data/examples/v1/synthetics/GetGlobalVariable.rb +5 -0
- data/examples/v1/synthetics/GetPrivateLocation.rb +5 -0
- data/examples/v1/synthetics/GetSyntheticsCIBatch.rb +5 -0
- data/examples/v1/synthetics/GetTest.rb +5 -0
- data/examples/v1/synthetics/ListGlobalVariables.rb +5 -0
- data/examples/v1/synthetics/ListLocations.rb +5 -0
- data/examples/v1/synthetics/ListTests.rb +5 -0
- data/examples/v1/synthetics/TriggerCITests.rb +32 -0
- data/examples/v1/synthetics/UpdateBrowserTest.rb +72 -0
- data/examples/v1/synthetics/UpdatePrivateLocation.rb +18 -0
- data/examples/v1/synthetics/UpdateTestPauseStatus.rb +9 -0
- data/examples/v1/tags/CreateHostTags.rb +12 -0
- data/examples/v1/tags/DeleteHostTags.rb +5 -0
- data/examples/v1/tags/GetHostTags.rb +5 -0
- data/examples/v1/tags/ListHostTags.rb +5 -0
- data/examples/v1/tags/UpdateHostTags.rb +12 -0
- data/examples/v1/usage-metering/GetDailyCustomReports.rb +8 -0
- data/examples/v1/usage-metering/GetHourlyUsageAttribution.rb +1 -1
- data/examples/v1/usage-metering/GetMonthlyCustomReports.rb +8 -0
- data/examples/v1/usage-metering/GetMonthlyUsageAttribution.rb +1 -1
- data/examples/v1/usage-metering/GetMonthlyUsageAttribution_3849653599.rb +11 -0
- data/examples/v1/usage-metering/GetSpecifiedDailyCustomReports.rb +8 -0
- data/examples/v1/usage-metering/GetSpecifiedMonthlyCustomReports.rb +8 -0
- data/examples/v1/usage-metering/GetUsageAttribution.rb +1 -1
- data/examples/v1/usage-metering/GetUsageAuditLogs.rb +8 -0
- data/examples/v1/usage-metering/GetUsageBillableSummary.rb +5 -0
- data/examples/v1/usage-metering/GetUsageCWS.rb +8 -0
- data/examples/v1/usage-metering/GetUsageDBM.rb +8 -0
- data/examples/v1/usage-metering/GetUsageFargate.rb +8 -0
- data/examples/v1/usage-metering/GetUsageHosts.rb +8 -0
- data/examples/v1/usage-metering/GetUsageLambda.rb +8 -0
- data/examples/v1/usage-metering/GetUsageLogs.rb +8 -0
- data/examples/v1/usage-metering/GetUsageLogsByIndex.rb +8 -0
- data/examples/v1/usage-metering/GetUsageLogsByRetention.rb +8 -0
- data/examples/v1/usage-metering/GetUsageNetworkFlows.rb +8 -0
- data/examples/v1/usage-metering/GetUsageNetworkHosts.rb +8 -0
- data/examples/v1/usage-metering/GetUsageRumSessions.rb +8 -0
- data/examples/v1/usage-metering/GetUsageRumSessions_3271366243.rb +9 -0
- data/examples/v1/usage-metering/GetUsageRumUnits.rb +8 -0
- data/examples/v1/usage-metering/GetUsageSDS.rb +8 -0
- data/examples/v1/usage-metering/GetUsageSummary.rb +5 -0
- data/examples/v1/usage-metering/GetUsageSynthetics.rb +5 -0
- data/examples/v1/usage-metering/GetUsageSyntheticsAPI.rb +8 -0
- data/examples/v1/usage-metering/GetUsageSyntheticsBrowser.rb +8 -0
- data/examples/v1/usage-metering/GetUsageTimeseries.rb +8 -0
- data/examples/v1/usage-metering/GetUsageTopAvgMetrics.rb +8 -0
- data/examples/v1/users/CreateUser.rb +13 -0
- data/examples/v1/users/DisableUser.rb +5 -0
- data/examples/v1/users/GetUser.rb +5 -0
- data/examples/v1/users/ListUsers.rb +5 -0
- data/examples/v1/users/UpdateUser.rb +13 -0
- data/examples/v1/webhooks-integration/GetWebhooksIntegrationCustomVariable.rb +5 -0
- data/examples/v2/authn-mappings/CreateAuthNMapping.rb +1 -1
- data/examples/v2/authn-mappings/DeleteAuthNMapping.rb +1 -1
- data/examples/v2/authn-mappings/GetAuthNMapping.rb +1 -1
- data/examples/v2/authn-mappings/ListAuthNMappings.rb +1 -1
- data/examples/v2/authn-mappings/UpdateAuthNMapping.rb +1 -1
- data/examples/v2/dashboard-lists/CreateDashboardListItems.rb +14 -0
- data/examples/v2/dashboard-lists/CreateDashboardListItems_3995409989.rb +20 -0
- data/examples/v2/dashboard-lists/CreateDashboardListItems_825696022.rb +20 -0
- data/examples/v2/dashboard-lists/DeleteDashboardListItems.rb +14 -0
- data/examples/v2/dashboard-lists/DeleteDashboardListItems_2656706656.rb +20 -0
- data/examples/v2/dashboard-lists/DeleteDashboardListItems_3851624753.rb +20 -0
- data/examples/v2/dashboard-lists/GetDashboardListItems.rb +8 -0
- data/examples/v2/dashboard-lists/UpdateDashboardListItems.rb +20 -0
- data/examples/v2/key-management/CreateCurrentUserApplicationKey.rb +19 -0
- data/examples/v2/key-management/DeleteApplicationKey.rb +5 -0
- data/examples/v2/key-management/DeleteCurrentUserApplicationKey.rb +5 -0
- data/examples/v2/key-management/GetCurrentUserApplicationKey.rb +5 -0
- data/examples/v2/key-management/ListApplicationKeys.rb +5 -0
- data/examples/v2/key-management/ListCurrentUserApplicationKeys.rb +5 -0
- data/examples/v2/logs/AggregateLogs_2955613758.rb +1 -1
- data/examples/v2/logs/ListLogsGet.rb +5 -0
- data/examples/v2/logs/SubmitLog.rb +16 -0
- data/examples/v2/logs-archives/AddReadRoleToArchive.rb +12 -0
- data/examples/v2/logs-archives/CreateLogsArchive.rb +30 -0
- data/examples/v2/logs-archives/DeleteLogsArchive.rb +5 -0
- data/examples/v2/logs-archives/GetLogsArchive.rb +5 -0
- data/examples/v2/logs-archives/GetLogsArchiveOrder.rb +5 -0
- data/examples/v2/logs-archives/ListArchiveReadRoles.rb +5 -0
- data/examples/v2/logs-archives/ListLogsArchives.rb +5 -0
- data/examples/v2/logs-archives/RemoveRoleFromArchive.rb +12 -0
- data/examples/v2/logs-archives/UpdateLogsArchive.rb +30 -0
- data/examples/v2/logs-archives/UpdateLogsArchiveOrder.rb +18 -0
- data/examples/v2/metrics/CreateTagConfiguration.rb +19 -0
- data/examples/v2/metrics/DeleteTagConfiguration.rb +5 -0
- data/examples/v2/metrics/EstimateMetricsOutputSeries.rb +9 -0
- data/examples/v2/metrics/ListTagConfigurationByName.rb +8 -0
- data/examples/v2/metrics/ListTagConfigurations.rb +5 -0
- data/examples/v2/metrics/ListTagConfigurations_103226315.rb +8 -0
- data/examples/v2/metrics/ListTagConfigurations_1799362914.rb +0 -3
- data/examples/v2/metrics/ListTagsByMetricName.rb +8 -0
- data/examples/v2/metrics/ListVolumesByMetricName.rb +5 -0
- data/examples/v2/metrics/SubmitMetrics.rb +20 -0
- data/examples/v2/metrics/UpdateTagConfiguration.rb +20 -0
- data/examples/v2/opsgenie-integration/CreateOpsgenieService.rb +16 -0
- data/examples/v2/opsgenie-integration/DeleteOpsgenieService.rb +8 -0
- data/examples/v2/opsgenie-integration/GetOpsgenieService.rb +8 -0
- data/examples/v2/opsgenie-integration/ListOpsgenieServices.rb +5 -0
- data/examples/v2/opsgenie-integration/UpdateOpsgenieService.rb +21 -0
- data/examples/v2/organizations/UploadIdPMetadata.rb +8 -0
- data/examples/v2/rum/AggregateRUMEvents.rb +33 -0
- data/examples/v2/rum/SearchRUMEvents.rb +1 -4
- data/examples/v2/security-monitoring/DeleteSecurityFilter.rb +5 -0
- data/examples/v2/security-monitoring/GetSecurityMonitoringRule.rb +5 -0
- data/examples/v2/security-monitoring/ListSecurityMonitoringRules.rb +5 -0
- data/examples/v2/security-monitoring/ListSecurityMonitoringSignals.rb +5 -0
- data/examples/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +21 -0
- data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +46 -0
- data/examples/v2/service-accounts/CreateServiceAccountApplicationKey.rb +19 -0
- data/examples/v2/service-accounts/DeleteServiceAccountApplicationKey.rb +5 -0
- data/examples/v2/service-accounts/GetServiceAccountApplicationKey.rb +5 -0
- data/examples/v2/service-accounts/ListServiceAccountApplicationKeys.rb +5 -0
- data/examples/v2/service-accounts/UpdateServiceAccountApplicationKey.rb +20 -0
- data/examples/v2/usage-metering/GetCostByOrg.rb +5 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg.rb +5 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg_1171921972.rb +9 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg_627383212.rb +9 -0
- data/examples/v2/usage-metering/GetUsageApplicationSecurityMonitoring.rb +8 -0
- data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations.rb +8 -0
- data/examples/v2/usage-metering/GetUsageObservabilityPipelines.rb +8 -0
- data/examples/v2/users/GetUser.rb +5 -0
- data/examples/v2/users/ListUserOrganizations.rb +5 -0
- data/lib/datadog_api_client/user_agent.rb +15 -0
- data/lib/datadog_api_client/v1/api/authentication_api.rb +7 -6
- data/lib/datadog_api_client/v1/api/aws_integration_api.rb +60 -67
- data/lib/datadog_api_client/v1/api/aws_logs_integration_api.rb +47 -61
- data/lib/datadog_api_client/v1/api/azure_integration_api.rb +34 -41
- data/lib/datadog_api_client/v1/api/dashboard_lists_api.rb +34 -34
- data/lib/datadog_api_client/v1/api/dashboards_api.rb +47 -53
- data/lib/datadog_api_client/v1/api/downtimes_api.rb +47 -48
- data/lib/datadog_api_client/v1/api/events_api.rb +19 -38
- data/lib/datadog_api_client/v1/api/gcp_integration_api.rb +28 -30
- data/lib/datadog_api_client/v1/api/hosts_api.rb +27 -39
- data/lib/datadog_api_client/v1/api/ip_ranges_api.rb +7 -6
- data/lib/datadog_api_client/v1/api/key_management_api.rb +70 -70
- data/lib/datadog_api_client/v1/api/logs_api.rb +12 -40
- data/lib/datadog_api_client/v1/api/logs_indexes_api.rb +41 -46
- data/lib/datadog_api_client/v1/api/logs_pipelines_api.rb +47 -57
- data/lib/datadog_api_client/v1/api/metrics_api.rb +122 -57
- data/lib/datadog_api_client/v1/api/monitors_api.rb +209 -305
- data/lib/datadog_api_client/v1/api/notebooks_api.rb +35 -46
- data/lib/datadog_api_client/v1/api/organizations_api.rb +113 -55
- data/lib/datadog_api_client/v1/api/pager_duty_integration_api.rb +28 -29
- data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +266 -0
- data/lib/datadog_api_client/v1/api/service_checks_api.rb +6 -10
- data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +36 -36
- data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +147 -100
- data/lib/datadog_api_client/v1/api/slack_integration_api.rb +35 -40
- data/lib/datadog_api_client/v1/api/snapshots_api.rb +10 -12
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +189 -202
- data/lib/datadog_api_client/v1/api/tags_api.rb +35 -44
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +295 -322
- data/lib/datadog_api_client/v1/api/users_api.rb +32 -40
- data/lib/datadog_api_client/v1/api/webhooks_integration_api.rb +55 -60
- data/lib/datadog_api_client/v1/api_client.rb +104 -64
- data/lib/datadog_api_client/v1/configuration.rb +52 -18
- data/lib/datadog_api_client/v1/models/add_signal_to_incident_request.rb +142 -0
- data/lib/datadog_api_client/v1/models/alert_graph_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/alert_value_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/api_error_response.rb +0 -11
- data/lib/datadog_api_client/v1/models/api_key.rb +0 -14
- data/lib/datadog_api_client/v1/models/api_key_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/api_key_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/apm_stats_query_column_type.rb +0 -11
- data/lib/datadog_api_client/v1/models/apm_stats_query_definition.rb +0 -23
- data/lib/datadog_api_client/v1/models/application_key.rb +0 -14
- data/lib/datadog_api_client/v1/models/application_key_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/application_key_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/authentication_validation_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_account.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_account_and_lambda_request.rb +0 -14
- data/lib/datadog_api_client/v1/models/aws_account_create_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_account_delete_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_account_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_async_error.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_async_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_lambda.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_list_services_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_services_request.rb +0 -14
- data/lib/datadog_api_client/v1/models/aws_tag_filter.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_tag_filter_create_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_tag_filter_delete_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_tag_filter_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/azure_account.rb +0 -8
- data/lib/datadog_api_client/v1/models/cancel_downtimes_by_scope_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/canceled_downtimes_ids.rb +0 -8
- data/lib/datadog_api_client/v1/models/change_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/change_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/check_can_delete_monitor_response.rb +0 -11
- data/lib/datadog_api_client/v1/models/check_can_delete_monitor_response_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/check_can_delete_slo_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/check_can_delete_slo_response_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/check_status_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/creator.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard.rb +0 -17
- data/lib/datadog_api_client/v1/models/dashboard_bulk_action_data.rb +0 -14
- data/lib/datadog_api_client/v1/models/dashboard_bulk_delete_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/dashboard_delete_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_list.rb +0 -11
- data/lib/datadog_api_client/v1/models/dashboard_list_delete_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_list_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_restore_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/dashboard_summary.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_summary_definition.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_template_variable.rb +0 -11
- data/lib/datadog_api_client/v1/models/dashboard_template_variable_preset.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_template_variable_preset_value.rb +0 -8
- data/lib/datadog_api_client/v1/models/deleted_monitor.rb +0 -8
- data/lib/datadog_api_client/v1/models/distribution_point_item.rb +63 -0
- data/lib/datadog_api_client/v1/models/distribution_points_content_encoding.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_points_payload.rb +124 -0
- data/lib/datadog_api_client/v1/models/distribution_points_series.rb +179 -0
- data/lib/datadog_api_client/v1/models/distribution_points_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_query.rb +64 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +21 -9
- data/lib/datadog_api_client/v1/models/distribution_widget_x_axis.rb +0 -8
- data/lib/datadog_api_client/v1/models/distribution_widget_y_axis.rb +0 -8
- data/lib/datadog_api_client/v1/models/downtime.rb +11 -18
- data/lib/datadog_api_client/v1/models/downtime_child.rb +11 -18
- data/lib/datadog_api_client/v1/models/downtime_recurrence.rb +0 -14
- data/lib/datadog_api_client/v1/models/event.rb +2 -13
- data/lib/datadog_api_client/v1/models/event_create_request.rb +1 -21
- data/lib/datadog_api_client/v1/models/event_create_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/event_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/event_query_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/event_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/event_stream_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/event_timeline_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_dependency_stats_query_definition.rb +0 -29
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +1 -0
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stats_query_definition.rb +0 -23
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition_compute.rb +0 -11
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition_search.rb +0 -11
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_group_by.rb +0 -11
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_group_by_sort.rb +0 -11
- data/lib/datadog_api_client/v1/models/formula_and_function_metric_query_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/formula_and_function_process_query_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/free_text_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/funnel_query.rb +0 -17
- data/lib/datadog_api_client/v1/models/funnel_step.rb +0 -14
- data/lib/datadog_api_client/v1/models/funnel_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/funnel_widget_request.rb +0 -14
- data/lib/datadog_api_client/v1/models/gcp_account.rb +0 -8
- data/lib/datadog_api_client/v1/models/geomap_widget_definition.rb +0 -26
- data/lib/datadog_api_client/v1/models/geomap_widget_definition_style.rb +0 -14
- data/lib/datadog_api_client/v1/models/geomap_widget_definition_view.rb +0 -11
- data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/graph_snapshot.rb +0 -8
- data/lib/datadog_api_client/v1/models/group_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/heat_map_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/heat_map_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/host.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_map_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_map_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/host_map_widget_definition_requests.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_map_widget_definition_style.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_meta.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_meta_install_method.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_metrics.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_mute_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_mute_settings.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_tags.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_totals.rb +0 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_pagination.rb +1 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +2 -0
- data/lib/datadog_api_client/v1/models/http_log_error.rb +0 -17
- data/lib/datadog_api_client/v1/models/http_log_item.rb +29 -15
- data/lib/datadog_api_client/v1/models/i_frame_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/idp_form_data.rb +0 -11
- data/lib/datadog_api_client/v1/models/idp_response.rb +0 -11
- data/lib/datadog_api_client/v1/models/image_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/intake_payload_accepted.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_agents.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_api.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_apm.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_logs.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_process.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics.rb +0 -8
- data/lib/datadog_api_client/v1/models/{monitor_group_search_response_counts_type_item.rb → ip_prefixes_synthetics_private_locations.rb} +23 -27
- data/lib/datadog_api_client/v1/models/ip_prefixes_webhooks.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -9
- data/lib/datadog_api_client/v1/models/list_stream_column.rb +0 -14
- data/lib/datadog_api_client/v1/models/list_stream_query.rb +1 -15
- data/lib/datadog_api_client/v1/models/list_stream_source.rb +2 -1
- data/lib/datadog_api_client/v1/models/list_stream_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/list_stream_widget_request.rb +0 -17
- data/lib/datadog_api_client/v1/models/log.rb +0 -8
- data/lib/datadog_api_client/v1/models/log_content.rb +4 -10
- data/lib/datadog_api_client/v1/models/log_query_definition.rb +0 -8
- data/lib/datadog_api_client/v1/models/log_query_definition_group_by.rb +0 -11
- data/lib/datadog_api_client/v1/models/log_query_definition_group_by_sort.rb +0 -14
- data/lib/datadog_api_client/v1/models/log_query_definition_search.rb +0 -11
- data/lib/datadog_api_client/v1/models/log_stream_widget_definition.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_api_error.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_api_error_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_arithmetic_processor.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_attribute_remapper.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_by_retention.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_by_retention_monthly_usage.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_by_retention_org_usage.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_by_retention_orgs.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_category_processor.rb +1 -18
- data/lib/datadog_api_client/v1/models/logs_category_processor_category.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_date_remapper.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_exclusion.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_exclusion_filter.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_filter.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_geo_ip_parser.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_grok_parser.rb +0 -20
- data/lib/datadog_api_client/v1/models/logs_grok_parser_rules.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_index.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_index_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_index_update_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_indexes_order.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_list_request.rb +1 -15
- data/lib/datadog_api_client/v1/models/logs_list_request_time.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_lookup_processor.rb +0 -20
- data/lib/datadog_api_client/v1/models/logs_message_remapper.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_pipeline.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_pipeline_processor.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_pipelines_order.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_query_compute.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_retention_agg_sum_usage.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_retention_sum_usage.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_service_remapper.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_sort.rb +1 -1
- data/lib/datadog_api_client/v1/models/logs_status_remapper.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_string_builder_processor.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_trace_remapper.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_url_parser.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_user_agent_parser.rb +0 -17
- data/lib/datadog_api_client/v1/models/metric_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/metric_search_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/metric_search_response_results.rb +0 -8
- data/lib/datadog_api_client/v1/models/metrics_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/metrics_payload.rb +0 -11
- data/lib/datadog_api_client/v1/models/metrics_query_metadata.rb +0 -14
- data/lib/datadog_api_client/v1/models/metrics_query_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/metrics_query_unit.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor.rb +1 -21
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition_compute.rb +0 -11
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition_search.rb +0 -11
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_group_by.rb +0 -11
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_group_by_sort.rb +0 -11
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_events_data_source.rb +2 -0
- data/lib/datadog_api_client/v1/models/monitor_group_search_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts.rb +2 -10
- data/lib/datadog_api_client/v1/models/monitor_group_search_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_options.rb +0 -14
- data/lib/datadog_api_client/v1/models/monitor_options_aggregation.rb +0 -8
- data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_tag_item.rb → monitor_search_count_item.rb} +3 -11
- data/lib/datadog_api_client/v1/models/monitor_search_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_search_response_counts.rb +4 -12
- data/lib/datadog_api_client/v1/models/monitor_search_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_search_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_search_result_notification.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_state.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_state_group.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_summary_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/monitor_threshold_window_options.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_thresholds.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_type.rb +1 -0
- data/lib/datadog_api_client/v1/models/monitor_update_request.rb +1 -15
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_pagination.rb +1 -8
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_response.rb +1 -9
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +4 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +41 -9
- data/lib/datadog_api_client/v1/models/note_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_absolute_time.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_author.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebook_cell_create_request.rb +146 -0
- data/lib/datadog_api_client/v1/models/notebook_cell_create_request_attributes.rb +68 -0
- data/lib/datadog_api_client/v1/models/notebook_cell_response.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebook_cell_update_request.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebook_create_data.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_create_data_attributes.rb +0 -23
- data/lib/datadog_api_client/v1/models/notebook_create_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_distribution_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_heat_map_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_log_stream_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_markdown_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_markdown_cell_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebook_relative_time.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebook_response_data.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebook_response_data_attributes.rb +0 -23
- data/lib/datadog_api_client/v1/models/notebook_split_by.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_timeseries_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_toplist_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_update_data.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_update_data_attributes.rb +0 -23
- data/lib/datadog_api_client/v1/models/notebook_update_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebooks_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebooks_response_data.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebooks_response_data_attributes.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebooks_response_meta.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebooks_response_page.rb +0 -8
- data/lib/datadog_api_client/v1/models/org_downgraded_response.rb +111 -0
- data/lib/datadog_api_client/v1/models/organization.rb +12 -13
- data/lib/datadog_api_client/v1/models/organization_billing.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_create_body.rb +0 -14
- data/lib/datadog_api_client/v1/models/organization_create_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings_saml.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings_saml_autocreate_users_domains.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings_saml_idp_initiated_login.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings_saml_strict_mode.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_subscription.rb +0 -8
- data/lib/datadog_api_client/v1/models/pager_duty_service.rb +0 -14
- data/lib/datadog_api_client/v1/models/pager_duty_service_key.rb +0 -11
- data/lib/datadog_api_client/v1/models/pager_duty_service_name.rb +0 -11
- data/lib/datadog_api_client/v1/models/pagination.rb +0 -8
- data/lib/datadog_api_client/v1/models/process_query_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/query_value_widget_definition.rb +11 -21
- data/lib/datadog_api_client/v1/models/query_value_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/response_meta_attributes.rb +0 -8
- data/lib/datadog_api_client/v1/models/scatter_plot_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition_requests.rb +0 -8
- data/lib/datadog_api_client/v1/models/scatterplot_table_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/scatterplot_widget_formula.rb +0 -14
- data/lib/datadog_api_client/v1/models/search_slo_response.rb +131 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data.rb +121 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes.rb +123 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets.rb +197 -0
- data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_type_item.rb → search_slo_response_data_attributes_facets_object_int.rb} +7 -15
- data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_muted_item.rb → search_slo_response_data_attributes_facets_object_string.rb} +7 -15
- data/lib/datadog_api_client/v1/models/search_slo_response_links.rb +151 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_meta.rb +111 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_meta_page.rb +181 -0
- data/lib/datadog_api_client/v1/models/series.rb +2 -16
- data/lib/datadog_api_client/v1/models/service_check.rb +0 -20
- data/lib/datadog_api_client/v1/models/service_level_objective.rb +3 -20
- data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +1 -15
- data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +3 -20
- data/lib/datadog_api_client/v1/models/service_map_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/service_summary_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/signal_archive_reason.rb +29 -0
- data/lib/datadog_api_client/v1/models/signal_assignee_update_request.rb +132 -0
- data/lib/datadog_api_client/v1/models/signal_state_update_request.rb +152 -0
- data/lib/datadog_api_client/v1/models/signal_triage_state.rb +28 -0
- data/lib/datadog_api_client/v1/models/slack_integration_channel.rb +0 -8
- data/lib/datadog_api_client/v1/models/slack_integration_channel_display.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_error.rb +0 -17
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_response_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_create_data.rb +0 -11
- data/lib/datadog_api_client/v1/models/slo_correction_create_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_create_request_attributes.rb +1 -18
- data/lib/datadog_api_client/v1/models/slo_correction_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_response_attributes.rb +4 -12
- data/lib/datadog_api_client/v1/models/slo_correction_response_attributes_modifier.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_update_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_update_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_update_request_attributes.rb +1 -9
- data/lib/datadog_api_client/v1/models/slo_delete_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +1 -30
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series.rb +0 -17
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series_metadata_unit.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_monitor.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_response_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_response_error.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_response_error_with_type.rb +0 -14
- data/lib/datadog_api_client/v1/models/slo_history_sli_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_list_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_list_response_metadata_page.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_response_data.rb +1 -9
- data/lib/datadog_api_client/v1/models/slo_threshold.rb +0 -14
- data/lib/datadog_api_client/v1/models/slo_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/successful_signal_update_response.rb +111 -0
- data/lib/datadog_api_client/v1/models/sunburst_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend_inline_automatic.rb +0 -11
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend_table.rb +0 -11
- data/lib/datadog_api_client/v1/models/sunburst_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_step.rb +0 -20
- data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +12 -24
- data/lib/datadog_api_client/v1/models/synthetics_api_test_config.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_failure.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_full.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_full_check.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_short.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_short_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target_target.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_assertion_target.rb +0 -17
- data/lib/datadog_api_client/v1/models/synthetics_assertion_type.rb +2 -0
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_ntlm.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_sigv4.rb +0 -17
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_web.rb +0 -28
- data/lib/datadog_api_client/v1/models/synthetics_batch_details.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_batch_details_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_batch_result.rb +1 -9
- data/lib/datadog_api_client/v1/models/synthetics_browser_error.rb +0 -17
- data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +11 -23
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_config.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_failure.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_full.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_full_check.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_short.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_short_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb +152 -0
- data/lib/datadog_api_client/v1/models/synthetics_browser_variable.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_ci.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_git.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_pipeline.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_provider.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_test.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_ci_test_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_config_variable.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +2 -10
- data/lib/datadog_api_client/v1/models/synthetics_delete_tests_payload.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_delete_tests_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_deleted_test.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_device.rb +0 -20
- data/lib/datadog_api_client/v1/models/synthetics_get_api_test_latest_results_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_get_browser_test_latest_results_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_global_variable.rb +0 -20
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_attributes.rb +1 -9
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_parse_test_options.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_value.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_list_global_variables_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_list_tests_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_location.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_locations.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_parsing_options.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location.rb +11 -18
- data/lib/datadog_api_client/v1/models/synthetics_private_location_creation_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location_creation_response_result_encryption.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location_metadata.rb +113 -0
- data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets_authentication.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets_config_decryption.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate_issuer.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate_subject.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_step.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_step_detail.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_step_detail_warning.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_test_ci_options.rb +111 -0
- data/lib/datadog_api_client/v1/models/synthetics_test_config.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -9
- data/lib/datadog_api_client/v1/models/synthetics_test_details_sub_type.rb +2 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +43 -21
- data/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_test_options_retry.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +21 -21
- data/lib/datadog_api_client/v1/models/synthetics_test_request_certificate.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_test_request_certificate_item.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_test_request_proxy.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_timing.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_trigger_body.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_test_location.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_test_run_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_tests_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_trigger_test.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_update_test_pause_status_payload.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_variable_parser.rb +0 -11
- data/lib/datadog_api_client/v1/models/table_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/table_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/tag_to_hosts.rb +0 -8
- data/lib/datadog_api_client/v1/models/{monitor_group_search_response_counts_status_item.rb → timeseries_background.rb} +32 -27
- data/lib/datadog_api_client/v1/models/timeseries_background_type.rb +27 -0
- data/lib/datadog_api_client/v1/models/timeseries_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/timeseries_widget_expression_alias.rb +0 -11
- data/lib/datadog_api_client/v1/models/timeseries_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/toplist_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/toplist_widget_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/tree_map_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/tree_map_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_analyzed_logs_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_analyzed_logs_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_aggregates_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_pagination.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_response.rb +1 -9
- data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +4 -2
- data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +4 -2
- data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +41 -33
- data/lib/datadog_api_client/v1/models/usage_audit_logs_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_audit_logs_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_billable_summary_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_billable_summary_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +473 -11
- data/lib/datadog_api_client/v1/models/usage_billable_summary_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_attributes.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_meta.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_page.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_cws_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_cws_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_dbm_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_dbm_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_fargate_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_fargate_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_host_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_hosts_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_incident_management_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_incident_management_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_indexed_spans_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_indexed_spans_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_ingested_spans_hour.rb +1 -9
- data/lib/datadog_api_client/v1/models/usage_ingested_spans_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/{usage_io_t_hour.rb → usage_iot_hour.rb} +0 -8
- data/lib/datadog_api_client/v1/models/{usage_io_t_response.rb → usage_iot_response.rb} +0 -8
- data/lib/datadog_api_client/v1/models/usage_lambda_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_lambda_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_by_index_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_by_index_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_by_retention_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_by_retention_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_network_flows_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_network_flows_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_network_hosts_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_network_hosts_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_online_archive_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_online_archive_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_profiling_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_profiling_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +17 -11
- data/lib/datadog_api_client/v1/models/usage_rum_sessions_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_rum_units_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_rum_units_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_sds_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_sds_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_snmp_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_snmp_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_attributes.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_meta.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_page.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +22 -10
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +22 -10
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +22 -10
- data/lib/datadog_api_client/v1/models/usage_synthetics_api_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_api_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_browser_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_browser_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_timeseries_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_timeseries_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_metadata.rb +1 -9
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_pagination.rb +132 -0
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/user.rb +0 -8
- data/lib/datadog_api_client/v1/models/user_disable_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/user_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/user_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/webhooks_integration.rb +0 -14
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable.rb +0 -17
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_response.rb +0 -14
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/webhooks_integration_update_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget.rb +0 -11
- data/lib/datadog_api_client/v1/models/widget_axis.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_conditional_format.rb +0 -17
- data/lib/datadog_api_client/v1/models/widget_custom_link.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_event.rb +0 -11
- data/lib/datadog_api_client/v1/models/widget_field_sort.rb +0 -14
- data/lib/datadog_api_client/v1/models/widget_formula.rb +0 -11
- data/lib/datadog_api_client/v1/models/widget_formula_limit.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_layout.rb +0 -32
- data/lib/datadog_api_client/v1/models/widget_marker.rb +0 -11
- data/lib/datadog_api_client/v1/models/widget_request_style.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_style.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_time.rb +0 -8
- data/lib/datadog_api_client/v1.rb +37 -8
- data/lib/datadog_api_client/v2/api/audit_api.rb +51 -26
- data/lib/datadog_api_client/v2/api/{auth_n_mappings_api.rb → authn_mappings_api.rb} +88 -95
- data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +43 -45
- data/lib/datadog_api_client/v2/api/dashboard_lists_api.rb +28 -31
- data/lib/datadog_api_client/v2/api/incident_services_api.rb +35 -41
- data/lib/datadog_api_client/v2/api/incident_teams_api.rb +35 -41
- data/lib/datadog_api_client/v2/api/incidents_api.rb +54 -39
- data/lib/datadog_api_client/v2/api/key_management_api.rb +96 -119
- data/lib/datadog_api_client/v2/api/logs_api.rb +60 -70
- data/lib/datadog_api_client/v2/api/logs_archives_api.rb +68 -77
- data/lib/datadog_api_client/v2/api/logs_metrics_api.rb +35 -37
- data/lib/datadog_api_client/v2/api/metrics_api.rb +232 -87
- data/lib/datadog_api_client/v2/api/opsgenie_integration_api.rb +395 -0
- data/lib/datadog_api_client/v2/api/organizations_api.rb +100 -0
- data/lib/datadog_api_client/v2/api/processes_api.rb +27 -12
- data/lib/datadog_api_client/v2/api/roles_api.rb +91 -103
- data/lib/datadog_api_client/v2/api/rum_api.rb +133 -29
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +118 -98
- data/lib/datadog_api_client/v2/api/service_accounts_api.rb +34 -45
- data/lib/datadog_api_client/v2/api/usage_metering_api.rb +406 -0
- data/lib/datadog_api_client/v2/api/users_api.rb +70 -81
- data/lib/datadog_api_client/v2/api_client.rb +104 -64
- data/lib/datadog_api_client/v2/configuration.rb +1 -19
- data/lib/datadog_api_client/v2/model_base.rb +1 -1
- data/lib/datadog_api_client/v2/models/api_error_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_key_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_key_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/api_key_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_key_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/api_key_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/api_key_update_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_key_update_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/api_key_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_keys_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/application_key_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/application_key_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/application_key_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/application_key_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/application_key_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/application_key_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/application_key_update_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/application_key_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/audit_logs_event.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_events_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_query_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_query_options.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_query_page_options.rb +0 -11
- data/lib/datadog_api_client/v2/models/audit_logs_response_links.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_response_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_search_events_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_warning.rb +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping.rb → authn_mapping.rb} +1 -27
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_attributes.rb → authn_mapping_attributes.rb} +1 -23
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_create_attributes.rb → authn_mapping_create_attributes.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_create_data.rb → authn_mapping_create_data.rb} +0 -11
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_create_relationships.rb → authn_mapping_create_relationships.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_create_request.rb → authn_mapping_create_request.rb} +0 -11
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_included.rb → authn_mapping_included.rb} +0 -0
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_relationships.rb → authn_mapping_relationships.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_response.rb → authn_mapping_response.rb} +15 -11
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_update_attributes.rb → authn_mapping_update_attributes.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_update_data.rb → authn_mapping_update_data.rb} +0 -14
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_update_relationships.rb → authn_mapping_update_relationships.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_update_request.rb → authn_mapping_update_request.rb} +0 -11
- data/lib/datadog_api_client/v2/models/{auth_n_mappings_response.rb → authn_mappings_response.rb} +13 -9
- data/lib/datadog_api_client/v2/models/{auth_n_mappings_sort.rb → authn_mappings_sort.rb} +0 -0
- data/lib/datadog_api_client/v2/models/{auth_n_mappings_type.rb → authn_mappings_type.rb} +0 -0
- data/lib/datadog_api_client/v2/models/chargeback_breakdown.rb +131 -0
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_creator_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_updater_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rules_list_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/cost_by_org.rb +133 -0
- data/lib/datadog_api_client/v2/models/cost_by_org_attributes.rb +153 -0
- data/lib/datadog_api_client/v2/models/cost_by_org_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/cost_by_org_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/creator.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_add_items_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_add_items_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_delete_items_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_delete_items_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_item.rb +0 -17
- data/lib/datadog_api_client/v2/models/dashboard_list_item_request.rb +0 -14
- data/lib/datadog_api_client/v2/models/dashboard_list_item_response.rb +0 -14
- data/lib/datadog_api_client/v2/models/dashboard_list_items.rb +0 -11
- data/lib/datadog_api_client/v2/models/dashboard_list_update_items_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_update_items_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/full_api_key.rb +0 -8
- data/lib/datadog_api_client/v2/models/full_api_key_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/full_application_key.rb +0 -8
- data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/hourly_usage_type.rb +28 -0
- data/lib/datadog_api_client/v2/models/http_log_error.rb +0 -8
- data/lib/datadog_api_client/v2/models/http_log_errors.rb +0 -8
- data/lib/datadog_api_client/v2/models/http_log_item.rb +40 -12
- data/lib/datadog_api_client/v2/models/idp_metadata_form_data.rb +111 -0
- data/lib/datadog_api_client/v2/models/incident_create_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_create_relationships.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_field_attributes_multiple_value.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_field_attributes_single_value.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_notification_handle.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_response_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_response_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_response_meta.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_response_meta_pagination.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_response_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_service_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_create_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_service_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_response_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_service_response_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_service_update_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_update_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_services_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_create_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_team_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_response_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_team_response_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_team_update_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_update_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_teams_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_create_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_create_attributes_content.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_update_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incidents_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +113 -0
- data/lib/datadog_api_client/v2/models/list_application_keys_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/log.rb +0 -8
- data/lib/datadog_api_client/v2/models/log_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value.rb +3 -3
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value_timeseries_point.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_request_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_response_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_sort.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregation_function.rb +1 -0
- data/lib/datadog_api_client/v2/models/logs_archive.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_archive_attributes.rb +12 -15
- data/lib/datadog_api_client/v2/models/logs_archive_create_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_archive_create_request_attributes.rb +12 -18
- data/lib/datadog_api_client/v2/models/logs_archive_create_request_definition.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_archive_definition.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_archive_destination_azure.rb +0 -20
- data/lib/datadog_api_client/v2/models/logs_archive_destination_gcs.rb +0 -17
- data/lib/datadog_api_client/v2/models/logs_archive_destination_s3.rb +0 -17
- data/lib/datadog_api_client/v2/models/logs_archive_integration_azure.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_archive_integration_gcs.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_archive_integration_s3.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_archive_order.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_archive_order_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_archive_order_definition.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_archives.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_compute.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_group_by.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_group_by_histogram.rb +0 -17
- data/lib/datadog_api_client/v2/models/logs_group_by_missing.rb +2 -2
- data/lib/datadog_api_client/v2/models/logs_group_by_total.rb +3 -3
- data/lib/datadog_api_client/v2/models/logs_list_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_list_request_page.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_list_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_list_response_links.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_compute.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metric_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metric_create_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/logs_metric_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metric_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_group_by.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metric_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_compute.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_group_by.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_metric_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metrics_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_query_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_query_options.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_response_metadata_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_warning.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_all_tags.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_all_tags_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_all_tags_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_content_encoding.rb +26 -0
- data/lib/datadog_api_client/v2/models/metric_custom_aggregation.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_distinct_volume.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_distinct_volume_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_estimate.rb +133 -0
- data/lib/datadog_api_client/v2/models/metric_estimate_attributes.rb +133 -0
- data/lib/datadog_api_client/v2/models/metric_estimate_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/metric_estimate_response.rb +111 -0
- data/lib/datadog_api_client/v2/models/metric_estimate_type.rb +28 -0
- data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_intake_type.rb +30 -0
- data/lib/datadog_api_client/v2/models/metric_metadata.rb +111 -0
- data/lib/datadog_api_client/v2/models/metric_origin.rb +170 -0
- data/lib/datadog_api_client/v2/models/metric_payload.rb +124 -0
- data/lib/datadog_api_client/v2/models/metric_point.rb +122 -0
- data/lib/datadog_api_client/v2/models/metric_resource.rb +121 -0
- data/lib/datadog_api_client/v2/models/metric_series.rb +220 -0
- data/lib/datadog_api_client/v2/models/metric_tag_configuration.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +0 -16
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +0 -10
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/metric_volumes_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/metrics_and_metric_tag_configurations_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/nullable_relationship_to_user.rb +0 -8
- data/lib/datadog_api_client/v2/models/nullable_relationship_to_user_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_attributes.rb +174 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_data.rb +145 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_request.rb +122 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_region_type.rb +28 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_response.rb +122 -0
- data/lib/datadog_api_client/{v1/models/monitor_search_response_counts_status_item.rb → v2/models/opsgenie_service_response_attributes.rb} +28 -25
- data/lib/datadog_api_client/v2/models/opsgenie_service_response_data.rb +166 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_attributes.rb +142 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_data.rb +166 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_request.rb +122 -0
- data/lib/datadog_api_client/v2/models/opsgenie_services_response.rb +124 -0
- data/lib/datadog_api_client/v2/models/organization.rb +0 -11
- data/lib/datadog_api_client/v2/models/organization_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/pagination.rb +0 -8
- data/lib/datadog_api_client/v2/models/partial_api_key.rb +0 -8
- data/lib/datadog_api_client/v2/models/partial_api_key_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/partial_application_key.rb +0 -8
- data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/partial_application_key_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/permission.rb +0 -11
- data/lib/datadog_api_client/v2/models/permission_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/permissions_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/process_summaries_meta.rb +0 -8
- data/lib/datadog_api_client/v2/models/process_summaries_meta_page.rb +0 -14
- data/lib/datadog_api_client/v2/models/process_summaries_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/process_summary.rb +0 -8
- data/lib/datadog_api_client/v2/models/process_summary_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadata_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadatas.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_incident_postmortem.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_incident_postmortem_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/relationship_to_organization.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_organization_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/relationship_to_organizations.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_permission.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_permission_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_permissions.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_role.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_role_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_roles.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute_data.rb +1 -22
- data/lib/datadog_api_client/v2/models/relationship_to_user.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_user_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/relationship_to_users.rb +0 -11
- data/lib/datadog_api_client/v2/models/response_meta_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/role.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_clone.rb +0 -14
- data/lib/datadog_api_client/v2/models/role_clone_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_clone_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_create_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_create_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_create_response_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_response_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_update_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/role_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_update_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_update_response_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/roles_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_aggregate_bucket_value.rb +64 -0
- data/lib/datadog_api_client/v2/models/rum_aggregate_bucket_value_timeseries_point.rb +121 -0
- data/lib/datadog_api_client/v2/models/rum_aggregate_request.rb +156 -0
- data/lib/datadog_api_client/v2/models/rum_aggregate_sort.rb +143 -0
- data/lib/datadog_api_client/v2/models/rum_aggregate_sort_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_aggregation_buckets_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/rum_aggregation_function.rb +37 -0
- data/lib/datadog_api_client/v2/models/rum_analytics_aggregate_response.rb +131 -0
- data/lib/datadog_api_client/v2/models/rum_bucket_response.rb +121 -0
- data/lib/datadog_api_client/v2/models/rum_compute.rb +155 -0
- data/lib/datadog_api_client/v2/models/rum_compute_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_event.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_event_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_events_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_group_by.rb +177 -0
- data/lib/datadog_api_client/v2/models/rum_group_by_histogram.rb +167 -0
- data/lib/datadog_api_client/v2/models/rum_group_by_missing.rb +63 -0
- data/lib/datadog_api_client/v2/models/rum_group_by_total.rb +64 -0
- data/lib/datadog_api_client/v2/models/rum_query_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_query_options.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_query_page_options.rb +0 -11
- data/lib/datadog_api_client/v2/models/rum_response_links.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_response_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_search_events_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_sort_order.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_warning.rb +0 -8
- data/lib/datadog_api_client/v2/models/saml_assertion_attribute.rb +1 -22
- data/lib/datadog_api_client/v2/models/saml_assertion_attribute_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_filter_create_attributes.rb +0 -23
- data/lib/datadog_api_client/v2/models/security_filter_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/security_filter_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter.rb +0 -14
- data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter_meta.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter_update_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_filter_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/security_filter_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_filters_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_list_rules_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case_create.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_create_payload.rb +0 -26
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_detection_method.rb +1 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_hardcoded_evaluator_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_impossible_travel_options.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +29 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_method.rb +27 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_threshold.rb +27 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +23 -9
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_query.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_create.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_update_payload.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_signal.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_attributes.rb +3 -9
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request_page.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_links.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_meta.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_meta_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/service_account_create_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/service_account_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/service_account_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/usage_application_security_monitoring_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/usage_attributes_object.rb +153 -0
- data/lib/datadog_api_client/v2/models/usage_data_object.rb +133 -0
- data/lib/datadog_api_client/v2/models/usage_lambda_traced_invocations_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/usage_observability_pipelines_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/usage_time_series_object.rb +122 -0
- data/lib/datadog_api_client/v2/models/usage_time_series_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/user.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/user_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/user_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/user_invitation_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/user_invitation_data_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_invitation_relationships.rb +0 -11
- data/lib/datadog_api_client/v2/models/user_invitation_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_invitation_response_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_invitations_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/user_invitations_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_response_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_update_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/user_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/users_response.rb +0 -8
- data/lib/datadog_api_client/v2.rb +80 -17
- data/lib/datadog_api_client/version.rb +1 -11
- data/lib/datadog_api_client.rb +1 -0
- data/spec/v1/api_client_spec.rb +9 -28
- data/spec/v2/api_client_spec.rb +9 -28
- metadata +352 -58
- data/.generator/config/v1.json +0 -9
- data/.generator/config/v2.json +0 -9
- data/examples/generated/v1/logs/SubmitLog.rb +0 -15
- data/examples/generated/v2/authn-mappings/ListAuthNMappings.rb +0 -17
- data/examples/generated/v2/incidents/UpdateIncident.rb +0 -20
- data/examples/generated/v2/roles/AddUserToRole.rb +0 -12
- data/examples/generated/v2/roles/RemoveUserFromRole.rb +0 -12
- data/examples/generated/v2/roles/UpdateRole.rb +0 -12
- data/examples/generated/v2/service-accounts/CreateServiceAccountApplicationKey.rb +0 -12
- data/examples/generated/v2/service-accounts/DeleteServiceAccountApplicationKey.rb +0 -11
- data/examples/generated/v2/service-accounts/GetServiceAccountApplicationKey.rb +0 -12
- data/examples/generated/v2/service-accounts/ListServiceAccountApplicationKeys.rb +0 -19
- data/examples/generated/v2/service-accounts/UpdateServiceAccountApplicationKey.rb +0 -13
- data/examples/generated/v2/users/DisableUser.rb +0 -10
- data/examples/generated/v2/users/GetInvitation.rb +0 -11
- data/examples/generated/v2/users/GetUser.rb +0 -11
- data/examples/generated/v2/users/ListUserOrganizations.rb +0 -11
- data/examples/generated/v2/users/ListUserPermissions.rb +0 -11
- data/examples/generated/v2/users/SendInvitations.rb +0 -11
- data/examples/generated/v2/users/UpdateUser.rb +0 -12
- data/extract-code-blocks.awk +0 -81
- data/extract-code-blocks.sh +0 -12
@@ -4,6 +4,13 @@ components:
|
|
4
4
|
headers: {}
|
5
5
|
links: {}
|
6
6
|
parameters:
|
7
|
+
SignalID:
|
8
|
+
description: The ID of the signal.
|
9
|
+
in: path
|
10
|
+
name: signal_id
|
11
|
+
required: true
|
12
|
+
schema:
|
13
|
+
type: string
|
7
14
|
SlackAccountNamePathParameter:
|
8
15
|
description: Your Slack account name.
|
9
16
|
in: path
|
@@ -360,6 +367,23 @@ components:
|
|
360
367
|
- ADMIN
|
361
368
|
- READ_ONLY
|
362
369
|
- ERROR
|
370
|
+
AddSignalToIncidentRequest:
|
371
|
+
description: Attributes describing which incident to add the signal to.
|
372
|
+
properties:
|
373
|
+
add_to_signal_timeline:
|
374
|
+
description: Whether to post the signal on the incident timeline.
|
375
|
+
type: boolean
|
376
|
+
incident_id:
|
377
|
+
description: Public ID attribute of the incident to which the signal will
|
378
|
+
be added.
|
379
|
+
example: 2066
|
380
|
+
format: int64
|
381
|
+
type: integer
|
382
|
+
version:
|
383
|
+
$ref: '#/components/schemas/Version'
|
384
|
+
required:
|
385
|
+
- incident_id
|
386
|
+
type: object
|
363
387
|
AgentCheck:
|
364
388
|
description: Array of strings.
|
365
389
|
example:
|
@@ -1270,10 +1294,101 @@ components:
|
|
1270
1294
|
properties:
|
1271
1295
|
deleted_monitor_id:
|
1272
1296
|
description: ID of the deleted monitor.
|
1297
|
+
example: 666486743
|
1273
1298
|
format: int64
|
1274
1299
|
type: integer
|
1275
1300
|
readOnly: true
|
1276
1301
|
type: object
|
1302
|
+
DistributionPoint:
|
1303
|
+
description: Array of distribution points.
|
1304
|
+
example:
|
1305
|
+
- 1575317847.0
|
1306
|
+
- - 0.5
|
1307
|
+
- 1.0
|
1308
|
+
items:
|
1309
|
+
description: List of distribution point.
|
1310
|
+
oneOf:
|
1311
|
+
- $ref: '#/components/schemas/DistributionPointTimestamp'
|
1312
|
+
- $ref: '#/components/schemas/DistributionPointData'
|
1313
|
+
maxItems: 2
|
1314
|
+
minItems: 2
|
1315
|
+
type: array
|
1316
|
+
DistributionPointData:
|
1317
|
+
description: Distribution point data.
|
1318
|
+
items:
|
1319
|
+
description: List of distribution point data.
|
1320
|
+
format: double
|
1321
|
+
type: number
|
1322
|
+
type: array
|
1323
|
+
DistributionPointTimestamp:
|
1324
|
+
description: Distribution point timestamp. It should be in seconds and current.
|
1325
|
+
format: double
|
1326
|
+
type: number
|
1327
|
+
DistributionPointsContentEncoding:
|
1328
|
+
description: HTTP header used to compress the media-type.
|
1329
|
+
enum:
|
1330
|
+
- deflate
|
1331
|
+
type: string
|
1332
|
+
x-enum-varnames:
|
1333
|
+
- DEFLATE
|
1334
|
+
DistributionPointsPayload:
|
1335
|
+
description: The distribution points payload.
|
1336
|
+
properties:
|
1337
|
+
series:
|
1338
|
+
description: A list of distribution points series to submit to Datadog.
|
1339
|
+
example:
|
1340
|
+
- metric: system.load.1
|
1341
|
+
points:
|
1342
|
+
- - 1475317847.0
|
1343
|
+
- - 1.0
|
1344
|
+
- 2.0
|
1345
|
+
items:
|
1346
|
+
$ref: '#/components/schemas/DistributionPointsSeries'
|
1347
|
+
type: array
|
1348
|
+
required:
|
1349
|
+
- series
|
1350
|
+
type: object
|
1351
|
+
DistributionPointsSeries:
|
1352
|
+
description: A distribution points metric to submit to Datadog.
|
1353
|
+
properties:
|
1354
|
+
host:
|
1355
|
+
description: The name of the host that produced the distribution point metric.
|
1356
|
+
example: test.example.com
|
1357
|
+
type: string
|
1358
|
+
metric:
|
1359
|
+
description: The name of the distribution points metric.
|
1360
|
+
example: system.load.1
|
1361
|
+
type: string
|
1362
|
+
points:
|
1363
|
+
description: Points relating to the distribution point metric. All points
|
1364
|
+
must be tuples with timestamp and a list of values (cannot be a string).
|
1365
|
+
Timestamps should be in POSIX time in seconds.
|
1366
|
+
items:
|
1367
|
+
$ref: '#/components/schemas/DistributionPoint'
|
1368
|
+
type: array
|
1369
|
+
tags:
|
1370
|
+
description: A list of tags associated with the distribution point metric.
|
1371
|
+
example:
|
1372
|
+
- environment:test
|
1373
|
+
items:
|
1374
|
+
description: Individual tags.
|
1375
|
+
type: string
|
1376
|
+
type: array
|
1377
|
+
type:
|
1378
|
+
$ref: '#/components/schemas/DistributionPointsType'
|
1379
|
+
required:
|
1380
|
+
- metric
|
1381
|
+
- points
|
1382
|
+
type: object
|
1383
|
+
DistributionPointsType:
|
1384
|
+
default: distribution
|
1385
|
+
description: The type of the distribution point.
|
1386
|
+
enum:
|
1387
|
+
- distribution
|
1388
|
+
example: distribution
|
1389
|
+
type: string
|
1390
|
+
x-enum-varnames:
|
1391
|
+
- DISTRIBUTION
|
1277
1392
|
DistributionWidgetDefinition:
|
1278
1393
|
description: "The Distribution visualization is another way of showing metrics\naggregated
|
1279
1394
|
across one or several tags, such as hosts.\nUnlike the heat map, a distribution
|
@@ -1334,6 +1449,25 @@ components:
|
|
1334
1449
|
type: string
|
1335
1450
|
x-enum-varnames:
|
1336
1451
|
- DISTRIBUTION
|
1452
|
+
DistributionWidgetHistogramRequestQuery:
|
1453
|
+
description: Query definition for Distribution Widget Histogram Request
|
1454
|
+
example:
|
1455
|
+
data_source: metrics
|
1456
|
+
name: query1
|
1457
|
+
query: histogram:trace.Load{*}
|
1458
|
+
oneOf:
|
1459
|
+
- $ref: '#/components/schemas/FormulaAndFunctionMetricQueryDefinition'
|
1460
|
+
- $ref: '#/components/schemas/FormulaAndFunctionEventQueryDefinition'
|
1461
|
+
- $ref: '#/components/schemas/FormulaAndFunctionApmResourceStatsQueryDefinition'
|
1462
|
+
type: object
|
1463
|
+
DistributionWidgetHistogramRequestType:
|
1464
|
+
description: Request type for the histogram request.
|
1465
|
+
enum:
|
1466
|
+
- histogram
|
1467
|
+
example: histogram
|
1468
|
+
type: string
|
1469
|
+
x-enum-varnames:
|
1470
|
+
- HISTOGRAM
|
1337
1471
|
DistributionWidgetRequest:
|
1338
1472
|
description: Updated distribution widget.
|
1339
1473
|
properties:
|
@@ -1354,6 +1488,10 @@ components:
|
|
1354
1488
|
q:
|
1355
1489
|
description: Widget query.
|
1356
1490
|
type: string
|
1491
|
+
query:
|
1492
|
+
$ref: '#/components/schemas/DistributionWidgetHistogramRequestQuery'
|
1493
|
+
request_type:
|
1494
|
+
$ref: '#/components/schemas/DistributionWidgetHistogramRequestType'
|
1357
1495
|
rum_query:
|
1358
1496
|
$ref: '#/components/schemas/LogQueryDefinition'
|
1359
1497
|
security_query:
|
@@ -1498,6 +1636,11 @@ components:
|
|
1498
1636
|
description: A monitor tag.
|
1499
1637
|
type: string
|
1500
1638
|
type: array
|
1639
|
+
mute_first_recovery_notification:
|
1640
|
+
description: If the first recovery notification during a downtime should
|
1641
|
+
be muted.
|
1642
|
+
example: false
|
1643
|
+
type: boolean
|
1501
1644
|
parent_id:
|
1502
1645
|
description: ID of the parent Downtime.
|
1503
1646
|
example: 123
|
@@ -1627,6 +1770,11 @@ components:
|
|
1627
1770
|
description: A monitor tag.
|
1628
1771
|
type: string
|
1629
1772
|
type: array
|
1773
|
+
mute_first_recovery_notification:
|
1774
|
+
description: If the first recovery notification during a downtime should
|
1775
|
+
be muted.
|
1776
|
+
example: false
|
1777
|
+
type: boolean
|
1630
1778
|
parent_id:
|
1631
1779
|
description: ID of the parent Downtime.
|
1632
1780
|
example: 123
|
@@ -1747,7 +1895,7 @@ components:
|
|
1747
1895
|
description: 'POSIX timestamp of the event. Must be sent as an integer (that
|
1748
1896
|
is no quotes).
|
1749
1897
|
|
1750
|
-
Limited to events no older than
|
1898
|
+
Limited to events no older than 18 hours.'
|
1751
1899
|
format: int64
|
1752
1900
|
type: integer
|
1753
1901
|
device_name:
|
@@ -1782,7 +1930,7 @@ components:
|
|
1782
1930
|
description: 'The type of event being posted. Option examples include nagios,
|
1783
1931
|
hudson, jenkins, my_apps, chef, puppet, git, bitbucket, etc.
|
1784
1932
|
|
1785
|
-
|
1933
|
+
The list of standard source attribute values [available here](https://docs.datadoghq.com/integrations/faq/list-of-api-source-attribute-value).'
|
1786
1934
|
type: string
|
1787
1935
|
tags:
|
1788
1936
|
description: A list of tags to apply to the event.
|
@@ -1853,7 +2001,7 @@ components:
|
|
1853
2001
|
description: 'POSIX timestamp of the event. Must be sent as an integer (that
|
1854
2002
|
is no quotes).
|
1855
2003
|
|
1856
|
-
Limited to events no older than
|
2004
|
+
Limited to events no older than 18 hours'
|
1857
2005
|
format: int64
|
1858
2006
|
type: integer
|
1859
2007
|
device_name:
|
@@ -2124,6 +2272,7 @@ components:
|
|
2124
2272
|
- error_rate
|
2125
2273
|
- hits
|
2126
2274
|
- latency_avg
|
2275
|
+
- latency_distribution
|
2127
2276
|
- latency_max
|
2128
2277
|
- latency_p50
|
2129
2278
|
- latency_p75
|
@@ -2137,6 +2286,7 @@ components:
|
|
2137
2286
|
- ERROR_RATE
|
2138
2287
|
- HITS
|
2139
2288
|
- LATENCY_AVG
|
2289
|
+
- LATENCY_DISTRIBUTION
|
2140
2290
|
- LATENCY_MAX
|
2141
2291
|
- LATENCY_P50
|
2142
2292
|
- LATENCY_P75
|
@@ -2886,6 +3036,9 @@ components:
|
|
2886
3036
|
- message
|
2887
3037
|
type: object
|
2888
3038
|
HTTPLogItem:
|
3039
|
+
additionalProperties:
|
3040
|
+
description: Additional log attributes.
|
3041
|
+
type: string
|
2889
3042
|
description: Logs that are sent over HTTP.
|
2890
3043
|
properties:
|
2891
3044
|
ddsource:
|
@@ -3454,6 +3607,7 @@ components:
|
|
3454
3607
|
next_record_id:
|
3455
3608
|
description: The cursor to get the next results (if any). To make the next
|
3456
3609
|
request, use the same parameters and add `next_record_id`.
|
3610
|
+
nullable: true
|
3457
3611
|
type: string
|
3458
3612
|
type: object
|
3459
3613
|
HourlyUsageAttributionResponse:
|
@@ -3472,10 +3626,12 @@ components:
|
|
3472
3626
|
enum:
|
3473
3627
|
- api_usage
|
3474
3628
|
- apm_host_usage
|
3629
|
+
- appsec_usage
|
3475
3630
|
- browser_usage
|
3476
3631
|
- container_usage
|
3477
3632
|
- custom_timeseries_usage
|
3478
3633
|
- estimated_indexed_logs_usage
|
3634
|
+
- estimated_indexed_spans_usage
|
3479
3635
|
- fargate_usage
|
3480
3636
|
- functions_usage
|
3481
3637
|
- indexed_logs_usage
|
@@ -3489,10 +3645,12 @@ components:
|
|
3489
3645
|
x-enum-varnames:
|
3490
3646
|
- API_USAGE
|
3491
3647
|
- APM_HOST_USAGE
|
3648
|
+
- APPSEC_USAGE
|
3492
3649
|
- BROWSER_USAGE
|
3493
3650
|
- CONTAINER_USAGE
|
3494
3651
|
- CUSTOM_TIMESERIES_USAGE
|
3495
3652
|
- ESTIMATED_INDEXED_LOGS_USAGE
|
3653
|
+
- ESTIMATED_INDEXED_SPANS_USAGE
|
3496
3654
|
- FARGATE_USAGE
|
3497
3655
|
- FUNCTIONS_USAGE
|
3498
3656
|
- INDEXED_LOGS_USAGE
|
@@ -3639,6 +3797,23 @@ components:
|
|
3639
3797
|
description: List of IPv6 prefixes by location.
|
3640
3798
|
type: object
|
3641
3799
|
type: object
|
3800
|
+
IPPrefixesSyntheticsPrivateLocations:
|
3801
|
+
description: Available prefix information for the Synthetics Private Locations
|
3802
|
+
endpoints.
|
3803
|
+
properties:
|
3804
|
+
prefixes_ipv4:
|
3805
|
+
description: List of IPv4 prefixes.
|
3806
|
+
items:
|
3807
|
+
description: IPv4 prefix
|
3808
|
+
type: string
|
3809
|
+
type: array
|
3810
|
+
prefixes_ipv6:
|
3811
|
+
description: List of IPv6 prefixes.
|
3812
|
+
items:
|
3813
|
+
description: IPv6 prefix
|
3814
|
+
type: string
|
3815
|
+
type: array
|
3816
|
+
type: object
|
3642
3817
|
IPPrefixesWebhooks:
|
3643
3818
|
description: Available prefix information for the Webhook endpoints.
|
3644
3819
|
properties:
|
@@ -3674,6 +3849,8 @@ components:
|
|
3674
3849
|
$ref: '#/components/schemas/IPPrefixesProcess'
|
3675
3850
|
synthetics:
|
3676
3851
|
$ref: '#/components/schemas/IPPrefixesSynthetics'
|
3852
|
+
synthetics-private-locations:
|
3853
|
+
$ref: '#/components/schemas/IPPrefixesSyntheticsPrivateLocations'
|
3677
3854
|
version:
|
3678
3855
|
description: Version of the IP list.
|
3679
3856
|
example: 11
|
@@ -3813,18 +3990,20 @@ components:
|
|
3813
3990
|
x-enum-varnames:
|
3814
3991
|
- EVENT_LIST
|
3815
3992
|
ListStreamSource:
|
3816
|
-
default:
|
3993
|
+
default: apm_issue_stream
|
3817
3994
|
description: Source from which to query items to display in the stream.
|
3818
3995
|
enum:
|
3819
|
-
- issue_stream
|
3820
3996
|
- logs_stream
|
3821
3997
|
- audit_stream
|
3822
|
-
|
3998
|
+
- rum_issue_stream
|
3999
|
+
- apm_issue_stream
|
4000
|
+
example: apm_issue_stream
|
3823
4001
|
type: string
|
3824
4002
|
x-enum-varnames:
|
3825
|
-
- ISSUE_STREAM
|
3826
4003
|
- LOGS_STREAM
|
3827
4004
|
- AUDIT_STREAM
|
4005
|
+
- RUM_ISSUE_STREAM
|
4006
|
+
- APM_ISSUE_STREAM
|
3828
4007
|
ListStreamWidgetDefinition:
|
3829
4008
|
description: 'The list stream visualization displays a table of recent events
|
3830
4009
|
in your application that
|
@@ -3842,7 +4021,7 @@ components:
|
|
3842
4021
|
- field: timestamp
|
3843
4022
|
width: auto
|
3844
4023
|
query:
|
3845
|
-
data_source:
|
4024
|
+
data_source: apm_issue_stream
|
3846
4025
|
query_string: '@data_source:APM'
|
3847
4026
|
response_format: event_list
|
3848
4027
|
items:
|
@@ -3948,10 +4127,10 @@ components:
|
|
3948
4127
|
description: Array of tags associated with your log.
|
3949
4128
|
example:
|
3950
4129
|
- team:A
|
3951
|
-
format: array
|
3952
4130
|
items:
|
3953
4131
|
description: Tag associated with your log.
|
3954
|
-
|
4132
|
+
type: string
|
4133
|
+
type: array
|
3955
4134
|
timestamp:
|
3956
4135
|
description: Timestamp of your log.
|
3957
4136
|
example: '2020-05-26T13:36:14Z'
|
@@ -4294,7 +4473,7 @@ components:
|
|
4294
4473
|
categories:
|
4295
4474
|
description: 'Array of filters to match or not a log and their
|
4296
4475
|
|
4297
|
-
corresponding `name`to assign a custom value to the log.'
|
4476
|
+
corresponding `name` to assign a custom value to the log.'
|
4298
4477
|
example: []
|
4299
4478
|
items:
|
4300
4479
|
$ref: '#/components/schemas/LogsCategoryProcessorCategory'
|
@@ -4708,7 +4887,7 @@ components:
|
|
4708
4887
|
properties:
|
4709
4888
|
from:
|
4710
4889
|
description: Minimum timestamp for requested logs.
|
4711
|
-
example: '2020-02-02T02:02:
|
4890
|
+
example: '2020-02-02T02:02:02.202Z'
|
4712
4891
|
format: date-time
|
4713
4892
|
type: string
|
4714
4893
|
timezone:
|
@@ -4718,7 +4897,7 @@ components:
|
|
4718
4897
|
type: string
|
4719
4898
|
to:
|
4720
4899
|
description: Maximum timestamp for requested logs.
|
4721
|
-
example: '2020-02-
|
4900
|
+
example: '2020-02-20T02:02:02.202Z'
|
4722
4901
|
format: date-time
|
4723
4902
|
type: string
|
4724
4903
|
required:
|
@@ -5080,7 +5259,7 @@ components:
|
|
5080
5259
|
x-enum-varnames:
|
5081
5260
|
- SERVICE_REMAPPER
|
5082
5261
|
LogsSort:
|
5083
|
-
description: Time-ascending `asc` or time-descending `desc`results.
|
5262
|
+
description: Time-ascending `asc` or time-descending `desc` results.
|
5084
5263
|
enum:
|
5085
5264
|
- asc
|
5086
5265
|
- desc
|
@@ -5620,11 +5799,13 @@ components:
|
|
5620
5799
|
type: string
|
5621
5800
|
restricted_roles:
|
5622
5801
|
description: A list of unique role identifiers to define which roles are
|
5623
|
-
allowed to edit the monitor.
|
5624
|
-
|
5625
|
-
|
5626
|
-
|
5627
|
-
the
|
5802
|
+
allowed to edit the monitor. The unique identifiers for all roles can
|
5803
|
+
be pulled from the [Roles API](https://docs.datadoghq.com/api/latest/roles/#list-roles)
|
5804
|
+
and are located in the `data.id` field. Editing a monitor includes any
|
5805
|
+
updates to the monitor configuration, monitor deletion, and muting of
|
5806
|
+
the monitor for any amount of time. `restricted_roles` is the successor
|
5807
|
+
of `locked`. For more information about `locked` and `restricted_roles`,
|
5808
|
+
see the [monitor options docs](https://docs.datadoghq.com/monitors/guide/monitor_api_options/#permissions-options).
|
5628
5809
|
items:
|
5629
5810
|
description: A role UUID.
|
5630
5811
|
type: string
|
@@ -5794,10 +5975,14 @@ components:
|
|
5794
5975
|
description: Data source for event platform-based queries.
|
5795
5976
|
enum:
|
5796
5977
|
- rum
|
5978
|
+
- ci_pipelines
|
5979
|
+
- ci_tests
|
5797
5980
|
example: rum
|
5798
5981
|
type: string
|
5799
5982
|
x-enum-varnames:
|
5800
5983
|
- RUM
|
5984
|
+
- CI_PIPELINES
|
5985
|
+
- CI_TESTS
|
5801
5986
|
MonitorFormulaAndFunctionQueryDefinition:
|
5802
5987
|
description: A formula and function query.
|
5803
5988
|
oneOf:
|
@@ -6051,7 +6236,8 @@ components:
|
|
6051
6236
|
type: boolean
|
6052
6237
|
silenced:
|
6053
6238
|
additionalProperties:
|
6054
|
-
description:
|
6239
|
+
description: UTC epoch timestamp in seconds when the downtime for the
|
6240
|
+
group expires.
|
6055
6241
|
format: int64
|
6056
6242
|
nullable: true
|
6057
6243
|
type: integer
|
@@ -6491,6 +6677,7 @@ components:
|
|
6491
6677
|
- event-v2 alert
|
6492
6678
|
- audit alert
|
6493
6679
|
- ci-pipelines alert
|
6680
|
+
- ci-tests alert
|
6494
6681
|
- error-tracking alert
|
6495
6682
|
example: query alert
|
6496
6683
|
type: string
|
@@ -6509,6 +6696,7 @@ components:
|
|
6509
6696
|
- EVENT_V2_ALERT
|
6510
6697
|
- AUDIT_ALERT
|
6511
6698
|
- CI_PIPELINES_ALERT
|
6699
|
+
- CI_TESTS_ALERT
|
6512
6700
|
- ERROR_TRACKING_ALERT
|
6513
6701
|
MonitorUpdateRequest:
|
6514
6702
|
description: Object describing a monitor update request.
|
@@ -6561,11 +6749,13 @@ components:
|
|
6561
6749
|
type: string
|
6562
6750
|
restricted_roles:
|
6563
6751
|
description: A list of unique role identifiers to define which roles are
|
6564
|
-
allowed to edit the monitor.
|
6565
|
-
|
6566
|
-
|
6567
|
-
|
6568
|
-
the
|
6752
|
+
allowed to edit the monitor. The unique identifiers for all roles can
|
6753
|
+
be pulled from the [Roles API](https://docs.datadoghq.com/api/latest/roles/#list-roles)
|
6754
|
+
and are located in the `data.id` field. Editing a monitor includes any
|
6755
|
+
updates to the monitor configuration, monitor deletion, and muting of
|
6756
|
+
the monitor for any amount of time. `restricted_roles` is the successor
|
6757
|
+
of `locked`. For more information about `locked` and `restricted_roles`,
|
6758
|
+
see the [monitor options docs](https://docs.datadoghq.com/monitors/guide/monitor_api_options/#permissions-options).
|
6569
6759
|
items:
|
6570
6760
|
description: A role UUID.
|
6571
6761
|
type: string
|
@@ -6622,6 +6812,7 @@ components:
|
|
6622
6812
|
next_record_id:
|
6623
6813
|
description: The cursor to use to get the next results, if any. To make
|
6624
6814
|
the next request, use the same parameters with the addition of the `next_record_id`.
|
6815
|
+
nullable: true
|
6625
6816
|
type: string
|
6626
6817
|
type: object
|
6627
6818
|
MonthlyUsageAttributionResponse:
|
@@ -6630,7 +6821,7 @@ components:
|
|
6630
6821
|
metadata:
|
6631
6822
|
$ref: '#/components/schemas/MonthlyUsageAttributionMetadata'
|
6632
6823
|
usage:
|
6633
|
-
description: Get
|
6824
|
+
description: Get usage summary by tag(s).
|
6634
6825
|
items:
|
6635
6826
|
$ref: '#/components/schemas/MonthlyUsageAttributionBody'
|
6636
6827
|
type: array
|
@@ -6642,6 +6833,8 @@ components:
|
|
6642
6833
|
- api_percentage
|
6643
6834
|
- apm_host_usage
|
6644
6835
|
- apm_host_percentage
|
6836
|
+
- appsec_usage
|
6837
|
+
- appsec_percentage
|
6645
6838
|
- browser_usage
|
6646
6839
|
- browser_percentage
|
6647
6840
|
- container_usage
|
@@ -6650,6 +6843,8 @@ components:
|
|
6650
6843
|
- custom_timeseries_percentage
|
6651
6844
|
- estimated_indexed_logs_usage
|
6652
6845
|
- estimated_indexed_logs_percentage
|
6846
|
+
- estimated_indexed_spans_usage
|
6847
|
+
- estimated_indexed_spans_percentage
|
6653
6848
|
- fargate_usage
|
6654
6849
|
- fargate_percentage
|
6655
6850
|
- functions_usage
|
@@ -6675,6 +6870,8 @@ components:
|
|
6675
6870
|
- API_PERCENTAGE
|
6676
6871
|
- APM_HOST_USAGE
|
6677
6872
|
- APM_HOST_PERCENTAGE
|
6873
|
+
- APPSEC_USAGE
|
6874
|
+
- APPSEC_PERCENTAGE
|
6678
6875
|
- BROWSER_USAGE
|
6679
6876
|
- BROWSER_PERCENTAGE
|
6680
6877
|
- CONTAINER_USAGE
|
@@ -6683,6 +6880,8 @@ components:
|
|
6683
6880
|
- CUSTOM_TIMESERIES_PERCENTAGE
|
6684
6881
|
- ESTIMATED_INDEXED_LOGS_USAGE
|
6685
6882
|
- ESTIMATED_INDEXED_LOGS_PERCENTAGE
|
6883
|
+
- ESTIMATED_INDEXED_SPANS_USAGE
|
6884
|
+
- ESTIMATED_INDEXED_SPANS_PERCENTAGE
|
6686
6885
|
- FARGATE_USAGE
|
6687
6886
|
- FARGATE_PERCENTAGE
|
6688
6887
|
- FUNCTIONS_USAGE
|
@@ -6721,6 +6920,15 @@ components:
|
|
6721
6920
|
description: The APM host usage by tag(s).
|
6722
6921
|
format: double
|
6723
6922
|
type: number
|
6923
|
+
appsec_percentage:
|
6924
|
+
description: The percentage of Application Security Monitoring host usage
|
6925
|
+
by tag(s).
|
6926
|
+
format: double
|
6927
|
+
type: number
|
6928
|
+
appsec_usage:
|
6929
|
+
description: The Application Security Monitoring host usage by tag(s).
|
6930
|
+
format: double
|
6931
|
+
type: number
|
6724
6932
|
browser_percentage:
|
6725
6933
|
description: The percentage of synthetic browser test usage by tag(s).
|
6726
6934
|
format: double
|
@@ -6755,6 +6963,16 @@ components:
|
|
6755
6963
|
is in private beta.
|
6756
6964
|
format: double
|
6757
6965
|
type: number
|
6966
|
+
estimated_indexed_spans_percentage:
|
6967
|
+
description: The percentage of estimated indexed spans usage by tag(s).
|
6968
|
+
This field is in private beta.
|
6969
|
+
format: double
|
6970
|
+
type: number
|
6971
|
+
estimated_indexed_spans_usage:
|
6972
|
+
description: The estimated indexed spans usage by tag(s). This field is
|
6973
|
+
in private beta.
|
6974
|
+
format: double
|
6975
|
+
type: number
|
6758
6976
|
fargate_percentage:
|
6759
6977
|
description: The percentage of Fargate usage by tags.
|
6760
6978
|
format: double
|
@@ -7652,6 +7870,13 @@ components:
|
|
7652
7870
|
format: int64
|
7653
7871
|
type: integer
|
7654
7872
|
type: object
|
7873
|
+
OrgDowngradedResponse:
|
7874
|
+
description: Status of downgrade
|
7875
|
+
properties:
|
7876
|
+
message:
|
7877
|
+
description: Information pertaining to the downgraded child organization.
|
7878
|
+
type: string
|
7879
|
+
type: object
|
7655
7880
|
Organization:
|
7656
7881
|
description: Create, edit, and manage organizations.
|
7657
7882
|
properties:
|
@@ -7679,6 +7904,11 @@ components:
|
|
7679
7904
|
$ref: '#/components/schemas/OrganizationSettings'
|
7680
7905
|
subscription:
|
7681
7906
|
$ref: '#/components/schemas/OrganizationSubscription'
|
7907
|
+
trial:
|
7908
|
+
description: Only available for MSP customers. Allows child organizations
|
7909
|
+
to be created on a trial plan.
|
7910
|
+
example: false
|
7911
|
+
type: boolean
|
7682
7912
|
type: object
|
7683
7913
|
OrganizationBilling:
|
7684
7914
|
deprecated: true
|
@@ -7962,6 +8192,8 @@ components:
|
|
7962
8192
|
$ref: '#/components/schemas/WidgetTextAlign'
|
7963
8193
|
time:
|
7964
8194
|
$ref: '#/components/schemas/WidgetTime'
|
8195
|
+
timeseries_background:
|
8196
|
+
$ref: '#/components/schemas/TimeseriesBackground'
|
7965
8197
|
title:
|
7966
8198
|
description: Title of your widget.
|
7967
8199
|
type: string
|
@@ -8182,7 +8414,7 @@ components:
|
|
8182
8414
|
example: FREQ=DAILY;INTERVAL=10;COUNT=5
|
8183
8415
|
type: string
|
8184
8416
|
slo_id:
|
8185
|
-
description: ID of the SLO that this correction
|
8417
|
+
description: ID of the SLO that this correction applies to.
|
8186
8418
|
example: sloId
|
8187
8419
|
type: string
|
8188
8420
|
start:
|
@@ -8223,7 +8455,7 @@ components:
|
|
8223
8455
|
category:
|
8224
8456
|
$ref: '#/components/schemas/SLOCorrectionCategory'
|
8225
8457
|
created_at:
|
8226
|
-
description: The epoch timestamp of when the correction was created at
|
8458
|
+
description: The epoch timestamp of when the correction was created at.
|
8227
8459
|
format: int64
|
8228
8460
|
type: integer
|
8229
8461
|
creator:
|
@@ -8243,7 +8475,7 @@ components:
|
|
8243
8475
|
format: int64
|
8244
8476
|
type: integer
|
8245
8477
|
modified_at:
|
8246
|
-
description: The epoch timestamp of when the correction was modified at
|
8478
|
+
description: The epoch timestamp of when the correction was modified at.
|
8247
8479
|
format: int64
|
8248
8480
|
type: integer
|
8249
8481
|
modifier:
|
@@ -8252,12 +8484,12 @@ components:
|
|
8252
8484
|
description: 'The recurrence rules as defined in the iCalendar RFC 5545.
|
8253
8485
|
The supported rules for SLO corrections
|
8254
8486
|
|
8255
|
-
are `FREQ`, `INTERVAL`, `COUNT
|
8487
|
+
are `FREQ`, `INTERVAL`, `COUNT`, and `UNTIL`.'
|
8256
8488
|
example: FREQ=DAILY;INTERVAL=10;COUNT=5
|
8257
8489
|
nullable: true
|
8258
8490
|
type: string
|
8259
8491
|
slo_id:
|
8260
|
-
description: ID of the SLO that this correction
|
8492
|
+
description: ID of the SLO that this correction applies to.
|
8261
8493
|
type: string
|
8262
8494
|
start:
|
8263
8495
|
description: Starting time of the correction in epoch seconds.
|
@@ -8328,7 +8560,7 @@ components:
|
|
8328
8560
|
description: 'The recurrence rules as defined in the iCalendar RFC 5545.
|
8329
8561
|
The supported rules for SLO corrections
|
8330
8562
|
|
8331
|
-
are `FREQ`, `INTERVAL`, `COUNT
|
8563
|
+
are `FREQ`, `INTERVAL`, `COUNT`, and `UNTIL`.'
|
8332
8564
|
example: FREQ=DAILY;INTERVAL=10;COUNT=5
|
8333
8565
|
type: string
|
8334
8566
|
start:
|
@@ -8421,7 +8653,7 @@ components:
|
|
8421
8653
|
format: int64
|
8422
8654
|
type: integer
|
8423
8655
|
times:
|
8424
|
-
description: An array of query timestamps in EPOCH milliseconds
|
8656
|
+
description: An array of query timestamps in EPOCH milliseconds.
|
8425
8657
|
example: []
|
8426
8658
|
items:
|
8427
8659
|
description: A timestamp in EPOCH milliseconds.
|
@@ -9289,6 +9521,164 @@ components:
|
|
9289
9521
|
- formula
|
9290
9522
|
- dimension
|
9291
9523
|
type: object
|
9524
|
+
SearchSLOResponse:
|
9525
|
+
description: A search SLO response containing results from the search query.
|
9526
|
+
properties:
|
9527
|
+
data:
|
9528
|
+
$ref: '#/components/schemas/SearchSLOResponseData'
|
9529
|
+
links:
|
9530
|
+
$ref: '#/components/schemas/SearchSLOResponseLinks'
|
9531
|
+
meta:
|
9532
|
+
$ref: '#/components/schemas/SearchSLOResponseMeta'
|
9533
|
+
type: object
|
9534
|
+
SearchSLOResponseData:
|
9535
|
+
description: Data from search SLO response.
|
9536
|
+
properties:
|
9537
|
+
attributes:
|
9538
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributes'
|
9539
|
+
type:
|
9540
|
+
description: Type of service level objective result.
|
9541
|
+
example: ''
|
9542
|
+
type: string
|
9543
|
+
type: object
|
9544
|
+
SearchSLOResponseDataAttributes:
|
9545
|
+
description: Attributes
|
9546
|
+
properties:
|
9547
|
+
facets:
|
9548
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacets'
|
9549
|
+
slo:
|
9550
|
+
description: SLOs
|
9551
|
+
items:
|
9552
|
+
$ref: '#/components/schemas/ServiceLevelObjective'
|
9553
|
+
type: array
|
9554
|
+
type: object
|
9555
|
+
SearchSLOResponseDataAttributesFacets:
|
9556
|
+
description: Facets
|
9557
|
+
properties:
|
9558
|
+
all_tags:
|
9559
|
+
description: All tags associated with an SLO.
|
9560
|
+
items:
|
9561
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
9562
|
+
type: array
|
9563
|
+
creator_name:
|
9564
|
+
description: Creator of an SLO.
|
9565
|
+
items:
|
9566
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
9567
|
+
type: array
|
9568
|
+
env_tags:
|
9569
|
+
description: Tags with the `env` tag key.
|
9570
|
+
items:
|
9571
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
9572
|
+
type: array
|
9573
|
+
service_tags:
|
9574
|
+
description: Tags with the `service` tag key.
|
9575
|
+
items:
|
9576
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
9577
|
+
type: array
|
9578
|
+
slo_type:
|
9579
|
+
description: Type of SLO.
|
9580
|
+
items:
|
9581
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectInt'
|
9582
|
+
type: array
|
9583
|
+
target:
|
9584
|
+
description: SLO Target
|
9585
|
+
items:
|
9586
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectInt'
|
9587
|
+
type: array
|
9588
|
+
team_tags:
|
9589
|
+
description: Tags with the `team` tag key.
|
9590
|
+
items:
|
9591
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
9592
|
+
type: array
|
9593
|
+
timeframe:
|
9594
|
+
description: Timeframes of SLOs.
|
9595
|
+
items:
|
9596
|
+
$ref: '#/components/schemas/SearchSLOResponseDataAttributesFacetsObjectString'
|
9597
|
+
type: array
|
9598
|
+
type: object
|
9599
|
+
SearchSLOResponseDataAttributesFacetsObjectInt:
|
9600
|
+
description: Facet
|
9601
|
+
properties:
|
9602
|
+
count:
|
9603
|
+
description: Count
|
9604
|
+
format: int64
|
9605
|
+
type: integer
|
9606
|
+
name:
|
9607
|
+
description: Facet
|
9608
|
+
format: double
|
9609
|
+
type: number
|
9610
|
+
type: object
|
9611
|
+
SearchSLOResponseDataAttributesFacetsObjectString:
|
9612
|
+
description: Facet
|
9613
|
+
properties:
|
9614
|
+
count:
|
9615
|
+
description: Count
|
9616
|
+
format: int64
|
9617
|
+
type: integer
|
9618
|
+
name:
|
9619
|
+
description: Facet
|
9620
|
+
type: string
|
9621
|
+
type: object
|
9622
|
+
SearchSLOResponseLinks:
|
9623
|
+
description: Pagination links.
|
9624
|
+
properties:
|
9625
|
+
first:
|
9626
|
+
description: Link to last page.
|
9627
|
+
type: string
|
9628
|
+
last:
|
9629
|
+
description: Link to first page.
|
9630
|
+
type: string
|
9631
|
+
next:
|
9632
|
+
description: Link to the next page.
|
9633
|
+
type: string
|
9634
|
+
prev:
|
9635
|
+
description: Link to previous page.
|
9636
|
+
type: string
|
9637
|
+
self:
|
9638
|
+
description: Link to current page.
|
9639
|
+
type: string
|
9640
|
+
type: object
|
9641
|
+
SearchSLOResponseMeta:
|
9642
|
+
description: Searches metadata returned by the API.
|
9643
|
+
properties:
|
9644
|
+
pagination:
|
9645
|
+
$ref: '#/components/schemas/SearchSLOResponseMetaPage'
|
9646
|
+
type: object
|
9647
|
+
SearchSLOResponseMetaPage:
|
9648
|
+
description: Pagination metadata returned by the API.
|
9649
|
+
properties:
|
9650
|
+
first_number:
|
9651
|
+
description: The first number.
|
9652
|
+
format: int64
|
9653
|
+
type: integer
|
9654
|
+
last_number:
|
9655
|
+
description: The last number.
|
9656
|
+
format: int64
|
9657
|
+
type: integer
|
9658
|
+
next_number:
|
9659
|
+
description: The next number.
|
9660
|
+
format: int64
|
9661
|
+
type: integer
|
9662
|
+
number:
|
9663
|
+
description: The page number.
|
9664
|
+
format: int64
|
9665
|
+
type: integer
|
9666
|
+
prev_number:
|
9667
|
+
description: The previous page number.
|
9668
|
+
format: int64
|
9669
|
+
type: integer
|
9670
|
+
size:
|
9671
|
+
description: The size of the response.
|
9672
|
+
format: int64
|
9673
|
+
type: integer
|
9674
|
+
total:
|
9675
|
+
description: The total number of SLOs in the response.
|
9676
|
+
format: int64
|
9677
|
+
type: integer
|
9678
|
+
type:
|
9679
|
+
description: Type of pagination.
|
9680
|
+
type: string
|
9681
|
+
type: object
|
9292
9682
|
Series:
|
9293
9683
|
description: 'A metric to submit to Datadog.
|
9294
9684
|
|
@@ -9327,8 +9717,9 @@ components:
|
|
9327
9717
|
type: string
|
9328
9718
|
type: array
|
9329
9719
|
type:
|
9330
|
-
default:
|
9331
|
-
description: The type of the metric
|
9720
|
+
default: ''
|
9721
|
+
description: The type of the metric. Valid types are "",`count`, `gauge`,
|
9722
|
+
and `rate`.
|
9332
9723
|
example: rate
|
9333
9724
|
type: string
|
9334
9725
|
required:
|
@@ -9416,7 +9807,7 @@ components:
|
|
9416
9807
|
nullable: true
|
9417
9808
|
type: string
|
9418
9809
|
groups:
|
9419
|
-
description: 'A list of (up to
|
9810
|
+
description: 'A list of (up to 100) monitor groups that narrow the scope
|
9420
9811
|
of a monitor service level objective.
|
9421
9812
|
|
9422
9813
|
|
@@ -9465,8 +9856,8 @@ components:
|
|
9465
9856
|
|
9466
9857
|
field.
|
9467
9858
|
|
9468
|
-
Always included in service level objective responses for monitor
|
9469
|
-
level
|
9859
|
+
Always included in service level objective responses for monitor-based
|
9860
|
+
service level
|
9470
9861
|
|
9471
9862
|
objectives (but may be empty). Ignored in create/update requests. Does
|
9472
9863
|
not
|
@@ -9519,7 +9910,7 @@ components:
|
|
9519
9910
|
- thresholds
|
9520
9911
|
- type
|
9521
9912
|
ServiceLevelObjectiveQuery:
|
9522
|
-
description: 'A metric
|
9913
|
+
description: 'A metric-based SLO. **Required if type is `metric`**. Note that
|
9523
9914
|
Datadog only allows the sum by aggregator
|
9524
9915
|
|
9525
9916
|
to be used because this will sum up all request counts instead of averaging
|
@@ -9555,7 +9946,7 @@ components:
|
|
9555
9946
|
nullable: true
|
9556
9947
|
type: string
|
9557
9948
|
groups:
|
9558
|
-
description: 'A list of (up to
|
9949
|
+
description: 'A list of (up to 100) monitor groups that narrow the scope
|
9559
9950
|
of a monitor service level objective.
|
9560
9951
|
|
9561
9952
|
|
@@ -9574,7 +9965,7 @@ components:
|
|
9574
9965
|
type: string
|
9575
9966
|
type: array
|
9576
9967
|
monitor_ids:
|
9577
|
-
description: 'A list of monitor
|
9968
|
+
description: 'A list of monitor IDs that defines the scope of a monitor
|
9578
9969
|
service level
|
9579
9970
|
|
9580
9971
|
objective. **Required if type is `monitor`**.'
|
@@ -9734,6 +10125,59 @@ components:
|
|
9734
10125
|
type: string
|
9735
10126
|
x-enum-varnames:
|
9736
10127
|
- TRACE_SERVICE
|
10128
|
+
SignalArchiveReason:
|
10129
|
+
description: Reason why a signal has been archived.
|
10130
|
+
enum:
|
10131
|
+
- none
|
10132
|
+
- false_positive
|
10133
|
+
- testing_or_maintenance
|
10134
|
+
- other
|
10135
|
+
type: string
|
10136
|
+
x-enum-varnames:
|
10137
|
+
- NONE
|
10138
|
+
- FALSE_POSITIVE
|
10139
|
+
- TESTING_OR_MAINTENANCE
|
10140
|
+
- OTHER
|
10141
|
+
SignalAssigneeUpdateRequest:
|
10142
|
+
description: Attributes describing an assignee update operation over a security
|
10143
|
+
signal.
|
10144
|
+
properties:
|
10145
|
+
assignee:
|
10146
|
+
description: The UUID of the user being assigned. Use empty string to return
|
10147
|
+
signal to unassigned.
|
10148
|
+
example: 773b045d-ccf8-4808-bd3b-955ef6a8c940
|
10149
|
+
type: string
|
10150
|
+
version:
|
10151
|
+
$ref: '#/components/schemas/Version'
|
10152
|
+
required:
|
10153
|
+
- assignee
|
10154
|
+
type: object
|
10155
|
+
SignalStateUpdateRequest:
|
10156
|
+
description: Attributes describing the change of state for a given state.
|
10157
|
+
properties:
|
10158
|
+
archiveComment:
|
10159
|
+
description: Optional comment to explain why a signal is being archived.
|
10160
|
+
type: string
|
10161
|
+
archiveReason:
|
10162
|
+
$ref: '#/components/schemas/SignalArchiveReason'
|
10163
|
+
state:
|
10164
|
+
$ref: '#/components/schemas/SignalTriageState'
|
10165
|
+
version:
|
10166
|
+
$ref: '#/components/schemas/Version'
|
10167
|
+
required:
|
10168
|
+
- state
|
10169
|
+
type: object
|
10170
|
+
SignalTriageState:
|
10171
|
+
description: The new triage state of the signal.
|
10172
|
+
enum:
|
10173
|
+
- open
|
10174
|
+
- archived
|
10175
|
+
- under_review
|
10176
|
+
type: string
|
10177
|
+
x-enum-varnames:
|
10178
|
+
- OPEN
|
10179
|
+
- ARCHIVED
|
10180
|
+
- UNDER_REVIEW
|
9737
10181
|
SlackIntegrationChannel:
|
9738
10182
|
description: The Slack channel configuration.
|
9739
10183
|
properties:
|
@@ -9782,6 +10226,13 @@ components:
|
|
9782
10226
|
items:
|
9783
10227
|
$ref: '#/components/schemas/SlackIntegrationChannel'
|
9784
10228
|
type: array
|
10229
|
+
SuccessfulSignalUpdateResponse:
|
10230
|
+
description: Updated signal data following a successfully performed update.
|
10231
|
+
properties:
|
10232
|
+
status:
|
10233
|
+
description: Status of the response.
|
10234
|
+
type: string
|
10235
|
+
type: object
|
9785
10236
|
SunburstWidgetDefinition:
|
9786
10237
|
description: Sunbursts are spot on to highlight how groups contribute to the
|
9787
10238
|
total of a query.
|
@@ -10019,6 +10470,7 @@ components:
|
|
10019
10470
|
- locations
|
10020
10471
|
- options
|
10021
10472
|
- type
|
10473
|
+
- message
|
10022
10474
|
type: object
|
10023
10475
|
SyntheticsAPITestConfig:
|
10024
10476
|
description: Configuration object for a Synthetic API test.
|
@@ -10080,7 +10532,6 @@ components:
|
|
10080
10532
|
responseHeaders:
|
10081
10533
|
additionalProperties:
|
10082
10534
|
description: Returned request header.
|
10083
|
-
type: object
|
10084
10535
|
description: Response headers returned for the API test.
|
10085
10536
|
type: object
|
10086
10537
|
responseSize:
|
@@ -10337,6 +10788,8 @@ components:
|
|
10337
10788
|
- packetsReceived
|
10338
10789
|
- networkHop
|
10339
10790
|
- receivedMessage
|
10791
|
+
- grpcHealthcheckStatus
|
10792
|
+
- connection
|
10340
10793
|
example: statusCode
|
10341
10794
|
type: string
|
10342
10795
|
x-enum-varnames:
|
@@ -10355,6 +10808,8 @@ components:
|
|
10355
10808
|
- PACKETS_RECEIVED
|
10356
10809
|
- NETWORK_HOP
|
10357
10810
|
- RECEIVED_MESSAGE
|
10811
|
+
- GRPC_HEALTHCHECK_STATUS
|
10812
|
+
- CONNECTION
|
10358
10813
|
SyntheticsBasicAuth:
|
10359
10814
|
description: Object to handle basic authentication when performing the test.
|
10360
10815
|
oneOf:
|
@@ -10450,18 +10905,17 @@ components:
|
|
10450
10905
|
properties:
|
10451
10906
|
password:
|
10452
10907
|
description: Password to use for the basic authentication.
|
10453
|
-
example:
|
10908
|
+
example: PaSSw0RD!
|
10454
10909
|
type: string
|
10455
10910
|
type:
|
10456
10911
|
$ref: '#/components/schemas/SyntheticsBasicAuthWebType'
|
10457
10912
|
username:
|
10458
10913
|
description: Username to use for the basic authentication.
|
10459
|
-
example:
|
10914
|
+
example: my_username
|
10460
10915
|
type: string
|
10461
10916
|
required:
|
10462
10917
|
- password
|
10463
10918
|
- username
|
10464
|
-
- type
|
10465
10919
|
type: object
|
10466
10920
|
SyntheticsBasicAuthWebType:
|
10467
10921
|
default: web
|
@@ -10509,7 +10963,7 @@ components:
|
|
10509
10963
|
description: The ID of the result to get.
|
10510
10964
|
type: string
|
10511
10965
|
retries:
|
10512
|
-
description:
|
10966
|
+
description: Number of times this result has been retried.
|
10513
10967
|
format: double
|
10514
10968
|
type: number
|
10515
10969
|
status:
|
@@ -10564,7 +11018,7 @@ components:
|
|
10564
11018
|
locations:
|
10565
11019
|
description: Array of locations used to run the test.
|
10566
11020
|
example:
|
10567
|
-
-
|
11021
|
+
- aws:eu-west-3
|
10568
11022
|
items:
|
10569
11023
|
description: A location from which the test was run.
|
10570
11024
|
type: string
|
@@ -10598,6 +11052,8 @@ components:
|
|
10598
11052
|
type: array
|
10599
11053
|
tags:
|
10600
11054
|
description: Array of tags attached to the test.
|
11055
|
+
example:
|
11056
|
+
- env:prod
|
10601
11057
|
items:
|
10602
11058
|
description: A tag attached to the test.
|
10603
11059
|
type: string
|
@@ -10610,6 +11066,7 @@ components:
|
|
10610
11066
|
- name
|
10611
11067
|
- options
|
10612
11068
|
- type
|
11069
|
+
- message
|
10613
11070
|
type: object
|
10614
11071
|
SyntheticsBrowserTestConfig:
|
10615
11072
|
description: Configuration object for a Synthetic browser test.
|
@@ -10816,9 +11273,6 @@ components:
|
|
10816
11273
|
type: string
|
10817
11274
|
status:
|
10818
11275
|
$ref: '#/components/schemas/SyntheticsTestMonitorStatus'
|
10819
|
-
required:
|
10820
|
-
- from_ts
|
10821
|
-
- to_ts
|
10822
11276
|
type: object
|
10823
11277
|
SyntheticsBrowserTestResultShortResult:
|
10824
11278
|
description: Object with the result of the last browser test run.
|
@@ -10842,14 +11296,58 @@ components:
|
|
10842
11296
|
format: int64
|
10843
11297
|
type: integer
|
10844
11298
|
type: object
|
10845
|
-
|
10846
|
-
|
10847
|
-
|
10848
|
-
|
10849
|
-
|
10850
|
-
|
10851
|
-
|
10852
|
-
|
11299
|
+
SyntheticsBrowserTestRumSettings:
|
11300
|
+
description: 'The RUM data collection settings for the Synthetic browser test.
|
11301
|
+
|
11302
|
+
**Note:** There are 3 ways to format RUM settings:
|
11303
|
+
|
11304
|
+
|
11305
|
+
`{ isEnabled: false }`
|
11306
|
+
|
11307
|
+
RUM data is not collected.
|
11308
|
+
|
11309
|
+
|
11310
|
+
`{ isEnabled: true }`
|
11311
|
+
|
11312
|
+
RUM data is collected from the Synthetic test''s default application.
|
11313
|
+
|
11314
|
+
|
11315
|
+
`{ isEnabled: true, applicationId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
11316
|
+
clientTokenId: 12345 }`
|
11317
|
+
|
11318
|
+
RUM data is collected using the specified application.'
|
11319
|
+
example:
|
11320
|
+
applicationId: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
11321
|
+
clientTokenId: 12345
|
11322
|
+
isEnabled: true
|
11323
|
+
properties:
|
11324
|
+
applicationId:
|
11325
|
+
description: RUM application ID used to collect RUM data for the browser
|
11326
|
+
test.
|
11327
|
+
example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
11328
|
+
type: string
|
11329
|
+
clientTokenId:
|
11330
|
+
description: RUM application API key ID used to collect RUM data for the
|
11331
|
+
browser test.
|
11332
|
+
example: 12345
|
11333
|
+
format: int64
|
11334
|
+
type: integer
|
11335
|
+
x-secret: true
|
11336
|
+
isEnabled:
|
11337
|
+
description: Determines whether RUM data is collected during test runs.
|
11338
|
+
example: true
|
11339
|
+
type: boolean
|
11340
|
+
required:
|
11341
|
+
- isEnabled
|
11342
|
+
type: object
|
11343
|
+
SyntheticsBrowserTestType:
|
11344
|
+
default: browser
|
11345
|
+
description: Type of the Synthetic test, `browser`.
|
11346
|
+
enum:
|
11347
|
+
- browser
|
11348
|
+
example: browser
|
11349
|
+
type: string
|
11350
|
+
x-enum-varnames:
|
10853
11351
|
- BROWSER
|
10854
11352
|
SyntheticsBrowserVariable:
|
10855
11353
|
description: 'Object defining a variable that can be used in your browser test.
|
@@ -10961,6 +11459,8 @@ components:
|
|
10961
11459
|
$ref: '#/components/schemas/SyntheticsTestHeaders'
|
10962
11460
|
locations:
|
10963
11461
|
description: Array of locations used to run the test.
|
11462
|
+
example:
|
11463
|
+
- aws:eu-west-3
|
10964
11464
|
items:
|
10965
11465
|
description: A location from which the test was run.
|
10966
11466
|
type: string
|
@@ -11064,12 +11564,12 @@ components:
|
|
11064
11564
|
properties:
|
11065
11565
|
cls:
|
11066
11566
|
description: Cumulative Layout Shift.
|
11067
|
-
format:
|
11068
|
-
type:
|
11567
|
+
format: double
|
11568
|
+
type: number
|
11069
11569
|
lcp:
|
11070
11570
|
description: Largest Contentful Paint in milliseconds.
|
11071
|
-
format:
|
11072
|
-
type:
|
11571
|
+
format: double
|
11572
|
+
type: number
|
11073
11573
|
url:
|
11074
11574
|
description: URL attached to the metrics.
|
11075
11575
|
type: string
|
@@ -11242,12 +11742,7 @@ components:
|
|
11242
11742
|
description: Attributes of the global variable.
|
11243
11743
|
properties:
|
11244
11744
|
restricted_roles:
|
11245
|
-
|
11246
|
-
API.
|
11247
|
-
items:
|
11248
|
-
description: UUID for a role.
|
11249
|
-
type: string
|
11250
|
-
type: array
|
11745
|
+
$ref: '#/components/schemas/SyntheticsRestrictedRoles'
|
11251
11746
|
type: object
|
11252
11747
|
SyntheticsGlobalVariableParseTestOptions:
|
11253
11748
|
description: Parser options to use for retrieving a Synthetics global variable
|
@@ -11392,6 +11887,8 @@ components:
|
|
11392
11887
|
description: Unique identifier of the private location.
|
11393
11888
|
readOnly: true
|
11394
11889
|
type: string
|
11890
|
+
metadata:
|
11891
|
+
$ref: '#/components/schemas/SyntheticsPrivateLocationMetadata'
|
11395
11892
|
name:
|
11396
11893
|
description: Name of the private location.
|
11397
11894
|
example: New private location
|
@@ -11435,6 +11932,12 @@ components:
|
|
11435
11932
|
description: Public key for result encryption.
|
11436
11933
|
type: string
|
11437
11934
|
type: object
|
11935
|
+
SyntheticsPrivateLocationMetadata:
|
11936
|
+
description: Object containing metadata about the private location.
|
11937
|
+
properties:
|
11938
|
+
restricted_roles:
|
11939
|
+
$ref: '#/components/schemas/SyntheticsRestrictedRoles'
|
11940
|
+
type: object
|
11438
11941
|
SyntheticsPrivateLocationSecrets:
|
11439
11942
|
description: Secrets for the private location. Only present in the response
|
11440
11943
|
when creating the private location.
|
@@ -11465,6 +11968,16 @@ components:
|
|
11465
11968
|
readOnly: true
|
11466
11969
|
type: string
|
11467
11970
|
type: object
|
11971
|
+
SyntheticsRestrictedRoles:
|
11972
|
+
description: A list of role identifiers that can be pulled from the Roles API,
|
11973
|
+
for restricting read and write access.
|
11974
|
+
example:
|
11975
|
+
- xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
11976
|
+
items:
|
11977
|
+
description: UUID for a role.
|
11978
|
+
example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
11979
|
+
type: string
|
11980
|
+
type: array
|
11468
11981
|
SyntheticsSSLCertificate:
|
11469
11982
|
description: Object describing the SSL certificate used for a Synthetic test.
|
11470
11983
|
properties:
|
@@ -11724,6 +12237,12 @@ components:
|
|
11724
12237
|
- TYPE_TEXT
|
11725
12238
|
- UPLOAD_FILES
|
11726
12239
|
- WAIT
|
12240
|
+
SyntheticsTestCiOptions:
|
12241
|
+
description: CI/CD options for a Synthetic test.
|
12242
|
+
properties:
|
12243
|
+
executionRule:
|
12244
|
+
$ref: '#/components/schemas/SyntheticsTestExecutionRule'
|
12245
|
+
type: object
|
11727
12246
|
SyntheticsTestConfig:
|
11728
12247
|
description: Configuration object for a Synthetic test.
|
11729
12248
|
properties:
|
@@ -11757,6 +12276,8 @@ components:
|
|
11757
12276
|
$ref: '#/components/schemas/Creator'
|
11758
12277
|
locations:
|
11759
12278
|
description: Array of locations used to run the test.
|
12279
|
+
example:
|
12280
|
+
- aws:eu-west-3
|
11760
12281
|
items:
|
11761
12282
|
description: A location from which the test was run.
|
11762
12283
|
type: string
|
@@ -11799,7 +12320,7 @@ components:
|
|
11799
12320
|
SyntheticsTestDetailsSubType:
|
11800
12321
|
description: 'The subtype of the Synthetic API test, `http`, `ssl`, `tcp`,
|
11801
12322
|
|
11802
|
-
`dns`, `icmp`, `udp`, `websocket` or `multi`.'
|
12323
|
+
`dns`, `icmp`, `udp`, `websocket`, `grpc` or `multi`.'
|
11803
12324
|
enum:
|
11804
12325
|
- http
|
11805
12326
|
- ssl
|
@@ -11809,6 +12330,7 @@ components:
|
|
11809
12330
|
- icmp
|
11810
12331
|
- udp
|
11811
12332
|
- websocket
|
12333
|
+
- grpc
|
11812
12334
|
example: http
|
11813
12335
|
type: string
|
11814
12336
|
x-enum-varnames:
|
@@ -11820,6 +12342,7 @@ components:
|
|
11820
12342
|
- ICMP
|
11821
12343
|
- UDP
|
11822
12344
|
- WEBSOCKET
|
12345
|
+
- GRPC
|
11823
12346
|
SyntheticsTestDetailsType:
|
11824
12347
|
description: Type of the Synthetic test, either `api` or `browser`.
|
11825
12348
|
enum:
|
@@ -11846,6 +12369,12 @@ components:
|
|
11846
12369
|
type: string
|
11847
12370
|
description: Headers to include when performing the test.
|
11848
12371
|
type: object
|
12372
|
+
SyntheticsTestMetadata:
|
12373
|
+
additionalProperties:
|
12374
|
+
description: A single Metadatum.
|
12375
|
+
type: string
|
12376
|
+
description: Metadata to include when performing the gRPC test.
|
12377
|
+
type: object
|
11849
12378
|
SyntheticsTestMonitorStatus:
|
11850
12379
|
description: 'The status of your Synthetic monitor.
|
11851
12380
|
|
@@ -11879,6 +12408,8 @@ components:
|
|
11879
12408
|
description: For SSL test, whether or not the test should fail on revoked
|
11880
12409
|
certificate in stapled OCSP.
|
11881
12410
|
type: boolean
|
12411
|
+
ci:
|
12412
|
+
$ref: '#/components/schemas/SyntheticsTestCiOptions'
|
11882
12413
|
device_ids:
|
11883
12414
|
description: For browser test, array with the different device IDs used
|
11884
12415
|
to run the test.
|
@@ -11916,8 +12447,12 @@ components:
|
|
11916
12447
|
noScreenshot:
|
11917
12448
|
description: Prevents saving screenshots of the steps.
|
11918
12449
|
type: boolean
|
12450
|
+
restricted_roles:
|
12451
|
+
$ref: '#/components/schemas/SyntheticsRestrictedRoles'
|
11919
12452
|
retry:
|
11920
12453
|
$ref: '#/components/schemas/SyntheticsTestOptionsRetry'
|
12454
|
+
rumSettings:
|
12455
|
+
$ref: '#/components/schemas/SyntheticsBrowserTestRumSettings'
|
11921
12456
|
tick_every:
|
11922
12457
|
description: The frequency at which to run the Synthetic test (in seconds).
|
11923
12458
|
format: int64
|
@@ -12019,6 +12554,8 @@ components:
|
|
12019
12554
|
message:
|
12020
12555
|
description: Message to send for UDP or WebSocket tests.
|
12021
12556
|
type: string
|
12557
|
+
metadata:
|
12558
|
+
$ref: '#/components/schemas/SyntheticsTestMetadata'
|
12022
12559
|
method:
|
12023
12560
|
$ref: '#/components/schemas/HTTPMethod'
|
12024
12561
|
noSavingResponseBody:
|
@@ -12047,6 +12584,9 @@ components:
|
|
12047
12584
|
|
12048
12585
|
the same IP address and TCP port number.'
|
12049
12586
|
type: string
|
12587
|
+
service:
|
12588
|
+
description: gRPC service on which you want to perform the healthcheck.
|
12589
|
+
type: string
|
12050
12590
|
shouldTrackHops:
|
12051
12591
|
description: Turns on a traceroute probe to discover all gateways along
|
12052
12592
|
the path to the host destination.
|
@@ -12397,6 +12937,27 @@ components:
|
|
12397
12937
|
- STRING
|
12398
12938
|
- INTEGER
|
12399
12939
|
- DOUBLE
|
12940
|
+
TimeseriesBackground:
|
12941
|
+
description: Set a timeseries on the widget background.
|
12942
|
+
properties:
|
12943
|
+
type:
|
12944
|
+
$ref: '#/components/schemas/TimeseriesBackgroundType'
|
12945
|
+
yaxis:
|
12946
|
+
$ref: '#/components/schemas/WidgetAxis'
|
12947
|
+
required:
|
12948
|
+
- type
|
12949
|
+
type: object
|
12950
|
+
TimeseriesBackgroundType:
|
12951
|
+
default: area
|
12952
|
+
description: Timeseries is made using an area or bars.
|
12953
|
+
enum:
|
12954
|
+
- bars
|
12955
|
+
- area
|
12956
|
+
example: bars
|
12957
|
+
type: string
|
12958
|
+
x-enum-varnames:
|
12959
|
+
- BARS
|
12960
|
+
- AREA
|
12400
12961
|
TimeseriesWidgetDefinition:
|
12401
12962
|
description: The timeseries visualization allows you to display the evolution
|
12402
12963
|
of one or more metrics, log events, or Indexed Spans over time.
|
@@ -12856,7 +13417,7 @@ components:
|
|
12856
13417
|
metadata:
|
12857
13418
|
$ref: '#/components/schemas/UsageAttributionMetadata'
|
12858
13419
|
usage:
|
12859
|
-
description: Get
|
13420
|
+
description: Get usage summary by tag(s).
|
12860
13421
|
items:
|
12861
13422
|
$ref: '#/components/schemas/UsageAttributionBody'
|
12862
13423
|
type: array
|
@@ -12869,6 +13430,8 @@ components:
|
|
12869
13430
|
- snmp_usage
|
12870
13431
|
- apm_host_usage
|
12871
13432
|
- api_usage
|
13433
|
+
- appsec_usage
|
13434
|
+
- appsec_percentage
|
12872
13435
|
- container_usage
|
12873
13436
|
- custom_timeseries_percentage
|
12874
13437
|
- container_percentage
|
@@ -12885,16 +13448,18 @@ components:
|
|
12885
13448
|
- lambda_functions_percentage
|
12886
13449
|
- lambda_invocations_usage
|
12887
13450
|
- lambda_invocations_percentage
|
12888
|
-
- lambda_usage
|
12889
|
-
- lambda_percentage
|
12890
13451
|
- estimated_indexed_logs_usage
|
12891
13452
|
- estimated_indexed_logs_percentage
|
13453
|
+
- estimated_indexed_spans_usage
|
13454
|
+
- estimated_indexed_spans_percentage
|
12892
13455
|
type: string
|
12893
13456
|
x-enum-varnames:
|
12894
13457
|
- API_PERCENTAGE
|
12895
13458
|
- SNMP_USAGE
|
12896
13459
|
- APM_HOST_USAGE
|
12897
13460
|
- API_USAGE
|
13461
|
+
- APPSEC_USAGE
|
13462
|
+
- APPSEC_PERCENTAGE
|
12898
13463
|
- CONTAINER_USAGE
|
12899
13464
|
- CUSTOM_TIMESERIES_PERCENTAGE
|
12900
13465
|
- CONTAINER_PERCENTAGE
|
@@ -12911,10 +13476,10 @@ components:
|
|
12911
13476
|
- LAMBDA_FUNCTIONS_PERCENTAGE
|
12912
13477
|
- LAMBDA_INVOCATIONS_USAGE
|
12913
13478
|
- LAMBDA_INVOCATIONS_PERCENTAGE
|
12914
|
-
- LAMBDA_USAGE
|
12915
|
-
- LAMBDA_PERCENTAGE
|
12916
13479
|
- ESTIMATED_INDEXED_LOGS_USAGE
|
12917
13480
|
- ESTIMATED_INDEXED_LOGS_PERCENTAGE
|
13481
|
+
- ESTIMATED_INDEXED_SPANS_USAGE
|
13482
|
+
- ESTIMATED_INDEXED_SPANS_PERCENTAGE
|
12918
13483
|
UsageAttributionSupportedMetrics:
|
12919
13484
|
description: Supported fields for usage attribution requests (valid requests
|
12920
13485
|
contain one or more metrics, or `*` for all).
|
@@ -12928,14 +13493,12 @@ components:
|
|
12928
13493
|
- infra_host_usage
|
12929
13494
|
- custom_timeseries_percentage
|
12930
13495
|
- container_percentage
|
12931
|
-
- lambda_usage
|
12932
13496
|
- api_usage
|
12933
13497
|
- apm_host_percentage
|
12934
13498
|
- infra_host_percentage
|
12935
13499
|
- snmp_usage
|
12936
13500
|
- browser_percentage
|
12937
13501
|
- api_percentage
|
12938
|
-
- lambda_percentage
|
12939
13502
|
- npm_host_usage
|
12940
13503
|
- lambda_functions_usage
|
12941
13504
|
- lambda_functions_percentage
|
@@ -12953,6 +13516,10 @@ components:
|
|
12953
13516
|
- dbm_queries_percentage
|
12954
13517
|
- estimated_indexed_logs_usage
|
12955
13518
|
- estimated_indexed_logs_percentage
|
13519
|
+
- appsec_usage
|
13520
|
+
- appsec_percentage
|
13521
|
+
- estimated_indexed_spans_usage
|
13522
|
+
- estimated_indexed_spans_percentage
|
12956
13523
|
- '*'
|
12957
13524
|
type: string
|
12958
13525
|
x-enum-varnames:
|
@@ -12965,14 +13532,12 @@ components:
|
|
12965
13532
|
- INFRA_HOST_USAGE
|
12966
13533
|
- CUSTOM_TIMESERIES_PERCENTAGE
|
12967
13534
|
- CONTAINER_PERCENTAGE
|
12968
|
-
- LAMBDA_USAGE
|
12969
13535
|
- API_USAGE
|
12970
13536
|
- APM_HOST_PERCENTAGE
|
12971
13537
|
- INFRA_HOST_PERCENTAGE
|
12972
13538
|
- SNMP_USAGE
|
12973
13539
|
- BROWSER_PERCENTAGE
|
12974
13540
|
- API_PERCENTAGE
|
12975
|
-
- LAMBDA_PERCENTAGE
|
12976
13541
|
- NPM_HOST_USAGE
|
12977
13542
|
- LAMBDA_FUNCTIONS_USAGE
|
12978
13543
|
- LAMBDA_FUNCTIONS_PERCENTAGE
|
@@ -12990,6 +13555,10 @@ components:
|
|
12990
13555
|
- DBM_QUERIES_PERCENTAGE
|
12991
13556
|
- ESTIMATED_INDEXED_LOGS_USAGE
|
12992
13557
|
- ESTIMATED_INDEXED_LOGS_PERCENTAGE
|
13558
|
+
- APPSEC_USAGE
|
13559
|
+
- APPSEC_PERCENTAGE
|
13560
|
+
- ESTIMATED_INDEXED_SPANS_USAGE
|
13561
|
+
- ESTIMATED_INDEXED_SPANS_PERCENTAGE
|
12993
13562
|
- ALL
|
12994
13563
|
UsageAttributionTagNames:
|
12995
13564
|
additionalProperties:
|
@@ -13020,6 +13589,13 @@ components:
|
|
13020
13589
|
description: The APM host usage by tag(s).
|
13021
13590
|
format: double
|
13022
13591
|
type: number
|
13592
|
+
appsec_percentage:
|
13593
|
+
description: The percentage of Application Security Monitoring host usage
|
13594
|
+
by tag(s).
|
13595
|
+
appsec_usage:
|
13596
|
+
description: The Application Security Monitoring host usage by tag(s).
|
13597
|
+
format: double
|
13598
|
+
type: number
|
13023
13599
|
browser_percentage:
|
13024
13600
|
description: The percentage of synthetic browser test usage by tag(s).
|
13025
13601
|
format: double
|
@@ -13106,6 +13682,16 @@ components:
|
|
13106
13682
|
field is in private beta.
|
13107
13683
|
format: double
|
13108
13684
|
type: number
|
13685
|
+
estimated_indexed_spans_percentage:
|
13686
|
+
description: The percentage of estimated indexed spans usage by tag(s).
|
13687
|
+
Note this field is in private beta.
|
13688
|
+
format: double
|
13689
|
+
type: number
|
13690
|
+
estimated_indexed_spans_usage:
|
13691
|
+
description: The estimated indexed spans usage by tag(s). Note this field
|
13692
|
+
is in private beta.
|
13693
|
+
format: double
|
13694
|
+
type: number
|
13109
13695
|
infra_host_percentage:
|
13110
13696
|
description: The percentage of infrastructure host usage by tag(s).
|
13111
13697
|
format: double
|
@@ -13130,20 +13716,6 @@ components:
|
|
13130
13716
|
description: The Lambda invocation usage by tag(s).
|
13131
13717
|
format: double
|
13132
13718
|
type: number
|
13133
|
-
lambda_percentage:
|
13134
|
-
description: 'The percentage of Lambda function usage by tag(s).
|
13135
|
-
|
13136
|
-
|
13137
|
-
**Note** this field is deprecated. Use lambda_functions_percentage instead.'
|
13138
|
-
format: double
|
13139
|
-
type: number
|
13140
|
-
lambda_usage:
|
13141
|
-
description: 'The Lambda function usage by tag(s).
|
13142
|
-
|
13143
|
-
|
13144
|
-
**Note** this field is deprecated. Use lambda_functions_usage instead.'
|
13145
|
-
format: double
|
13146
|
-
type: number
|
13147
13719
|
npm_host_percentage:
|
13148
13720
|
description: The percentage of network host usage by tag(s).
|
13149
13721
|
format: double
|
@@ -13271,30 +13843,104 @@ components:
|
|
13271
13843
|
UsageBillableSummaryKeys:
|
13272
13844
|
description: Response with aggregated usage types.
|
13273
13845
|
properties:
|
13846
|
+
apm_fargate_average:
|
13847
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13848
|
+
apm_fargate_sum:
|
13849
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13274
13850
|
apm_host_sum:
|
13275
13851
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13276
13852
|
apm_host_top99p:
|
13277
13853
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13854
|
+
apm_profiler_host_sum:
|
13855
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13856
|
+
apm_profiler_host_top99p:
|
13857
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13278
13858
|
apm_trace_search_sum:
|
13279
13859
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13860
|
+
application_security_host_sum:
|
13861
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13862
|
+
ci_pipeline_indexed_spans_sum:
|
13863
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13864
|
+
ci_pipeline_maximum:
|
13865
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13866
|
+
ci_pipeline_sum:
|
13867
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13868
|
+
ci_test_indexed_spans_sum:
|
13869
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13870
|
+
ci_testing_maximum:
|
13871
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13872
|
+
ci_testing_sum:
|
13873
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13874
|
+
cspm_container_sum:
|
13875
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13876
|
+
cspm_host_sum:
|
13877
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13878
|
+
cspm_host_top99p:
|
13879
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13880
|
+
custom_event_sum:
|
13881
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13882
|
+
cws_container_sum:
|
13883
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13884
|
+
cws_host_sum:
|
13885
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13886
|
+
cws_host_top99p:
|
13887
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13888
|
+
dbm_host_sum:
|
13889
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13890
|
+
dbm_host_top99p:
|
13891
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13892
|
+
dbm_normalized_queries_average:
|
13893
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13894
|
+
dbm_normalized_queries_sum:
|
13895
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13896
|
+
fargate_container_apm_and_profiler_average:
|
13897
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13898
|
+
fargate_container_apm_and_profiler_sum:
|
13899
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13280
13900
|
fargate_container_average:
|
13281
13901
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13902
|
+
fargate_container_profiler_average:
|
13903
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13904
|
+
fargate_container_profiler_sum:
|
13905
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13906
|
+
fargate_container_sum:
|
13907
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13908
|
+
incident_management_maximum:
|
13909
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13910
|
+
incident_management_sum:
|
13911
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13912
|
+
infra_and_apm_host_sum:
|
13913
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13914
|
+
infra_and_apm_host_top99p:
|
13915
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13282
13916
|
infra_container_sum:
|
13283
13917
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13284
13918
|
infra_host_sum:
|
13285
13919
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13286
13920
|
infra_host_top99p:
|
13287
13921
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13922
|
+
ingested_spans_sum:
|
13923
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13924
|
+
ingested_timeseries_average:
|
13925
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13926
|
+
ingested_timeseries_sum:
|
13927
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13928
|
+
iot_sum:
|
13929
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13288
13930
|
iot_top99p:
|
13289
13931
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13290
13932
|
lambda_function_average:
|
13291
13933
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13934
|
+
lambda_function_sum:
|
13935
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13292
13936
|
logs_indexed_15day_sum:
|
13293
13937
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13294
13938
|
logs_indexed_180day_sum:
|
13295
13939
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13296
13940
|
logs_indexed_30day_sum:
|
13297
13941
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13942
|
+
logs_indexed_360day_sum:
|
13943
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13298
13944
|
logs_indexed_3day_sum:
|
13299
13945
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13300
13946
|
logs_indexed_45day_sum:
|
@@ -13311,6 +13957,8 @@ components:
|
|
13311
13957
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13312
13958
|
logs_ingested_sum:
|
13313
13959
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13960
|
+
network_device_sum:
|
13961
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13314
13962
|
network_device_top99p:
|
13315
13963
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13316
13964
|
npm_flow_sum:
|
@@ -13319,22 +13967,40 @@ components:
|
|
13319
13967
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13320
13968
|
npm_host_top99p:
|
13321
13969
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13970
|
+
observability_pipeline_sum:
|
13971
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13972
|
+
online_archive_sum:
|
13973
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13322
13974
|
prof_container_sum:
|
13323
13975
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13976
|
+
prof_host_sum:
|
13977
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13324
13978
|
prof_host_top99p:
|
13325
13979
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13980
|
+
rum_lite_sum:
|
13981
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13982
|
+
rum_replay_sum:
|
13983
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13326
13984
|
rum_sum:
|
13327
13985
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13986
|
+
rum_units_sum:
|
13987
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13988
|
+
sensitive_data_scanner_sum:
|
13989
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13328
13990
|
serverless_invocation_sum:
|
13329
13991
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13330
13992
|
siem_sum:
|
13331
13993
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13994
|
+
standard_timeseries_average:
|
13995
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13332
13996
|
synthetics_api_tests_sum:
|
13333
13997
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13334
13998
|
synthetics_browser_checks_sum:
|
13335
13999
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13336
14000
|
timeseries_average:
|
13337
14001
|
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
14002
|
+
timeseries_sum:
|
14003
|
+
$ref: '#/components/schemas/UsageBillableSummaryBody'
|
13338
14004
|
type: object
|
13339
14005
|
UsageBillableSummaryResponse:
|
13340
14006
|
description: Response with monthly summary of data billed by Datadog.
|
@@ -13768,8 +14434,8 @@ components:
|
|
13768
14434
|
format: date-time
|
13769
14435
|
type: string
|
13770
14436
|
ingested_events_bytes:
|
13771
|
-
description: Contains the total number of bytes ingested
|
13772
|
-
hour.
|
14437
|
+
description: Contains the total number of bytes ingested for APM spans during
|
14438
|
+
a given hour.
|
13773
14439
|
format: int64
|
13774
14440
|
type: integer
|
13775
14441
|
org_name:
|
@@ -14142,16 +14808,25 @@ components:
|
|
14142
14808
|
session_count:
|
14143
14809
|
description: Contains the number of browser RUM Lite Sessions.
|
14144
14810
|
format: int64
|
14811
|
+
nullable: true
|
14145
14812
|
type: integer
|
14146
14813
|
session_count_android:
|
14147
14814
|
description: Contains the number of mobile RUM Sessions on Android (data
|
14148
14815
|
available beginning December 1, 2020).
|
14149
14816
|
format: int64
|
14817
|
+
nullable: true
|
14150
14818
|
type: integer
|
14151
14819
|
session_count_ios:
|
14152
14820
|
description: Contains the number of mobile RUM Sessions on iOS (data available
|
14153
14821
|
beginning December 1, 2020).
|
14154
14822
|
format: int64
|
14823
|
+
nullable: true
|
14824
|
+
type: integer
|
14825
|
+
session_count_reactnative:
|
14826
|
+
description: Contains the number of mobile RUM Sessions on React Native
|
14827
|
+
(data available beginning May 1, 2022).
|
14828
|
+
format: int64
|
14829
|
+
nullable: true
|
14155
14830
|
type: integer
|
14156
14831
|
type: object
|
14157
14832
|
UsageRumSessionsResponse:
|
@@ -14564,6 +15239,11 @@ components:
|
|
14564
15239
|
in the current date for all organizations.
|
14565
15240
|
format: int64
|
14566
15241
|
type: integer
|
15242
|
+
mobile_rum_session_count_reactnative_sum:
|
15243
|
+
description: Shows the sum of all mobile RUM Sessions on React Native over
|
15244
|
+
all hours in the current date for all organizations.
|
15245
|
+
format: int64
|
15246
|
+
type: integer
|
14567
15247
|
mobile_rum_session_count_sum:
|
14568
15248
|
description: Shows the sum of all mobile RUM Sessions over all hours in
|
14569
15249
|
the current date for all organizations
|
@@ -14584,6 +15264,11 @@ components:
|
|
14584
15264
|
all hours in the current date for all organizations.
|
14585
15265
|
format: int64
|
14586
15266
|
type: integer
|
15267
|
+
observability_pipelines_bytes_processed_sum:
|
15268
|
+
description: Sum of all observability pipelines bytes processed over all
|
15269
|
+
hours in the current date for the given org.
|
15270
|
+
format: int64
|
15271
|
+
type: integer
|
14587
15272
|
online_archive_events_count_sum:
|
14588
15273
|
description: Sum of all online archived events over all hours in the current
|
14589
15274
|
date for all organizations.
|
@@ -14652,8 +15337,8 @@ components:
|
|
14652
15337
|
format: int64
|
14653
15338
|
type: integer
|
14654
15339
|
twol_ingested_events_bytes_sum:
|
14655
|
-
description: Shows the sum of all
|
14656
|
-
|
15340
|
+
description: Shows the sum of all ingested APM span bytes over all hours
|
15341
|
+
in the current date for all organizations.
|
14657
15342
|
format: int64
|
14658
15343
|
type: integer
|
14659
15344
|
vsphere_host_top99p:
|
@@ -14878,6 +15563,11 @@ components:
|
|
14878
15563
|
in the current date for the given org.
|
14879
15564
|
format: int64
|
14880
15565
|
type: integer
|
15566
|
+
mobile_rum_session_count_reactnative_sum:
|
15567
|
+
description: Shows the sum of all mobile RUM Sessions on React Native over
|
15568
|
+
all hours in the current date for the given org.
|
15569
|
+
format: int64
|
15570
|
+
type: integer
|
14881
15571
|
mobile_rum_session_count_sum:
|
14882
15572
|
description: Shows the sum of all mobile RUM Sessions over all hours in
|
14883
15573
|
the current date for the given org.
|
@@ -14901,6 +15591,11 @@ components:
|
|
14901
15591
|
all hours in the current date for the given org.
|
14902
15592
|
format: int64
|
14903
15593
|
type: integer
|
15594
|
+
observability_pipelines_bytes_processed_sum:
|
15595
|
+
description: Sum of all observability pipelines bytes processed over all
|
15596
|
+
hours in the current date for the given org.
|
15597
|
+
format: int64
|
15598
|
+
type: integer
|
14904
15599
|
online_archive_events_count_sum:
|
14905
15600
|
description: Sum of all online archived events over all hours in the current
|
14906
15601
|
date for the given org.
|
@@ -14967,8 +15662,8 @@ components:
|
|
14967
15662
|
format: int64
|
14968
15663
|
type: integer
|
14969
15664
|
twol_ingested_events_bytes_sum:
|
14970
|
-
description: Shows the sum of all
|
14971
|
-
|
15665
|
+
description: Shows the sum of all ingested APM span bytes over all hours
|
15666
|
+
in the current date for the given org.
|
14972
15667
|
format: int64
|
14973
15668
|
type: integer
|
14974
15669
|
vsphere_host_top99p:
|
@@ -15227,6 +15922,11 @@ components:
|
|
15227
15922
|
in the current months for all organizations.
|
15228
15923
|
format: int64
|
15229
15924
|
type: integer
|
15925
|
+
mobile_rum_session_count_reactnative_agg_sum:
|
15926
|
+
description: Shows the sum of all mobile RUM Sessions on React Native over
|
15927
|
+
all hours in the current months for all organizations.
|
15928
|
+
format: int64
|
15929
|
+
type: integer
|
15230
15930
|
mobile_rum_units_agg_sum:
|
15231
15931
|
description: Shows the sum of all mobile RUM units over all hours in the
|
15232
15932
|
current months for all organizations.
|
@@ -15242,6 +15942,11 @@ components:
|
|
15242
15942
|
all hours in the current months for all organizations.
|
15243
15943
|
format: int64
|
15244
15944
|
type: integer
|
15945
|
+
observability_pipelines_bytes_processed_agg_sum:
|
15946
|
+
description: Sum of all observability pipelines bytes processed over all
|
15947
|
+
hours in the current months for all organizations.
|
15948
|
+
format: int64
|
15949
|
+
type: integer
|
15245
15950
|
online_archive_events_count_agg_sum:
|
15246
15951
|
description: Sum of all online archived events over all hours in the current
|
15247
15952
|
months for all organizations.
|
@@ -15327,8 +16032,8 @@ components:
|
|
15327
16032
|
format: int64
|
15328
16033
|
type: integer
|
15329
16034
|
twol_ingested_events_bytes_agg_sum:
|
15330
|
-
description: Shows the sum of all
|
15331
|
-
|
16035
|
+
description: Shows the sum of all ingested APM span bytes over all hours
|
16036
|
+
in the current months for all organizations.
|
15332
16037
|
format: int64
|
15333
16038
|
type: integer
|
15334
16039
|
usage:
|
@@ -15497,7 +16202,24 @@ components:
|
|
15497
16202
|
format: date-time
|
15498
16203
|
type: string
|
15499
16204
|
pagination:
|
15500
|
-
$ref: '#/components/schemas/
|
16205
|
+
$ref: '#/components/schemas/UsageTopAvgMetricsPagination'
|
16206
|
+
type: object
|
16207
|
+
UsageTopAvgMetricsPagination:
|
16208
|
+
description: The metadata for the current pagination.
|
16209
|
+
properties:
|
16210
|
+
limit:
|
16211
|
+
description: Maximum amount of records to be returned.
|
16212
|
+
format: int64
|
16213
|
+
type: integer
|
16214
|
+
next_record_id:
|
16215
|
+
description: The cursor to get the next results (if any). To make the next
|
16216
|
+
request, use the same parameters and add `next_record_id`.
|
16217
|
+
nullable: true
|
16218
|
+
type: string
|
16219
|
+
total_number_of_records:
|
16220
|
+
description: Total number of records.
|
16221
|
+
format: int64
|
16222
|
+
type: integer
|
15501
16223
|
type: object
|
15502
16224
|
UsageTopAvgMetricsResponse:
|
15503
16225
|
description: Response containing the number of hourly recorded custom metrics
|
@@ -15567,6 +16289,11 @@ components:
|
|
15567
16289
|
user:
|
15568
16290
|
$ref: '#/components/schemas/User'
|
15569
16291
|
type: object
|
16292
|
+
Version:
|
16293
|
+
description: Version of the updated signal. If server side version is higher,
|
16294
|
+
update will be rejected.
|
16295
|
+
format: int64
|
16296
|
+
type: integer
|
15570
16297
|
WebhooksIntegration:
|
15571
16298
|
description: Datadog-Webhooks integration.
|
15572
16299
|
properties:
|
@@ -16476,7 +17203,8 @@ components:
|
|
16476
17203
|
authorizationCode:
|
16477
17204
|
authorizationUrl: /oauth2/v1/authorize
|
16478
17205
|
scopes:
|
16479
|
-
dashboards_public_share:
|
17206
|
+
dashboards_public_share: Generate public and authenticated links to share
|
17207
|
+
dashboards externally.
|
16480
17208
|
dashboards_read: View dashboards.
|
16481
17209
|
dashboards_write: Create and change dashboards.
|
16482
17210
|
events_read: Read Events data.
|
@@ -16485,7 +17213,7 @@ components:
|
|
16485
17213
|
an organization. The ability to write monitors is not required to set
|
16486
17214
|
downtimes.
|
16487
17215
|
monitors_read: View monitors.
|
16488
|
-
monitors_write:
|
17216
|
+
monitors_write: Edit, mute, and delete individual monitors.
|
16489
17217
|
synthetics_global_variable_read: View, search, and use in tests the list
|
16490
17218
|
of global variables available for Synthetics.
|
16491
17219
|
synthetics_global_variable_write: Create, edit, and delete global variables
|
@@ -16499,8 +17227,8 @@ components:
|
|
16499
17227
|
timeseries_query: Query Timeseries data.
|
16500
17228
|
usage_read: View your organization's usage and usage attribution.
|
16501
17229
|
user_access_invite: Invite other users to your organization.
|
16502
|
-
user_access_manage: Disable users, manage user roles,
|
16503
|
-
mappings.
|
17230
|
+
user_access_manage: Disable users, manage user roles, manage SAML-to-role
|
17231
|
+
mappings, and configure logs restriction queries.
|
16504
17232
|
tokenUrl: /oauth2/v1/token
|
16505
17233
|
type: oauth2
|
16506
17234
|
apiKeyAuth:
|
@@ -17049,6 +17777,7 @@ paths:
|
|
17049
17777
|
type: safe
|
17050
17778
|
/api/v1/daily_custom_reports:
|
17051
17779
|
get:
|
17780
|
+
deprecated: true
|
17052
17781
|
description: Get daily custom reports.
|
17053
17782
|
operationId: GetDailyCustomReports
|
17054
17783
|
parameters:
|
@@ -17114,6 +17843,7 @@ paths:
|
|
17114
17843
|
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
17115
17844
|
/api/v1/daily_custom_reports/{report_id}:
|
17116
17845
|
get:
|
17846
|
+
deprecated: true
|
17117
17847
|
description: Get specified daily custom reports.
|
17118
17848
|
operationId: GetSpecifiedDailyCustomReports
|
17119
17849
|
parameters:
|
@@ -17373,6 +18103,11 @@ paths:
|
|
17373
18103
|
- file: dashboard_payload.json
|
17374
18104
|
name: body
|
17375
18105
|
step: there is a valid "dashboard" in the system
|
18106
|
+
screenboard_dashboard:
|
18107
|
+
parameters:
|
18108
|
+
- file: screenboard_dashboard_payload.json
|
18109
|
+
name: body
|
18110
|
+
step: there is a valid "screenboard_dashboard" in the system
|
17376
18111
|
x-menu-order: 1
|
17377
18112
|
x-undo:
|
17378
18113
|
operationId: DeleteDashboard
|
@@ -17754,44 +18489,112 @@ paths:
|
|
17754
18489
|
x-menu-order: 6
|
17755
18490
|
x-undo:
|
17756
18491
|
type: idempotent
|
17757
|
-
/api/v1/
|
17758
|
-
|
17759
|
-
description:
|
17760
|
-
|
18492
|
+
/api/v1/distribution_points:
|
18493
|
+
post:
|
18494
|
+
description: "The distribution points end-point allows you to post distribution
|
18495
|
+
data that can be graphed on Datadog\u2019s dashboards."
|
18496
|
+
operationId: SubmitDistributionPoints
|
17761
18497
|
parameters:
|
17762
|
-
- description:
|
17763
|
-
in:
|
17764
|
-
name:
|
18498
|
+
- description: HTTP header used to compress the media-type.
|
18499
|
+
in: header
|
18500
|
+
name: Content-Encoding
|
17765
18501
|
required: false
|
17766
18502
|
schema:
|
17767
|
-
|
18503
|
+
$ref: '#/components/schemas/DistributionPointsContentEncoding'
|
18504
|
+
requestBody:
|
18505
|
+
content:
|
18506
|
+
text/json:
|
18507
|
+
examples:
|
18508
|
+
dynamic-points:
|
18509
|
+
description: "Post time-series data that can be graphed on Datadog\u2019s
|
18510
|
+
dashboards."
|
18511
|
+
externalValue: examples/metrics/distribution-points.json.sh
|
18512
|
+
summary: Dynamic Points
|
18513
|
+
x-variables:
|
18514
|
+
NOW: $(date +%s)
|
18515
|
+
schema:
|
18516
|
+
$ref: '#/components/schemas/DistributionPointsPayload'
|
18517
|
+
required: true
|
17768
18518
|
responses:
|
17769
|
-
'
|
18519
|
+
'202':
|
17770
18520
|
content:
|
17771
|
-
|
18521
|
+
text/json:
|
17772
18522
|
schema:
|
17773
|
-
|
17774
|
-
|
17775
|
-
|
17776
|
-
|
18523
|
+
$ref: '#/components/schemas/IntakePayloadAccepted'
|
18524
|
+
description: Payload accepted
|
18525
|
+
'400':
|
18526
|
+
content:
|
18527
|
+
text/json:
|
18528
|
+
schema:
|
18529
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
18530
|
+
description: Bad Request
|
17777
18531
|
'403':
|
17778
18532
|
content:
|
17779
|
-
|
18533
|
+
text/json:
|
17780
18534
|
schema:
|
17781
18535
|
$ref: '#/components/schemas/APIErrorResponse'
|
17782
|
-
description:
|
17783
|
-
'
|
17784
|
-
|
17785
|
-
|
17786
|
-
|
17787
|
-
|
17788
|
-
|
17789
|
-
|
17790
|
-
|
17791
|
-
|
17792
|
-
|
17793
|
-
|
17794
|
-
|
18536
|
+
description: Authentication error
|
18537
|
+
'408':
|
18538
|
+
content:
|
18539
|
+
text/json:
|
18540
|
+
schema:
|
18541
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
18542
|
+
description: Request timeout
|
18543
|
+
'413':
|
18544
|
+
content:
|
18545
|
+
text/json:
|
18546
|
+
schema:
|
18547
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
18548
|
+
description: Payload too large
|
18549
|
+
'429':
|
18550
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
18551
|
+
security:
|
18552
|
+
- apiKeyAuth: []
|
18553
|
+
summary: Submit distribution points
|
18554
|
+
tags:
|
18555
|
+
- Metrics
|
18556
|
+
x-codegen-request-body-name: body
|
18557
|
+
x-menu-order: 1
|
18558
|
+
x-undo:
|
18559
|
+
type: safe
|
18560
|
+
/api/v1/downtime:
|
18561
|
+
get:
|
18562
|
+
description: Get all scheduled downtimes.
|
18563
|
+
operationId: ListDowntimes
|
18564
|
+
parameters:
|
18565
|
+
- description: Only return downtimes that are active when the request is made.
|
18566
|
+
in: query
|
18567
|
+
name: current_only
|
18568
|
+
required: false
|
18569
|
+
schema:
|
18570
|
+
type: boolean
|
18571
|
+
responses:
|
18572
|
+
'200':
|
18573
|
+
content:
|
18574
|
+
application/json:
|
18575
|
+
schema:
|
18576
|
+
items:
|
18577
|
+
$ref: '#/components/schemas/Downtime'
|
18578
|
+
type: array
|
18579
|
+
description: OK
|
18580
|
+
'403':
|
18581
|
+
content:
|
18582
|
+
application/json:
|
18583
|
+
schema:
|
18584
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
18585
|
+
description: Forbidden
|
18586
|
+
'429':
|
18587
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
18588
|
+
security:
|
18589
|
+
- apiKeyAuth: []
|
18590
|
+
appKeyAuth: []
|
18591
|
+
- AuthZ:
|
18592
|
+
- monitors_read
|
18593
|
+
summary: Get all downtimes
|
18594
|
+
tags:
|
18595
|
+
- Downtimes
|
18596
|
+
x-menu-order: 1
|
18597
|
+
x-undo:
|
17795
18598
|
type: safe
|
17796
18599
|
post:
|
17797
18600
|
description: Schedule a downtime.
|
@@ -18289,6 +19092,22 @@ paths:
|
|
18289
19092
|
required: false
|
18290
19093
|
schema:
|
18291
19094
|
type: string
|
19095
|
+
- description: The height of the graph. If no height is specified, the graph's
|
19096
|
+
original height is used.
|
19097
|
+
in: query
|
19098
|
+
name: height
|
19099
|
+
required: false
|
19100
|
+
schema:
|
19101
|
+
format: int64
|
19102
|
+
type: integer
|
19103
|
+
- description: The width of the graph. If no width is specified, the graph's
|
19104
|
+
original width is used.
|
19105
|
+
in: query
|
19106
|
+
name: width
|
19107
|
+
required: false
|
19108
|
+
schema:
|
19109
|
+
format: int64
|
19110
|
+
type: integer
|
18292
19111
|
responses:
|
18293
19112
|
'200':
|
18294
19113
|
content:
|
@@ -21320,19 +22139,19 @@ paths:
|
|
21320
22139
|
Example: `"check".over(tags).last(count).by(group).count_by_status()`
|
21321
22140
|
|
21322
22141
|
|
21323
|
-
-
|
22142
|
+
- `check` name of the check, for example `datadog.agent.up`
|
21324
22143
|
|
21325
|
-
-
|
21326
|
-
|
22144
|
+
- `tags` one or more quoted tags (comma-separated), or "*". for example: `.over("env:prod",
|
22145
|
+
"role:db")`; `over` cannot be blank.
|
21327
22146
|
|
21328
|
-
-
|
22147
|
+
- `count` must be at greater than or equal to your max threshold (defined
|
21329
22148
|
in the `options`). It is limited to 100.
|
21330
22149
|
|
21331
22150
|
For example, if you''ve specified to notify on 1 critical, 3 ok, and 2 warn
|
21332
22151
|
statuses, `count` should be at least 3.
|
21333
22152
|
|
21334
|
-
-
|
21335
|
-
|
22153
|
+
- `group` must be specified for check monitors. Per-check grouping is already
|
22154
|
+
explicitly known for some service checks.
|
21336
22155
|
|
21337
22156
|
For example, Postgres integration monitors are tagged by `db`, `host`, and
|
21338
22157
|
`port`, and Network monitors by `host`, `instance`, and `url`. See [Service
|
@@ -21347,28 +22166,28 @@ paths:
|
|
21347
22166
|
"string query"'').rollup("count").last("1h")"`
|
21348
22167
|
|
21349
22168
|
|
21350
|
-
-
|
22169
|
+
- `event`, the event query string:
|
21351
22170
|
|
21352
|
-
-
|
22171
|
+
- `string_query` free text query to match against event title and text.
|
21353
22172
|
|
21354
|
-
-
|
22173
|
+
- `sources` event sources (comma-separated).
|
21355
22174
|
|
21356
|
-
-
|
21357
|
-
|
22175
|
+
- `status` event statuses (comma-separated). Valid options: error, warn, and
|
22176
|
+
info.
|
21358
22177
|
|
21359
|
-
-
|
22178
|
+
- `priority` event priorities (comma-separated). Valid options: low, normal,
|
21360
22179
|
all.
|
21361
22180
|
|
21362
|
-
-
|
22181
|
+
- `host` event reporting host (comma-separated).
|
21363
22182
|
|
21364
|
-
-
|
22183
|
+
- `tags` event tags (comma-separated).
|
21365
22184
|
|
21366
|
-
-
|
22185
|
+
- `excluded_tags` excluded event tags (comma-separated).
|
21367
22186
|
|
21368
|
-
-
|
22187
|
+
- `rollup` the stats roll-up method. `count` is the only supported method
|
21369
22188
|
now.
|
21370
22189
|
|
21371
|
-
-
|
22190
|
+
- `last` the timeframe to roll up the counts. Examples: 45m, 4h. Supported
|
21372
22191
|
timeframes: m, h and d. This value should not exceed 48 hours.
|
21373
22192
|
|
21374
22193
|
|
@@ -21383,23 +22202,18 @@ paths:
|
|
21383
22202
|
operator #`
|
21384
22203
|
|
21385
22204
|
|
21386
|
-
-
|
22205
|
+
- `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
|
21387
22206
|
|
21388
|
-
-
|
21389
|
-
`cardinality`.
|
22207
|
+
- `rollup_method` The stats roll-up method - supports `count`, `avg` and `cardinality`.
|
21390
22208
|
|
21391
|
-
-
|
22209
|
+
- `measure` For `avg` and cardinality `rollup_method` - specify the measure
|
21392
22210
|
or the facet name you want to use.
|
21393
22211
|
|
21394
|
-
-
|
21395
|
-
|
21396
|
-
- **`operator`** `<`, `<=`, `>`, `>=`, `==`, or `!=`.
|
22212
|
+
- `time_window` #m (between 1 and 2880), #h (between 1 and 48).
|
21397
22213
|
|
21398
|
-
-
|
22214
|
+
- `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
|
21399
22215
|
|
21400
|
-
|
21401
|
-
**NOTE** Only available on US1-FED, US3, US5 and in closed beta on EU and
|
21402
|
-
US1.
|
22216
|
+
- `#` an integer or decimal number used to set the threshold.
|
21403
22217
|
|
21404
22218
|
|
21405
22219
|
**Process Alert Query**
|
@@ -21409,19 +22223,19 @@ paths:
|
|
21409
22223
|
#`
|
21410
22224
|
|
21411
22225
|
|
21412
|
-
-
|
22226
|
+
- `search` free text search string for querying processes.
|
21413
22227
|
|
21414
22228
|
Matching processes match results on the [Live Processes](https://docs.datadoghq.com/infrastructure/process/?tab=linuxwindows)
|
21415
22229
|
page.
|
21416
22230
|
|
21417
|
-
-
|
22231
|
+
- `tags` one or more tags (comma-separated)
|
21418
22232
|
|
21419
|
-
-
|
21420
|
-
|
22233
|
+
- `timeframe` the timeframe to roll up the counts. Examples: 10m, 4h. Supported
|
22234
|
+
timeframes: s, m, h and d
|
21421
22235
|
|
21422
|
-
-
|
22236
|
+
- `operator` <, <=, >, >=, ==, or !=
|
21423
22237
|
|
21424
|
-
-
|
22238
|
+
- `#` an integer or decimal number used to set the threshold
|
21425
22239
|
|
21426
22240
|
|
21427
22241
|
**Logs Alert Query**
|
@@ -21431,22 +22245,21 @@ paths:
|
|
21431
22245
|
operator #`
|
21432
22246
|
|
21433
22247
|
|
21434
|
-
-
|
22248
|
+
- `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
|
21435
22249
|
|
21436
|
-
-
|
21437
|
-
|
22250
|
+
- `index_name` For multi-index organizations, the log index in which the request
|
22251
|
+
is performed.
|
21438
22252
|
|
21439
|
-
-
|
21440
|
-
`cardinality`.
|
22253
|
+
- `rollup_method` The stats roll-up method - supports `count`, `avg` and `cardinality`.
|
21441
22254
|
|
21442
|
-
-
|
22255
|
+
- `measure` For `avg` and cardinality `rollup_method` - specify the measure
|
21443
22256
|
or the facet name you want to use.
|
21444
22257
|
|
21445
|
-
-
|
22258
|
+
- `time_window` #m (between 1 and 2880), #h (between 1 and 48).
|
21446
22259
|
|
21447
|
-
-
|
22260
|
+
- `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
|
21448
22261
|
|
21449
|
-
-
|
22262
|
+
- `#` an integer or decimal number used to set the threshold.
|
21450
22263
|
|
21451
22264
|
|
21452
22265
|
**Composite Query**
|
@@ -21456,16 +22269,16 @@ paths:
|
|
21456
22269
|
monitors
|
21457
22270
|
|
21458
22271
|
|
21459
|
-
*
|
21460
|
-
|
22272
|
+
* `name` [*required*, *default* = **dynamic, based on query**]: The name of
|
22273
|
+
the alert.
|
21461
22274
|
|
21462
|
-
*
|
22275
|
+
* `message` [*required*, *default* = **dynamic, based on query**]: A message
|
21463
22276
|
to include with notifications for this monitor.
|
21464
22277
|
|
21465
22278
|
Email notifications can be sent to specific users by using the same ''@username''
|
21466
22279
|
notation as events.
|
21467
22280
|
|
21468
|
-
*
|
22281
|
+
* `tags` [*optional*, *default* = **empty list**]: A list of tags to associate
|
21469
22282
|
with your monitor.
|
21470
22283
|
|
21471
22284
|
When getting all monitor details via the API, use the `monitor_tags` argument
|
@@ -21481,13 +22294,13 @@ paths:
|
|
21481
22294
|
Example: `error_budget("slo_id").over("time_window") operator #`
|
21482
22295
|
|
21483
22296
|
|
21484
|
-
-
|
21485
|
-
|
22297
|
+
- `slo_id`: The alphanumeric SLO ID of the SLO you are configuring the alert
|
22298
|
+
for.
|
21486
22299
|
|
21487
|
-
-
|
21488
|
-
|
22300
|
+
- `time_window`: The time window of the SLO target you wish to alert on. Valid
|
22301
|
+
options: `7d`, `30d`, `90d`.
|
21489
22302
|
|
21490
|
-
-
|
22303
|
+
- `operator`: `>=` or `>`
|
21491
22304
|
|
21492
22305
|
|
21493
22306
|
**Audit Alert Query**
|
@@ -21497,19 +22310,18 @@ paths:
|
|
21497
22310
|
operator #`
|
21498
22311
|
|
21499
22312
|
|
21500
|
-
-
|
22313
|
+
- `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
|
21501
22314
|
|
21502
|
-
-
|
21503
|
-
`cardinality`.
|
22315
|
+
- `rollup_method` The stats roll-up method - supports `count`, `avg` and `cardinality`.
|
21504
22316
|
|
21505
|
-
-
|
22317
|
+
- `measure` For `avg` and cardinality `rollup_method` - specify the measure
|
21506
22318
|
or the facet name you want to use.
|
21507
22319
|
|
21508
|
-
-
|
22320
|
+
- `time_window` #m (between 1 and 2880), #h (between 1 and 48).
|
21509
22321
|
|
21510
|
-
-
|
22322
|
+
- `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
|
21511
22323
|
|
21512
|
-
-
|
22324
|
+
- `#` an integer or decimal number used to set the threshold.
|
21513
22325
|
|
21514
22326
|
|
21515
22327
|
**NOTE** Only available on US1-FED and in closed beta on US1, EU, US3, and
|
@@ -21523,22 +22335,48 @@ paths:
|
|
21523
22335
|
operator #`
|
21524
22336
|
|
21525
22337
|
|
21526
|
-
-
|
22338
|
+
- `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
|
22339
|
+
|
22340
|
+
- `rollup_method` The stats roll-up method - supports `count`, `avg`, and
|
22341
|
+
`cardinality`.
|
22342
|
+
|
22343
|
+
- `measure` For `avg` and cardinality `rollup_method` - specify the measure
|
22344
|
+
or the facet name you want to use.
|
22345
|
+
|
22346
|
+
- `time_window` #m (between 1 and 2880), #h (between 1 and 48).
|
22347
|
+
|
22348
|
+
- `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
|
22349
|
+
|
22350
|
+
- `#` an integer or decimal number used to set the threshold.
|
22351
|
+
|
22352
|
+
|
22353
|
+
**NOTE** CI Pipeline monitors are in alpha on US1, EU, US3 and US5.
|
22354
|
+
|
22355
|
+
|
22356
|
+
**CI Tests Alert Query**
|
22357
|
+
|
22358
|
+
|
22359
|
+
Example: `ci-tests(query).rollup(rollup_method[, measure]).last(time_window)
|
22360
|
+
operator #`
|
22361
|
+
|
22362
|
+
|
22363
|
+
- `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
|
21527
22364
|
|
21528
|
-
-
|
21529
|
-
|
22365
|
+
- `rollup_method` The stats roll-up method - supports `count`, `avg`, and
|
22366
|
+
`cardinality`.
|
21530
22367
|
|
21531
|
-
-
|
22368
|
+
- `measure` For `avg` and cardinality `rollup_method` - specify the measure
|
21532
22369
|
or the facet name you want to use.
|
21533
22370
|
|
21534
|
-
-
|
22371
|
+
- `time_window` #m (between 1 and 2880), #h (between 1 and 48).
|
21535
22372
|
|
21536
|
-
-
|
22373
|
+
- `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
|
21537
22374
|
|
21538
|
-
-
|
22375
|
+
- `#` an integer or decimal number used to set the threshold.
|
21539
22376
|
|
21540
22377
|
|
21541
|
-
**NOTE**
|
22378
|
+
**NOTE** CI Test monitors are available only in closed beta on US1, EU, US3
|
22379
|
+
and US5.
|
21542
22380
|
|
21543
22381
|
|
21544
22382
|
**Error Tracking Alert Query**
|
@@ -21551,19 +22389,19 @@ paths:
|
|
21551
22389
|
measure]).last(time_window) operator #`
|
21552
22390
|
|
21553
22391
|
|
21554
|
-
-
|
22392
|
+
- `query` The search query - following the [Log search syntax](https://docs.datadoghq.com/logs/search_syntax/).
|
21555
22393
|
|
21556
|
-
-
|
21557
|
-
|
22394
|
+
- `rollup_method` The stats roll-up method - supports `count`, `avg`, and
|
22395
|
+
`cardinality`.
|
21558
22396
|
|
21559
|
-
-
|
22397
|
+
- `measure` For `avg` and cardinality `rollup_method` - specify the measure
|
21560
22398
|
or the facet name you want to use.
|
21561
22399
|
|
21562
|
-
-
|
22400
|
+
- `time_window` #m (between 1 and 2880), #h (between 1 and 48).
|
21563
22401
|
|
21564
|
-
-
|
22402
|
+
- `operator` `<`, `<=`, `>`, `>=`, `==`, or `!=`.
|
21565
22403
|
|
21566
|
-
-
|
22404
|
+
- `#` an integer or decimal number used to set the threshold.'
|
21567
22405
|
operationId: CreateMonitor
|
21568
22406
|
requestBody:
|
21569
22407
|
content:
|
@@ -21640,6 +22478,7 @@ paths:
|
|
21640
22478
|
required: true
|
21641
22479
|
schema:
|
21642
22480
|
items:
|
22481
|
+
example: 666486743
|
21643
22482
|
format: int64
|
21644
22483
|
type: integer
|
21645
22484
|
type: array
|
@@ -21915,6 +22754,7 @@ paths:
|
|
21915
22754
|
name: monitor_id
|
21916
22755
|
required: true
|
21917
22756
|
schema:
|
22757
|
+
example: 666486743
|
21918
22758
|
format: int64
|
21919
22759
|
type: integer
|
21920
22760
|
- description: Delete the monitor even if it's referenced by other resources
|
@@ -21978,6 +22818,7 @@ paths:
|
|
21978
22818
|
name: monitor_id
|
21979
22819
|
required: true
|
21980
22820
|
schema:
|
22821
|
+
example: 666486743
|
21981
22822
|
format: int64
|
21982
22823
|
type: integer
|
21983
22824
|
- description: When specified, shows additional information about the group
|
@@ -22034,6 +22875,7 @@ paths:
|
|
22034
22875
|
name: monitor_id
|
22035
22876
|
required: true
|
22036
22877
|
schema:
|
22878
|
+
example: 666486743
|
22037
22879
|
format: int64
|
22038
22880
|
type: integer
|
22039
22881
|
requestBody:
|
@@ -22135,8 +22977,63 @@ paths:
|
|
22135
22977
|
x-menu-order: 7
|
22136
22978
|
x-undo:
|
22137
22979
|
type: safe
|
22980
|
+
/api/v1/monitor/{monitor_id}/validate:
|
22981
|
+
post:
|
22982
|
+
description: Validate the monitor provided in the request.
|
22983
|
+
operationId: ValidateExistingMonitor
|
22984
|
+
parameters:
|
22985
|
+
- description: The ID of the monitor
|
22986
|
+
in: path
|
22987
|
+
name: monitor_id
|
22988
|
+
required: true
|
22989
|
+
schema:
|
22990
|
+
example: 666486743
|
22991
|
+
format: int64
|
22992
|
+
type: integer
|
22993
|
+
requestBody:
|
22994
|
+
content:
|
22995
|
+
application/json:
|
22996
|
+
schema:
|
22997
|
+
$ref: '#/components/schemas/Monitor'
|
22998
|
+
description: Monitor request object
|
22999
|
+
required: true
|
23000
|
+
responses:
|
23001
|
+
'200':
|
23002
|
+
content:
|
23003
|
+
application/json:
|
23004
|
+
schema:
|
23005
|
+
example: {}
|
23006
|
+
type: object
|
23007
|
+
description: OK
|
23008
|
+
'400':
|
23009
|
+
content:
|
23010
|
+
application/json:
|
23011
|
+
schema:
|
23012
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23013
|
+
description: Invalid JSON
|
23014
|
+
'403':
|
23015
|
+
content:
|
23016
|
+
application/json:
|
23017
|
+
schema:
|
23018
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23019
|
+
description: Forbidden
|
23020
|
+
'429':
|
23021
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
23022
|
+
security:
|
23023
|
+
- apiKeyAuth: []
|
23024
|
+
appKeyAuth: []
|
23025
|
+
- AuthZ:
|
23026
|
+
- monitors_write
|
23027
|
+
summary: Validate an existing monitor
|
23028
|
+
tags:
|
23029
|
+
- Monitors
|
23030
|
+
x-codegen-request-body-name: body
|
23031
|
+
x-menu-order: 8
|
23032
|
+
x-undo:
|
23033
|
+
type: idempotent
|
22138
23034
|
/api/v1/monthly_custom_reports:
|
22139
23035
|
get:
|
23036
|
+
deprecated: true
|
22140
23037
|
description: Get monthly custom reports.
|
22141
23038
|
operationId: GetMonthlyCustomReports
|
22142
23039
|
parameters:
|
@@ -22202,6 +23099,7 @@ paths:
|
|
22202
23099
|
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
22203
23100
|
/api/v1/monthly_custom_reports/{report_id}:
|
22204
23101
|
get:
|
23102
|
+
deprecated: true
|
22205
23103
|
description: Get specified monthly custom reports.
|
22206
23104
|
operationId: GetSpecifiedMonthlyCustomReports
|
22207
23105
|
parameters:
|
@@ -22644,7 +23542,7 @@ paths:
|
|
22644
23542
|
type: idempotent
|
22645
23543
|
/api/v1/org:
|
22646
23544
|
get:
|
22647
|
-
description:
|
23545
|
+
description: This endpoint returns data on your top-level organization.
|
22648
23546
|
operationId: ListOrgs
|
22649
23547
|
responses:
|
22650
23548
|
'200':
|
@@ -22807,6 +23705,47 @@ paths:
|
|
22807
23705
|
x-menu-order: 4
|
22808
23706
|
x-undo:
|
22809
23707
|
type: idempotent
|
23708
|
+
/api/v1/org/{public_id}/downgrade:
|
23709
|
+
post:
|
23710
|
+
description: Only available for MSP customers. Removes a child organization
|
23711
|
+
from the hierarchy of the master organization and places the child organization
|
23712
|
+
on a 30-day trial.
|
23713
|
+
operationId: DowngradeOrg
|
23714
|
+
parameters:
|
23715
|
+
- description: The `public_id` of the organization you are operating within.
|
23716
|
+
in: path
|
23717
|
+
name: public_id
|
23718
|
+
required: true
|
23719
|
+
schema:
|
23720
|
+
example: abc123
|
23721
|
+
type: string
|
23722
|
+
responses:
|
23723
|
+
'200':
|
23724
|
+
content:
|
23725
|
+
application/json:
|
23726
|
+
schema:
|
23727
|
+
$ref: '#/components/schemas/OrgDowngradedResponse'
|
23728
|
+
description: OK
|
23729
|
+
'400':
|
23730
|
+
content:
|
23731
|
+
application/json:
|
23732
|
+
schema:
|
23733
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23734
|
+
description: Bad Request
|
23735
|
+
'403':
|
23736
|
+
content:
|
23737
|
+
application/json:
|
23738
|
+
schema:
|
23739
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23740
|
+
description: Forbidden
|
23741
|
+
'429':
|
23742
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
23743
|
+
summary: Spin-off Child Organization
|
23744
|
+
tags:
|
23745
|
+
- Organizations
|
23746
|
+
x-menu-order: 6
|
23747
|
+
x-undo:
|
23748
|
+
type: unsafe
|
22810
23749
|
/api/v1/org/{public_id}/idp_metadata:
|
22811
23750
|
post:
|
22812
23751
|
description: 'There are a couple of options for updating the Identity Provider
|
@@ -22930,7 +23869,8 @@ paths:
|
|
22930
23869
|
description: Search for metrics from the last 24 hours in Datadog.
|
22931
23870
|
operationId: ListMetrics
|
22932
23871
|
parameters:
|
22933
|
-
- description: Query string to search metrics upon.
|
23872
|
+
- description: Query string to search metrics upon. Can optionally be prefixed
|
23873
|
+
with `metrics:`.
|
22934
23874
|
in: query
|
22935
23875
|
name: q
|
22936
23876
|
required: true
|
@@ -22967,6 +23907,151 @@ paths:
|
|
22967
23907
|
x-menu-order: 4
|
22968
23908
|
x-undo:
|
22969
23909
|
type: safe
|
23910
|
+
/api/v1/security_analytics/signals/{signal_id}/add_to_incident:
|
23911
|
+
patch:
|
23912
|
+
description: Add a security signal to an incident. This makes it possible to
|
23913
|
+
search for signals by incident within the signal explorer and to view the
|
23914
|
+
signals on the incident timeline.
|
23915
|
+
operationId: AddSecurityMonitoringSignalToIncident
|
23916
|
+
parameters:
|
23917
|
+
- $ref: '#/components/parameters/SignalID'
|
23918
|
+
requestBody:
|
23919
|
+
content:
|
23920
|
+
application/json:
|
23921
|
+
schema:
|
23922
|
+
$ref: '#/components/schemas/AddSignalToIncidentRequest'
|
23923
|
+
description: Attributes describing the signal update.
|
23924
|
+
required: true
|
23925
|
+
responses:
|
23926
|
+
'200':
|
23927
|
+
content:
|
23928
|
+
application/json:
|
23929
|
+
schema:
|
23930
|
+
$ref: '#/components/schemas/SuccessfulSignalUpdateResponse'
|
23931
|
+
description: OK
|
23932
|
+
'400':
|
23933
|
+
content:
|
23934
|
+
application/json:
|
23935
|
+
schema:
|
23936
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23937
|
+
description: Bad Request
|
23938
|
+
'403':
|
23939
|
+
content:
|
23940
|
+
application/json:
|
23941
|
+
schema:
|
23942
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23943
|
+
description: Forbidden
|
23944
|
+
'404':
|
23945
|
+
content:
|
23946
|
+
application/json:
|
23947
|
+
schema:
|
23948
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23949
|
+
description: Not Found
|
23950
|
+
'429':
|
23951
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
23952
|
+
security:
|
23953
|
+
- AuthZ:
|
23954
|
+
- security_monitoring_signals_write
|
23955
|
+
apiKeyAuth: []
|
23956
|
+
appKeyAuth: []
|
23957
|
+
summary: Add a security signal to an incident
|
23958
|
+
tags:
|
23959
|
+
- Security Monitoring
|
23960
|
+
x-codegen-request-body-name: body
|
23961
|
+
x-undo:
|
23962
|
+
type: idempotent
|
23963
|
+
/api/v1/security_analytics/signals/{signal_id}/assignee:
|
23964
|
+
patch:
|
23965
|
+
description: Modify the triage assignee of a security signal.
|
23966
|
+
operationId: EditSecurityMonitoringSignalAssignee
|
23967
|
+
parameters:
|
23968
|
+
- $ref: '#/components/parameters/SignalID'
|
23969
|
+
requestBody:
|
23970
|
+
content:
|
23971
|
+
application/json:
|
23972
|
+
schema:
|
23973
|
+
$ref: '#/components/schemas/SignalAssigneeUpdateRequest'
|
23974
|
+
description: Attributes describing the signal update.
|
23975
|
+
required: true
|
23976
|
+
responses:
|
23977
|
+
'200':
|
23978
|
+
content:
|
23979
|
+
application/json:
|
23980
|
+
schema:
|
23981
|
+
$ref: '#/components/schemas/SuccessfulSignalUpdateResponse'
|
23982
|
+
description: OK
|
23983
|
+
'400':
|
23984
|
+
content:
|
23985
|
+
application/json:
|
23986
|
+
schema:
|
23987
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23988
|
+
description: Bad Request
|
23989
|
+
'403':
|
23990
|
+
content:
|
23991
|
+
application/json:
|
23992
|
+
schema:
|
23993
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
23994
|
+
description: Forbidden
|
23995
|
+
'404':
|
23996
|
+
content:
|
23997
|
+
application/json:
|
23998
|
+
schema:
|
23999
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
24000
|
+
description: Not Found
|
24001
|
+
'429':
|
24002
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
24003
|
+
summary: Modify the triage assignee of a security signal
|
24004
|
+
tags:
|
24005
|
+
- Security Monitoring
|
24006
|
+
x-codegen-request-body-name: body
|
24007
|
+
x-undo:
|
24008
|
+
type: idempotent
|
24009
|
+
/api/v1/security_analytics/signals/{signal_id}/state:
|
24010
|
+
patch:
|
24011
|
+
description: Change the triage state of a security signal.
|
24012
|
+
operationId: EditSecurityMonitoringSignalState
|
24013
|
+
parameters:
|
24014
|
+
- $ref: '#/components/parameters/SignalID'
|
24015
|
+
requestBody:
|
24016
|
+
content:
|
24017
|
+
application/json:
|
24018
|
+
schema:
|
24019
|
+
$ref: '#/components/schemas/SignalStateUpdateRequest'
|
24020
|
+
description: Attributes describing the signal update.
|
24021
|
+
required: true
|
24022
|
+
responses:
|
24023
|
+
'200':
|
24024
|
+
content:
|
24025
|
+
application/json:
|
24026
|
+
schema:
|
24027
|
+
$ref: '#/components/schemas/SuccessfulSignalUpdateResponse'
|
24028
|
+
description: OK
|
24029
|
+
'400':
|
24030
|
+
content:
|
24031
|
+
application/json:
|
24032
|
+
schema:
|
24033
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
24034
|
+
description: Bad Request
|
24035
|
+
'403':
|
24036
|
+
content:
|
24037
|
+
application/json:
|
24038
|
+
schema:
|
24039
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
24040
|
+
description: Forbidden
|
24041
|
+
'404':
|
24042
|
+
content:
|
24043
|
+
application/json:
|
24044
|
+
schema:
|
24045
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
24046
|
+
description: Not Found
|
24047
|
+
'429':
|
24048
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
24049
|
+
summary: Change the triage state of a security signal
|
24050
|
+
tags:
|
24051
|
+
- Security Monitoring
|
24052
|
+
x-codegen-request-body-name: body
|
24053
|
+
x-undo:
|
24054
|
+
type: idempotent
|
22970
24055
|
/api/v1/series:
|
22971
24056
|
post:
|
22972
24057
|
description: "The metrics end-point allows you to post time-series data that
|
@@ -22974,7 +24059,7 @@ paths:
|
|
22974
24059
|
3.2 megabytes (3200000 bytes). Compressed payloads must have a decompressed
|
22975
24060
|
size of less than 62 megabytes (62914560 bytes).\n\nIf you\u2019re submitting
|
22976
24061
|
metrics directly to the Datadog API without using DogStatsD, expect:\n\n-
|
22977
|
-
64 bits for the timestamp\n-
|
24062
|
+
64 bits for the timestamp\n- 64 bits for the value\n- 40 bytes for the metric
|
22978
24063
|
names\n- 50 bytes for the timeseries\n- The full payload is approximately
|
22979
24064
|
100 bytes. However, with the DogStatsD API,\ncompression is applied, which
|
22980
24065
|
reduces the payload size."
|
@@ -23039,6 +24124,12 @@ paths:
|
|
23039
24124
|
tags:
|
23040
24125
|
- Metrics
|
23041
24126
|
x-codegen-request-body-name: body
|
24127
|
+
x-given:
|
24128
|
+
metric:
|
24129
|
+
parameters:
|
24130
|
+
- file: metric_payload.json
|
24131
|
+
name: body
|
24132
|
+
step: there is a valid "metric" in the system
|
23042
24133
|
x-menu-order: 1
|
23043
24134
|
x-undo:
|
23044
24135
|
type: safe
|
@@ -23118,10 +24209,6 @@ paths:
|
|
23118
24209
|
description: Not Found
|
23119
24210
|
'429':
|
23120
24211
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
23121
|
-
security:
|
23122
|
-
- apiKeyAuth: []
|
23123
|
-
appKeyAuth: []
|
23124
|
-
- AuthZ: []
|
23125
24212
|
summary: Get all SLOs
|
23126
24213
|
tags:
|
23127
24214
|
- Service Level Objectives
|
@@ -23301,9 +24388,6 @@ paths:
|
|
23301
24388
|
x-menu-order: 2
|
23302
24389
|
x-undo:
|
23303
24390
|
type: safe
|
23304
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
23305
|
-
|
23306
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
23307
24391
|
post:
|
23308
24392
|
description: Create an SLO Correction.
|
23309
24393
|
operationId: CreateSLOCorrection
|
@@ -23362,9 +24446,6 @@ paths:
|
|
23362
24446
|
- name: slo_correction_id
|
23363
24447
|
source: data.id
|
23364
24448
|
type: unsafe
|
23365
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
23366
|
-
|
23367
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
23368
24449
|
/api/v1/slo/correction/{slo_correction_id}:
|
23369
24450
|
delete:
|
23370
24451
|
description: Permanently delete the specified SLO correction object.
|
@@ -23399,9 +24480,6 @@ paths:
|
|
23399
24480
|
x-menu-order: 5
|
23400
24481
|
x-undo:
|
23401
24482
|
type: idempotent
|
23402
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
23403
|
-
|
23404
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
23405
24483
|
get:
|
23406
24484
|
description: Get an SLO correction.
|
23407
24485
|
operationId: GetSLOCorrection
|
@@ -23439,11 +24517,8 @@ paths:
|
|
23439
24517
|
x-menu-order: 3
|
23440
24518
|
x-undo:
|
23441
24519
|
type: safe
|
23442
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
23443
|
-
|
23444
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
23445
24520
|
patch:
|
23446
|
-
description: Update the specified SLO correction object
|
24521
|
+
description: Update the specified SLO correction object.
|
23447
24522
|
operationId: UpdateSLOCorrection
|
23448
24523
|
parameters:
|
23449
24524
|
- description: The ID of the SLO correction object.
|
@@ -23493,7 +24568,92 @@ paths:
|
|
23493
24568
|
x-menu-order: 4
|
23494
24569
|
x-undo:
|
23495
24570
|
type: idempotent
|
23496
|
-
|
24571
|
+
/api/v1/slo/search:
|
24572
|
+
get:
|
24573
|
+
description: Get a list of service level objective objects for your organization.
|
24574
|
+
operationId: SearchSLO
|
24575
|
+
parameters:
|
24576
|
+
- description: The query string to filter results based on SLO names.
|
24577
|
+
in: query
|
24578
|
+
name: query
|
24579
|
+
required: false
|
24580
|
+
schema:
|
24581
|
+
type: string
|
24582
|
+
- description: The number of files to return in the response `[default=10]`.
|
24583
|
+
in: query
|
24584
|
+
name: page[size]
|
24585
|
+
required: false
|
24586
|
+
schema:
|
24587
|
+
format: int64
|
24588
|
+
type: integer
|
24589
|
+
- description: The identifier of the first page to return. This parameter is
|
24590
|
+
used for the pagination feature `[default=0]`.
|
24591
|
+
in: query
|
24592
|
+
name: page[number]
|
24593
|
+
required: false
|
24594
|
+
schema:
|
24595
|
+
format: int64
|
24596
|
+
type: integer
|
24597
|
+
responses:
|
24598
|
+
'200':
|
24599
|
+
content:
|
24600
|
+
application/json:
|
24601
|
+
schema:
|
24602
|
+
$ref: '#/components/schemas/SearchSLOResponse'
|
24603
|
+
description: OK
|
24604
|
+
'400':
|
24605
|
+
content:
|
24606
|
+
application/json:
|
24607
|
+
schema:
|
24608
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
24609
|
+
description: Bad Request
|
24610
|
+
'403':
|
24611
|
+
content:
|
24612
|
+
application/json:
|
24613
|
+
schema:
|
24614
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
24615
|
+
description: Forbidden
|
24616
|
+
'429':
|
24617
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
24618
|
+
servers:
|
24619
|
+
- url: https://{subdomain}.{site}
|
24620
|
+
variables:
|
24621
|
+
site:
|
24622
|
+
default: datadoghq.com
|
24623
|
+
description: The regional site for Datadog customers.
|
24624
|
+
enum:
|
24625
|
+
- datadoghq.com
|
24626
|
+
- us3.datadoghq.com
|
24627
|
+
- us5.datadoghq.com
|
24628
|
+
- ddog-gov.com
|
24629
|
+
subdomain:
|
24630
|
+
default: api
|
24631
|
+
description: The subdomain where the API is deployed.
|
24632
|
+
- url: '{protocol}://{name}'
|
24633
|
+
variables:
|
24634
|
+
name:
|
24635
|
+
default: api.datadoghq.com
|
24636
|
+
description: Full site DNS name.
|
24637
|
+
protocol:
|
24638
|
+
default: https
|
24639
|
+
description: The protocol for accessing the API.
|
24640
|
+
- url: https://{subdomain}.{site}
|
24641
|
+
variables:
|
24642
|
+
site:
|
24643
|
+
default: datadoghq.com
|
24644
|
+
description: Any Datadog deployment.
|
24645
|
+
subdomain:
|
24646
|
+
default: api
|
24647
|
+
description: The subdomain where the API is deployed.
|
24648
|
+
summary: Search for SLOs
|
24649
|
+
tags:
|
24650
|
+
- Service Level Objectives
|
24651
|
+
x-menu-order: 1
|
24652
|
+
x-undo:
|
24653
|
+
type: safe
|
24654
|
+
x-unstable: '**Note**: Note: This endpoint is in public beta for US regions.
|
24655
|
+
|
24656
|
+
It is not currently supported in the EU region.
|
23497
24657
|
|
23498
24658
|
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
23499
24659
|
/api/v1/slo/{slo_id}:
|
@@ -23590,10 +24750,6 @@ paths:
|
|
23590
24750
|
description: Not found
|
23591
24751
|
'429':
|
23592
24752
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
23593
|
-
security:
|
23594
|
-
- apiKeyAuth: []
|
23595
|
-
appKeyAuth: []
|
23596
|
-
- AuthZ: []
|
23597
24753
|
summary: Get an SLO's details
|
23598
24754
|
tags:
|
23599
24755
|
- Service Level Objectives
|
@@ -23689,19 +24845,12 @@ paths:
|
|
23689
24845
|
description: Not Found
|
23690
24846
|
'429':
|
23691
24847
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
23692
|
-
security:
|
23693
|
-
- apiKeyAuth: []
|
23694
|
-
appKeyAuth: []
|
23695
|
-
- AuthZ: []
|
23696
24848
|
summary: Get Corrections For an SLO
|
23697
24849
|
tags:
|
23698
24850
|
- Service Level Objectives
|
23699
24851
|
x-menu-order: 6
|
23700
24852
|
x-undo:
|
23701
24853
|
type: safe
|
23702
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
23703
|
-
|
23704
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
23705
24854
|
/api/v1/slo/{slo_id}/history:
|
23706
24855
|
get:
|
23707
24856
|
description: "Get a specific SLO\u2019s history, regardless of its SLO type.\n\nThe
|
@@ -23780,10 +24929,6 @@ paths:
|
|
23780
24929
|
description: Not Found
|
23781
24930
|
'429':
|
23782
24931
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
23783
|
-
security:
|
23784
|
-
- apiKeyAuth: []
|
23785
|
-
appKeyAuth: []
|
23786
|
-
- AuthZ: []
|
23787
24932
|
summary: Get an SLO's history
|
23788
24933
|
tags:
|
23789
24934
|
- Service Level Objectives
|
@@ -23827,7 +24972,7 @@ paths:
|
|
23827
24972
|
summary: Get details of batch
|
23828
24973
|
tags:
|
23829
24974
|
- Synthetics
|
23830
|
-
x-menu-order:
|
24975
|
+
x-menu-order: 15
|
23831
24976
|
x-undo:
|
23832
24977
|
type: safe
|
23833
24978
|
/api/v1/synthetics/locations:
|
@@ -23853,7 +24998,7 @@ paths:
|
|
23853
24998
|
summary: Get all locations (public and private)
|
23854
24999
|
tags:
|
23855
25000
|
- Synthetics
|
23856
|
-
x-menu-order:
|
25001
|
+
x-menu-order: 25
|
23857
25002
|
x-undo:
|
23858
25003
|
type: safe
|
23859
25004
|
/api/v1/synthetics/private-locations:
|
@@ -23897,12 +25042,12 @@ paths:
|
|
23897
25042
|
tags:
|
23898
25043
|
- Synthetics
|
23899
25044
|
x-codegen-request-body-name: body
|
23900
|
-
x-menu-order:
|
25045
|
+
x-menu-order: 22
|
23901
25046
|
x-undo:
|
23902
25047
|
operationId: DeletePrivateLocation
|
23903
25048
|
parameters:
|
23904
25049
|
- name: location_id
|
23905
|
-
source: private_location
|
25050
|
+
source: private_location.id
|
23906
25051
|
type: unsafe
|
23907
25052
|
/api/v1/synthetics/private-locations/{location_id}:
|
23908
25053
|
delete:
|
@@ -23936,7 +25081,7 @@ paths:
|
|
23936
25081
|
summary: Delete a private location
|
23937
25082
|
tags:
|
23938
25083
|
- Synthetics
|
23939
|
-
x-menu-order:
|
25084
|
+
x-menu-order: 26
|
23940
25085
|
x-undo:
|
23941
25086
|
type: idempotent
|
23942
25087
|
get:
|
@@ -23974,7 +25119,7 @@ paths:
|
|
23974
25119
|
summary: Get a private location
|
23975
25120
|
tags:
|
23976
25121
|
- Synthetics
|
23977
|
-
x-menu-order:
|
25122
|
+
x-menu-order: 23
|
23978
25123
|
x-undo:
|
23979
25124
|
type: safe
|
23980
25125
|
put:
|
@@ -24020,7 +25165,7 @@ paths:
|
|
24020
25165
|
tags:
|
24021
25166
|
- Synthetics
|
24022
25167
|
x-codegen-request-body-name: body
|
24023
|
-
x-menu-order:
|
25168
|
+
x-menu-order: 24
|
24024
25169
|
x-undo:
|
24025
25170
|
type: idempotent
|
24026
25171
|
/api/v1/synthetics/tests:
|
@@ -24697,7 +25842,7 @@ paths:
|
|
24697
25842
|
tags:
|
24698
25843
|
- Synthetics
|
24699
25844
|
x-codegen-request-body-name: body
|
24700
|
-
x-menu-order:
|
25845
|
+
x-menu-order: 16
|
24701
25846
|
x-undo:
|
24702
25847
|
type: idempotent
|
24703
25848
|
/api/v1/synthetics/tests/trigger:
|
@@ -24825,7 +25970,7 @@ paths:
|
|
24825
25970
|
summary: Get a test configuration
|
24826
25971
|
tags:
|
24827
25972
|
- Synthetics
|
24828
|
-
x-menu-order:
|
25973
|
+
x-menu-order: 27
|
24829
25974
|
x-undo:
|
24830
25975
|
type: safe
|
24831
25976
|
/api/v1/synthetics/tests/{public_id}/results:
|
@@ -25034,7 +26179,7 @@ paths:
|
|
25034
26179
|
summary: Get all global variables
|
25035
26180
|
tags:
|
25036
26181
|
- Synthetics
|
25037
|
-
x-menu-order:
|
26182
|
+
x-menu-order: 17
|
25038
26183
|
x-undo:
|
25039
26184
|
type: safe
|
25040
26185
|
post:
|
@@ -25077,7 +26222,7 @@ paths:
|
|
25077
26222
|
tags:
|
25078
26223
|
- Synthetics
|
25079
26224
|
x-codegen-request-body-name: body
|
25080
|
-
x-menu-order:
|
26225
|
+
x-menu-order: 18
|
25081
26226
|
x-undo:
|
25082
26227
|
operationId: DeleteGlobalVariable
|
25083
26228
|
parameters:
|
@@ -25126,7 +26271,7 @@ paths:
|
|
25126
26271
|
summary: Delete a global variable
|
25127
26272
|
tags:
|
25128
26273
|
- Synthetics
|
25129
|
-
x-menu-order:
|
26274
|
+
x-menu-order: 21
|
25130
26275
|
x-undo:
|
25131
26276
|
type: idempotent
|
25132
26277
|
get:
|
@@ -25218,7 +26363,7 @@ paths:
|
|
25218
26363
|
tags:
|
25219
26364
|
- Synthetics
|
25220
26365
|
x-codegen-request-body-name: body
|
25221
|
-
x-menu-order:
|
26366
|
+
x-menu-order: 20
|
25222
26367
|
x-undo:
|
25223
26368
|
type: idempotent
|
25224
26369
|
/api/v1/tags/hosts:
|
@@ -25533,7 +26678,8 @@ paths:
|
|
25533
26678
|
type: safe
|
25534
26679
|
/api/v1/usage/attribution:
|
25535
26680
|
get:
|
25536
|
-
|
26681
|
+
deprecated: true
|
26682
|
+
description: Get usage attribution.
|
25537
26683
|
operationId: GetUsageAttribution
|
25538
26684
|
parameters:
|
25539
26685
|
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
|
@@ -25616,7 +26762,7 @@ paths:
|
|
25616
26762
|
appKeyAuth: []
|
25617
26763
|
- AuthZ:
|
25618
26764
|
- usage_read
|
25619
|
-
summary: Get
|
26765
|
+
summary: Get usage attribution
|
25620
26766
|
tags:
|
25621
26767
|
- Usage Metering
|
25622
26768
|
x-menu-order: 29
|
@@ -25792,8 +26938,7 @@ paths:
|
|
25792
26938
|
type: safe
|
25793
26939
|
/api/v1/usage/ci-app:
|
25794
26940
|
get:
|
25795
|
-
description: Get hourly usage for CI Visibility (Tests, Pipeline,
|
25796
|
-
Spans).
|
26941
|
+
description: Get hourly usage for CI Visibility (Tests, Pipeline, and Spans).
|
25797
26942
|
operationId: GetUsageCIApp
|
25798
26943
|
parameters:
|
25799
26944
|
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
@@ -26143,7 +27288,13 @@ paths:
|
|
26143
27288
|
type: safe
|
26144
27289
|
/api/v1/usage/hourly-attribution:
|
26145
27290
|
get:
|
26146
|
-
description: Get
|
27291
|
+
description: "Get hourly usage attribution.\n\nThis API endpoint is paginated.
|
27292
|
+
To make sure you receive all records, check if the value of `next_record_id`
|
27293
|
+
is\nset in the response. If it is, make another request and pass `next_record_id`
|
27294
|
+
as a parameter.\nPseudo code example:\n\n```\nresponse := GetHourlyUsageAttribution(start_month)\ncursor
|
27295
|
+
:= response.metadata.pagination.next_record_id\nWHILE cursor != null BEGIN\n
|
27296
|
+
\ sleep(5 seconds) # Avoid running into rate limit\n response := GetHourlyUsageAttribution(start_month,
|
27297
|
+
next_record_id=cursor)\n cursor := response.metadata.pagination.next_record_id\nEND\n```"
|
26147
27298
|
operationId: GetHourlyUsageAttribution
|
26148
27299
|
parameters:
|
26149
27300
|
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
@@ -26177,13 +27328,24 @@ paths:
|
|
26177
27328
|
required: false
|
26178
27329
|
schema:
|
26179
27330
|
type: string
|
26180
|
-
- description: Comma separated list of tags used to group usage. If no value
|
27331
|
+
- description: 'Comma separated list of tags used to group usage. If no value
|
26181
27332
|
is provided the usage will not be broken down by tags.
|
27333
|
+
|
27334
|
+
|
27335
|
+
To see which tags are available, look for the value of `tag_config_source`
|
27336
|
+
in the API response.'
|
26182
27337
|
in: query
|
26183
27338
|
name: tag_breakdown_keys
|
26184
27339
|
required: false
|
26185
27340
|
schema:
|
26186
27341
|
type: string
|
27342
|
+
- description: Include child org usage in the response. Defaults to `true`.
|
27343
|
+
in: query
|
27344
|
+
name: include_descendants
|
27345
|
+
required: false
|
27346
|
+
schema:
|
27347
|
+
default: true
|
27348
|
+
type: boolean
|
26187
27349
|
responses:
|
26188
27350
|
'200':
|
26189
27351
|
content:
|
@@ -26208,7 +27370,7 @@ paths:
|
|
26208
27370
|
appKeyAuth: []
|
26209
27371
|
- AuthZ:
|
26210
27372
|
- usage_read
|
26211
|
-
summary: Get
|
27373
|
+
summary: Get hourly usage attribution
|
26212
27374
|
tags:
|
26213
27375
|
- Usage Metering
|
26214
27376
|
x-menu-order: 30
|
@@ -26633,7 +27795,13 @@ paths:
|
|
26633
27795
|
type: safe
|
26634
27796
|
/api/v1/usage/monthly-attribution:
|
26635
27797
|
get:
|
26636
|
-
description: Get
|
27798
|
+
description: "Get monthly usage attribution.\n\nThis API endpoint is paginated.
|
27799
|
+
To make sure you receive all records, check if the value of `next_record_id`
|
27800
|
+
is\nset in the response. If it is, make another request and pass `next_record_id`
|
27801
|
+
as a parameter.\nPseudo code example:\n\n```\nresponse := GetMonthlyUsageAttribution(start_month)\ncursor
|
27802
|
+
:= response.metadata.pagination.next_record_id\nWHILE cursor != null BEGIN\n
|
27803
|
+
\ sleep(5 seconds) # Avoid running into rate limit\n response := GetMonthlyUsageAttribution(start_month,
|
27804
|
+
next_record_id=cursor)\n cursor := response.metadata.pagination.next_record_id\nEND\n```"
|
26637
27805
|
operationId: GetMonthlyUsageAttribution
|
26638
27806
|
parameters:
|
26639
27807
|
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
|
@@ -26673,8 +27841,12 @@ paths:
|
|
26673
27841
|
required: false
|
26674
27842
|
schema:
|
26675
27843
|
$ref: '#/components/schemas/MonthlyUsageAttributionSupportedMetrics'
|
26676
|
-
- description: Comma separated list of
|
26677
|
-
is provided the usage will not be broken down by tags.
|
27844
|
+
- description: 'Comma separated list of tag keys used to group usage. If no
|
27845
|
+
value is provided the usage will not be broken down by tags.
|
27846
|
+
|
27847
|
+
|
27848
|
+
To see which tags are available, look for the value of `tag_config_source`
|
27849
|
+
in the API response.'
|
26678
27850
|
in: query
|
26679
27851
|
name: tag_breakdown_keys
|
26680
27852
|
required: false
|
@@ -26687,6 +27859,13 @@ paths:
|
|
26687
27859
|
required: false
|
26688
27860
|
schema:
|
26689
27861
|
type: string
|
27862
|
+
- description: Include child org usage in the response. Defaults to `true`.
|
27863
|
+
in: query
|
27864
|
+
name: include_descendants
|
27865
|
+
required: false
|
27866
|
+
schema:
|
27867
|
+
default: true
|
27868
|
+
type: boolean
|
26690
27869
|
responses:
|
26691
27870
|
'200':
|
26692
27871
|
content:
|
@@ -26711,9 +27890,17 @@ paths:
|
|
26711
27890
|
appKeyAuth: []
|
26712
27891
|
- AuthZ:
|
26713
27892
|
- usage_read
|
26714
|
-
summary: Get
|
27893
|
+
summary: Get monthly usage attribution
|
26715
27894
|
tags:
|
26716
27895
|
- Usage Metering
|
27896
|
+
x-given:
|
27897
|
+
monthly_usage_attribution:
|
27898
|
+
parameters:
|
27899
|
+
- name: start_month
|
27900
|
+
value: '"{{ timeISO(''now - 3d'') }}"'
|
27901
|
+
- name: fields
|
27902
|
+
value: '"infra_host_usage"'
|
27903
|
+
step: there is a valid "monthly_usage_attribution" response
|
26717
27904
|
x-menu-order: 31
|
26718
27905
|
x-undo:
|
26719
27906
|
type: safe
|
@@ -28181,12 +29368,16 @@ tags:
|
|
28181
29368
|
description: Find out more at
|
28182
29369
|
url: https://docs.datadoghq.com/account_management/multi_organization
|
28183
29370
|
name: Organizations
|
28184
|
-
- description: 'Configure your [Datadog-PagerDuty integration](https://docs.datadoghq.com/
|
29371
|
+
- description: 'Configure your [Datadog-PagerDuty integration](https://docs.datadoghq.com/integrations/pagerduty/)
|
28185
29372
|
|
28186
29373
|
directly through the Datadog API.'
|
28187
29374
|
externalDocs:
|
28188
|
-
url: https://docs.datadoghq.com/
|
29375
|
+
url: https://docs.datadoghq.com/integrations/pagerduty/
|
28189
29376
|
name: PagerDuty Integration
|
29377
|
+
- description: 'Detection rules for generating signals and listing of generated
|
29378
|
+
|
29379
|
+
signals.'
|
29380
|
+
name: Security Monitoring
|
28190
29381
|
- description: 'The service check endpoint allows you to post check statuses for use
|
28191
29382
|
with monitors.
|
28192
29383
|
|
@@ -28291,7 +29482,7 @@ tags:
|
|
28291
29482
|
|
28292
29483
|
**Note**: Usage data is delayed by up to 72 hours from when it was incurred.
|
28293
29484
|
|
28294
|
-
It is retained for
|
29485
|
+
It is retained for 15 months.
|
28295
29486
|
|
28296
29487
|
|
28297
29488
|
You can retrieve up to 24 hours of hourly usage data for multiple organizations,
|