datadog_api_client 1.7.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.apigentools-info +4 -4
- data/.generator/conftest.py +476 -0
- data/.generator/poetry.lock +402 -0
- data/.generator/pyproject.toml +22 -0
- data/.generator/schemas/v1/openapi.yaml +2154 -1337
- data/.generator/schemas/v2/openapi.yaml +2380 -378
- data/.generator/src/generator/__init__.py +0 -0
- data/.generator/src/generator/__main__.py +3 -0
- data/.generator/src/generator/cli.py +100 -0
- data/.generator/src/generator/formatter.py +346 -0
- data/.generator/src/generator/openapi.py +487 -0
- data/.generator/src/generator/replacement.json +1 -0
- data/.generator/src/generator/templates/api.j2 +244 -0
- data/.generator/{templates/api_client.mustache → src/generator/templates/api_client.j2} +216 -45
- data/.generator/{templates/api_error.mustache → src/generator/templates/api_error.j2} +2 -2
- data/.generator/src/generator/templates/api_info.j2 +12 -0
- data/.generator/{templates/configuration.mustache → src/generator/templates/configuration.j2} +101 -131
- data/.generator/src/generator/templates/example.j2 +40 -0
- data/.generator/src/generator/templates/model.j2 +18 -0
- data/{lib/datadog_api_client/v2/models/auth_n_mapping_update_request.rb → .generator/src/generator/templates/model_base.j2} +101 -113
- data/.generator/src/generator/templates/model_enum.j2 +8 -0
- data/.generator/src/generator/templates/model_generic.j2 +252 -0
- data/.generator/src/generator/templates/model_oneof.j2 +90 -0
- data/.generator/src/generator/templates/package.j2 +61 -0
- data/.generator/tests/test_scenarios.py +6 -0
- data/.github/workflows/prepare_release.yml +27 -20
- data/.github/workflows/release.yml +1 -1
- data/.github/workflows/test.yml +13 -6
- data/.github/workflows/test_integration.yml +6 -7
- data/.gitignore +7 -0
- data/.pre-commit-config.yaml +28 -10
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +90 -1
- data/DEVELOPMENT.md +2 -3
- data/Gemfile +6 -6
- data/LICENSE-3rdparty.csv +0 -3
- data/Makefile +5 -14
- data/README.md +18 -3
- data/RELEASING.md +4 -3
- 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_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_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/DeleteDashboard.rb +8 -0
- data/examples/v1/dashboards/GetDashboard.rb +8 -0
- data/examples/v1/dashboards/RestoreDashboards.rb +17 -0
- data/examples/v1/dashboards/UpdateDashboard.rb +36 -0
- 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 +16 -0
- data/examples/v1/logs/SubmitLog_1920474053.rb +1 -1
- data/examples/v1/logs/SubmitLog_3418823904.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/SubmitMetrics_2203981258.rb +1 -1
- 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/CreateMonitor_440013737.rb +22 -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/GetOrg.rb +5 -0
- data/examples/v1/organizations/ListOrgs.rb +5 -0
- data/examples/v1/organizations/UpdateOrg.rb +40 -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/GetSLO.rb +8 -0
- data/examples/v1/service-level-objectives/GetSLOCorrections.rb +0 -3
- data/examples/v1/service-level-objectives/GetSLOHistory.rb +11 -0
- data/examples/v1/service-level-objectives/ListSLOs.rb +11 -0
- data/examples/v1/service-level-objectives/UpdateSLO.rb +25 -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/synthetics/CreateGlobalVariable.rb +32 -0
- data/examples/v1/synthetics/CreatePrivateLocation.rb +21 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +19 -60
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1072503741.rb +36 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1402674167.rb +44 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1487281163.rb +88 -0
- data/examples/v1/synthetics/CreateSyntheticsBrowserTest.rb +1 -1
- data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +64 -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 +69 -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/GetUsageCIApp.rb +8 -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/GetUsageOnlineArchive.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/audit/ListAuditLogs.rb +5 -0
- data/examples/v2/audit/SearchAuditLogs.rb +24 -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/incidents/CreateIncident.rb +4 -4
- data/examples/v2/incidents/UpdateIncident.rb +2 -2
- data/examples/v2/incidents/UpdateIncident_1009194038.rb +23 -0
- data/examples/v2/incidents/UpdateIncident_3369341440.rb +29 -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 +36 -0
- data/examples/v2/logs/ListLogs.rb +4 -4
- data/examples/v2/logs/ListLogsGet.rb +5 -0
- data/examples/v2/logs/SubmitLog.rb +16 -0
- data/examples/v2/logs/SubmitLog_3496222707.rb +1 -1
- data/examples/v2/logs/SubmitLog_904601870.rb +1 -1
- 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 +22 -0
- data/examples/v2/metrics/DeleteTagConfiguration.rb +8 -0
- data/examples/v2/metrics/EstimateMetricsOutputSeries.rb +9 -0
- data/examples/v2/metrics/ListTagConfigurationByName.rb +11 -0
- data/examples/v2/metrics/ListTagConfigurations.rb +8 -0
- data/examples/v2/metrics/ListTagConfigurations_103226315.rb +11 -0
- 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 +23 -0
- data/examples/v2/organizations/UploadIdPMetadata.rb +8 -0
- data/examples/v2/rum/AggregateRUMEvents.rb +33 -0
- data/examples/v2/rum/ListRUMEvents.rb +5 -0
- data/examples/v2/rum/SearchRUMEvents.rb +21 -0
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_461183901.rb +42 -0
- 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 +8 -0
- data/examples/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +24 -0
- data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +43 -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/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 +11 -9
- data/lib/datadog_api_client/v1/api/aws_integration_api.rb +84 -84
- data/lib/datadog_api_client/v1/api/aws_logs_integration_api.rb +78 -59
- data/lib/datadog_api_client/v1/api/azure_integration_api.rb +53 -43
- data/lib/datadog_api_client/v1/api/dashboard_lists_api.rb +50 -49
- data/lib/datadog_api_client/v1/api/dashboards_api.rb +78 -75
- data/lib/datadog_api_client/v1/api/downtimes_api.rb +71 -71
- data/lib/datadog_api_client/v1/api/events_api.rb +52 -43
- data/lib/datadog_api_client/v1/api/gcp_integration_api.rb +38 -33
- data/lib/datadog_api_client/v1/api/hosts_api.rb +44 -47
- data/lib/datadog_api_client/v1/api/ip_ranges_api.rb +10 -8
- data/lib/datadog_api_client/v1/api/key_management_api.rb +88 -87
- data/lib/datadog_api_client/v1/api/logs_api.rb +51 -22
- data/lib/datadog_api_client/v1/api/logs_indexes_api.rb +64 -56
- data/lib/datadog_api_client/v1/api/logs_pipelines_api.rb +82 -69
- data/lib/datadog_api_client/v1/api/metrics_api.rb +71 -62
- data/lib/datadog_api_client/v1/api/monitors_api.rb +357 -111
- data/lib/datadog_api_client/v1/api/notebooks_api.rb +56 -64
- data/lib/datadog_api_client/v1/api/organizations_api.rb +74 -60
- data/lib/datadog_api_client/v1/api/pager_duty_integration_api.rb +39 -39
- data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +266 -0
- data/lib/datadog_api_client/v1/api/service_checks_api.rb +15 -10
- data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +47 -46
- data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +111 -109
- data/lib/datadog_api_client/v1/api/slack_integration_api.rb +48 -52
- data/lib/datadog_api_client/v1/api/snapshots_api.rb +14 -17
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +271 -277
- data/lib/datadog_api_client/v1/api/tags_api.rb +54 -56
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +599 -430
- data/lib/datadog_api_client/v1/api/users_api.rb +59 -50
- data/lib/datadog_api_client/v1/api/webhooks_integration_api.rb +85 -83
- data/lib/datadog_api_client/v1/api_client.rb +106 -66
- data/lib/datadog_api_client/v1/api_error.rb +2 -2
- data/lib/datadog_api_client/v1/configuration.rb +63 -80
- data/lib/datadog_api_client/v1/{models/usage_io_t_response.rb → model_base.rb} +100 -100
- data/lib/datadog_api_client/v1/models/access_role.rb +4 -19
- 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 +39 -156
- data/lib/datadog_api_client/v1/models/alert_graph_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/alert_value_widget_definition.rb +28 -152
- data/lib/datadog_api_client/v1/models/alert_value_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/api_error_response.rb +15 -148
- data/lib/datadog_api_client/v1/models/api_key.rb +7 -155
- data/lib/datadog_api_client/v1/models/api_key_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/api_key_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/apm_stats_query_column_type.rb +17 -148
- data/lib/datadog_api_client/v1/models/apm_stats_query_definition.rb +54 -162
- data/lib/datadog_api_client/v1/models/apm_stats_query_row_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/application_key.rb +7 -155
- data/lib/datadog_api_client/v1/models/application_key_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/application_key_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/authentication_validation_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_account.rb +17 -150
- data/lib/datadog_api_client/v1/models/aws_account_and_lambda_request.rb +25 -152
- data/lib/datadog_api_client/v1/models/aws_account_create_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_account_delete_request.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_account_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_logs_async_error.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_logs_async_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_logs_lambda.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_logs_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_logs_list_services_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/aws_logs_services_request.rb +25 -152
- data/lib/datadog_api_client/v1/models/aws_namespace.rb +4 -19
- data/lib/datadog_api_client/v1/models/aws_tag_filter.rb +6 -144
- data/lib/datadog_api_client/v1/models/aws_tag_filter_create_request.rb +6 -144
- data/lib/datadog_api_client/v1/models/aws_tag_filter_delete_request.rb +6 -144
- data/lib/datadog_api_client/v1/models/aws_tag_filter_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/azure_account.rb +7 -145
- data/lib/datadog_api_client/v1/models/cancel_downtimes_by_scope_request.rb +18 -149
- data/lib/datadog_api_client/v1/models/canceled_downtimes_ids.rb +5 -144
- data/lib/datadog_api_client/v1/models/change_widget_definition.rb +25 -166
- data/lib/datadog_api_client/v1/models/change_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/change_widget_request.rb +20 -146
- data/lib/datadog_api_client/v1/models/check_can_delete_monitor_response.rb +17 -151
- data/lib/datadog_api_client/v1/models/check_can_delete_monitor_response_data.rb +5 -144
- data/lib/datadog_api_client/v1/models/check_can_delete_slo_response.rb +7 -147
- data/lib/datadog_api_client/v1/models/check_can_delete_slo_response_data.rb +5 -144
- data/lib/datadog_api_client/v1/models/check_status_widget_definition.rb +39 -156
- data/lib/datadog_api_client/v1/models/check_status_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/content_encoding.rb +4 -19
- data/lib/datadog_api_client/v1/models/creator.rb +6 -145
- data/lib/datadog_api_client/v1/models/dashboard.rb +41 -157
- data/lib/datadog_api_client/v1/models/dashboard_bulk_action_data.rb +26 -152
- data/lib/datadog_api_client/v1/models/dashboard_bulk_delete_request.rb +15 -148
- data/lib/datadog_api_client/v1/models/dashboard_delete_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/dashboard_layout_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/dashboard_list.rb +16 -148
- data/lib/datadog_api_client/v1/models/dashboard_list_delete_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/dashboard_list_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/dashboard_reflow_type.rb +6 -19
- data/lib/datadog_api_client/v1/models/dashboard_resource_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/dashboard_restore_request.rb +15 -148
- data/lib/datadog_api_client/v1/models/dashboard_summary.rb +5 -144
- data/lib/datadog_api_client/v1/models/dashboard_summary_definition.rb +6 -144
- data/lib/datadog_api_client/v1/models/dashboard_template_variable.rb +16 -149
- data/lib/datadog_api_client/v1/models/dashboard_template_variable_preset.rb +5 -144
- data/lib/datadog_api_client/v1/models/dashboard_template_variable_preset_value.rb +5 -144
- data/lib/datadog_api_client/v1/models/deleted_monitor.rb +5 -144
- data/lib/datadog_api_client/v1/models/distribution_widget_definition.rb +30 -167
- data/lib/datadog_api_client/v1/models/distribution_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +15 -144
- data/lib/datadog_api_client/v1/models/distribution_widget_x_axis.rb +5 -144
- data/lib/datadog_api_client/v1/models/distribution_widget_y_axis.rb +5 -144
- data/lib/datadog_api_client/v1/models/downtime.rb +48 -172
- data/lib/datadog_api_client/v1/models/downtime_child.rb +44 -172
- data/lib/datadog_api_client/v1/models/downtime_recurrence.rb +24 -162
- data/lib/datadog_api_client/v1/models/event.rb +23 -155
- data/lib/datadog_api_client/v1/models/event_alert_type.rb +6 -19
- data/lib/datadog_api_client/v1/models/event_create_request.rb +36 -171
- data/lib/datadog_api_client/v1/models/event_create_response.rb +16 -305
- data/lib/datadog_api_client/v1/models/event_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/event_priority.rb +4 -19
- data/lib/datadog_api_client/v1/models/event_query_definition.rb +25 -152
- data/lib/datadog_api_client/v1/models/event_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/event_stream_widget_definition.rb +31 -153
- data/lib/datadog_api_client/v1/models/event_stream_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/event_timeline_widget_definition.rb +28 -152
- data/lib/datadog_api_client/v1/models/event_timeline_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_dependency_stat_name.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_dependency_stats_data_source.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_dependency_stats_query_definition.rb +73 -168
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stats_data_source.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stats_query_definition.rb +55 -162
- data/lib/datadog_api_client/v1/models/formula_and_function_event_aggregation.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition.rb +38 -156
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition_compute.rb +16 -148
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition_search.rb +15 -148
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_group_by.rb +16 -148
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_group_by_sort.rb +17 -148
- data/lib/datadog_api_client/v1/models/formula_and_function_events_data_source.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_metric_aggregation.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_metric_data_source.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_metric_query_definition.rb +37 -156
- data/lib/datadog_api_client/v1/models/formula_and_function_process_query_data_source.rb +4 -19
- data/lib/datadog_api_client/v1/models/formula_and_function_process_query_definition.rb +38 -156
- data/lib/datadog_api_client/v1/models/formula_and_function_query_definition.rb +7 -62
- data/lib/datadog_api_client/v1/models/formula_and_function_response_format.rb +4 -19
- data/lib/datadog_api_client/v1/models/free_text_widget_definition.rb +27 -152
- data/lib/datadog_api_client/v1/models/free_text_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/funnel_query.rb +36 -156
- data/lib/datadog_api_client/v1/models/funnel_request_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/funnel_source.rb +4 -19
- data/lib/datadog_api_client/v1/models/funnel_step.rb +25 -152
- data/lib/datadog_api_client/v1/models/funnel_widget_definition.rb +22 -166
- data/lib/datadog_api_client/v1/models/funnel_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/funnel_widget_request.rb +27 -152
- data/lib/datadog_api_client/v1/models/gcp_account.rb +9 -146
- data/lib/datadog_api_client/v1/models/geomap_widget_definition.rb +47 -174
- data/lib/datadog_api_client/v1/models/geomap_widget_definition_style.rb +25 -152
- data/lib/datadog_api_client/v1/models/geomap_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/geomap_widget_definition_view.rb +15 -148
- data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +11 -146
- data/lib/datadog_api_client/v1/models/graph_snapshot.rb +8 -145
- data/lib/datadog_api_client/v1/models/group_widget_definition.rb +38 -156
- data/lib/datadog_api_client/v1/models/group_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/heat_map_widget_definition.rb +23 -166
- data/lib/datadog_api_client/v1/models/heat_map_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/heat_map_widget_request.rb +14 -144
- data/lib/datadog_api_client/v1/models/host.rb +8 -147
- data/lib/datadog_api_client/v1/models/host_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/host_map_request.rb +13 -144
- data/lib/datadog_api_client/v1/models/host_map_widget_definition.rb +30 -152
- data/lib/datadog_api_client/v1/models/host_map_widget_definition_requests.rb +7 -144
- data/lib/datadog_api_client/v1/models/host_map_widget_definition_style.rb +5 -144
- data/lib/datadog_api_client/v1/models/host_map_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/host_meta.rb +7 -145
- data/lib/datadog_api_client/v1/models/host_meta_install_method.rb +5 -144
- data/lib/datadog_api_client/v1/models/host_metrics.rb +5 -144
- data/lib/datadog_api_client/v1/models/host_mute_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/host_mute_settings.rb +5 -144
- data/lib/datadog_api_client/v1/models/host_tags.rb +5 -144
- data/lib/datadog_api_client/v1/models/host_totals.rb +5 -144
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_body.rb +7 -147
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_metadata.rb +6 -144
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_pagination.rb +6 -144
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/http_log_error.rb +18 -160
- data/lib/datadog_api_client/v1/models/http_log_item.rb +53 -155
- data/lib/datadog_api_client/v1/models/http_method.rb +4 -19
- data/lib/datadog_api_client/v1/models/i_frame_widget_definition.rb +26 -152
- data/lib/datadog_api_client/v1/models/i_frame_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/idp_form_data.rb +15 -148
- data/lib/datadog_api_client/v1/models/idp_response.rb +15 -148
- data/lib/datadog_api_client/v1/models/image_widget_definition.rb +32 -152
- data/lib/datadog_api_client/v1/models/image_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/intake_payload_accepted.rb +5 -144
- data/lib/datadog_api_client/v1/models/ip_prefixes_agents.rb +5 -144
- data/lib/datadog_api_client/v1/models/ip_prefixes_api.rb +5 -144
- data/lib/datadog_api_client/v1/models/ip_prefixes_apm.rb +5 -144
- data/lib/datadog_api_client/v1/models/ip_prefixes_logs.rb +5 -144
- data/lib/datadog_api_client/v1/models/ip_prefixes_process.rb +5 -144
- data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics.rb +7 -150
- data/lib/datadog_api_client/v1/models/ip_prefixes_webhooks.rb +5 -144
- data/lib/datadog_api_client/v1/models/ip_ranges.rb +12 -144
- data/lib/datadog_api_client/v1/models/list_stream_column.rb +26 -152
- data/lib/datadog_api_client/v1/models/list_stream_column_width.rb +4 -19
- data/lib/datadog_api_client/v1/models/list_stream_query.rb +27 -153
- data/lib/datadog_api_client/v1/models/list_stream_response_format.rb +4 -19
- data/lib/datadog_api_client/v1/models/list_stream_source.rb +6 -20
- data/lib/datadog_api_client/v1/models/list_stream_widget_definition.rb +24 -167
- data/lib/datadog_api_client/v1/models/list_stream_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/list_stream_widget_request.rb +37 -156
- data/lib/datadog_api_client/v1/models/log.rb +6 -144
- data/lib/datadog_api_client/v1/models/log_content.rb +13 -150
- data/lib/datadog_api_client/v1/models/log_query_definition.rb +8 -145
- data/lib/datadog_api_client/v1/models/log_query_definition_group_by.rb +16 -148
- data/lib/datadog_api_client/v1/models/log_query_definition_group_by_sort.rb +26 -152
- data/lib/datadog_api_client/v1/models/log_query_definition_search.rb +15 -148
- data/lib/datadog_api_client/v1/models/log_stream_widget_definition.rb +20 -148
- data/lib/datadog_api_client/v1/models/log_stream_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_api_error.rb +5 -144
- data/lib/datadog_api_client/v1/models/logs_api_error_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/logs_arithmetic_processor.rb +59 -158
- data/lib/datadog_api_client/v1/models/logs_arithmetic_processor_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_attribute_remapper.rb +42 -157
- data/lib/datadog_api_client/v1/models/logs_attribute_remapper_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_by_retention.rb +7 -144
- data/lib/datadog_api_client/v1/models/logs_by_retention_monthly_usage.rb +6 -145
- data/lib/datadog_api_client/v1/models/logs_by_retention_org_usage.rb +5 -144
- data/lib/datadog_api_client/v1/models/logs_by_retention_orgs.rb +5 -144
- data/lib/datadog_api_client/v1/models/logs_category_processor.rb +51 -158
- data/lib/datadog_api_client/v1/models/logs_category_processor_category.rb +6 -144
- data/lib/datadog_api_client/v1/models/logs_category_processor_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_date_remapper.rb +45 -153
- data/lib/datadog_api_client/v1/models/logs_date_remapper_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_exclusion.rb +16 -148
- data/lib/datadog_api_client/v1/models/logs_exclusion_filter.rb +19 -150
- data/lib/datadog_api_client/v1/models/logs_filter.rb +5 -144
- data/lib/datadog_api_client/v1/models/logs_geo_ip_parser.rb +40 -157
- data/lib/datadog_api_client/v1/models/logs_geo_ip_parser_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_grok_parser.rb +41 -163
- data/lib/datadog_api_client/v1/models/logs_grok_parser_rules.rb +15 -148
- data/lib/datadog_api_client/v1/models/logs_grok_parser_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_index.rb +33 -155
- data/lib/datadog_api_client/v1/models/logs_index_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/logs_index_update_request.rb +27 -151
- data/lib/datadog_api_client/v1/models/logs_indexes_order.rb +18 -149
- data/lib/datadog_api_client/v1/models/logs_list_request.rb +26 -156
- data/lib/datadog_api_client/v1/models/logs_list_request_time.rb +27 -153
- data/lib/datadog_api_client/v1/models/logs_list_response.rb +7 -145
- data/lib/datadog_api_client/v1/models/logs_lookup_processor.rb +55 -162
- data/lib/datadog_api_client/v1/models/logs_lookup_processor_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_message_remapper.rb +34 -153
- data/lib/datadog_api_client/v1/models/logs_message_remapper_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_pipeline.rb +21 -149
- data/lib/datadog_api_client/v1/models/logs_pipeline_processor.rb +22 -149
- data/lib/datadog_api_client/v1/models/logs_pipeline_processor_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_pipelines_order.rb +17 -149
- data/lib/datadog_api_client/v1/models/logs_processor.rb +14 -69
- data/lib/datadog_api_client/v1/models/logs_query_compute.rb +15 -148
- data/lib/datadog_api_client/v1/models/logs_retention_agg_sum_usage.rb +6 -145
- data/lib/datadog_api_client/v1/models/logs_retention_sum_usage.rb +6 -145
- data/lib/datadog_api_client/v1/models/logs_service_remapper.rb +30 -153
- data/lib/datadog_api_client/v1/models/logs_service_remapper_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_sort.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_status_remapper.rb +44 -153
- data/lib/datadog_api_client/v1/models/logs_status_remapper_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_string_builder_processor.rb +51 -158
- data/lib/datadog_api_client/v1/models/logs_string_builder_processor_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_trace_remapper.rb +24 -149
- data/lib/datadog_api_client/v1/models/logs_trace_remapper_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_url_parser.rb +38 -156
- data/lib/datadog_api_client/v1/models/logs_url_parser_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/logs_user_agent_parser.rb +40 -157
- data/lib/datadog_api_client/v1/models/logs_user_agent_parser_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/metric_content_encoding.rb +4 -19
- data/lib/datadog_api_client/v1/models/metric_metadata.rb +5 -144
- data/lib/datadog_api_client/v1/models/metric_search_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/metric_search_response_results.rb +5 -144
- data/lib/datadog_api_client/v1/models/metrics_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/metrics_payload.rb +15 -148
- data/lib/datadog_api_client/v1/models/metrics_query_metadata.rb +11 -157
- data/lib/datadog_api_client/v1/models/metrics_query_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/metrics_query_unit.rb +5 -144
- data/lib/datadog_api_client/v1/models/monitor.rb +33 -164
- data/lib/datadog_api_client/v1/models/monitor_device_id.rb +4 -19
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_aggregation.rb +4 -19
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition.rb +38 -156
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition_compute.rb +16 -148
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition_search.rb +15 -148
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_group_by.rb +16 -148
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_group_by_sort.rb +17 -148
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_events_data_source.rb +6 -19
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_query_definition.rb +3 -58
- data/lib/datadog_api_client/v1/models/monitor_group_search_response.rb +7 -144
- data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts.rb +7 -146
- data/lib/datadog_api_client/v1/models/monitor_group_search_result.rb +6 -144
- data/lib/datadog_api_client/v1/models/monitor_options.rb +45 -168
- data/lib/datadog_api_client/v1/models/monitor_options_aggregation.rb +5 -144
- data/lib/datadog_api_client/v1/models/monitor_overall_states.rb +4 -19
- data/lib/datadog_api_client/v1/models/monitor_renotify_status_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/monitor_search_count_item.rb +121 -0
- data/lib/datadog_api_client/v1/models/monitor_search_response.rb +7 -144
- data/lib/datadog_api_client/v1/models/monitor_search_response_counts.rb +9 -148
- data/lib/datadog_api_client/v1/models/monitor_search_response_metadata.rb +5 -144
- data/lib/datadog_api_client/v1/models/monitor_search_result.rb +12 -145
- data/lib/datadog_api_client/v1/models/monitor_search_result_notification.rb +5 -144
- data/lib/datadog_api_client/v1/models/monitor_state.rb +8 -148
- data/lib/datadog_api_client/v1/models/monitor_state_group.rb +6 -144
- data/lib/datadog_api_client/v1/models/monitor_summary_widget_definition.rb +31 -152
- data/lib/datadog_api_client/v1/models/monitor_summary_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/monitor_threshold_window_options.rb +6 -145
- data/lib/datadog_api_client/v1/models/monitor_thresholds.rb +6 -145
- data/lib/datadog_api_client/v1/models/monitor_type.rb +6 -19
- data/lib/datadog_api_client/v1/models/monitor_update_request.rb +13 -156
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_body.rb +7 -147
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_metadata.rb +6 -144
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_pagination.rb +6 -144
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_response.rb +7 -145
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +4 -19
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +5 -144
- data/lib/datadog_api_client/v1/models/note_widget_definition.rb +29 -152
- data/lib/datadog_api_client/v1/models/note_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/notebook_absolute_time.rb +25 -152
- data/lib/datadog_api_client/v1/models/notebook_author.rb +5 -144
- data/lib/datadog_api_client/v1/models/notebook_cell_create_request.rb +28 -152
- data/lib/datadog_api_client/v1/models/notebook_cell_create_request_attributes.rb +9 -63
- data/lib/datadog_api_client/v1/models/notebook_cell_resource_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/notebook_cell_response.rb +38 -156
- data/lib/datadog_api_client/v1/models/notebook_cell_response_attributes.rb +9 -63
- data/lib/datadog_api_client/v1/models/notebook_cell_time.rb +5 -60
- data/lib/datadog_api_client/v1/models/notebook_cell_update_request.rb +38 -156
- data/lib/datadog_api_client/v1/models/notebook_cell_update_request_attributes.rb +9 -63
- data/lib/datadog_api_client/v1/models/notebook_create_data.rb +27 -152
- data/lib/datadog_api_client/v1/models/notebook_create_data_attributes.rb +31 -169
- data/lib/datadog_api_client/v1/models/notebook_create_request.rb +16 -148
- data/lib/datadog_api_client/v1/models/notebook_distribution_cell_attributes.rb +22 -149
- data/lib/datadog_api_client/v1/models/notebook_global_time.rb +5 -60
- data/lib/datadog_api_client/v1/models/notebook_graph_size.rb +4 -19
- data/lib/datadog_api_client/v1/models/notebook_heat_map_cell_attributes.rb +20 -149
- data/lib/datadog_api_client/v1/models/notebook_log_stream_cell_attributes.rb +19 -149
- data/lib/datadog_api_client/v1/models/notebook_markdown_cell_attributes.rb +16 -148
- data/lib/datadog_api_client/v1/models/notebook_markdown_cell_definition.rb +26 -152
- data/lib/datadog_api_client/v1/models/notebook_markdown_cell_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/notebook_metadata.rb +7 -145
- data/lib/datadog_api_client/v1/models/notebook_metadata_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/notebook_relative_time.rb +16 -148
- data/lib/datadog_api_client/v1/models/notebook_resource_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/notebook_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/notebook_response_data.rb +37 -156
- data/lib/datadog_api_client/v1/models/notebook_response_data_attributes.rb +32 -169
- data/lib/datadog_api_client/v1/models/notebook_split_by.rb +25 -152
- data/lib/datadog_api_client/v1/models/notebook_status.rb +4 -19
- data/lib/datadog_api_client/v1/models/notebook_timeseries_cell_attributes.rb +20 -149
- data/lib/datadog_api_client/v1/models/notebook_toplist_cell_attributes.rb +20 -149
- data/lib/datadog_api_client/v1/models/notebook_update_cell.rb +5 -59
- data/lib/datadog_api_client/v1/models/notebook_update_data.rb +27 -152
- data/lib/datadog_api_client/v1/models/notebook_update_data_attributes.rb +31 -169
- data/lib/datadog_api_client/v1/models/notebook_update_request.rb +16 -148
- data/lib/datadog_api_client/v1/models/notebooks_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/notebooks_response_data.rb +37 -156
- data/lib/datadog_api_client/v1/models/notebooks_response_data_attributes.rb +12 -161
- data/lib/datadog_api_client/v1/models/notebooks_response_meta.rb +6 -144
- data/lib/datadog_api_client/v1/models/notebooks_response_page.rb +5 -144
- data/lib/datadog_api_client/v1/models/organization.rb +14 -145
- data/lib/datadog_api_client/v1/models/organization_billing.rb +5 -144
- data/lib/datadog_api_client/v1/models/organization_create_body.rb +14 -151
- data/lib/datadog_api_client/v1/models/organization_create_response.rb +9 -144
- data/lib/datadog_api_client/v1/models/organization_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/organization_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/organization_settings.rb +11 -144
- data/lib/datadog_api_client/v1/models/organization_settings_saml.rb +7 -145
- data/lib/datadog_api_client/v1/models/organization_settings_saml_autocreate_users_domains.rb +5 -144
- data/lib/datadog_api_client/v1/models/organization_settings_saml_idp_initiated_login.rb +7 -145
- data/lib/datadog_api_client/v1/models/organization_settings_saml_strict_mode.rb +7 -145
- data/lib/datadog_api_client/v1/models/organization_subscription.rb +5 -144
- data/lib/datadog_api_client/v1/models/pager_duty_service.rb +25 -152
- data/lib/datadog_api_client/v1/models/pager_duty_service_key.rb +15 -148
- data/lib/datadog_api_client/v1/models/pager_duty_service_name.rb +15 -148
- data/lib/datadog_api_client/v1/models/pagination.rb +5 -144
- data/lib/datadog_api_client/v1/models/process_query_definition.rb +17 -154
- data/lib/datadog_api_client/v1/models/query_sort_order.rb +4 -19
- data/lib/datadog_api_client/v1/models/query_value_widget_definition.rb +33 -166
- data/lib/datadog_api_client/v1/models/query_value_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/query_value_widget_request.rb +18 -146
- data/lib/datadog_api_client/v1/models/response_meta_attributes.rb +6 -144
- data/lib/datadog_api_client/v1/models/scatter_plot_request.rb +14 -144
- data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition.rb +31 -152
- data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition_requests.rb +8 -144
- data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/scatterplot_dimension.rb +4 -19
- data/lib/datadog_api_client/v1/models/scatterplot_table_request.rb +8 -146
- data/lib/datadog_api_client/v1/models/scatterplot_widget_aggregator.rb +4 -19
- data/lib/datadog_api_client/v1/models/scatterplot_widget_formula.rb +26 -152
- data/lib/datadog_api_client/v1/models/series.rb +30 -156
- data/lib/datadog_api_client/v1/models/service_check.rb +45 -159
- data/lib/datadog_api_client/v1/models/service_check_status.rb +4 -19
- data/lib/datadog_api_client/v1/models/service_level_objective.rb +73 -166
- data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +28 -153
- data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +57 -162
- data/lib/datadog_api_client/v1/models/service_map_widget_definition.rb +30 -164
- data/lib/datadog_api_client/v1/models/service_map_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/service_summary_widget_definition.rb +49 -159
- data/lib/datadog_api_client/v1/models/service_summary_widget_definition_type.rb +4 -19
- 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 +6 -144
- data/lib/datadog_api_client/v1/models/slack_integration_channel_display.rb +5 -144
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_error.rb +39 -157
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_response.rb +12 -145
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_response_data.rb +10 -146
- data/lib/datadog_api_client/v1/models/slo_correction.rb +7 -144
- data/lib/datadog_api_client/v1/models/slo_correction_category.rb +4 -19
- data/lib/datadog_api_client/v1/models/slo_correction_create_data.rb +17 -148
- data/lib/datadog_api_client/v1/models/slo_correction_create_request.rb +6 -144
- data/lib/datadog_api_client/v1/models/slo_correction_create_request_attributes.rb +40 -159
- data/lib/datadog_api_client/v1/models/slo_correction_list_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/slo_correction_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/slo_correction_response_attributes.rb +14 -149
- data/lib/datadog_api_client/v1/models/slo_correction_response_attributes_modifier.rb +5 -144
- data/lib/datadog_api_client/v1/models/slo_correction_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/slo_correction_update_data.rb +7 -144
- data/lib/datadog_api_client/v1/models/slo_correction_update_request.rb +6 -144
- data/lib/datadog_api_client/v1/models/slo_correction_update_request_attributes.rb +9 -146
- data/lib/datadog_api_client/v1/models/slo_delete_response.rb +6 -147
- data/lib/datadog_api_client/v1/models/slo_error_timeframe.rb +5 -19
- data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +78 -169
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series.rb +38 -157
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series_metadata.rb +9 -146
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series_metadata_unit.rb +6 -145
- data/lib/datadog_api_client/v1/models/slo_history_monitor.rb +10 -149
- data/lib/datadog_api_client/v1/models/slo_history_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/slo_history_response_data.rb +24 -150
- data/lib/datadog_api_client/v1/models/slo_history_response_error.rb +5 -144
- data/lib/datadog_api_client/v1/models/slo_history_response_error_with_type.rb +25 -152
- data/lib/datadog_api_client/v1/models/slo_history_sli_data.rb +11 -152
- data/lib/datadog_api_client/v1/models/slo_list_response.rb +8 -145
- data/lib/datadog_api_client/v1/models/slo_list_response_metadata.rb +6 -144
- data/lib/datadog_api_client/v1/models/slo_list_response_metadata_page.rb +5 -144
- data/lib/datadog_api_client/v1/models/slo_response.rb +9 -145
- data/lib/datadog_api_client/v1/models/slo_response_data.rb +43 -154
- data/lib/datadog_api_client/v1/models/slo_threshold.rb +38 -155
- data/lib/datadog_api_client/v1/models/slo_timeframe.rb +4 -19
- data/lib/datadog_api_client/v1/models/slo_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/slo_type_numeric.rb +6 -19
- data/lib/datadog_api_client/v1/models/slo_widget_definition.rb +28 -152
- data/lib/datadog_api_client/v1/models/slo_widget_definition_type.rb +4 -19
- 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 +22 -160
- data/lib/datadog_api_client/v1/models/sunburst_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend.rb +5 -60
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend_inline_automatic.rb +16 -148
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend_inline_automatic_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend_table.rb +16 -148
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend_table_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/sunburst_widget_request.rb +17 -146
- data/lib/datadog_api_client/v1/models/synthetics_api_step.rb +51 -160
- data/lib/datadog_api_client/v1/models/synthetics_api_step_subtype.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +60 -162
- data/lib/datadog_api_client/v1/models/synthetics_api_test_config.rb +8 -144
- data/lib/datadog_api_client/v1/models/synthetics_api_test_failure_code.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_data.rb +12 -150
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_failure.rb +6 -144
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_full.rb +11 -144
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_full_check.rb +16 -148
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_short.rb +10 -144
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_short_result.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_api_test_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_assertion.rb +7 -61
- data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_operator.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target.rb +28 -152
- data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target_target.rb +5 -145
- data/lib/datadog_api_client/v1/models/synthetics_assertion_operator.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_assertion_target.rb +38 -153
- data/lib/datadog_api_client/v1/models/synthetics_assertion_type.rb +6 -19
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth.rb +5 -60
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_ntlm.rb +16 -148
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_ntlm_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_sigv4.rb +36 -156
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_sigv4_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_web.rb +26 -157
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_web_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_batch_details.rb +6 -144
- data/lib/datadog_api_client/v1/models/synthetics_batch_details_data.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_batch_result.rb +10 -145
- data/lib/datadog_api_client/v1/models/synthetics_browser_error.rb +36 -156
- data/lib/datadog_api_client/v1/models/synthetics_browser_error_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +58 -162
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_config.rb +28 -152
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_failure_code.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_data.rb +9 -145
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_failure.rb +6 -144
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_full.rb +11 -144
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_full_check.rb +16 -148
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_short.rb +10 -144
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_short_result.rb +6 -144
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb +152 -0
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_browser_variable.rb +28 -153
- data/lib/datadog_api_client/v1/models/synthetics_browser_variable_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_check_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_ci.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_git.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_pipeline.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_provider.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_ci_test.rb +20 -154
- data/lib/datadog_api_client/v1/models/synthetics_ci_test_body.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_config_variable.rb +26 -152
- data/lib/datadog_api_client/v1/models/synthetics_config_variable_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_delete_tests_payload.rb +7 -145
- data/lib/datadog_api_client/v1/models/synthetics_delete_tests_response.rb +7 -145
- data/lib/datadog_api_client/v1/models/synthetics_deleted_test.rb +7 -145
- data/lib/datadog_api_client/v1/models/synthetics_device.rb +45 -159
- data/lib/datadog_api_client/v1/models/synthetics_device_id.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_get_api_test_latest_results_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_get_browser_test_latest_results_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_global_variable.rb +47 -159
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_attributes.rb +6 -145
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_parse_test_options.rb +27 -152
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_parse_test_options_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_parser_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_value.rb +7 -145
- data/lib/datadog_api_client/v1/models/synthetics_list_global_variables_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_list_tests_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_location.rb +7 -145
- data/lib/datadog_api_client/v1/models/synthetics_locations.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_parsing_options.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_playing_tab.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_private_location.rb +47 -157
- data/lib/datadog_api_client/v1/models/synthetics_private_location_creation_response.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_private_location_creation_response_result_encryption.rb +5 -144
- 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 +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets_authentication.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets_config_decryption.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate_issuer.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate_subject.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_status.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_step.rb +6 -144
- data/lib/datadog_api_client/v1/models/synthetics_step_detail.rb +10 -146
- data/lib/datadog_api_client/v1/models/synthetics_step_detail_warning.rb +26 -152
- data/lib/datadog_api_client/v1/models/synthetics_step_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_test_config.rb +8 -144
- data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +13 -144
- data/lib/datadog_api_client/v1/models/synthetics_test_details_sub_type.rb +6 -19
- data/lib/datadog_api_client/v1/models/synthetics_test_details_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_test_execution_rule.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_test_monitor_status.rb +7 -19
- data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +59 -169
- data/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options.rb +11 -157
- data/lib/datadog_api_client/v1/models/synthetics_test_options_retry.rb +9 -146
- data/lib/datadog_api_client/v1/models/synthetics_test_pause_status.rb +5 -19
- data/lib/datadog_api_client/v1/models/synthetics_test_process_status.rb +4 -19
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +38 -171
- data/lib/datadog_api_client/v1/models/synthetics_test_request_certificate.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_test_request_certificate_item.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_test_request_proxy.rb +16 -151
- data/lib/datadog_api_client/v1/models/synthetics_timing.rb +7 -145
- data/lib/datadog_api_client/v1/models/synthetics_trigger_body.rb +15 -148
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_test_location.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_test_run_result.rb +6 -144
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_tests_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/synthetics_trigger_test.rb +16 -148
- data/lib/datadog_api_client/v1/models/synthetics_update_test_pause_status_payload.rb +7 -144
- data/lib/datadog_api_client/v1/models/synthetics_variable_parser.rb +16 -148
- data/lib/datadog_api_client/v1/models/synthetics_warning_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/table_widget_cell_display_mode.rb +4 -19
- data/lib/datadog_api_client/v1/models/table_widget_definition.rb +29 -152
- data/lib/datadog_api_client/v1/models/table_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/table_widget_has_search_bar.rb +4 -19
- data/lib/datadog_api_client/v1/models/table_widget_request.rb +19 -146
- data/lib/datadog_api_client/v1/models/tag_to_hosts.rb +6 -147
- data/lib/datadog_api_client/v1/models/target_format_type.rb +6 -19
- data/lib/datadog_api_client/v1/models/timeseries_background.rb +134 -0
- data/lib/datadog_api_client/v1/models/timeseries_background_type.rb +27 -0
- data/lib/datadog_api_client/v1/models/timeseries_widget_definition.rb +25 -161
- data/lib/datadog_api_client/v1/models/timeseries_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/timeseries_widget_expression_alias.rb +15 -148
- data/lib/datadog_api_client/v1/models/timeseries_widget_legend_column.rb +4 -19
- data/lib/datadog_api_client/v1/models/timeseries_widget_legend_layout.rb +4 -19
- data/lib/datadog_api_client/v1/models/timeseries_widget_request.rb +19 -146
- data/lib/datadog_api_client/v1/models/toplist_widget_definition.rb +28 -152
- data/lib/datadog_api_client/v1/models/toplist_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/toplist_widget_request.rb +20 -152
- data/lib/datadog_api_client/v1/models/tree_map_color_by.rb +4 -19
- data/lib/datadog_api_client/v1/models/tree_map_group_by.rb +4 -19
- data/lib/datadog_api_client/v1/models/tree_map_size_by.rb +4 -19
- data/lib/datadog_api_client/v1/models/tree_map_widget_definition.rb +22 -165
- data/lib/datadog_api_client/v1/models/tree_map_widget_definition_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/tree_map_widget_request.rb +8 -146
- data/lib/datadog_api_client/v1/models/usage_analyzed_logs_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_analyzed_logs_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_attribution_aggregates_body.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_attribution_body.rb +7 -147
- data/lib/datadog_api_client/v1/models/usage_attribution_metadata.rb +6 -144
- data/lib/datadog_api_client/v1/models/usage_attribution_pagination.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_attribution_response.rb +7 -145
- data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +4 -21
- data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +4 -21
- data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +6 -165
- data/lib/datadog_api_client/v1/models/usage_audit_logs_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_audit_logs_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_billable_summary_body.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_billable_summary_hour.rb +6 -144
- data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +37 -144
- data/lib/datadog_api_client/v1/models/usage_billable_summary_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_hour.rb +161 -0
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_response.rb +113 -0
- data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_custom_reports_attributes.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_custom_reports_data.rb +7 -144
- data/lib/datadog_api_client/v1/models/usage_custom_reports_meta.rb +6 -144
- data/lib/datadog_api_client/v1/models/usage_custom_reports_page.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_custom_reports_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/usage_cws_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_cws_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_dbm_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_dbm_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_fargate_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_fargate_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_host_hour.rb +23 -153
- data/lib/datadog_api_client/v1/models/usage_hosts_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_incident_management_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_incident_management_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_indexed_spans_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_indexed_spans_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_ingested_spans_hour.rb +6 -145
- data/lib/datadog_api_client/v1/models/usage_ingested_spans_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_iot_hour.rb +141 -0
- data/lib/datadog_api_client/v1/models/usage_iot_response.rb +113 -0
- data/lib/datadog_api_client/v1/models/usage_lambda_hour.rb +7 -145
- data/lib/datadog_api_client/v1/models/usage_lambda_response.rb +7 -145
- data/lib/datadog_api_client/v1/models/usage_logs_by_index_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_logs_by_index_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_logs_by_retention_hour.rb +6 -145
- data/lib/datadog_api_client/v1/models/usage_logs_by_retention_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_logs_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_logs_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_metric_category.rb +4 -19
- data/lib/datadog_api_client/v1/models/usage_network_flows_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_network_flows_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_network_hosts_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_network_hosts_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_online_archive_hour.rb +141 -0
- data/lib/datadog_api_client/v1/models/usage_online_archive_response.rb +113 -0
- data/lib/datadog_api_client/v1/models/usage_profiling_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_profiling_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_reports_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +22 -147
- data/lib/datadog_api_client/v1/models/usage_rum_sessions_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_rum_units_hour.rb +6 -145
- data/lib/datadog_api_client/v1/models/usage_rum_units_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_sds_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_sds_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_snmp_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_snmp_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_sort.rb +4 -19
- data/lib/datadog_api_client/v1/models/usage_sort_direction.rb +4 -19
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_attributes.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_data.rb +7 -144
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_meta.rb +6 -144
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_page.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_response.rb +7 -144
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +77 -146
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +77 -146
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +78 -146
- data/lib/datadog_api_client/v1/models/usage_synthetics_api_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_synthetics_api_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_synthetics_browser_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_synthetics_browser_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_synthetics_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_synthetics_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_timeseries_hour.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_timeseries_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_hour.rb +6 -144
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_metadata.rb +7 -145
- 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 +6 -144
- data/lib/datadog_api_client/v1/models/user.rb +6 -144
- data/lib/datadog_api_client/v1/models/user_disable_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/user_list_response.rb +5 -144
- data/lib/datadog_api_client/v1/models/user_response.rb +6 -144
- data/lib/datadog_api_client/v1/models/webhooks_integration.rb +35 -155
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable.rb +37 -157
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_response.rb +27 -153
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb +10 -146
- data/lib/datadog_api_client/v1/models/webhooks_integration_encoding.rb +4 -19
- data/lib/datadog_api_client/v1/models/webhooks_integration_update_request.rb +18 -148
- data/lib/datadog_api_client/v1/models/widget.rb +23 -149
- data/lib/datadog_api_client/v1/models/widget_aggregator.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_axis.rb +5 -144
- data/lib/datadog_api_client/v1/models/widget_change_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_color_preference.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_comparator.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_compare_to.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_conditional_format.rb +37 -156
- data/lib/datadog_api_client/v1/models/widget_custom_link.rb +5 -144
- data/lib/datadog_api_client/v1/models/widget_definition.rb +7 -62
- data/lib/datadog_api_client/v1/models/widget_display_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_event.rb +19 -149
- data/lib/datadog_api_client/v1/models/widget_event_size.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_field_sort.rb +26 -152
- data/lib/datadog_api_client/v1/models/widget_formula.rb +17 -148
- data/lib/datadog_api_client/v1/models/widget_formula_limit.rb +6 -144
- data/lib/datadog_api_client/v1/models/widget_grouping.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_horizontal_align.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_image_sizing.rb +5 -19
- data/lib/datadog_api_client/v1/models/widget_layout.rb +19 -193
- data/lib/datadog_api_client/v1/models/widget_layout_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_line_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_line_width.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_live_span.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_margin.rb +5 -19
- data/lib/datadog_api_client/v1/models/widget_marker.rb +20 -149
- data/lib/datadog_api_client/v1/models/widget_message_display.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_monitor_summary_display_format.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_monitor_summary_sort.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_node_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_order_by.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_palette.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_request_style.rb +7 -144
- data/lib/datadog_api_client/v1/models/widget_service_summary_display_format.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_size_format.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_sort.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_style.rb +5 -144
- data/lib/datadog_api_client/v1/models/widget_summary_type.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_text_align.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_tick_edge.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_time.rb +6 -144
- data/lib/datadog_api_client/v1/models/widget_time_windows.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_vertical_align.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_view_mode.rb +4 -19
- data/lib/datadog_api_client/v1/models/widget_viz_type.rb +4 -19
- data/lib/datadog_api_client/v1.rb +109 -68
- data/lib/datadog_api_client/v2/api/audit_api.rb +234 -0
- data/lib/datadog_api_client/v2/api/{auth_n_mappings_api.rb → authn_mappings_api.rb} +108 -110
- data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +60 -55
- data/lib/datadog_api_client/v2/api/dashboard_lists_api.rb +39 -41
- data/lib/datadog_api_client/v2/api/incident_services_api.rb +62 -57
- data/lib/datadog_api_client/v2/api/incident_teams_api.rb +62 -57
- data/lib/datadog_api_client/v2/api/incidents_api.rb +74 -55
- data/lib/datadog_api_client/v2/api/key_management_api.rb +139 -149
- data/lib/datadog_api_client/v2/api/logs_api.rb +129 -47
- data/lib/datadog_api_client/v2/api/logs_archives_api.rb +106 -98
- data/lib/datadog_api_client/v2/api/logs_metrics_api.rb +52 -49
- data/lib/datadog_api_client/v2/api/metrics_api.rb +286 -96
- data/lib/datadog_api_client/v2/api/organizations_api.rb +100 -0
- data/lib/datadog_api_client/v2/api/processes_api.rb +34 -20
- data/lib/datadog_api_client/v2/api/roles_api.rb +179 -186
- data/lib/datadog_api_client/v2/api/rum_api.rb +313 -0
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +179 -129
- data/lib/datadog_api_client/v2/api/service_accounts_api.rb +51 -57
- data/lib/datadog_api_client/v2/api/usage_metering_api.rb +330 -0
- data/lib/datadog_api_client/v2/api/users_api.rb +116 -112
- data/lib/datadog_api_client/v2/api_client.rb +106 -66
- data/lib/datadog_api_client/v2/api_error.rb +2 -2
- data/lib/datadog_api_client/v2/configuration.rb +57 -68
- data/lib/datadog_api_client/v2/{models/auth_n_mappings_response.rb → model_base.rb} +100 -109
- data/lib/datadog_api_client/v2/models/api_error_response.rb +15 -148
- data/lib/datadog_api_client/v2/models/api_key_create_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/api_key_create_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/api_key_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/api_key_relationships.rb +7 -144
- data/lib/datadog_api_client/v2/models/api_key_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/api_key_response_included_item.rb +3 -58
- data/lib/datadog_api_client/v2/models/api_key_update_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/api_key_update_data.rb +37 -156
- data/lib/datadog_api_client/v2/models/api_key_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/api_keys_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/api_keys_sort.rb +4 -19
- data/lib/datadog_api_client/v2/models/api_keys_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/application_key_create_attributes.rb +16 -149
- data/lib/datadog_api_client/v2/models/application_key_create_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/application_key_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/application_key_relationships.rb +6 -144
- data/lib/datadog_api_client/v2/models/application_key_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/application_key_response_included_item.rb +5 -60
- data/lib/datadog_api_client/v2/models/application_key_update_attributes.rb +6 -145
- data/lib/datadog_api_client/v2/models/application_key_update_data.rb +37 -156
- data/lib/datadog_api_client/v2/models/application_key_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/application_keys_sort.rb +4 -19
- data/lib/datadog_api_client/v2/models/application_keys_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/audit_logs_event.rb +133 -0
- data/lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb +145 -0
- data/lib/datadog_api_client/v2/models/audit_logs_event_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/audit_logs_events_response.rb +133 -0
- data/lib/datadog_api_client/v2/models/audit_logs_query_filter.rb +137 -0
- data/lib/datadog_api_client/v2/models/audit_logs_query_options.rb +124 -0
- data/lib/datadog_api_client/v2/models/audit_logs_query_page_options.rb +134 -0
- data/lib/datadog_api_client/v2/models/audit_logs_response_links.rb +112 -0
- data/lib/datadog_api_client/v2/models/audit_logs_response_metadata.rb +154 -0
- data/lib/datadog_api_client/v2/models/audit_logs_response_page.rb +111 -0
- data/lib/datadog_api_client/v2/models/audit_logs_response_status.rb +27 -0
- data/lib/datadog_api_client/v2/models/audit_logs_search_events_request.rb +142 -0
- data/lib/datadog_api_client/v2/models/audit_logs_sort.rb +27 -0
- data/lib/datadog_api_client/v2/models/audit_logs_warning.rb +131 -0
- data/lib/datadog_api_client/v2/models/authn_mapping.rb +165 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_attributes.rb +151 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_create_attributes.rb +121 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_create_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_create_relationships.rb +111 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_create_request.rb +122 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_included.rb +63 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_relationships.rb +121 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_response.rb +123 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_update_attributes.rb +121 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_update_data.rb +165 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_update_relationships.rb +111 -0
- data/lib/datadog_api_client/v2/models/authn_mapping_update_request.rb +122 -0
- data/lib/datadog_api_client/v2/models/authn_mappings_response.rb +135 -0
- data/lib/datadog_api_client/v2/models/{auth_n_mappings_sort.rb → authn_mappings_sort.rb} +4 -19
- data/lib/datadog_api_client/v2/models/authn_mappings_type.rb +26 -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 +7 -144
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_attributes.rb +25 -152
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_creator_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_data.rb +7 -144
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_updater_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rules_list_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/content_encoding.rb +4 -19
- 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 +5 -144
- data/lib/datadog_api_client/v2/models/dashboard_list_add_items_request.rb +5 -144
- data/lib/datadog_api_client/v2/models/dashboard_list_add_items_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/dashboard_list_delete_items_request.rb +5 -144
- data/lib/datadog_api_client/v2/models/dashboard_list_delete_items_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/dashboard_list_item.rb +29 -158
- data/lib/datadog_api_client/v2/models/dashboard_list_item_request.rb +26 -152
- data/lib/datadog_api_client/v2/models/dashboard_list_item_response.rb +26 -152
- data/lib/datadog_api_client/v2/models/dashboard_list_items.rb +15 -148
- data/lib/datadog_api_client/v2/models/dashboard_list_update_items_request.rb +5 -144
- data/lib/datadog_api_client/v2/models/dashboard_list_update_items_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/dashboard_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/full_api_key.rb +8 -144
- data/lib/datadog_api_client/v2/models/full_api_key_attributes.rb +7 -155
- data/lib/datadog_api_client/v2/models/full_application_key.rb +8 -144
- data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +8 -156
- data/lib/datadog_api_client/v2/models/hourly_usage_type.rb +28 -0
- data/lib/datadog_api_client/v2/models/http_log_error.rb +5 -144
- data/lib/datadog_api_client/v2/models/http_log_errors.rb +5 -144
- data/lib/datadog_api_client/v2/models/http_log_item.rb +54 -151
- 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 +26 -155
- data/lib/datadog_api_client/v2/models/incident_create_data.rb +28 -152
- data/lib/datadog_api_client/v2/models/incident_create_relationships.rb +24 -156
- data/lib/datadog_api_client/v2/models/incident_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_field_attributes.rb +5 -60
- data/lib/datadog_api_client/v2/models/incident_field_attributes_multiple_value.rb +7 -145
- data/lib/datadog_api_client/v2/models/incident_field_attributes_single_value.rb +7 -145
- data/lib/datadog_api_client/v2/models/incident_field_attributes_single_value_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_field_attributes_value_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_integration_metadata_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_notification_handle.rb +5 -144
- data/lib/datadog_api_client/v2/models/incident_postmortem_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_related_object.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_response.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_response_attributes.rb +20 -153
- data/lib/datadog_api_client/v2/models/incident_response_data.rb +28 -152
- data/lib/datadog_api_client/v2/models/incident_response_included_item.rb +3 -58
- data/lib/datadog_api_client/v2/models/incident_response_meta.rb +6 -144
- data/lib/datadog_api_client/v2/models/incident_response_meta_pagination.rb +5 -144
- data/lib/datadog_api_client/v2/models/incident_response_relationships.rb +11 -145
- data/lib/datadog_api_client/v2/models/incident_service_create_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/incident_service_create_data.rb +18 -148
- data/lib/datadog_api_client/v2/models/incident_service_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_service_included_items.rb +3 -58
- data/lib/datadog_api_client/v2/models/incident_service_relationships.rb +7 -144
- data/lib/datadog_api_client/v2/models/incident_service_response.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_service_response_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/incident_service_response_data.rb +28 -152
- data/lib/datadog_api_client/v2/models/incident_service_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_service_update_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/incident_service_update_data.rb +18 -148
- data/lib/datadog_api_client/v2/models/incident_service_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_services_response.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_team_create_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/incident_team_create_data.rb +18 -148
- data/lib/datadog_api_client/v2/models/incident_team_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_team_included_items.rb +3 -58
- data/lib/datadog_api_client/v2/models/incident_team_relationships.rb +7 -144
- data/lib/datadog_api_client/v2/models/incident_team_response.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_team_response_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/incident_team_response_data.rb +8 -144
- data/lib/datadog_api_client/v2/models/incident_team_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_team_update_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/incident_team_update_data.rb +18 -148
- data/lib/datadog_api_client/v2/models/incident_team_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_teams_response.rb +16 -148
- data/lib/datadog_api_client/v2/models/incident_timeline_cell_create_attributes.rb +3 -58
- data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_content_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_create_attributes.rb +27 -152
- data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_create_attributes_content.rb +5 -144
- data/lib/datadog_api_client/v2/models/incident_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/incident_update_attributes.rb +6 -147
- data/lib/datadog_api_client/v2/models/incident_update_data.rb +28 -152
- data/lib/datadog_api_client/v2/models/incident_update_relationships.rb +10 -164
- data/lib/datadog_api_client/v2/models/incident_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/incidents_response.rb +16 -148
- data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +111 -0
- data/lib/datadog_api_client/v2/models/list_application_keys_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/log.rb +7 -144
- data/lib/datadog_api_client/v2/models/log_attributes.rb +12 -149
- data/lib/datadog_api_client/v2/models/log_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket.rb +7 -150
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value.rb +5 -60
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value_timeseries_point.rb +5 -144
- data/lib/datadog_api_client/v2/models/logs_aggregate_request.rb +9 -144
- data/lib/datadog_api_client/v2/models/logs_aggregate_request_page.rb +5 -144
- data/lib/datadog_api_client/v2/models/logs_aggregate_response.rb +7 -144
- data/lib/datadog_api_client/v2/models/logs_aggregate_response_data.rb +5 -144
- data/lib/datadog_api_client/v2/models/logs_aggregate_response_status.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_aggregate_sort.rb +8 -144
- data/lib/datadog_api_client/v2/models/logs_aggregate_sort_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_aggregation_function.rb +5 -19
- data/lib/datadog_api_client/v2/models/logs_archive.rb +6 -144
- data/lib/datadog_api_client/v2/models/logs_archive_attributes.rb +41 -154
- data/lib/datadog_api_client/v2/models/logs_archive_create_request.rb +6 -144
- data/lib/datadog_api_client/v2/models/logs_archive_create_request_attributes.rb +50 -158
- data/lib/datadog_api_client/v2/models/logs_archive_create_request_definition.rb +16 -148
- data/lib/datadog_api_client/v2/models/logs_archive_create_request_destination.rb +3 -58
- data/lib/datadog_api_client/v2/models/logs_archive_definition.rb +16 -148
- data/lib/datadog_api_client/v2/models/logs_archive_destination.rb +3 -58
- data/lib/datadog_api_client/v2/models/logs_archive_destination_azure.rb +46 -159
- data/lib/datadog_api_client/v2/models/logs_archive_destination_azure_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_archive_destination_gcs.rb +37 -156
- data/lib/datadog_api_client/v2/models/logs_archive_destination_gcs_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_archive_destination_s3.rb +37 -156
- data/lib/datadog_api_client/v2/models/logs_archive_destination_s3_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_archive_integration_azure.rb +25 -152
- data/lib/datadog_api_client/v2/models/logs_archive_integration_gcs.rb +25 -152
- data/lib/datadog_api_client/v2/models/logs_archive_integration_s3.rb +25 -152
- data/lib/datadog_api_client/v2/models/logs_archive_order.rb +6 -144
- data/lib/datadog_api_client/v2/models/logs_archive_order_attributes.rb +17 -149
- data/lib/datadog_api_client/v2/models/logs_archive_order_definition.rb +27 -152
- data/lib/datadog_api_client/v2/models/logs_archive_order_definition_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_archive_state.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_archives.rb +5 -144
- data/lib/datadog_api_client/v2/models/logs_compute.rb +19 -149
- data/lib/datadog_api_client/v2/models/logs_compute_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_group_by.rb +22 -148
- data/lib/datadog_api_client/v2/models/logs_group_by_histogram.rb +41 -159
- data/lib/datadog_api_client/v2/models/logs_group_by_missing.rb +5 -60
- data/lib/datadog_api_client/v2/models/logs_group_by_total.rb +5 -60
- data/lib/datadog_api_client/v2/models/logs_list_request.rb +10 -144
- data/lib/datadog_api_client/v2/models/logs_list_request_page.rb +7 -150
- data/lib/datadog_api_client/v2/models/logs_list_response.rb +7 -144
- data/lib/datadog_api_client/v2/models/logs_list_response_links.rb +7 -145
- data/lib/datadog_api_client/v2/models/logs_metric_compute.rb +17 -149
- data/lib/datadog_api_client/v2/models/logs_metric_compute_aggregation_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_metric_create_attributes.rb +17 -148
- data/lib/datadog_api_client/v2/models/logs_metric_create_data.rb +37 -156
- data/lib/datadog_api_client/v2/models/logs_metric_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/logs_metric_filter.rb +5 -144
- data/lib/datadog_api_client/v2/models/logs_metric_group_by.rb +15 -148
- data/lib/datadog_api_client/v2/models/logs_metric_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/logs_metric_response_attributes.rb +7 -144
- data/lib/datadog_api_client/v2/models/logs_metric_response_compute.rb +7 -145
- data/lib/datadog_api_client/v2/models/logs_metric_response_compute_aggregation_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_metric_response_data.rb +7 -144
- data/lib/datadog_api_client/v2/models/logs_metric_response_filter.rb +5 -144
- data/lib/datadog_api_client/v2/models/logs_metric_response_group_by.rb +5 -144
- data/lib/datadog_api_client/v2/models/logs_metric_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_metric_update_attributes.rb +6 -144
- data/lib/datadog_api_client/v2/models/logs_metric_update_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/logs_metric_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/logs_metrics_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/logs_query_filter.rb +7 -144
- data/lib/datadog_api_client/v2/models/logs_query_options.rb +8 -146
- data/lib/datadog_api_client/v2/models/logs_response_metadata.rb +9 -145
- data/lib/datadog_api_client/v2/models/logs_response_metadata_page.rb +7 -145
- data/lib/datadog_api_client/v2/models/logs_sort.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_sort_order.rb +4 -19
- data/lib/datadog_api_client/v2/models/logs_warning.rb +5 -144
- data/lib/datadog_api_client/v2/models/metric.rb +6 -144
- data/lib/datadog_api_client/v2/models/metric_all_tags.rb +7 -144
- data/lib/datadog_api_client/v2/models/metric_all_tags_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/metric_all_tags_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/metric_bulk_configure_tags_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create.rb +27 -152
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete.rb +27 -152
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_response.rb +7 -144
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status.rb +29 -153
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/metric_content_encoding.rb +26 -0
- data/lib/datadog_api_client/v2/models/metric_custom_aggregation.rb +27 -152
- data/lib/datadog_api_client/v2/models/metric_custom_space_aggregation.rb +4 -19
- data/lib/datadog_api_client/v2/models/metric_custom_time_aggregation.rb +4 -19
- data/lib/datadog_api_client/v2/models/metric_distinct_volume.rb +7 -144
- data/lib/datadog_api_client/v2/models/metric_distinct_volume_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/metric_distinct_volume_type.rb +4 -19
- 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 +7 -144
- data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume_type.rb +4 -19
- 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 +7 -144
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_attributes.rb +24 -146
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +46 -154
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_metric_types.rb +4 -19
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +25 -146
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/metric_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/metric_volumes.rb +3 -58
- data/lib/datadog_api_client/v2/models/metric_volumes_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/metrics_and_metric_tag_configurations.rb +3 -58
- data/lib/datadog_api_client/v2/models/metrics_and_metric_tag_configurations_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/nullable_relationship_to_user.rb +112 -0
- data/lib/datadog_api_client/v2/models/nullable_relationship_to_user_data.rb +145 -0
- data/lib/datadog_api_client/v2/models/organization.rb +17 -148
- data/lib/datadog_api_client/v2/models/organization_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/organizations_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/pagination.rb +5 -144
- data/lib/datadog_api_client/v2/models/partial_api_key.rb +8 -144
- data/lib/datadog_api_client/v2/models/partial_api_key_attributes.rb +7 -155
- data/lib/datadog_api_client/v2/models/partial_application_key.rb +8 -144
- data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +8 -156
- data/lib/datadog_api_client/v2/models/partial_application_key_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/permission.rb +17 -148
- data/lib/datadog_api_client/v2/models/permission_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/permissions_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/permissions_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/process_summaries_meta.rb +6 -144
- data/lib/datadog_api_client/v2/models/process_summaries_meta_page.rb +9 -156
- data/lib/datadog_api_client/v2/models/process_summaries_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/process_summary.rb +7 -144
- data/lib/datadog_api_client/v2/models/process_summary_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/process_summary_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/query_sort_order.rb +4 -19
- data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadata_data.rb +26 -152
- data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadatas.rb +15 -148
- data/lib/datadog_api_client/v2/models/relationship_to_incident_postmortem.rb +16 -148
- data/lib/datadog_api_client/v2/models/relationship_to_incident_postmortem_data.rb +26 -152
- data/lib/datadog_api_client/v2/models/relationship_to_organization.rb +16 -148
- data/lib/datadog_api_client/v2/models/relationship_to_organization_data.rb +26 -152
- data/lib/datadog_api_client/v2/models/relationship_to_organizations.rb +15 -148
- data/lib/datadog_api_client/v2/models/relationship_to_permission.rb +6 -144
- data/lib/datadog_api_client/v2/models/relationship_to_permission_data.rb +6 -144
- data/lib/datadog_api_client/v2/models/relationship_to_permissions.rb +5 -144
- data/lib/datadog_api_client/v2/models/relationship_to_role.rb +6 -144
- data/lib/datadog_api_client/v2/models/relationship_to_role_data.rb +7 -145
- data/lib/datadog_api_client/v2/models/relationship_to_roles.rb +6 -145
- data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute.rb +16 -148
- data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute_data.rb +19 -164
- data/lib/datadog_api_client/v2/models/relationship_to_user.rb +16 -148
- data/lib/datadog_api_client/v2/models/relationship_to_user_data.rb +26 -152
- data/lib/datadog_api_client/v2/models/relationship_to_users.rb +15 -148
- data/lib/datadog_api_client/v2/models/response_meta_attributes.rb +6 -144
- data/lib/datadog_api_client/v2/models/role.rb +19 -149
- data/lib/datadog_api_client/v2/models/role_attributes.rb +6 -145
- data/lib/datadog_api_client/v2/models/role_clone.rb +27 -152
- data/lib/datadog_api_client/v2/models/role_clone_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/role_clone_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/role_create_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/role_create_data.rb +18 -148
- data/lib/datadog_api_client/v2/models/role_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/role_create_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/role_create_response_data.rb +19 -149
- data/lib/datadog_api_client/v2/models/role_relationships.rb +7 -144
- data/lib/datadog_api_client/v2/models/role_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/role_response_relationships.rb +6 -144
- data/lib/datadog_api_client/v2/models/role_update_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/role_update_data.rb +38 -157
- data/lib/datadog_api_client/v2/models/role_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/role_update_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/role_update_response_data.rb +19 -149
- data/lib/datadog_api_client/v2/models/roles_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/roles_sort.rb +4 -19
- data/lib/datadog_api_client/v2/models/roles_type.rb +4 -19
- 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 +133 -0
- data/lib/datadog_api_client/v2/models/rum_event_attributes.rb +145 -0
- data/lib/datadog_api_client/v2/models/rum_event_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/rum_events_response.rb +133 -0
- 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 +137 -0
- data/lib/datadog_api_client/v2/models/rum_query_options.rb +124 -0
- data/lib/datadog_api_client/v2/models/rum_query_page_options.rb +134 -0
- data/lib/datadog_api_client/v2/models/rum_response_links.rb +112 -0
- data/lib/datadog_api_client/v2/models/rum_response_metadata.rb +154 -0
- data/lib/datadog_api_client/v2/models/rum_response_page.rb +111 -0
- data/lib/datadog_api_client/v2/models/rum_response_status.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_search_events_request.rb +142 -0
- data/lib/datadog_api_client/v2/models/rum_sort.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_sort_order.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_warning.rb +131 -0
- data/lib/datadog_api_client/v2/models/saml_assertion_attribute.rb +20 -164
- data/lib/datadog_api_client/v2/models/saml_assertion_attribute_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/saml_assertion_attributes_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_filter.rb +7 -144
- data/lib/datadog_api_client/v2/models/security_filter_attributes.rb +8 -150
- data/lib/datadog_api_client/v2/models/security_filter_create_attributes.rb +54 -162
- data/lib/datadog_api_client/v2/models/security_filter_create_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/security_filter_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter.rb +25 -152
- data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/security_filter_filtered_data_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_filter_meta.rb +5 -144
- data/lib/datadog_api_client/v2/models/security_filter_response.rb +7 -144
- data/lib/datadog_api_client/v2/models/security_filter_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_filter_update_attributes.rb +8 -150
- data/lib/datadog_api_client/v2/models/security_filter_update_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/security_filter_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/security_filters_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_filter.rb +6 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_filter_action.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_list_rules_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case.rb +8 -145
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case_create.rb +18 -149
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_create_payload.rb +64 -165
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_detection_method.rb +6 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_evaluation_window.rb +5 -19
- 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 +112 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_keep_alive.rb +5 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_max_signal_duration.rb +5 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +8 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_forget_after.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_duration.rb +5 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +34 -145
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_query.rb +8 -145
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_aggregation.rb +5 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_create.rb +18 -149
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_response.rb +7 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_severity.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_type_create.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_type_read.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_update_payload.rb +8 -150
- data/lib/datadog_api_client/v2/models/security_monitoring_signal.rb +8 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_attributes.rb +8 -148
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request.rb +8 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request_filter.rb +5 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request_page.rb +7 -150
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response.rb +9 -145
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_links.rb +7 -145
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_meta.rb +6 -144
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_meta_page.rb +7 -145
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_sort.rb +4 -19
- data/lib/datadog_api_client/v2/models/service_account_create_attributes.rb +25 -152
- data/lib/datadog_api_client/v2/models/service_account_create_data.rb +28 -152
- data/lib/datadog_api_client/v2/models/service_account_create_request.rb +16 -148
- 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 +8 -144
- data/lib/datadog_api_client/v2/models/user_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/user_create_attributes.rb +15 -148
- data/lib/datadog_api_client/v2/models/user_create_data.rb +28 -152
- data/lib/datadog_api_client/v2/models/user_create_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/user_invitation_data.rb +27 -152
- data/lib/datadog_api_client/v2/models/user_invitation_data_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/user_invitation_relationships.rb +16 -148
- data/lib/datadog_api_client/v2/models/user_invitation_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/user_invitation_response_data.rb +7 -144
- data/lib/datadog_api_client/v2/models/user_invitations_request.rb +15 -148
- data/lib/datadog_api_client/v2/models/user_invitations_response.rb +5 -144
- data/lib/datadog_api_client/v2/models/user_invitations_type.rb +4 -19
- data/lib/datadog_api_client/v2/models/user_relationships.rb +6 -144
- data/lib/datadog_api_client/v2/models/user_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/user_response_included_item.rb +3 -58
- data/lib/datadog_api_client/v2/models/user_response_relationships.rb +9 -144
- data/lib/datadog_api_client/v2/models/user_update_attributes.rb +5 -144
- data/lib/datadog_api_client/v2/models/user_update_data.rb +37 -156
- data/lib/datadog_api_client/v2/models/user_update_request.rb +16 -148
- data/lib/datadog_api_client/v2/models/users_response.rb +6 -144
- data/lib/datadog_api_client/v2/models/users_type.rb +4 -19
- data/lib/datadog_api_client/v2.rb +145 -41
- data/lib/datadog_api_client/version.rb +1 -11
- data/lib/datadog_api_client.rb +1 -0
- data/spec/spec_helper.rb +3 -3
- data/spec/v1/api_client_spec.rb +9 -28
- data/spec/v2/api_client_spec.rb +9 -28
- metadata +380 -394
- data/.generator/config/v1.json +0 -9
- data/.generator/config/v2.json +0 -9
- data/.generator/openapitools.json +0 -33
- data/.generator/templates/Gemfile.mustache +0 -9
- data/.generator/templates/README.mustache +0 -82
- data/.generator/templates/Rakefile.mustache +0 -10
- data/.generator/templates/api.mustache +0 -216
- data/.generator/templates/api_client_faraday_partial.mustache +0 -138
- data/.generator/templates/api_client_spec.mustache +0 -220
- data/.generator/templates/api_client_typhoeus_partial.mustache +0 -166
- data/.generator/templates/api_doc.mustache +0 -105
- data/.generator/templates/api_info.mustache +0 -15
- data/.generator/templates/api_test.mustache +0 -47
- data/.generator/templates/base_object.mustache +0 -134
- data/.generator/templates/configuration_spec.mustache +0 -34
- data/.generator/templates/configuration_tls_faraday_partial.mustache +0 -29
- data/.generator/templates/configuration_tls_typhoeus_partial.mustache +0 -34
- data/.generator/templates/gem.mustache +0 -40
- data/.generator/templates/gemspec.mustache +0 -35
- data/.generator/templates/git_push.sh.mustache +0 -57
- data/.generator/templates/gitignore.mustache +0 -39
- data/.generator/templates/model.mustache +0 -26
- data/.generator/templates/model_doc.mustache +0 -12
- data/.generator/templates/model_test.mustache +0 -77
- data/.generator/templates/partial_model_enum_class.mustache +0 -21
- data/.generator/templates/partial_model_generic.mustache +0 -384
- data/.generator/templates/partial_model_generic_doc.mustache +0 -28
- data/.generator/templates/partial_oneof_module.mustache +0 -146
- data/.generator/templates/partial_oneof_module_doc.mustache +0 -92
- data/.generator/templates/rspec.mustache +0 -2
- data/.generator/templates/rubocop.mustache +0 -148
- data/.generator/templates/spec_helper.mustache +0 -103
- data/.generator/templates/travis.mustache +0 -14
- data/.generator/templates/version.mustache +0 -7
- data/.openapi-generator/FILES +0 -1036
- data/.openapi-generator/VERSION +0 -1
- data/.openapi-generator-ignore +0 -32
- data/examples/generated/v1/authentication/Validate.rb +0 -10
- data/examples/generated/v1/aws-integration/CreateAWSAccount.rb +0 -11
- data/examples/generated/v1/aws-integration/CreateAWSTagFilter.rb +0 -11
- data/examples/generated/v1/aws-integration/CreateNewAWSExternalId.rb +0 -11
- data/examples/generated/v1/aws-integration/DeleteAWSAccount.rb +0 -11
- data/examples/generated/v1/aws-integration/DeleteAWSTagFilter.rb +0 -11
- data/examples/generated/v1/aws-integration/ListAWSAccounts.rb +0 -15
- data/examples/generated/v1/aws-integration/ListAWSTagFilters.rb +0 -11
- data/examples/generated/v1/aws-integration/ListAvailableAWSNamespaces.rb +0 -10
- data/examples/generated/v1/aws-integration/UpdateAWSAccount.rb +0 -16
- data/examples/generated/v1/aws-logs-integration/CheckAWSLogsLambdaAsync.rb +0 -11
- data/examples/generated/v1/aws-logs-integration/CheckAWSLogsServicesAsync.rb +0 -11
- data/examples/generated/v1/aws-logs-integration/CreateAWSLambdaArn.rb +0 -11
- data/examples/generated/v1/aws-logs-integration/DeleteAWSLambdaArn.rb +0 -11
- data/examples/generated/v1/aws-logs-integration/EnableAWSLogServices.rb +0 -11
- data/examples/generated/v1/aws-logs-integration/ListAWSLogsIntegrations.rb +0 -10
- data/examples/generated/v1/aws-logs-integration/ListAWSLogsServices.rb +0 -10
- data/examples/generated/v1/azure-integration/CreateAzureIntegration.rb +0 -11
- data/examples/generated/v1/azure-integration/DeleteAzureIntegration.rb +0 -11
- data/examples/generated/v1/azure-integration/ListAzureIntegration.rb +0 -10
- data/examples/generated/v1/azure-integration/UpdateAzureHostFilters.rb +0 -11
- data/examples/generated/v1/azure-integration/UpdateAzureIntegration.rb +0 -11
- data/examples/generated/v1/dashboard-lists/CreateDashboardList.rb +0 -11
- data/examples/generated/v1/dashboard-lists/DeleteDashboardList.rb +0 -11
- data/examples/generated/v1/dashboard-lists/GetDashboardList.rb +0 -11
- data/examples/generated/v1/dashboard-lists/ListDashboardLists.rb +0 -10
- data/examples/generated/v1/dashboard-lists/UpdateDashboardList.rb +0 -12
- data/examples/generated/v1/dashboards/CreateDashboard.rb +0 -11
- data/examples/generated/v1/dashboards/DeleteDashboard.rb +0 -11
- data/examples/generated/v1/dashboards/DeleteDashboards.rb +0 -10
- data/examples/generated/v1/dashboards/GetDashboard.rb +0 -11
- data/examples/generated/v1/dashboards/ListDashboards.rb +0 -14
- data/examples/generated/v1/dashboards/RestoreDashboards.rb +0 -10
- data/examples/generated/v1/dashboards/UpdateDashboard.rb +0 -12
- data/examples/generated/v1/downtimes/CancelDowntime.rb +0 -10
- data/examples/generated/v1/downtimes/CancelDowntimesByScope.rb +0 -11
- data/examples/generated/v1/downtimes/CreateDowntime.rb +0 -11
- data/examples/generated/v1/downtimes/GetDowntime.rb +0 -11
- data/examples/generated/v1/downtimes/ListDowntimes.rb +0 -13
- data/examples/generated/v1/downtimes/ListMonitorDowntimes.rb +0 -11
- data/examples/generated/v1/downtimes/UpdateDowntime.rb +0 -12
- data/examples/generated/v1/events/CreateEvent.rb +0 -11
- data/examples/generated/v1/events/GetEvent.rb +0 -11
- data/examples/generated/v1/events/ListEvents.rb +0 -20
- data/examples/generated/v1/gcp-integration/CreateGCPIntegration.rb +0 -11
- data/examples/generated/v1/gcp-integration/DeleteGCPIntegration.rb +0 -11
- data/examples/generated/v1/gcp-integration/ListGCPIntegration.rb +0 -10
- data/examples/generated/v1/gcp-integration/UpdateGCPIntegration.rb +0 -11
- data/examples/generated/v1/hosts/GetHostTotals.rb +0 -13
- data/examples/generated/v1/hosts/ListHosts.rb +0 -20
- data/examples/generated/v1/hosts/MuteHost.rb +0 -12
- data/examples/generated/v1/hosts/UnmuteHost.rb +0 -11
- data/examples/generated/v1/ip-ranges/GetIPRanges.rb +0 -10
- data/examples/generated/v1/key-management/CreateApiKey.rb +0 -11
- data/examples/generated/v1/key-management/CreateApplicationKey.rb +0 -11
- data/examples/generated/v1/key-management/DeleteApiKey.rb +0 -11
- data/examples/generated/v1/key-management/DeleteApplicationKey.rb +0 -11
- data/examples/generated/v1/key-management/GetApiKey.rb +0 -11
- data/examples/generated/v1/key-management/GetApplicationKey.rb +0 -11
- data/examples/generated/v1/key-management/ListApiKeys.rb +0 -10
- data/examples/generated/v1/key-management/ListApplicationKeys.rb +0 -10
- data/examples/generated/v1/key-management/UpdateApiKey.rb +0 -12
- data/examples/generated/v1/key-management/UpdateApplicationKey.rb +0 -12
- data/examples/generated/v1/logs/ListLogs.rb +0 -11
- data/examples/generated/v1/logs/SubmitLog.rb +0 -15
- data/examples/generated/v1/logs-indexes/CreateLogsIndex.rb +0 -11
- data/examples/generated/v1/logs-indexes/GetLogsIndex.rb +0 -11
- data/examples/generated/v1/logs-indexes/GetLogsIndexOrder.rb +0 -10
- data/examples/generated/v1/logs-indexes/ListLogIndexes.rb +0 -10
- data/examples/generated/v1/logs-indexes/UpdateLogsIndex.rb +0 -12
- data/examples/generated/v1/logs-indexes/UpdateLogsIndexOrder.rb +0 -11
- data/examples/generated/v1/logs-pipelines/CreateLogsPipeline.rb +0 -11
- data/examples/generated/v1/logs-pipelines/DeleteLogsPipeline.rb +0 -10
- data/examples/generated/v1/logs-pipelines/GetLogsPipeline.rb +0 -11
- data/examples/generated/v1/logs-pipelines/GetLogsPipelineOrder.rb +0 -10
- data/examples/generated/v1/logs-pipelines/ListLogsPipelines.rb +0 -10
- data/examples/generated/v1/logs-pipelines/UpdateLogsPipeline.rb +0 -12
- data/examples/generated/v1/logs-pipelines/UpdateLogsPipelineOrder.rb +0 -11
- data/examples/generated/v1/metrics/GetMetricMetadata.rb +0 -11
- data/examples/generated/v1/metrics/ListActiveMetrics.rb +0 -15
- data/examples/generated/v1/metrics/ListMetrics.rb +0 -11
- data/examples/generated/v1/metrics/QueryMetrics.rb +0 -13
- data/examples/generated/v1/metrics/SubmitMetrics.rb +0 -14
- data/examples/generated/v1/metrics/UpdateMetricMetadata.rb +0 -12
- data/examples/generated/v1/monitors/CheckCanDeleteMonitor.rb +0 -11
- data/examples/generated/v1/monitors/CreateMonitor.rb +0 -11
- data/examples/generated/v1/monitors/DeleteMonitor.rb +0 -14
- data/examples/generated/v1/monitors/GetMonitor.rb +0 -14
- data/examples/generated/v1/monitors/ListMonitors.rb +0 -20
- data/examples/generated/v1/monitors/SearchMonitorGroups.rb +0 -16
- data/examples/generated/v1/monitors/SearchMonitors.rb +0 -16
- data/examples/generated/v1/monitors/UpdateMonitor.rb +0 -12
- data/examples/generated/v1/monitors/ValidateMonitor.rb +0 -11
- data/examples/generated/v1/notebooks/CreateNotebook.rb +0 -11
- data/examples/generated/v1/notebooks/DeleteNotebook.rb +0 -10
- data/examples/generated/v1/notebooks/GetNotebook.rb +0 -11
- data/examples/generated/v1/notebooks/ListNotebooks.rb +0 -22
- data/examples/generated/v1/notebooks/UpdateNotebook.rb +0 -12
- data/examples/generated/v1/organizations/CreateChildOrg.rb +0 -11
- data/examples/generated/v1/organizations/GetOrg.rb +0 -11
- data/examples/generated/v1/organizations/ListOrgs.rb +0 -10
- data/examples/generated/v1/organizations/UpdateOrg.rb +0 -12
- data/examples/generated/v1/organizations/UploadIDPForOrg.rb +0 -12
- data/examples/generated/v1/pager-duty-integration/CreatePagerDutyIntegrationService.rb +0 -11
- data/examples/generated/v1/pager-duty-integration/DeletePagerDutyIntegrationService.rb +0 -10
- data/examples/generated/v1/pager-duty-integration/GetPagerDutyIntegrationService.rb +0 -11
- data/examples/generated/v1/pager-duty-integration/UpdatePagerDutyIntegrationService.rb +0 -11
- data/examples/generated/v1/service-checks/SubmitServiceCheck.rb +0 -11
- data/examples/generated/v1/service-level-objective-corrections/CreateSLOCorrection.rb +0 -16
- data/examples/generated/v1/service-level-objective-corrections/DeleteSLOCorrection.rb +0 -15
- data/examples/generated/v1/service-level-objective-corrections/GetSLOCorrection.rb +0 -16
- data/examples/generated/v1/service-level-objective-corrections/ListSLOCorrection.rb +0 -15
- data/examples/generated/v1/service-level-objective-corrections/UpdateSLOCorrection.rb +0 -17
- data/examples/generated/v1/service-level-objectives/CheckCanDeleteSLO.rb +0 -11
- data/examples/generated/v1/service-level-objectives/CreateSLO.rb +0 -11
- data/examples/generated/v1/service-level-objectives/DeleteSLO.rb +0 -14
- data/examples/generated/v1/service-level-objectives/DeleteSLOTimeframeInBulk.rb +0 -11
- data/examples/generated/v1/service-level-objectives/GetSLO.rb +0 -14
- data/examples/generated/v1/service-level-objectives/GetSLOCorrections.rb +0 -16
- data/examples/generated/v1/service-level-objectives/GetSLOHistory.rb +0 -22
- data/examples/generated/v1/service-level-objectives/ListSLOs.rb +0 -18
- data/examples/generated/v1/service-level-objectives/UpdateSLO.rb +0 -12
- data/examples/generated/v1/slack-integration/CreateSlackIntegrationChannel.rb +0 -12
- data/examples/generated/v1/slack-integration/GetSlackIntegrationChannel.rb +0 -12
- data/examples/generated/v1/slack-integration/GetSlackIntegrationChannels.rb +0 -11
- data/examples/generated/v1/slack-integration/RemoveSlackIntegrationChannel.rb +0 -11
- data/examples/generated/v1/slack-integration/UpdateSlackIntegrationChannel.rb +0 -13
- data/examples/generated/v1/snapshots/GetGraphSnapshot.rb +0 -18
- data/examples/generated/v1/synthetics/CreateGlobalVariable.rb +0 -11
- data/examples/generated/v1/synthetics/CreatePrivateLocation.rb +0 -11
- data/examples/generated/v1/synthetics/CreateSyntheticsApiTest.rb +0 -11
- data/examples/generated/v1/synthetics/CreateSyntheticsBrowserTest.rb +0 -11
- data/examples/generated/v1/synthetics/DeleteGlobalVariable.rb +0 -10
- data/examples/generated/v1/synthetics/DeletePrivateLocation.rb +0 -10
- data/examples/generated/v1/synthetics/DeleteTests.rb +0 -11
- data/examples/generated/v1/synthetics/EditGlobalVariable.rb +0 -12
- data/examples/generated/v1/synthetics/GetApiTest.rb +0 -11
- data/examples/generated/v1/synthetics/GetApiTestLatestResults.rb +0 -16
- data/examples/generated/v1/synthetics/GetApiTestResult.rb +0 -12
- data/examples/generated/v1/synthetics/GetBrowserTest.rb +0 -11
- data/examples/generated/v1/synthetics/GetBrowserTestLatestResults.rb +0 -16
- data/examples/generated/v1/synthetics/GetBrowserTestResult.rb +0 -12
- data/examples/generated/v1/synthetics/GetGlobalVariable.rb +0 -11
- data/examples/generated/v1/synthetics/GetPrivateLocation.rb +0 -11
- data/examples/generated/v1/synthetics/GetSyntheticsCiBatch.rb +0 -11
- data/examples/generated/v1/synthetics/GetTest.rb +0 -11
- data/examples/generated/v1/synthetics/ListGlobalVariables.rb +0 -10
- data/examples/generated/v1/synthetics/ListLocations.rb +0 -10
- data/examples/generated/v1/synthetics/ListTests.rb +0 -10
- data/examples/generated/v1/synthetics/TriggerCiTests.rb +0 -11
- data/examples/generated/v1/synthetics/TriggerTests.rb +0 -11
- data/examples/generated/v1/synthetics/UpdateApiTest.rb +0 -12
- data/examples/generated/v1/synthetics/UpdateBrowserTest.rb +0 -12
- data/examples/generated/v1/synthetics/UpdatePrivateLocation.rb +0 -12
- data/examples/generated/v1/synthetics/UpdateTestPauseStatus.rb +0 -12
- data/examples/generated/v1/tags/CreateHostTags.rb +0 -15
- data/examples/generated/v1/tags/DeleteHostTags.rb +0 -13
- data/examples/generated/v1/tags/GetHostTags.rb +0 -14
- data/examples/generated/v1/tags/ListHostTags.rb +0 -13
- data/examples/generated/v1/tags/UpdateHostTags.rb +0 -15
- data/examples/generated/v1/usage-metering/GetDailyCustomReports.rb +0 -21
- data/examples/generated/v1/usage-metering/GetHourlyUsageAttribution.rb +0 -22
- data/examples/generated/v1/usage-metering/GetIncidentManagement.rb +0 -14
- data/examples/generated/v1/usage-metering/GetIngestedSpans.rb +0 -14
- data/examples/generated/v1/usage-metering/GetMonthlyCustomReports.rb +0 -21
- data/examples/generated/v1/usage-metering/GetMonthlyUsageAttribution.rb +0 -24
- data/examples/generated/v1/usage-metering/GetSpecifiedDailyCustomReports.rb +0 -16
- data/examples/generated/v1/usage-metering/GetSpecifiedMonthlyCustomReports.rb +0 -16
- data/examples/generated/v1/usage-metering/GetUsageAnalyzedLogs.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageAttribution.rb +0 -25
- data/examples/generated/v1/usage-metering/GetUsageAuditLogs.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageBillableSummary.rb +0 -13
- data/examples/generated/v1/usage-metering/GetUsageCloudSecurityPostureManagement.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageCws.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageDbm.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageFargate.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageHosts.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageIndexedSpans.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageInternetOfThings.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageLambda.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageLogs.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageLogsByIndex.rb +0 -15
- data/examples/generated/v1/usage-metering/GetUsageLogsByRetention.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageNetworkFlows.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageNetworkHosts.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageProfiling.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageRumSessions.rb +0 -15
- data/examples/generated/v1/usage-metering/GetUsageRumUnits.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageSds.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageSnmp.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageSummary.rb +0 -15
- data/examples/generated/v1/usage-metering/GetUsageSynthetics.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageSyntheticsApi.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageSyntheticsBrowser.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageTimeseries.rb +0 -14
- data/examples/generated/v1/usage-metering/GetUsageTopAvgMetrics.rb +0 -17
- data/examples/generated/v1/users/CreateUser.rb +0 -11
- data/examples/generated/v1/users/DisableUser.rb +0 -11
- data/examples/generated/v1/users/GetUser.rb +0 -11
- data/examples/generated/v1/users/ListUsers.rb +0 -10
- data/examples/generated/v1/users/UpdateUser.rb +0 -12
- data/examples/generated/v1/webhooks-integration/CreateWebhooksIntegration.rb +0 -11
- data/examples/generated/v1/webhooks-integration/CreateWebhooksIntegrationCustomVariable.rb +0 -11
- data/examples/generated/v1/webhooks-integration/DeleteWebhooksIntegration.rb +0 -10
- data/examples/generated/v1/webhooks-integration/DeleteWebhooksIntegrationCustomVariable.rb +0 -10
- data/examples/generated/v1/webhooks-integration/GetWebhooksIntegration.rb +0 -11
- data/examples/generated/v1/webhooks-integration/GetWebhooksIntegrationCustomVariable.rb +0 -11
- data/examples/generated/v1/webhooks-integration/UpdateWebhooksIntegration.rb +0 -12
- data/examples/generated/v1/webhooks-integration/UpdateWebhooksIntegrationCustomVariable.rb +0 -12
- data/examples/generated/v2/authn-mappings/CreateAuthNMapping.rb +0 -11
- data/examples/generated/v2/authn-mappings/DeleteAuthNMapping.rb +0 -10
- data/examples/generated/v2/authn-mappings/GetAuthNMapping.rb +0 -11
- data/examples/generated/v2/authn-mappings/ListAuthNMappings.rb +0 -17
- data/examples/generated/v2/authn-mappings/UpdateAuthNMapping.rb +0 -12
- data/examples/generated/v2/cloud-workload-security/CreateCloudWorkloadSecurityAgentRule.rb +0 -11
- data/examples/generated/v2/cloud-workload-security/DeleteCloudWorkloadSecurityAgentRule.rb +0 -10
- data/examples/generated/v2/cloud-workload-security/DownloadCloudWorkloadPolicyFile.rb +0 -10
- data/examples/generated/v2/cloud-workload-security/GetCloudWorkloadSecurityAgentRule.rb +0 -11
- data/examples/generated/v2/cloud-workload-security/ListCloudWorkloadSecurityAgentRules.rb +0 -10
- data/examples/generated/v2/cloud-workload-security/UpdateCloudWorkloadSecurityAgentRule.rb +0 -12
- data/examples/generated/v2/dashboard-lists/CreateDashboardListItems.rb +0 -12
- data/examples/generated/v2/dashboard-lists/DeleteDashboardListItems.rb +0 -12
- data/examples/generated/v2/dashboard-lists/GetDashboardListItems.rb +0 -11
- data/examples/generated/v2/dashboard-lists/UpdateDashboardListItems.rb +0 -12
- data/examples/generated/v2/incident-services/CreateIncidentService.rb +0 -16
- data/examples/generated/v2/incident-services/DeleteIncidentService.rb +0 -15
- data/examples/generated/v2/incident-services/GetIncidentService.rb +0 -19
- data/examples/generated/v2/incident-services/ListIncidentServices.rb +0 -21
- data/examples/generated/v2/incident-services/UpdateIncidentService.rb +0 -17
- data/examples/generated/v2/incident-teams/CreateIncidentTeam.rb +0 -16
- data/examples/generated/v2/incident-teams/DeleteIncidentTeam.rb +0 -15
- data/examples/generated/v2/incident-teams/GetIncidentTeam.rb +0 -19
- data/examples/generated/v2/incident-teams/ListIncidentTeams.rb +0 -21
- data/examples/generated/v2/incident-teams/UpdateIncidentTeam.rb +0 -17
- data/examples/generated/v2/incidents/CreateIncident.rb +0 -16
- data/examples/generated/v2/incidents/DeleteIncident.rb +0 -15
- data/examples/generated/v2/incidents/GetIncident.rb +0 -19
- data/examples/generated/v2/incidents/ListIncidents.rb +0 -20
- data/examples/generated/v2/incidents/UpdateIncident.rb +0 -17
- data/examples/generated/v2/key-management/CreateApiKey.rb +0 -11
- data/examples/generated/v2/key-management/CreateCurrentUserApplicationKey.rb +0 -11
- data/examples/generated/v2/key-management/DeleteApiKey.rb +0 -10
- data/examples/generated/v2/key-management/DeleteApplicationKey.rb +0 -10
- data/examples/generated/v2/key-management/DeleteCurrentUserApplicationKey.rb +0 -10
- data/examples/generated/v2/key-management/GetApiKey.rb +0 -14
- data/examples/generated/v2/key-management/GetApplicationKey.rb +0 -14
- data/examples/generated/v2/key-management/GetCurrentUserApplicationKey.rb +0 -11
- data/examples/generated/v2/key-management/ListApiKeys.rb +0 -21
- data/examples/generated/v2/key-management/ListApplicationKeys.rb +0 -18
- data/examples/generated/v2/key-management/ListCurrentUserApplicationKeys.rb +0 -18
- data/examples/generated/v2/key-management/UpdateApiKey.rb +0 -12
- data/examples/generated/v2/key-management/UpdateApplicationKey.rb +0 -12
- data/examples/generated/v2/key-management/UpdateCurrentUserApplicationKey.rb +0 -12
- data/examples/generated/v2/logs/AggregateLogs.rb +0 -11
- data/examples/generated/v2/logs/ListLogs.rb +0 -13
- data/examples/generated/v2/logs/ListLogsGet.rb +0 -19
- data/examples/generated/v2/logs/SubmitLog.rb +0 -15
- data/examples/generated/v2/logs-archives/AddReadRoleToArchive.rb +0 -11
- data/examples/generated/v2/logs-archives/CreateLogsArchive.rb +0 -11
- data/examples/generated/v2/logs-archives/DeleteLogsArchive.rb +0 -10
- data/examples/generated/v2/logs-archives/GetLogsArchive.rb +0 -11
- data/examples/generated/v2/logs-archives/GetLogsArchiveOrder.rb +0 -10
- data/examples/generated/v2/logs-archives/ListArchiveReadRoles.rb +0 -11
- data/examples/generated/v2/logs-archives/ListLogsArchives.rb +0 -10
- data/examples/generated/v2/logs-archives/RemoveRoleFromArchive.rb +0 -11
- data/examples/generated/v2/logs-archives/UpdateLogsArchive.rb +0 -12
- data/examples/generated/v2/logs-archives/UpdateLogsArchiveOrder.rb +0 -11
- data/examples/generated/v2/logs-metrics/CreateLogsMetric.rb +0 -11
- data/examples/generated/v2/logs-metrics/DeleteLogsMetric.rb +0 -10
- data/examples/generated/v2/logs-metrics/GetLogsMetric.rb +0 -11
- data/examples/generated/v2/logs-metrics/ListLogsMetrics.rb +0 -10
- data/examples/generated/v2/logs-metrics/UpdateLogsMetric.rb +0 -12
- data/examples/generated/v2/metrics/CreateBulkTagsMetricsConfiguration.rb +0 -11
- data/examples/generated/v2/metrics/CreateTagConfiguration.rb +0 -17
- data/examples/generated/v2/metrics/DeleteBulkTagsMetricsConfiguration.rb +0 -11
- data/examples/generated/v2/metrics/DeleteTagConfiguration.rb +0 -15
- data/examples/generated/v2/metrics/ListTagConfigurationByName.rb +0 -16
- data/examples/generated/v2/metrics/ListTagConfigurations.rb +0 -23
- data/examples/generated/v2/metrics/ListTagsByMetricName.rb +0 -11
- data/examples/generated/v2/metrics/ListVolumesByMetricName.rb +0 -11
- data/examples/generated/v2/metrics/UpdateTagConfiguration.rb +0 -17
- data/examples/generated/v2/processes/ListProcesses.rb +0 -18
- data/examples/generated/v2/roles/AddPermissionToRole.rb +0 -12
- data/examples/generated/v2/roles/AddUserToRole.rb +0 -12
- data/examples/generated/v2/roles/CloneRole.rb +0 -12
- data/examples/generated/v2/roles/CreateRole.rb +0 -11
- data/examples/generated/v2/roles/DeleteRole.rb +0 -10
- data/examples/generated/v2/roles/GetRole.rb +0 -11
- data/examples/generated/v2/roles/ListPermissions.rb +0 -10
- data/examples/generated/v2/roles/ListRolePermissions.rb +0 -11
- data/examples/generated/v2/roles/ListRoleUsers.rb +0 -17
- data/examples/generated/v2/roles/ListRoles.rb +0 -16
- data/examples/generated/v2/roles/RemovePermissionFromRole.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/security-monitoring/CreateSecurityFilter.rb +0 -11
- data/examples/generated/v2/security-monitoring/CreateSecurityMonitoringRule.rb +0 -11
- data/examples/generated/v2/security-monitoring/DeleteSecurityFilter.rb +0 -10
- data/examples/generated/v2/security-monitoring/DeleteSecurityMonitoringRule.rb +0 -10
- data/examples/generated/v2/security-monitoring/GetSecurityFilter.rb +0 -11
- data/examples/generated/v2/security-monitoring/GetSecurityMonitoringRule.rb +0 -11
- data/examples/generated/v2/security-monitoring/ListSecurityFilters.rb +0 -10
- data/examples/generated/v2/security-monitoring/ListSecurityMonitoringRules.rb +0 -14
- data/examples/generated/v2/security-monitoring/ListSecurityMonitoringSignals.rb +0 -23
- data/examples/generated/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +0 -18
- data/examples/generated/v2/security-monitoring/UpdateSecurityFilter.rb +0 -12
- data/examples/generated/v2/security-monitoring/UpdateSecurityMonitoringRule.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/CreateServiceAccount.rb +0 -11
- data/examples/generated/v2/users/CreateUser.rb +0 -11
- 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/ListUsers.rb +0 -18
- 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
- data/lib/datadog_api_client/v1/models/usage_io_t_hour.rb +0 -280
- data/lib/datadog_api_client/v2/models/auth_n_mapping.rb +0 -301
- data/lib/datadog_api_client/v2/models/auth_n_mapping_attributes.rb +0 -305
- data/lib/datadog_api_client/v2/models/auth_n_mapping_create_attributes.rb +0 -260
- data/lib/datadog_api_client/v2/models/auth_n_mapping_create_data.rb +0 -274
- data/lib/datadog_api_client/v2/models/auth_n_mapping_create_relationships.rb +0 -249
- data/lib/datadog_api_client/v2/models/auth_n_mapping_create_request.rb +0 -254
- data/lib/datadog_api_client/v2/models/auth_n_mapping_included.rb +0 -118
- data/lib/datadog_api_client/v2/models/auth_n_mapping_relationships.rb +0 -258
- data/lib/datadog_api_client/v2/models/auth_n_mapping_response.rb +0 -249
- data/lib/datadog_api_client/v2/models/auth_n_mapping_update_attributes.rb +0 -260
- data/lib/datadog_api_client/v2/models/auth_n_mapping_update_data.rb +0 -289
- data/lib/datadog_api_client/v2/models/auth_n_mapping_update_relationships.rb +0 -249
- data/lib/datadog_api_client/v2/models/auth_n_mappings_type.rb +0 -41
|
@@ -255,7 +255,7 @@ components:
|
|
|
255
255
|
format: int64
|
|
256
256
|
type: integer
|
|
257
257
|
RoleID:
|
|
258
|
-
description: The
|
|
258
|
+
description: The unique identifier of the role.
|
|
259
259
|
in: path
|
|
260
260
|
name: role_id
|
|
261
261
|
required: true
|
|
@@ -624,6 +624,223 @@ components:
|
|
|
624
624
|
type: string
|
|
625
625
|
x-enum-varnames:
|
|
626
626
|
- APPLICATION_KEYS
|
|
627
|
+
AuditLogsEvent:
|
|
628
|
+
description: Object description of an Audit Logs event after it is processed
|
|
629
|
+
and stored by Datadog.
|
|
630
|
+
properties:
|
|
631
|
+
attributes:
|
|
632
|
+
$ref: '#/components/schemas/AuditLogsEventAttributes'
|
|
633
|
+
id:
|
|
634
|
+
description: Unique ID of the event.
|
|
635
|
+
example: AAAAAWgN8Xwgr1vKDQAAAABBV2dOOFh3ZzZobm1mWXJFYTR0OA
|
|
636
|
+
type: string
|
|
637
|
+
type:
|
|
638
|
+
$ref: '#/components/schemas/AuditLogsEventType'
|
|
639
|
+
type: object
|
|
640
|
+
AuditLogsEventAttributes:
|
|
641
|
+
description: JSON object containing all event attributes and their associated
|
|
642
|
+
values.
|
|
643
|
+
properties:
|
|
644
|
+
attributes:
|
|
645
|
+
additionalProperties: {}
|
|
646
|
+
description: JSON object of attributes from Audit Logs events.
|
|
647
|
+
example:
|
|
648
|
+
customAttribute: 123
|
|
649
|
+
duration: 2345
|
|
650
|
+
type: object
|
|
651
|
+
service:
|
|
652
|
+
description: 'Name of the application or service generating Audit Logs events.
|
|
653
|
+
|
|
654
|
+
This name is used to correlate Audit Logs to APM, so make sure you specify
|
|
655
|
+
the same
|
|
656
|
+
|
|
657
|
+
value when you use both products.'
|
|
658
|
+
example: web-app
|
|
659
|
+
type: string
|
|
660
|
+
tags:
|
|
661
|
+
description: Array of tags associated with your event.
|
|
662
|
+
example:
|
|
663
|
+
- team:A
|
|
664
|
+
items:
|
|
665
|
+
description: Tag associated with your event.
|
|
666
|
+
type: string
|
|
667
|
+
type: array
|
|
668
|
+
timestamp:
|
|
669
|
+
description: Timestamp of your event.
|
|
670
|
+
example: '2019-01-02T09:42:36.320Z'
|
|
671
|
+
format: date-time
|
|
672
|
+
type: string
|
|
673
|
+
type: object
|
|
674
|
+
AuditLogsEventType:
|
|
675
|
+
default: audit
|
|
676
|
+
description: Type of the event.
|
|
677
|
+
enum:
|
|
678
|
+
- audit
|
|
679
|
+
example: audit
|
|
680
|
+
type: string
|
|
681
|
+
x-enum-varnames:
|
|
682
|
+
- Audit
|
|
683
|
+
AuditLogsEventsResponse:
|
|
684
|
+
description: Response object with all events matching the request and pagination
|
|
685
|
+
information.
|
|
686
|
+
properties:
|
|
687
|
+
data:
|
|
688
|
+
description: Array of events matching the request.
|
|
689
|
+
items:
|
|
690
|
+
$ref: '#/components/schemas/AuditLogsEvent'
|
|
691
|
+
type: array
|
|
692
|
+
links:
|
|
693
|
+
$ref: '#/components/schemas/AuditLogsResponseLinks'
|
|
694
|
+
meta:
|
|
695
|
+
$ref: '#/components/schemas/AuditLogsResponseMetadata'
|
|
696
|
+
type: object
|
|
697
|
+
AuditLogsQueryFilter:
|
|
698
|
+
description: Search and filter query settings.
|
|
699
|
+
properties:
|
|
700
|
+
from:
|
|
701
|
+
default: now-15m
|
|
702
|
+
description: Minimum time for the requested events. Supports date, math,
|
|
703
|
+
and regular timestamps (in milliseconds).
|
|
704
|
+
example: now-15m
|
|
705
|
+
type: string
|
|
706
|
+
query:
|
|
707
|
+
default: '*'
|
|
708
|
+
description: Search query following the Audit Logs search syntax.
|
|
709
|
+
example: '@type:session AND @session.type:user'
|
|
710
|
+
type: string
|
|
711
|
+
to:
|
|
712
|
+
default: now
|
|
713
|
+
description: Maximum time for the requested events. Supports date, math,
|
|
714
|
+
and regular timestamps (in milliseconds).
|
|
715
|
+
example: now
|
|
716
|
+
type: string
|
|
717
|
+
type: object
|
|
718
|
+
AuditLogsQueryOptions:
|
|
719
|
+
description: 'Global query options that are used during the query.
|
|
720
|
+
|
|
721
|
+
Note: Specify either timezone or time offset, not both. Otherwise, the query
|
|
722
|
+
fails.'
|
|
723
|
+
properties:
|
|
724
|
+
time_offset:
|
|
725
|
+
description: Time offset (in seconds) to apply to the query.
|
|
726
|
+
format: int64
|
|
727
|
+
type: integer
|
|
728
|
+
timezone:
|
|
729
|
+
default: UTC
|
|
730
|
+
description: 'Timezone code. Can be specified as an offset, for example:
|
|
731
|
+
"UTC+03:00".'
|
|
732
|
+
example: GMT
|
|
733
|
+
type: string
|
|
734
|
+
type: object
|
|
735
|
+
AuditLogsQueryPageOptions:
|
|
736
|
+
description: Paging attributes for listing events.
|
|
737
|
+
properties:
|
|
738
|
+
cursor:
|
|
739
|
+
description: List following results with a cursor provided in the previous
|
|
740
|
+
query.
|
|
741
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
742
|
+
type: string
|
|
743
|
+
limit:
|
|
744
|
+
default: 10
|
|
745
|
+
description: Maximum number of events in the response.
|
|
746
|
+
example: 25
|
|
747
|
+
format: int32
|
|
748
|
+
maximum: 1000
|
|
749
|
+
type: integer
|
|
750
|
+
type: object
|
|
751
|
+
AuditLogsResponseLinks:
|
|
752
|
+
description: Links attributes.
|
|
753
|
+
properties:
|
|
754
|
+
next:
|
|
755
|
+
description: 'Link for the next set of results. Note that the request can
|
|
756
|
+
also be made using the
|
|
757
|
+
|
|
758
|
+
POST endpoint.'
|
|
759
|
+
example: https://app.datadoghq.com/api/v2/audit/event?filter[query]=foo&page[cursor]=eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
760
|
+
type: string
|
|
761
|
+
type: object
|
|
762
|
+
AuditLogsResponseMetadata:
|
|
763
|
+
description: The metadata associated with a request.
|
|
764
|
+
properties:
|
|
765
|
+
elapsed:
|
|
766
|
+
description: Time elapsed in milliseconds.
|
|
767
|
+
example: 132
|
|
768
|
+
format: int64
|
|
769
|
+
type: integer
|
|
770
|
+
page:
|
|
771
|
+
$ref: '#/components/schemas/AuditLogsResponsePage'
|
|
772
|
+
request_id:
|
|
773
|
+
description: The identifier of the request.
|
|
774
|
+
example: MWlFUjVaWGZTTTZPYzM0VXp1OXU2d3xLSVpEMjZKQ0VKUTI0dEYtM3RSOFVR
|
|
775
|
+
type: string
|
|
776
|
+
status:
|
|
777
|
+
$ref: '#/components/schemas/AuditLogsResponseStatus'
|
|
778
|
+
warnings:
|
|
779
|
+
description: 'A list of warnings (non-fatal errors) encountered. Partial
|
|
780
|
+
results may return if
|
|
781
|
+
|
|
782
|
+
warnings are present in the response.'
|
|
783
|
+
items:
|
|
784
|
+
$ref: '#/components/schemas/AuditLogsWarning'
|
|
785
|
+
type: array
|
|
786
|
+
type: object
|
|
787
|
+
AuditLogsResponsePage:
|
|
788
|
+
description: Paging attributes.
|
|
789
|
+
properties:
|
|
790
|
+
after:
|
|
791
|
+
description: The cursor to use to get the next results, if any. To make
|
|
792
|
+
the next request, use the same parameters with the addition of `page[cursor]`.
|
|
793
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
794
|
+
type: string
|
|
795
|
+
type: object
|
|
796
|
+
AuditLogsResponseStatus:
|
|
797
|
+
description: The status of the response.
|
|
798
|
+
enum:
|
|
799
|
+
- done
|
|
800
|
+
- timeout
|
|
801
|
+
example: done
|
|
802
|
+
type: string
|
|
803
|
+
x-enum-varnames:
|
|
804
|
+
- DONE
|
|
805
|
+
- TIMEOUT
|
|
806
|
+
AuditLogsSearchEventsRequest:
|
|
807
|
+
description: The request for a Audit Logs events list.
|
|
808
|
+
properties:
|
|
809
|
+
filter:
|
|
810
|
+
$ref: '#/components/schemas/AuditLogsQueryFilter'
|
|
811
|
+
options:
|
|
812
|
+
$ref: '#/components/schemas/AuditLogsQueryOptions'
|
|
813
|
+
page:
|
|
814
|
+
$ref: '#/components/schemas/AuditLogsQueryPageOptions'
|
|
815
|
+
sort:
|
|
816
|
+
$ref: '#/components/schemas/AuditLogsSort'
|
|
817
|
+
type: object
|
|
818
|
+
AuditLogsSort:
|
|
819
|
+
description: Sort parameters when querying events.
|
|
820
|
+
enum:
|
|
821
|
+
- timestamp
|
|
822
|
+
- -timestamp
|
|
823
|
+
type: string
|
|
824
|
+
x-enum-varnames:
|
|
825
|
+
- TIMESTAMP_ASCENDING
|
|
826
|
+
- TIMESTAMP_DESCENDING
|
|
827
|
+
AuditLogsWarning:
|
|
828
|
+
description: Warning message indicating something that went wrong with the query.
|
|
829
|
+
properties:
|
|
830
|
+
code:
|
|
831
|
+
description: Unique code for this type of warning.
|
|
832
|
+
example: unknown_index
|
|
833
|
+
type: string
|
|
834
|
+
detail:
|
|
835
|
+
description: Detailed explanation of this specific warning.
|
|
836
|
+
example: 'indexes: foo, bar'
|
|
837
|
+
type: string
|
|
838
|
+
title:
|
|
839
|
+
description: Short human-readable summary of the warning.
|
|
840
|
+
example: One or several indexes are missing or invalid, results hold data
|
|
841
|
+
from the other indexes
|
|
842
|
+
type: string
|
|
843
|
+
type: object
|
|
627
844
|
AuthNMapping:
|
|
628
845
|
description: The AuthN Mapping object returned by API.
|
|
629
846
|
properties:
|
|
@@ -633,11 +850,6 @@ components:
|
|
|
633
850
|
description: ID of the AuthN Mapping.
|
|
634
851
|
example: 3653d3c6-0c75-11ea-ad28-fb5701eabc7d
|
|
635
852
|
type: string
|
|
636
|
-
included:
|
|
637
|
-
description: Included data in the AuthN Mapping response.
|
|
638
|
-
items:
|
|
639
|
-
$ref: '#/components/schemas/AuthNMappingIncluded'
|
|
640
|
-
type: array
|
|
641
853
|
relationships:
|
|
642
854
|
$ref: '#/components/schemas/AuthNMappingRelationships'
|
|
643
855
|
type:
|
|
@@ -671,10 +883,8 @@ components:
|
|
|
671
883
|
type: string
|
|
672
884
|
saml_assertion_attribute_id:
|
|
673
885
|
description: The ID of the SAML assertion attribute.
|
|
674
|
-
example: 0
|
|
675
|
-
|
|
676
|
-
maximum: 2147483647
|
|
677
|
-
type: integer
|
|
886
|
+
example: '0'
|
|
887
|
+
type: string
|
|
678
888
|
type: object
|
|
679
889
|
AuthNMappingCreateAttributes:
|
|
680
890
|
description: Key/Value pair of attributes used for create request.
|
|
@@ -736,6 +946,11 @@ components:
|
|
|
736
946
|
properties:
|
|
737
947
|
data:
|
|
738
948
|
$ref: '#/components/schemas/AuthNMapping'
|
|
949
|
+
included:
|
|
950
|
+
description: Included data in the AuthN Mapping response.
|
|
951
|
+
items:
|
|
952
|
+
$ref: '#/components/schemas/AuthNMappingIncluded'
|
|
953
|
+
type: array
|
|
739
954
|
type: object
|
|
740
955
|
AuthNMappingUpdateAttributes:
|
|
741
956
|
description: Key/Value pair of attributes used for update request.
|
|
@@ -790,6 +1005,11 @@ components:
|
|
|
790
1005
|
items:
|
|
791
1006
|
$ref: '#/components/schemas/AuthNMapping'
|
|
792
1007
|
type: array
|
|
1008
|
+
included:
|
|
1009
|
+
description: Included data in the AuthN Mapping response.
|
|
1010
|
+
items:
|
|
1011
|
+
$ref: '#/components/schemas/AuthNMappingIncluded'
|
|
1012
|
+
type: array
|
|
793
1013
|
meta:
|
|
794
1014
|
$ref: '#/components/schemas/ResponseMetaAttributes'
|
|
795
1015
|
type: object
|
|
@@ -831,6 +1051,23 @@ components:
|
|
|
831
1051
|
type: string
|
|
832
1052
|
x-enum-varnames:
|
|
833
1053
|
- AUTHN_MAPPINGS
|
|
1054
|
+
ChargebackBreakdown:
|
|
1055
|
+
description: Charges breakdown.
|
|
1056
|
+
properties:
|
|
1057
|
+
charge_type:
|
|
1058
|
+
description: The type of charge for a particular product.
|
|
1059
|
+
example: on_demand
|
|
1060
|
+
type: string
|
|
1061
|
+
cost:
|
|
1062
|
+
description: The cost for a particular product and charge type during a
|
|
1063
|
+
given month.
|
|
1064
|
+
format: double
|
|
1065
|
+
type: number
|
|
1066
|
+
product_name:
|
|
1067
|
+
description: The product for which cost is being reported.
|
|
1068
|
+
example: infra_host
|
|
1069
|
+
type: string
|
|
1070
|
+
type: object
|
|
834
1071
|
CloudWorkloadSecurityAgentRuleAttributes:
|
|
835
1072
|
description: A Cloud Workload Security Agent rule returned by the API.
|
|
836
1073
|
properties:
|
|
@@ -1025,6 +1262,58 @@ components:
|
|
|
1025
1262
|
x-enum-varnames:
|
|
1026
1263
|
- GZIP
|
|
1027
1264
|
- DEFLATE
|
|
1265
|
+
CostByOrg:
|
|
1266
|
+
description: Cost data.
|
|
1267
|
+
properties:
|
|
1268
|
+
attributes:
|
|
1269
|
+
$ref: '#/components/schemas/CostByOrgAttributes'
|
|
1270
|
+
id:
|
|
1271
|
+
description: Unique ID of the response.
|
|
1272
|
+
type: string
|
|
1273
|
+
type:
|
|
1274
|
+
$ref: '#/components/schemas/CostByOrgType'
|
|
1275
|
+
type: object
|
|
1276
|
+
CostByOrgAttributes:
|
|
1277
|
+
description: Cost attributes data.
|
|
1278
|
+
properties:
|
|
1279
|
+
charges:
|
|
1280
|
+
description: List of charges data reported for the requested month.
|
|
1281
|
+
items:
|
|
1282
|
+
$ref: '#/components/schemas/ChargebackBreakdown'
|
|
1283
|
+
type: array
|
|
1284
|
+
date:
|
|
1285
|
+
description: The month requested.
|
|
1286
|
+
format: date-time
|
|
1287
|
+
type: string
|
|
1288
|
+
org_name:
|
|
1289
|
+
description: The organization name.
|
|
1290
|
+
type: string
|
|
1291
|
+
public_id:
|
|
1292
|
+
description: The organization public ID.
|
|
1293
|
+
type: string
|
|
1294
|
+
total_cost:
|
|
1295
|
+
description: The total cost of products for the month.
|
|
1296
|
+
format: double
|
|
1297
|
+
type: number
|
|
1298
|
+
type: object
|
|
1299
|
+
CostByOrgResponse:
|
|
1300
|
+
description: Chargeback Summary response.
|
|
1301
|
+
properties:
|
|
1302
|
+
data:
|
|
1303
|
+
description: Response containing Chargeback Summary.
|
|
1304
|
+
items:
|
|
1305
|
+
$ref: '#/components/schemas/CostByOrg'
|
|
1306
|
+
type: array
|
|
1307
|
+
type: object
|
|
1308
|
+
CostByOrgType:
|
|
1309
|
+
default: cost_by_org
|
|
1310
|
+
description: Type of cost data.
|
|
1311
|
+
enum:
|
|
1312
|
+
- cost_by_org
|
|
1313
|
+
example: cost_by_org
|
|
1314
|
+
type: string
|
|
1315
|
+
x-enum-varnames:
|
|
1316
|
+
- COST_BY_ORG
|
|
1028
1317
|
Creator:
|
|
1029
1318
|
description: Creator of the object.
|
|
1030
1319
|
properties:
|
|
@@ -1334,6 +1623,9 @@ components:
|
|
|
1334
1623
|
type: array
|
|
1335
1624
|
type: object
|
|
1336
1625
|
HTTPLogItem:
|
|
1626
|
+
additionalProperties:
|
|
1627
|
+
description: Additional log attributes.
|
|
1628
|
+
type: string
|
|
1337
1629
|
description: Logs that are sent over HTTP.
|
|
1338
1630
|
properties:
|
|
1339
1631
|
ddsource:
|
|
@@ -1375,7 +1667,28 @@ components:
|
|
|
1375
1667
|
example: payment
|
|
1376
1668
|
type: string
|
|
1377
1669
|
required:
|
|
1378
|
-
-
|
|
1670
|
+
- message
|
|
1671
|
+
type: object
|
|
1672
|
+
HourlyUsageType:
|
|
1673
|
+
description: Usage type that is being measured.
|
|
1674
|
+
enum:
|
|
1675
|
+
- app_sec_host_count
|
|
1676
|
+
- observability_pipelines_bytes_processed
|
|
1677
|
+
- lambda_traced_invocations_count
|
|
1678
|
+
example: observability_pipelines_bytes_processed
|
|
1679
|
+
type: string
|
|
1680
|
+
x-enum-varnames:
|
|
1681
|
+
- APP_SEC_HOST_COUNT
|
|
1682
|
+
- OBSERVABILITY_PIPELINES_BYTES_PROCESSSED
|
|
1683
|
+
- LAMBDA_TRACED_INVOCATIONS_COUNT
|
|
1684
|
+
IdPMetadataFormData:
|
|
1685
|
+
description: The form data submitted to upload IdP metadata
|
|
1686
|
+
properties:
|
|
1687
|
+
idp_file:
|
|
1688
|
+
description: The IdP metadata XML file
|
|
1689
|
+
format: binary
|
|
1690
|
+
type: string
|
|
1691
|
+
x-mimetype: application/xml
|
|
1379
1692
|
type: object
|
|
1380
1693
|
IncidentCreateAttributes:
|
|
1381
1694
|
description: The incident's attributes for a create request.
|
|
@@ -1431,10 +1744,10 @@ components:
|
|
|
1431
1744
|
description: The relationships the incident will have with other resources once
|
|
1432
1745
|
created.
|
|
1433
1746
|
properties:
|
|
1434
|
-
|
|
1435
|
-
$ref: '#/components/schemas/
|
|
1747
|
+
commander_user:
|
|
1748
|
+
$ref: '#/components/schemas/NullableRelationshipToUser'
|
|
1436
1749
|
required:
|
|
1437
|
-
-
|
|
1750
|
+
- commander_user
|
|
1438
1751
|
type: object
|
|
1439
1752
|
IncidentCreateRequest:
|
|
1440
1753
|
description: Create request for an incident.
|
|
@@ -1718,7 +2031,7 @@ components:
|
|
|
1718
2031
|
description: The incident's relationships from a response.
|
|
1719
2032
|
properties:
|
|
1720
2033
|
commander_user:
|
|
1721
|
-
$ref: '#/components/schemas/
|
|
2034
|
+
$ref: '#/components/schemas/NullableRelationshipToUser'
|
|
1722
2035
|
created_by_user:
|
|
1723
2036
|
$ref: '#/components/schemas/RelationshipToUser'
|
|
1724
2037
|
integrations:
|
|
@@ -2065,14 +2378,7 @@ components:
|
|
|
2065
2378
|
cell_type:
|
|
2066
2379
|
$ref: '#/components/schemas/IncidentTimelineCellMarkdownContentType'
|
|
2067
2380
|
content:
|
|
2068
|
-
|
|
2069
|
-
properties:
|
|
2070
|
-
content:
|
|
2071
|
-
description: The Markdown content of the cell.
|
|
2072
|
-
example: An example timeline cell message.
|
|
2073
|
-
nullable: false
|
|
2074
|
-
type: string
|
|
2075
|
-
type: object
|
|
2381
|
+
$ref: '#/components/schemas/IncidentTimelineCellMarkdownCreateAttributesContent'
|
|
2076
2382
|
important:
|
|
2077
2383
|
default: false
|
|
2078
2384
|
description: A flag indicating whether the timeline cell is important and
|
|
@@ -2083,6 +2389,15 @@ components:
|
|
|
2083
2389
|
- content
|
|
2084
2390
|
- cell_type
|
|
2085
2391
|
type: object
|
|
2392
|
+
IncidentTimelineCellMarkdownCreateAttributesContent:
|
|
2393
|
+
description: The Markdown timeline cell contents.
|
|
2394
|
+
properties:
|
|
2395
|
+
content:
|
|
2396
|
+
description: The Markdown content of the cell.
|
|
2397
|
+
example: An example timeline cell message.
|
|
2398
|
+
nullable: false
|
|
2399
|
+
type: string
|
|
2400
|
+
type: object
|
|
2086
2401
|
IncidentType:
|
|
2087
2402
|
default: incidents
|
|
2088
2403
|
description: Incident resource type.
|
|
@@ -2165,13 +2480,9 @@ components:
|
|
|
2165
2480
|
description: The incident's relationships for an update request.
|
|
2166
2481
|
properties:
|
|
2167
2482
|
commander_user:
|
|
2168
|
-
$ref: '#/components/schemas/
|
|
2169
|
-
created_by_user:
|
|
2170
|
-
$ref: '#/components/schemas/RelationshipToUser'
|
|
2483
|
+
$ref: '#/components/schemas/NullableRelationshipToUser'
|
|
2171
2484
|
integrations:
|
|
2172
2485
|
$ref: '#/components/schemas/RelationshipToIncidentIntegrationMetadatas'
|
|
2173
|
-
last_modified_by_user:
|
|
2174
|
-
$ref: '#/components/schemas/RelationshipToUser'
|
|
2175
2486
|
postmortem:
|
|
2176
2487
|
$ref: '#/components/schemas/RelationshipToIncidentPostmortem'
|
|
2177
2488
|
type: object
|
|
@@ -2291,6 +2602,14 @@ components:
|
|
|
2291
2602
|
required:
|
|
2292
2603
|
- data
|
|
2293
2604
|
type: object
|
|
2605
|
+
IntakePayloadAccepted:
|
|
2606
|
+
description: The payload accepted for intake.
|
|
2607
|
+
properties:
|
|
2608
|
+
status:
|
|
2609
|
+
description: The status of the intake payload.
|
|
2610
|
+
example: ok
|
|
2611
|
+
type: string
|
|
2612
|
+
type: object
|
|
2294
2613
|
ListApplicationKeysResponse:
|
|
2295
2614
|
description: Response for a list of application keys.
|
|
2296
2615
|
properties:
|
|
@@ -2310,58 +2629,7 @@ components:
|
|
|
2310
2629
|
Datadog.
|
|
2311
2630
|
properties:
|
|
2312
2631
|
attributes:
|
|
2313
|
-
|
|
2314
|
-
values.
|
|
2315
|
-
properties:
|
|
2316
|
-
attributes:
|
|
2317
|
-
additionalProperties: {}
|
|
2318
|
-
description: JSON object of attributes from your log.
|
|
2319
|
-
example:
|
|
2320
|
-
customAttribute: 123
|
|
2321
|
-
duration: 2345
|
|
2322
|
-
type: object
|
|
2323
|
-
host:
|
|
2324
|
-
description: Name of the machine from where the logs are being sent.
|
|
2325
|
-
example: i-0123
|
|
2326
|
-
type: string
|
|
2327
|
-
message:
|
|
2328
|
-
description: 'The message [reserved attribute](https://docs.datadoghq.com/logs/log_collection/#reserved-attributes)
|
|
2329
|
-
|
|
2330
|
-
of your log. By default, Datadog ingests the value of the message
|
|
2331
|
-
attribute as the body of the log entry.
|
|
2332
|
-
|
|
2333
|
-
That value is then highlighted and displayed in the Logstream, where
|
|
2334
|
-
it is indexed for full text search.'
|
|
2335
|
-
example: Host connected to remote
|
|
2336
|
-
type: string
|
|
2337
|
-
service:
|
|
2338
|
-
description: 'The name of the application or service generating the
|
|
2339
|
-
log events.
|
|
2340
|
-
|
|
2341
|
-
It is used to switch from Logs to APM, so make sure you define the
|
|
2342
|
-
same
|
|
2343
|
-
|
|
2344
|
-
value when you use both products.'
|
|
2345
|
-
example: agent
|
|
2346
|
-
type: string
|
|
2347
|
-
status:
|
|
2348
|
-
description: Status of the message associated with your log.
|
|
2349
|
-
example: INFO
|
|
2350
|
-
type: string
|
|
2351
|
-
tags:
|
|
2352
|
-
description: Array of tags associated with your log.
|
|
2353
|
-
example:
|
|
2354
|
-
- team:A
|
|
2355
|
-
items:
|
|
2356
|
-
description: Tag associated with your log.
|
|
2357
|
-
type: string
|
|
2358
|
-
type: array
|
|
2359
|
-
timestamp:
|
|
2360
|
-
description: Timestamp of your log.
|
|
2361
|
-
example: '2019-01-02T09:42:36.320Z'
|
|
2362
|
-
format: date-time
|
|
2363
|
-
type: string
|
|
2364
|
-
type: object
|
|
2632
|
+
$ref: '#/components/schemas/LogAttributes'
|
|
2365
2633
|
id:
|
|
2366
2634
|
description: Unique ID of the Log.
|
|
2367
2635
|
example: AAAAAWgN8Xwgr1vKDQAAAABBV2dOOFh3ZzZobm1mWXJFYTR0OA
|
|
@@ -2369,6 +2637,58 @@ components:
|
|
|
2369
2637
|
type:
|
|
2370
2638
|
$ref: '#/components/schemas/LogType'
|
|
2371
2639
|
type: object
|
|
2640
|
+
LogAttributes:
|
|
2641
|
+
description: JSON object containing all log attributes and their associated
|
|
2642
|
+
values.
|
|
2643
|
+
properties:
|
|
2644
|
+
attributes:
|
|
2645
|
+
additionalProperties: {}
|
|
2646
|
+
description: JSON object of attributes from your log.
|
|
2647
|
+
example:
|
|
2648
|
+
customAttribute: 123
|
|
2649
|
+
duration: 2345
|
|
2650
|
+
type: object
|
|
2651
|
+
host:
|
|
2652
|
+
description: Name of the machine from where the logs are being sent.
|
|
2653
|
+
example: i-0123
|
|
2654
|
+
type: string
|
|
2655
|
+
message:
|
|
2656
|
+
description: 'The message [reserved attribute](https://docs.datadoghq.com/logs/log_collection/#reserved-attributes)
|
|
2657
|
+
|
|
2658
|
+
of your log. By default, Datadog ingests the value of the message attribute
|
|
2659
|
+
as the body of the log entry.
|
|
2660
|
+
|
|
2661
|
+
That value is then highlighted and displayed in the Logstream, where it
|
|
2662
|
+
is indexed for full text search.'
|
|
2663
|
+
example: Host connected to remote
|
|
2664
|
+
type: string
|
|
2665
|
+
service:
|
|
2666
|
+
description: 'The name of the application or service generating the log
|
|
2667
|
+
events.
|
|
2668
|
+
|
|
2669
|
+
It is used to switch from Logs to APM, so make sure you define the same
|
|
2670
|
+
|
|
2671
|
+
value when you use both products.'
|
|
2672
|
+
example: agent
|
|
2673
|
+
type: string
|
|
2674
|
+
status:
|
|
2675
|
+
description: Status of the message associated with your log.
|
|
2676
|
+
example: INFO
|
|
2677
|
+
type: string
|
|
2678
|
+
tags:
|
|
2679
|
+
description: Array of tags associated with your log.
|
|
2680
|
+
example:
|
|
2681
|
+
- team:A
|
|
2682
|
+
items:
|
|
2683
|
+
description: Tag associated with your log.
|
|
2684
|
+
type: string
|
|
2685
|
+
type: array
|
|
2686
|
+
timestamp:
|
|
2687
|
+
description: Timestamp of your log.
|
|
2688
|
+
example: '2019-01-02T09:42:36.320Z'
|
|
2689
|
+
format: date-time
|
|
2690
|
+
type: string
|
|
2691
|
+
type: object
|
|
2372
2692
|
LogType:
|
|
2373
2693
|
default: log
|
|
2374
2694
|
description: Type of the event.
|
|
@@ -2415,7 +2735,7 @@ components:
|
|
|
2415
2735
|
items:
|
|
2416
2736
|
$ref: '#/components/schemas/LogsAggregateBucketValueTimeseriesPoint'
|
|
2417
2737
|
type: array
|
|
2418
|
-
|
|
2738
|
+
x-generate-alias-as-model: true
|
|
2419
2739
|
LogsAggregateBucketValueTimeseriesPoint:
|
|
2420
2740
|
description: A timeseries point
|
|
2421
2741
|
properties:
|
|
@@ -2449,29 +2769,33 @@ components:
|
|
|
2449
2769
|
options:
|
|
2450
2770
|
$ref: '#/components/schemas/LogsQueryOptions'
|
|
2451
2771
|
page:
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2772
|
+
$ref: '#/components/schemas/LogsAggregateRequestPage'
|
|
2773
|
+
type: object
|
|
2774
|
+
LogsAggregateRequestPage:
|
|
2775
|
+
description: Paging settings
|
|
2776
|
+
properties:
|
|
2777
|
+
cursor:
|
|
2778
|
+
description: The returned paging point to use to get the next results
|
|
2779
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
2780
|
+
type: string
|
|
2459
2781
|
type: object
|
|
2460
2782
|
LogsAggregateResponse:
|
|
2461
2783
|
description: The response object for the logs aggregate API endpoint
|
|
2462
2784
|
properties:
|
|
2463
2785
|
data:
|
|
2464
|
-
|
|
2465
|
-
properties:
|
|
2466
|
-
buckets:
|
|
2467
|
-
description: The list of matching buckets, one item per bucket
|
|
2468
|
-
items:
|
|
2469
|
-
$ref: '#/components/schemas/LogsAggregateBucket'
|
|
2470
|
-
type: array
|
|
2471
|
-
type: object
|
|
2786
|
+
$ref: '#/components/schemas/LogsAggregateResponseData'
|
|
2472
2787
|
meta:
|
|
2473
2788
|
$ref: '#/components/schemas/LogsResponseMetadata'
|
|
2474
2789
|
type: object
|
|
2790
|
+
LogsAggregateResponseData:
|
|
2791
|
+
description: The query results
|
|
2792
|
+
properties:
|
|
2793
|
+
buckets:
|
|
2794
|
+
description: The list of matching buckets, one item per bucket
|
|
2795
|
+
items:
|
|
2796
|
+
$ref: '#/components/schemas/LogsAggregateBucket'
|
|
2797
|
+
type: array
|
|
2798
|
+
type: object
|
|
2475
2799
|
LogsAggregateResponseStatus:
|
|
2476
2800
|
description: The status of the response
|
|
2477
2801
|
enum:
|
|
@@ -2523,6 +2847,7 @@ components:
|
|
|
2523
2847
|
- min
|
|
2524
2848
|
- max
|
|
2525
2849
|
- avg
|
|
2850
|
+
- median
|
|
2526
2851
|
example: pc90
|
|
2527
2852
|
type: string
|
|
2528
2853
|
x-enum-varnames:
|
|
@@ -2537,6 +2862,7 @@ components:
|
|
|
2537
2862
|
- MIN
|
|
2538
2863
|
- MAX
|
|
2539
2864
|
- AVG
|
|
2865
|
+
- MEDIAN
|
|
2540
2866
|
LogsArchive:
|
|
2541
2867
|
description: The logs archive.
|
|
2542
2868
|
properties:
|
|
@@ -2565,7 +2891,13 @@ components:
|
|
|
2565
2891
|
in the archive.
|
|
2566
2892
|
example: source:nginx
|
|
2567
2893
|
type: string
|
|
2568
|
-
|
|
2894
|
+
rehydration_max_scan_size_in_gb:
|
|
2895
|
+
description: Maximum scan size for rehydration from this archive.
|
|
2896
|
+
example: 100
|
|
2897
|
+
format: int64
|
|
2898
|
+
nullable: true
|
|
2899
|
+
type: integer
|
|
2900
|
+
rehydration_tags:
|
|
2569
2901
|
description: An array of tags to add to rehydrated logs from an archive.
|
|
2570
2902
|
example:
|
|
2571
2903
|
- team:intake
|
|
@@ -2609,6 +2941,12 @@ components:
|
|
|
2609
2941
|
in the archive.
|
|
2610
2942
|
example: source:nginx
|
|
2611
2943
|
type: string
|
|
2944
|
+
rehydration_max_scan_size_in_gb:
|
|
2945
|
+
description: Maximum scan size for rehydration from this archive.
|
|
2946
|
+
example: 100
|
|
2947
|
+
format: int64
|
|
2948
|
+
nullable: true
|
|
2949
|
+
type: integer
|
|
2612
2950
|
rehydration_tags:
|
|
2613
2951
|
description: An array of tags to add to rehydrated logs from an archive.
|
|
2614
2952
|
example:
|
|
@@ -2919,36 +3257,7 @@ components:
|
|
|
2919
3257
|
example: host
|
|
2920
3258
|
type: string
|
|
2921
3259
|
histogram:
|
|
2922
|
-
|
|
2923
|
-
facets).
|
|
2924
|
-
|
|
2925
|
-
Note: At most 100 buckets are allowed, the number of buckets is (max -
|
|
2926
|
-
min)/interval.'
|
|
2927
|
-
properties:
|
|
2928
|
-
interval:
|
|
2929
|
-
description: The bin size of the histogram buckets
|
|
2930
|
-
example: 10
|
|
2931
|
-
format: double
|
|
2932
|
-
type: number
|
|
2933
|
-
max:
|
|
2934
|
-
description: 'The maximum value for the measure used in the histogram
|
|
2935
|
-
|
|
2936
|
-
(values greater than this one are filtered out)'
|
|
2937
|
-
example: 100
|
|
2938
|
-
format: double
|
|
2939
|
-
type: number
|
|
2940
|
-
min:
|
|
2941
|
-
description: 'The minimum value for the measure used in the histogram
|
|
2942
|
-
|
|
2943
|
-
(values smaller than this one are filtered out)'
|
|
2944
|
-
example: 50
|
|
2945
|
-
format: double
|
|
2946
|
-
type: number
|
|
2947
|
-
required:
|
|
2948
|
-
- interval
|
|
2949
|
-
- min
|
|
2950
|
-
- max
|
|
2951
|
-
type: object
|
|
3260
|
+
$ref: '#/components/schemas/LogsGroupByHistogram'
|
|
2952
3261
|
limit:
|
|
2953
3262
|
default: 10
|
|
2954
3263
|
description: The maximum buckets to return for this group by
|
|
@@ -2963,6 +3272,35 @@ components:
|
|
|
2963
3272
|
required:
|
|
2964
3273
|
- facet
|
|
2965
3274
|
type: object
|
|
3275
|
+
LogsGroupByHistogram:
|
|
3276
|
+
description: 'Used to perform a histogram computation (only for measure facets).
|
|
3277
|
+
|
|
3278
|
+
Note: At most 100 buckets are allowed, the number of buckets is (max - min)/interval.'
|
|
3279
|
+
properties:
|
|
3280
|
+
interval:
|
|
3281
|
+
description: The bin size of the histogram buckets
|
|
3282
|
+
example: 10
|
|
3283
|
+
format: double
|
|
3284
|
+
type: number
|
|
3285
|
+
max:
|
|
3286
|
+
description: 'The maximum value for the measure used in the histogram
|
|
3287
|
+
|
|
3288
|
+
(values greater than this one are filtered out)'
|
|
3289
|
+
example: 100
|
|
3290
|
+
format: double
|
|
3291
|
+
type: number
|
|
3292
|
+
min:
|
|
3293
|
+
description: 'The minimum value for the measure used in the histogram
|
|
3294
|
+
|
|
3295
|
+
(values smaller than this one are filtered out)'
|
|
3296
|
+
example: 50
|
|
3297
|
+
format: double
|
|
3298
|
+
type: number
|
|
3299
|
+
required:
|
|
3300
|
+
- interval
|
|
3301
|
+
- min
|
|
3302
|
+
- max
|
|
3303
|
+
type: object
|
|
2966
3304
|
LogsGroupByMissing:
|
|
2967
3305
|
description: The value to use for logs that don't have the facet used to group
|
|
2968
3306
|
by
|
|
@@ -3002,24 +3340,26 @@ components:
|
|
|
3002
3340
|
options:
|
|
3003
3341
|
$ref: '#/components/schemas/LogsQueryOptions'
|
|
3004
3342
|
page:
|
|
3005
|
-
|
|
3006
|
-
properties:
|
|
3007
|
-
cursor:
|
|
3008
|
-
description: List following results with a cursor provided in the previous
|
|
3009
|
-
query.
|
|
3010
|
-
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
3011
|
-
type: string
|
|
3012
|
-
limit:
|
|
3013
|
-
default: 10
|
|
3014
|
-
description: Maximum number of logs in the response.
|
|
3015
|
-
example: 25
|
|
3016
|
-
format: int32
|
|
3017
|
-
maximum: 1000
|
|
3018
|
-
type: integer
|
|
3019
|
-
type: object
|
|
3343
|
+
$ref: '#/components/schemas/LogsListRequestPage'
|
|
3020
3344
|
sort:
|
|
3021
3345
|
$ref: '#/components/schemas/LogsSort'
|
|
3022
3346
|
type: object
|
|
3347
|
+
LogsListRequestPage:
|
|
3348
|
+
description: Paging attributes for listing logs.
|
|
3349
|
+
properties:
|
|
3350
|
+
cursor:
|
|
3351
|
+
description: List following results with a cursor provided in the previous
|
|
3352
|
+
query.
|
|
3353
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
3354
|
+
type: string
|
|
3355
|
+
limit:
|
|
3356
|
+
default: 10
|
|
3357
|
+
description: Maximum number of logs in the response.
|
|
3358
|
+
example: 25
|
|
3359
|
+
format: int32
|
|
3360
|
+
maximum: 1000
|
|
3361
|
+
type: integer
|
|
3362
|
+
type: object
|
|
3023
3363
|
LogsListResponse:
|
|
3024
3364
|
description: Response object with all logs matching the request and pagination
|
|
3025
3365
|
information.
|
|
@@ -3030,19 +3370,21 @@ components:
|
|
|
3030
3370
|
$ref: '#/components/schemas/Log'
|
|
3031
3371
|
type: array
|
|
3032
3372
|
links:
|
|
3033
|
-
|
|
3034
|
-
properties:
|
|
3035
|
-
next:
|
|
3036
|
-
description: 'Link for the next set of results. Note that the request
|
|
3037
|
-
can also be made using the
|
|
3038
|
-
|
|
3039
|
-
POST endpoint.'
|
|
3040
|
-
example: https://app.datadoghq.com/api/v2/logs/event?filter[query]=foo&page[cursor]=eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
3041
|
-
type: string
|
|
3042
|
-
type: object
|
|
3373
|
+
$ref: '#/components/schemas/LogsListResponseLinks'
|
|
3043
3374
|
meta:
|
|
3044
3375
|
$ref: '#/components/schemas/LogsResponseMetadata'
|
|
3045
3376
|
type: object
|
|
3377
|
+
LogsListResponseLinks:
|
|
3378
|
+
description: Links attributes.
|
|
3379
|
+
properties:
|
|
3380
|
+
next:
|
|
3381
|
+
description: 'Link for the next set of results. Note that the request can
|
|
3382
|
+
also be made using the
|
|
3383
|
+
|
|
3384
|
+
POST endpoint.'
|
|
3385
|
+
example: https://app.datadoghq.com/api/v2/logs/event?filter[query]=foo&page[cursor]=eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
3386
|
+
type: string
|
|
3387
|
+
type: object
|
|
3046
3388
|
LogsMetricCompute:
|
|
3047
3389
|
description: The compute rule to compute the log-based metric.
|
|
3048
3390
|
properties:
|
|
@@ -3313,16 +3655,7 @@ components:
|
|
|
3313
3655
|
format: int64
|
|
3314
3656
|
type: integer
|
|
3315
3657
|
page:
|
|
3316
|
-
|
|
3317
|
-
properties:
|
|
3318
|
-
after:
|
|
3319
|
-
description: 'The cursor to use to get the next results, if any. To
|
|
3320
|
-
make the next request, use the same.
|
|
3321
|
-
|
|
3322
|
-
parameters with the addition of the `page[cursor]`.'
|
|
3323
|
-
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
3324
|
-
type: string
|
|
3325
|
-
type: object
|
|
3658
|
+
$ref: '#/components/schemas/LogsResponseMetadataPage'
|
|
3326
3659
|
request_id:
|
|
3327
3660
|
description: The identifier of the request
|
|
3328
3661
|
example: MWlFUjVaWGZTTTZPYzM0VXp1OXU2d3xLSVpEMjZKQ0VKUTI0dEYtM3RSOFVR
|
|
@@ -3338,6 +3671,17 @@ components:
|
|
|
3338
3671
|
$ref: '#/components/schemas/LogsWarning'
|
|
3339
3672
|
type: array
|
|
3340
3673
|
type: object
|
|
3674
|
+
LogsResponseMetadataPage:
|
|
3675
|
+
description: Paging attributes.
|
|
3676
|
+
properties:
|
|
3677
|
+
after:
|
|
3678
|
+
description: 'The cursor to use to get the next results, if any. To make
|
|
3679
|
+
the next request, use the same.
|
|
3680
|
+
|
|
3681
|
+
parameters with the addition of the `page[cursor]`.'
|
|
3682
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
3683
|
+
type: string
|
|
3684
|
+
type: object
|
|
3341
3685
|
LogsSort:
|
|
3342
3686
|
description: Sort parameters when querying logs.
|
|
3343
3687
|
enum:
|
|
@@ -3544,6 +3888,14 @@ components:
|
|
|
3544
3888
|
pattern: ^[A-Za-z][A-Za-z0-9\.\-\_:\/]*$
|
|
3545
3889
|
type: string
|
|
3546
3890
|
type: array
|
|
3891
|
+
MetricContentEncoding:
|
|
3892
|
+
default: deflate
|
|
3893
|
+
description: HTTP header used to compress the media-type.
|
|
3894
|
+
enum:
|
|
3895
|
+
- deflate
|
|
3896
|
+
type: string
|
|
3897
|
+
x-enum-varnames:
|
|
3898
|
+
- DEFLATE
|
|
3547
3899
|
MetricCustomAggregation:
|
|
3548
3900
|
description: A time and space aggregation combination for use in query.
|
|
3549
3901
|
example:
|
|
@@ -3657,6 +4009,63 @@ components:
|
|
|
3657
4009
|
type: string
|
|
3658
4010
|
x-enum-varnames:
|
|
3659
4011
|
- DISTINCT_METRIC_VOLUMES
|
|
4012
|
+
MetricEstimate:
|
|
4013
|
+
description: Object for a metric cardinality estimate.
|
|
4014
|
+
properties:
|
|
4015
|
+
attributes:
|
|
4016
|
+
$ref: '#/components/schemas/MetricEstimateAttributes'
|
|
4017
|
+
id:
|
|
4018
|
+
$ref: '#/components/schemas/MetricName'
|
|
4019
|
+
type:
|
|
4020
|
+
$ref: '#/components/schemas/MetricEstimateResourceType'
|
|
4021
|
+
type: object
|
|
4022
|
+
MetricEstimateAttributes:
|
|
4023
|
+
description: Object containing the definition of a metric estimate attribute.
|
|
4024
|
+
properties:
|
|
4025
|
+
estimate_type:
|
|
4026
|
+
$ref: '#/components/schemas/MetricEstimateType'
|
|
4027
|
+
estimated_at:
|
|
4028
|
+
description: Timestamp when the cardinality estimate was requested.
|
|
4029
|
+
example: '2022-04-27T09:48:37.463835Z'
|
|
4030
|
+
format: date-time
|
|
4031
|
+
type: string
|
|
4032
|
+
estimated_output_series:
|
|
4033
|
+
description: Estimated cardinality of the metric based on the queried configuration.
|
|
4034
|
+
example: 50
|
|
4035
|
+
format: int64
|
|
4036
|
+
type: integer
|
|
4037
|
+
type: object
|
|
4038
|
+
MetricEstimateResourceType:
|
|
4039
|
+
default: metric_cardinality_estimate
|
|
4040
|
+
description: The metric estimate resource type.
|
|
4041
|
+
enum:
|
|
4042
|
+
- metric_cardinality_estimate
|
|
4043
|
+
example: metric_cardinality_estimate
|
|
4044
|
+
type: string
|
|
4045
|
+
x-enum-varnames:
|
|
4046
|
+
- METRIC_CARDINALITY_ESTIMATE
|
|
4047
|
+
MetricEstimateResponse:
|
|
4048
|
+
description: Response object that includes metric cardinality estimates.
|
|
4049
|
+
properties:
|
|
4050
|
+
data:
|
|
4051
|
+
$ref: '#/components/schemas/MetricEstimate'
|
|
4052
|
+
type: object
|
|
4053
|
+
MetricEstimateType:
|
|
4054
|
+
default: count_or_gauge
|
|
4055
|
+
description: Estimate type based on the queried configuration. By default, `count_or_gauge`
|
|
4056
|
+
is returned. `distribution` is returned for distribution metrics without percentiles
|
|
4057
|
+
enabled. Lastly, `percentile` is returned if `filter[pct]=true` is queried
|
|
4058
|
+
with a distribution metric.
|
|
4059
|
+
enum:
|
|
4060
|
+
- count_or_gauge
|
|
4061
|
+
- distribution
|
|
4062
|
+
- percentile
|
|
4063
|
+
example: distribution
|
|
4064
|
+
type: string
|
|
4065
|
+
x-enum-varnames:
|
|
4066
|
+
- COUNT_OR_GAUGE
|
|
4067
|
+
- DISTRIBUTION
|
|
4068
|
+
- PERCENTILE
|
|
3660
4069
|
MetricIngestedIndexedVolume:
|
|
3661
4070
|
description: Object for a single metric's ingested and indexed volume.
|
|
3662
4071
|
properties:
|
|
@@ -3691,10 +4100,151 @@ components:
|
|
|
3691
4100
|
type: string
|
|
3692
4101
|
x-enum-varnames:
|
|
3693
4102
|
- METRIC_VOLUMES
|
|
4103
|
+
MetricIntakeType:
|
|
4104
|
+
description: The type of metric.
|
|
4105
|
+
enum:
|
|
4106
|
+
- 0
|
|
4107
|
+
- 1
|
|
4108
|
+
- 2
|
|
4109
|
+
- 3
|
|
4110
|
+
- 15
|
|
4111
|
+
format: int32
|
|
4112
|
+
type: integer
|
|
4113
|
+
x-enum-varnames:
|
|
4114
|
+
- UNSPECIFIED
|
|
4115
|
+
- COUNT
|
|
4116
|
+
- RATE
|
|
4117
|
+
- GAUGE
|
|
4118
|
+
- UNSPECIFIED_LEGACY
|
|
4119
|
+
MetricMetadata:
|
|
4120
|
+
description: Metadata for the metric.
|
|
4121
|
+
properties:
|
|
4122
|
+
origin:
|
|
4123
|
+
$ref: '#/components/schemas/MetricOrigin'
|
|
4124
|
+
type: object
|
|
3694
4125
|
MetricName:
|
|
3695
4126
|
description: The metric name for this resource.
|
|
3696
4127
|
example: test.metric.latency
|
|
3697
4128
|
type: string
|
|
4129
|
+
MetricOrigin:
|
|
4130
|
+
description: Metric origin information.
|
|
4131
|
+
properties:
|
|
4132
|
+
metric_type:
|
|
4133
|
+
default: 0
|
|
4134
|
+
description: The origin metric type code
|
|
4135
|
+
format: int32
|
|
4136
|
+
maximum: 1000
|
|
4137
|
+
type: integer
|
|
4138
|
+
product:
|
|
4139
|
+
default: 0
|
|
4140
|
+
description: The origin product code
|
|
4141
|
+
format: int32
|
|
4142
|
+
maximum: 1000
|
|
4143
|
+
type: integer
|
|
4144
|
+
service:
|
|
4145
|
+
default: 0
|
|
4146
|
+
description: The origin service code
|
|
4147
|
+
format: int32
|
|
4148
|
+
maximum: 1000
|
|
4149
|
+
type: integer
|
|
4150
|
+
type: object
|
|
4151
|
+
MetricPayload:
|
|
4152
|
+
description: The metrics' payload.
|
|
4153
|
+
properties:
|
|
4154
|
+
series:
|
|
4155
|
+
description: A list of time series to submit to Datadog.
|
|
4156
|
+
example:
|
|
4157
|
+
- metric: system.load.1
|
|
4158
|
+
points:
|
|
4159
|
+
- timestamp: 1475317847
|
|
4160
|
+
value: 0.7
|
|
4161
|
+
items:
|
|
4162
|
+
$ref: '#/components/schemas/MetricSeries'
|
|
4163
|
+
type: array
|
|
4164
|
+
required:
|
|
4165
|
+
- series
|
|
4166
|
+
type: object
|
|
4167
|
+
MetricPoint:
|
|
4168
|
+
description: A point object is of the form `{POSIX_timestamp, numeric_value}`.
|
|
4169
|
+
example:
|
|
4170
|
+
timestamp: 1575317847
|
|
4171
|
+
value: 0.5
|
|
4172
|
+
properties:
|
|
4173
|
+
timestamp:
|
|
4174
|
+
description: 'The timestamp should be in seconds and current.
|
|
4175
|
+
|
|
4176
|
+
Current is defined as not more than 10 minutes in the future or more than
|
|
4177
|
+
1 hour in the past.'
|
|
4178
|
+
format: int64
|
|
4179
|
+
type: integer
|
|
4180
|
+
value:
|
|
4181
|
+
description: The numeric value format should be a 64bit float gauge-type
|
|
4182
|
+
value.
|
|
4183
|
+
format: double
|
|
4184
|
+
type: number
|
|
4185
|
+
type: object
|
|
4186
|
+
MetricResource:
|
|
4187
|
+
description: Metric resource.
|
|
4188
|
+
properties:
|
|
4189
|
+
name:
|
|
4190
|
+
description: The name of the metric.
|
|
4191
|
+
type: string
|
|
4192
|
+
type:
|
|
4193
|
+
description: The type of metric.
|
|
4194
|
+
type: string
|
|
4195
|
+
type: object
|
|
4196
|
+
MetricSeries:
|
|
4197
|
+
description: 'A metric to submit to Datadog.
|
|
4198
|
+
|
|
4199
|
+
See [Datadog metrics](https://docs.datadoghq.com/developers/metrics/#custom-metrics-properties).'
|
|
4200
|
+
properties:
|
|
4201
|
+
interval:
|
|
4202
|
+
description: If the type of the metric is rate or count, define the corresponding
|
|
4203
|
+
interval.
|
|
4204
|
+
example: 20
|
|
4205
|
+
format: int64
|
|
4206
|
+
type: integer
|
|
4207
|
+
metadata:
|
|
4208
|
+
$ref: '#/components/schemas/MetricMetadata'
|
|
4209
|
+
metric:
|
|
4210
|
+
description: The name of the timeseries.
|
|
4211
|
+
example: system.load.1
|
|
4212
|
+
type: string
|
|
4213
|
+
points:
|
|
4214
|
+
description: Points relating to a metric. All points must be objects with
|
|
4215
|
+
timestamp and a scalar value (cannot be a string). Timestamps should be
|
|
4216
|
+
in POSIX time in seconds, and cannot be more than ten minutes in the future
|
|
4217
|
+
or more than one hour in the past.
|
|
4218
|
+
items:
|
|
4219
|
+
$ref: '#/components/schemas/MetricPoint'
|
|
4220
|
+
type: array
|
|
4221
|
+
resources:
|
|
4222
|
+
description: A list of resources to associate with this metric.
|
|
4223
|
+
items:
|
|
4224
|
+
$ref: '#/components/schemas/MetricResource'
|
|
4225
|
+
type: array
|
|
4226
|
+
source_type_name:
|
|
4227
|
+
description: The source type name.
|
|
4228
|
+
example: datadog
|
|
4229
|
+
type: string
|
|
4230
|
+
tags:
|
|
4231
|
+
description: A list of tags associated with the metric.
|
|
4232
|
+
example:
|
|
4233
|
+
- environment:test
|
|
4234
|
+
items:
|
|
4235
|
+
description: Individual tags.
|
|
4236
|
+
type: string
|
|
4237
|
+
type: array
|
|
4238
|
+
type:
|
|
4239
|
+
$ref: '#/components/schemas/MetricIntakeType'
|
|
4240
|
+
unit:
|
|
4241
|
+
description: The unit of point value.
|
|
4242
|
+
example: second
|
|
4243
|
+
type: string
|
|
4244
|
+
required:
|
|
4245
|
+
- metric
|
|
4246
|
+
- points
|
|
4247
|
+
type: object
|
|
3698
4248
|
MetricTagConfiguration:
|
|
3699
4249
|
description: Object for a single metric tag configuration.
|
|
3700
4250
|
example:
|
|
@@ -3938,6 +4488,28 @@ components:
|
|
|
3938
4488
|
type: array
|
|
3939
4489
|
readOnly: true
|
|
3940
4490
|
type: object
|
|
4491
|
+
NullableRelationshipToUser:
|
|
4492
|
+
description: Relationship to user.
|
|
4493
|
+
properties:
|
|
4494
|
+
data:
|
|
4495
|
+
$ref: '#/components/schemas/NullableRelationshipToUserData'
|
|
4496
|
+
required:
|
|
4497
|
+
- data
|
|
4498
|
+
type: object
|
|
4499
|
+
NullableRelationshipToUserData:
|
|
4500
|
+
description: Relationship to user object.
|
|
4501
|
+
nullable: true
|
|
4502
|
+
properties:
|
|
4503
|
+
id:
|
|
4504
|
+
description: A unique identifier that represents the user.
|
|
4505
|
+
example: 00000000-0000-0000-0000-000000000000
|
|
4506
|
+
type: string
|
|
4507
|
+
type:
|
|
4508
|
+
$ref: '#/components/schemas/UsersType'
|
|
4509
|
+
required:
|
|
4510
|
+
- id
|
|
4511
|
+
- type
|
|
4512
|
+
type: object
|
|
3941
4513
|
Organization:
|
|
3942
4514
|
description: Organization object.
|
|
3943
4515
|
properties:
|
|
@@ -4160,22 +4732,24 @@ components:
|
|
|
4160
4732
|
description: Response metadata object.
|
|
4161
4733
|
properties:
|
|
4162
4734
|
page:
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4735
|
+
$ref: '#/components/schemas/ProcessSummariesMetaPage'
|
|
4736
|
+
type: object
|
|
4737
|
+
ProcessSummariesMetaPage:
|
|
4738
|
+
description: Paging attributes.
|
|
4739
|
+
properties:
|
|
4740
|
+
after:
|
|
4741
|
+
description: 'The cursor used to get the next results, if any. To make the
|
|
4742
|
+
next request, use the same
|
|
4743
|
+
|
|
4744
|
+
parameters with the addition of the `page[cursor]`.'
|
|
4745
|
+
example: 911abf1204838d9cdfcb9a96d0b6a1bd03e1b514074f1ce1737c4cbd
|
|
4746
|
+
type: string
|
|
4747
|
+
size:
|
|
4748
|
+
description: Number of results returned.
|
|
4749
|
+
format: int32
|
|
4750
|
+
maximum: 10000
|
|
4751
|
+
minimum: 0
|
|
4752
|
+
type: integer
|
|
4179
4753
|
type: object
|
|
4180
4754
|
ProcessSummariesResponse:
|
|
4181
4755
|
description: List of process summaries.
|
|
@@ -4251,6 +4825,496 @@ components:
|
|
|
4251
4825
|
x-enum-varnames:
|
|
4252
4826
|
- ASC
|
|
4253
4827
|
- DESC
|
|
4828
|
+
RUMAggregateBucketValue:
|
|
4829
|
+
description: A bucket value, can be either a timeseries or a single value.
|
|
4830
|
+
oneOf:
|
|
4831
|
+
- $ref: '#/components/schemas/RUMAggregateBucketValueSingleString'
|
|
4832
|
+
- $ref: '#/components/schemas/RUMAggregateBucketValueSingleNumber'
|
|
4833
|
+
- $ref: '#/components/schemas/RUMAggregateBucketValueTimeseries'
|
|
4834
|
+
RUMAggregateBucketValueSingleNumber:
|
|
4835
|
+
description: A single number value.
|
|
4836
|
+
format: double
|
|
4837
|
+
type: number
|
|
4838
|
+
RUMAggregateBucketValueSingleString:
|
|
4839
|
+
description: A single string value.
|
|
4840
|
+
type: string
|
|
4841
|
+
RUMAggregateBucketValueTimeseries:
|
|
4842
|
+
description: A timeseries array.
|
|
4843
|
+
items:
|
|
4844
|
+
$ref: '#/components/schemas/RUMAggregateBucketValueTimeseriesPoint'
|
|
4845
|
+
type: array
|
|
4846
|
+
x-generate-alias-as-model: true
|
|
4847
|
+
RUMAggregateBucketValueTimeseriesPoint:
|
|
4848
|
+
description: A timeseries point.
|
|
4849
|
+
properties:
|
|
4850
|
+
time:
|
|
4851
|
+
description: The time value for this point.
|
|
4852
|
+
example: '2020-06-08T11:55:00.123Z'
|
|
4853
|
+
format: date-time
|
|
4854
|
+
type: string
|
|
4855
|
+
value:
|
|
4856
|
+
description: The value for this point.
|
|
4857
|
+
example: 19
|
|
4858
|
+
format: double
|
|
4859
|
+
type: number
|
|
4860
|
+
type: object
|
|
4861
|
+
RUMAggregateRequest:
|
|
4862
|
+
description: The object sent with the request to retrieve aggregation buckets
|
|
4863
|
+
of RUM events from your organization.
|
|
4864
|
+
properties:
|
|
4865
|
+
compute:
|
|
4866
|
+
description: The list of metrics or timeseries to compute for the retrieved
|
|
4867
|
+
buckets.
|
|
4868
|
+
items:
|
|
4869
|
+
$ref: '#/components/schemas/RUMCompute'
|
|
4870
|
+
type: array
|
|
4871
|
+
filter:
|
|
4872
|
+
$ref: '#/components/schemas/RUMQueryFilter'
|
|
4873
|
+
group_by:
|
|
4874
|
+
description: The rules for the group by.
|
|
4875
|
+
items:
|
|
4876
|
+
$ref: '#/components/schemas/RUMGroupBy'
|
|
4877
|
+
type: array
|
|
4878
|
+
options:
|
|
4879
|
+
$ref: '#/components/schemas/RUMQueryOptions'
|
|
4880
|
+
page:
|
|
4881
|
+
$ref: '#/components/schemas/RUMQueryPageOptions'
|
|
4882
|
+
type: object
|
|
4883
|
+
RUMAggregateSort:
|
|
4884
|
+
description: A sort rule.
|
|
4885
|
+
example:
|
|
4886
|
+
aggregation: count
|
|
4887
|
+
order: asc
|
|
4888
|
+
properties:
|
|
4889
|
+
aggregation:
|
|
4890
|
+
$ref: '#/components/schemas/RUMAggregationFunction'
|
|
4891
|
+
metric:
|
|
4892
|
+
description: The metric to sort by (only used for `type=measure`).
|
|
4893
|
+
example: '@duration'
|
|
4894
|
+
type: string
|
|
4895
|
+
order:
|
|
4896
|
+
$ref: '#/components/schemas/RUMSortOrder'
|
|
4897
|
+
type:
|
|
4898
|
+
$ref: '#/components/schemas/RUMAggregateSortType'
|
|
4899
|
+
type: object
|
|
4900
|
+
RUMAggregateSortType:
|
|
4901
|
+
default: alphabetical
|
|
4902
|
+
description: The type of sorting algorithm.
|
|
4903
|
+
enum:
|
|
4904
|
+
- alphabetical
|
|
4905
|
+
- measure
|
|
4906
|
+
type: string
|
|
4907
|
+
x-enum-varnames:
|
|
4908
|
+
- ALPHABETICAL
|
|
4909
|
+
- MEASURE
|
|
4910
|
+
RUMAggregationBucketsResponse:
|
|
4911
|
+
description: The query results.
|
|
4912
|
+
properties:
|
|
4913
|
+
buckets:
|
|
4914
|
+
description: The list of matching buckets, one item per bucket.
|
|
4915
|
+
items:
|
|
4916
|
+
$ref: '#/components/schemas/RUMBucketResponse'
|
|
4917
|
+
type: array
|
|
4918
|
+
type: object
|
|
4919
|
+
RUMAggregationFunction:
|
|
4920
|
+
description: An aggregation function.
|
|
4921
|
+
enum:
|
|
4922
|
+
- count
|
|
4923
|
+
- cardinality
|
|
4924
|
+
- pc75
|
|
4925
|
+
- pc90
|
|
4926
|
+
- pc95
|
|
4927
|
+
- pc98
|
|
4928
|
+
- pc99
|
|
4929
|
+
- sum
|
|
4930
|
+
- min
|
|
4931
|
+
- max
|
|
4932
|
+
- avg
|
|
4933
|
+
- median
|
|
4934
|
+
example: pc90
|
|
4935
|
+
type: string
|
|
4936
|
+
x-enum-varnames:
|
|
4937
|
+
- COUNT
|
|
4938
|
+
- CARDINALITY
|
|
4939
|
+
- PERCENTILE_75
|
|
4940
|
+
- PERCENTILE_90
|
|
4941
|
+
- PERCENTILE_95
|
|
4942
|
+
- PERCENTILE_98
|
|
4943
|
+
- PERCENTILE_99
|
|
4944
|
+
- SUM
|
|
4945
|
+
- MIN
|
|
4946
|
+
- MAX
|
|
4947
|
+
- AVG
|
|
4948
|
+
- MEDIAN
|
|
4949
|
+
RUMAnalyticsAggregateResponse:
|
|
4950
|
+
description: The response object for the RUM events aggregate API endpoint.
|
|
4951
|
+
properties:
|
|
4952
|
+
data:
|
|
4953
|
+
$ref: '#/components/schemas/RUMAggregationBucketsResponse'
|
|
4954
|
+
links:
|
|
4955
|
+
$ref: '#/components/schemas/RUMResponseLinks'
|
|
4956
|
+
meta:
|
|
4957
|
+
$ref: '#/components/schemas/RUMResponseMetadata'
|
|
4958
|
+
type: object
|
|
4959
|
+
RUMBucketResponse:
|
|
4960
|
+
description: Bucket values.
|
|
4961
|
+
properties:
|
|
4962
|
+
by:
|
|
4963
|
+
additionalProperties:
|
|
4964
|
+
description: The values for each group-by.
|
|
4965
|
+
type: string
|
|
4966
|
+
description: The key-value pairs for each group-by.
|
|
4967
|
+
example:
|
|
4968
|
+
'@session.type': user
|
|
4969
|
+
'@type': view
|
|
4970
|
+
type: object
|
|
4971
|
+
computes:
|
|
4972
|
+
additionalProperties:
|
|
4973
|
+
$ref: '#/components/schemas/RUMAggregateBucketValue'
|
|
4974
|
+
description: A map of the metric name to value for regular compute, or a
|
|
4975
|
+
list of values for a timeseries.
|
|
4976
|
+
type: object
|
|
4977
|
+
type: object
|
|
4978
|
+
RUMCompute:
|
|
4979
|
+
description: A compute rule to compute metrics or timeseries.
|
|
4980
|
+
properties:
|
|
4981
|
+
aggregation:
|
|
4982
|
+
$ref: '#/components/schemas/RUMAggregationFunction'
|
|
4983
|
+
interval:
|
|
4984
|
+
description: 'The time buckets'' size (only used for type=timeseries)
|
|
4985
|
+
|
|
4986
|
+
Defaults to a resolution of 150 points.'
|
|
4987
|
+
example: 5m
|
|
4988
|
+
type: string
|
|
4989
|
+
metric:
|
|
4990
|
+
description: The metric to use.
|
|
4991
|
+
example: '@duration'
|
|
4992
|
+
type: string
|
|
4993
|
+
type:
|
|
4994
|
+
$ref: '#/components/schemas/RUMComputeType'
|
|
4995
|
+
required:
|
|
4996
|
+
- aggregation
|
|
4997
|
+
type: object
|
|
4998
|
+
RUMComputeType:
|
|
4999
|
+
default: total
|
|
5000
|
+
description: The type of compute.
|
|
5001
|
+
enum:
|
|
5002
|
+
- timeseries
|
|
5003
|
+
- total
|
|
5004
|
+
type: string
|
|
5005
|
+
x-enum-varnames:
|
|
5006
|
+
- TIMESERIES
|
|
5007
|
+
- TOTAL
|
|
5008
|
+
RUMEvent:
|
|
5009
|
+
description: Object description of a RUM event after being processed and stored
|
|
5010
|
+
by Datadog.
|
|
5011
|
+
properties:
|
|
5012
|
+
attributes:
|
|
5013
|
+
$ref: '#/components/schemas/RUMEventAttributes'
|
|
5014
|
+
id:
|
|
5015
|
+
description: Unique ID of the event.
|
|
5016
|
+
example: AAAAAWgN8Xwgr1vKDQAAAABBV2dOOFh3ZzZobm1mWXJFYTR0OA
|
|
5017
|
+
type: string
|
|
5018
|
+
type:
|
|
5019
|
+
$ref: '#/components/schemas/RUMEventType'
|
|
5020
|
+
type: object
|
|
5021
|
+
RUMEventAttributes:
|
|
5022
|
+
description: JSON object containing all event attributes and their associated
|
|
5023
|
+
values.
|
|
5024
|
+
properties:
|
|
5025
|
+
attributes:
|
|
5026
|
+
additionalProperties: {}
|
|
5027
|
+
description: JSON object of attributes from RUM events.
|
|
5028
|
+
example:
|
|
5029
|
+
customAttribute: 123
|
|
5030
|
+
duration: 2345
|
|
5031
|
+
type: object
|
|
5032
|
+
service:
|
|
5033
|
+
description: 'The name of the application or service generating RUM events.
|
|
5034
|
+
|
|
5035
|
+
It is used to switch from RUM to APM, so make sure you define the same
|
|
5036
|
+
|
|
5037
|
+
value when you use both products.'
|
|
5038
|
+
example: web-app
|
|
5039
|
+
type: string
|
|
5040
|
+
tags:
|
|
5041
|
+
description: Array of tags associated with your event.
|
|
5042
|
+
example:
|
|
5043
|
+
- team:A
|
|
5044
|
+
items:
|
|
5045
|
+
description: Tag associated with your event.
|
|
5046
|
+
type: string
|
|
5047
|
+
type: array
|
|
5048
|
+
timestamp:
|
|
5049
|
+
description: Timestamp of your event.
|
|
5050
|
+
example: '2019-01-02T09:42:36.320Z'
|
|
5051
|
+
format: date-time
|
|
5052
|
+
type: string
|
|
5053
|
+
type: object
|
|
5054
|
+
RUMEventType:
|
|
5055
|
+
default: rum
|
|
5056
|
+
description: Type of the event.
|
|
5057
|
+
enum:
|
|
5058
|
+
- rum
|
|
5059
|
+
example: rum
|
|
5060
|
+
type: string
|
|
5061
|
+
x-enum-varnames:
|
|
5062
|
+
- RUM
|
|
5063
|
+
RUMEventsResponse:
|
|
5064
|
+
description: Response object with all events matching the request and pagination
|
|
5065
|
+
information.
|
|
5066
|
+
properties:
|
|
5067
|
+
data:
|
|
5068
|
+
description: Array of events matching the request.
|
|
5069
|
+
items:
|
|
5070
|
+
$ref: '#/components/schemas/RUMEvent'
|
|
5071
|
+
type: array
|
|
5072
|
+
links:
|
|
5073
|
+
$ref: '#/components/schemas/RUMResponseLinks'
|
|
5074
|
+
meta:
|
|
5075
|
+
$ref: '#/components/schemas/RUMResponseMetadata'
|
|
5076
|
+
type: object
|
|
5077
|
+
RUMGroupBy:
|
|
5078
|
+
description: A group-by rule.
|
|
5079
|
+
properties:
|
|
5080
|
+
facet:
|
|
5081
|
+
description: The name of the facet to use (required).
|
|
5082
|
+
example: '@view.time_spent'
|
|
5083
|
+
type: string
|
|
5084
|
+
histogram:
|
|
5085
|
+
$ref: '#/components/schemas/RUMGroupByHistogram'
|
|
5086
|
+
limit:
|
|
5087
|
+
default: 10
|
|
5088
|
+
description: The maximum buckets to return for this group-by.
|
|
5089
|
+
format: int64
|
|
5090
|
+
type: integer
|
|
5091
|
+
missing:
|
|
5092
|
+
$ref: '#/components/schemas/RUMGroupByMissing'
|
|
5093
|
+
sort:
|
|
5094
|
+
$ref: '#/components/schemas/RUMAggregateSort'
|
|
5095
|
+
total:
|
|
5096
|
+
$ref: '#/components/schemas/RUMGroupByTotal'
|
|
5097
|
+
required:
|
|
5098
|
+
- facet
|
|
5099
|
+
type: object
|
|
5100
|
+
RUMGroupByHistogram:
|
|
5101
|
+
description: 'Used to perform a histogram computation (only for measure facets).
|
|
5102
|
+
|
|
5103
|
+
Note: At most 100 buckets are allowed, the number of buckets is (max - min)/interval.'
|
|
5104
|
+
properties:
|
|
5105
|
+
interval:
|
|
5106
|
+
description: The bin size of the histogram buckets.
|
|
5107
|
+
example: 10
|
|
5108
|
+
format: double
|
|
5109
|
+
type: number
|
|
5110
|
+
max:
|
|
5111
|
+
description: 'The maximum value for the measure used in the histogram
|
|
5112
|
+
|
|
5113
|
+
(values greater than this one are filtered out).'
|
|
5114
|
+
example: 100
|
|
5115
|
+
format: double
|
|
5116
|
+
type: number
|
|
5117
|
+
min:
|
|
5118
|
+
description: 'The minimum value for the measure used in the histogram
|
|
5119
|
+
|
|
5120
|
+
(values smaller than this one are filtered out).'
|
|
5121
|
+
example: 50
|
|
5122
|
+
format: double
|
|
5123
|
+
type: number
|
|
5124
|
+
required:
|
|
5125
|
+
- interval
|
|
5126
|
+
- min
|
|
5127
|
+
- max
|
|
5128
|
+
type: object
|
|
5129
|
+
RUMGroupByMissing:
|
|
5130
|
+
description: The value to use for logs that don't have the facet used to group
|
|
5131
|
+
by.
|
|
5132
|
+
oneOf:
|
|
5133
|
+
- $ref: '#/components/schemas/RUMGroupByMissingString'
|
|
5134
|
+
- $ref: '#/components/schemas/RUMGroupByMissingNumber'
|
|
5135
|
+
RUMGroupByMissingNumber:
|
|
5136
|
+
description: The missing value to use if there is a number valued facet.
|
|
5137
|
+
format: double
|
|
5138
|
+
type: number
|
|
5139
|
+
RUMGroupByMissingString:
|
|
5140
|
+
description: The missing value to use if there is string valued facet.
|
|
5141
|
+
type: string
|
|
5142
|
+
RUMGroupByTotal:
|
|
5143
|
+
default: false
|
|
5144
|
+
description: A resulting object to put the given computes in over all the matching
|
|
5145
|
+
records.
|
|
5146
|
+
oneOf:
|
|
5147
|
+
- $ref: '#/components/schemas/RUMGroupByTotalBoolean'
|
|
5148
|
+
- $ref: '#/components/schemas/RUMGroupByTotalString'
|
|
5149
|
+
- $ref: '#/components/schemas/RUMGroupByTotalNumber'
|
|
5150
|
+
RUMGroupByTotalBoolean:
|
|
5151
|
+
description: If set to true, creates an additional bucket labeled "$facet_total".
|
|
5152
|
+
type: boolean
|
|
5153
|
+
RUMGroupByTotalNumber:
|
|
5154
|
+
description: A number to use as the key value for the total bucket.
|
|
5155
|
+
format: double
|
|
5156
|
+
type: number
|
|
5157
|
+
RUMGroupByTotalString:
|
|
5158
|
+
description: A string to use as the key value for the total bucket.
|
|
5159
|
+
type: string
|
|
5160
|
+
RUMQueryFilter:
|
|
5161
|
+
description: The search and filter query settings.
|
|
5162
|
+
properties:
|
|
5163
|
+
from:
|
|
5164
|
+
default: now-15m
|
|
5165
|
+
description: The minimum time for the requested events; supports date, math,
|
|
5166
|
+
and regular timestamps (in milliseconds).
|
|
5167
|
+
example: now-15m
|
|
5168
|
+
type: string
|
|
5169
|
+
query:
|
|
5170
|
+
default: '*'
|
|
5171
|
+
description: The search query following the RUM search syntax.
|
|
5172
|
+
example: '@type:session AND @session.type:user'
|
|
5173
|
+
type: string
|
|
5174
|
+
to:
|
|
5175
|
+
default: now
|
|
5176
|
+
description: The maximum time for the requested events; supports date, math,
|
|
5177
|
+
and regular timestamps (in milliseconds).
|
|
5178
|
+
example: now
|
|
5179
|
+
type: string
|
|
5180
|
+
type: object
|
|
5181
|
+
RUMQueryOptions:
|
|
5182
|
+
description: 'Global query options that are used during the query.
|
|
5183
|
+
|
|
5184
|
+
Note: Only supply timezone or time offset, not both. Otherwise, the query
|
|
5185
|
+
fails.'
|
|
5186
|
+
properties:
|
|
5187
|
+
time_offset:
|
|
5188
|
+
description: The time offset (in seconds) to apply to the query.
|
|
5189
|
+
format: int64
|
|
5190
|
+
type: integer
|
|
5191
|
+
timezone:
|
|
5192
|
+
default: UTC
|
|
5193
|
+
description: 'The timezone can be specified both as an offset, for example:
|
|
5194
|
+
"UTC+03:00".'
|
|
5195
|
+
example: GMT
|
|
5196
|
+
type: string
|
|
5197
|
+
type: object
|
|
5198
|
+
RUMQueryPageOptions:
|
|
5199
|
+
description: Paging attributes for listing events.
|
|
5200
|
+
properties:
|
|
5201
|
+
cursor:
|
|
5202
|
+
description: List following results with a cursor provided in the previous
|
|
5203
|
+
query.
|
|
5204
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
5205
|
+
type: string
|
|
5206
|
+
limit:
|
|
5207
|
+
default: 10
|
|
5208
|
+
description: Maximum number of events in the response.
|
|
5209
|
+
example: 25
|
|
5210
|
+
format: int32
|
|
5211
|
+
maximum: 1000
|
|
5212
|
+
type: integer
|
|
5213
|
+
type: object
|
|
5214
|
+
RUMResponseLinks:
|
|
5215
|
+
description: Links attributes.
|
|
5216
|
+
properties:
|
|
5217
|
+
next:
|
|
5218
|
+
description: 'Link for the next set of results. Note that the request can
|
|
5219
|
+
also be made using the
|
|
5220
|
+
|
|
5221
|
+
POST endpoint.'
|
|
5222
|
+
example: https://app.datadoghq.com/api/v2/rum/event?filter[query]=foo&page[cursor]=eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
5223
|
+
type: string
|
|
5224
|
+
type: object
|
|
5225
|
+
RUMResponseMetadata:
|
|
5226
|
+
description: The metadata associated with a request.
|
|
5227
|
+
properties:
|
|
5228
|
+
elapsed:
|
|
5229
|
+
description: The time elapsed in milliseconds.
|
|
5230
|
+
example: 132
|
|
5231
|
+
format: int64
|
|
5232
|
+
type: integer
|
|
5233
|
+
page:
|
|
5234
|
+
$ref: '#/components/schemas/RUMResponsePage'
|
|
5235
|
+
request_id:
|
|
5236
|
+
description: The identifier of the request.
|
|
5237
|
+
example: MWlFUjVaWGZTTTZPYzM0VXp1OXU2d3xLSVpEMjZKQ0VKUTI0dEYtM3RSOFVR
|
|
5238
|
+
type: string
|
|
5239
|
+
status:
|
|
5240
|
+
$ref: '#/components/schemas/RUMResponseStatus'
|
|
5241
|
+
warnings:
|
|
5242
|
+
description: 'A list of warnings (non-fatal errors) encountered. Partial
|
|
5243
|
+
results may return if
|
|
5244
|
+
|
|
5245
|
+
warnings are present in the response.'
|
|
5246
|
+
items:
|
|
5247
|
+
$ref: '#/components/schemas/RUMWarning'
|
|
5248
|
+
type: array
|
|
5249
|
+
type: object
|
|
5250
|
+
RUMResponsePage:
|
|
5251
|
+
description: Paging attributes.
|
|
5252
|
+
properties:
|
|
5253
|
+
after:
|
|
5254
|
+
description: The cursor to use to get the next results, if any. To make
|
|
5255
|
+
the next request, use the same parameters with the addition of `page[cursor]`.
|
|
5256
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
5257
|
+
type: string
|
|
5258
|
+
type: object
|
|
5259
|
+
RUMResponseStatus:
|
|
5260
|
+
description: The status of the response.
|
|
5261
|
+
enum:
|
|
5262
|
+
- done
|
|
5263
|
+
- timeout
|
|
5264
|
+
example: done
|
|
5265
|
+
type: string
|
|
5266
|
+
x-enum-varnames:
|
|
5267
|
+
- DONE
|
|
5268
|
+
- TIMEOUT
|
|
5269
|
+
RUMSearchEventsRequest:
|
|
5270
|
+
description: The request for a RUM events list.
|
|
5271
|
+
properties:
|
|
5272
|
+
filter:
|
|
5273
|
+
$ref: '#/components/schemas/RUMQueryFilter'
|
|
5274
|
+
options:
|
|
5275
|
+
$ref: '#/components/schemas/RUMQueryOptions'
|
|
5276
|
+
page:
|
|
5277
|
+
$ref: '#/components/schemas/RUMQueryPageOptions'
|
|
5278
|
+
sort:
|
|
5279
|
+
$ref: '#/components/schemas/RUMSort'
|
|
5280
|
+
type: object
|
|
5281
|
+
RUMSort:
|
|
5282
|
+
description: Sort parameters when querying events.
|
|
5283
|
+
enum:
|
|
5284
|
+
- timestamp
|
|
5285
|
+
- -timestamp
|
|
5286
|
+
type: string
|
|
5287
|
+
x-enum-varnames:
|
|
5288
|
+
- TIMESTAMP_ASCENDING
|
|
5289
|
+
- TIMESTAMP_DESCENDING
|
|
5290
|
+
RUMSortOrder:
|
|
5291
|
+
description: The order to use, ascending or descending.
|
|
5292
|
+
enum:
|
|
5293
|
+
- asc
|
|
5294
|
+
- desc
|
|
5295
|
+
example: asc
|
|
5296
|
+
type: string
|
|
5297
|
+
x-enum-varnames:
|
|
5298
|
+
- ASCENDING
|
|
5299
|
+
- DESCENDING
|
|
5300
|
+
RUMWarning:
|
|
5301
|
+
description: A warning message indicating something that went wrong with the
|
|
5302
|
+
query.
|
|
5303
|
+
properties:
|
|
5304
|
+
code:
|
|
5305
|
+
description: A unique code for this type of warning.
|
|
5306
|
+
example: unknown_index
|
|
5307
|
+
type: string
|
|
5308
|
+
detail:
|
|
5309
|
+
description: A detailed explanation of this specific warning.
|
|
5310
|
+
example: 'indexes: foo, bar'
|
|
5311
|
+
type: string
|
|
5312
|
+
title:
|
|
5313
|
+
description: A short human-readable summary of the warning.
|
|
5314
|
+
example: One or several indexes are missing or invalid, results hold data
|
|
5315
|
+
from the other indexes
|
|
5316
|
+
type: string
|
|
5317
|
+
type: object
|
|
4254
5318
|
RelationshipToIncidentIntegrationMetadataData:
|
|
4255
5319
|
description: A relationship reference for an integration metadata object.
|
|
4256
5320
|
example:
|
|
@@ -4384,7 +5448,7 @@ components:
|
|
|
4384
5448
|
description: Relationship to role object.
|
|
4385
5449
|
properties:
|
|
4386
5450
|
id:
|
|
4387
|
-
description:
|
|
5451
|
+
description: The unique identifier of the role.
|
|
4388
5452
|
example: 3653d3c6-0c75-11ea-ad28-fb5701eabc7d
|
|
4389
5453
|
type: string
|
|
4390
5454
|
type:
|
|
@@ -4394,7 +5458,7 @@ components:
|
|
|
4394
5458
|
description: Relationship to roles.
|
|
4395
5459
|
properties:
|
|
4396
5460
|
data:
|
|
4397
|
-
description: An array containing type and
|
|
5461
|
+
description: An array containing type and the unique identifier of a role.
|
|
4398
5462
|
items:
|
|
4399
5463
|
$ref: '#/components/schemas/RelationshipToRoleData'
|
|
4400
5464
|
type: array
|
|
@@ -4412,10 +5476,8 @@ components:
|
|
|
4412
5476
|
properties:
|
|
4413
5477
|
id:
|
|
4414
5478
|
description: The ID of the SAML assertion attribute.
|
|
4415
|
-
example: 0
|
|
4416
|
-
|
|
4417
|
-
maximum: 2147483647
|
|
4418
|
-
type: integer
|
|
5479
|
+
example: '0'
|
|
5480
|
+
type: string
|
|
4419
5481
|
type:
|
|
4420
5482
|
$ref: '#/components/schemas/SAMLAssertionAttributesType'
|
|
4421
5483
|
required:
|
|
@@ -4467,7 +5529,7 @@ components:
|
|
|
4467
5529
|
attributes:
|
|
4468
5530
|
$ref: '#/components/schemas/RoleAttributes'
|
|
4469
5531
|
id:
|
|
4470
|
-
description:
|
|
5532
|
+
description: The unique identifier of the role.
|
|
4471
5533
|
type: string
|
|
4472
5534
|
relationships:
|
|
4473
5535
|
$ref: '#/components/schemas/RoleResponseRelationships'
|
|
@@ -4490,7 +5552,8 @@ components:
|
|
|
4490
5552
|
readOnly: true
|
|
4491
5553
|
type: string
|
|
4492
5554
|
name:
|
|
4493
|
-
description:
|
|
5555
|
+
description: The name of the role. The name is neither unique nor a stable
|
|
5556
|
+
identifier of the role.
|
|
4494
5557
|
type: string
|
|
4495
5558
|
user_count:
|
|
4496
5559
|
description: Number of users with that role.
|
|
@@ -4572,20 +5635,22 @@ components:
|
|
|
4572
5635
|
description: Response containing information about a created role.
|
|
4573
5636
|
properties:
|
|
4574
5637
|
data:
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
|
|
5638
|
+
$ref: '#/components/schemas/RoleCreateResponseData'
|
|
5639
|
+
type: object
|
|
5640
|
+
RoleCreateResponseData:
|
|
5641
|
+
description: Role object returned by the API.
|
|
5642
|
+
properties:
|
|
5643
|
+
attributes:
|
|
5644
|
+
$ref: '#/components/schemas/RoleCreateAttributes'
|
|
5645
|
+
id:
|
|
5646
|
+
description: The unique identifier of the role.
|
|
5647
|
+
type: string
|
|
5648
|
+
relationships:
|
|
5649
|
+
$ref: '#/components/schemas/RoleResponseRelationships'
|
|
5650
|
+
type:
|
|
5651
|
+
$ref: '#/components/schemas/RolesType'
|
|
5652
|
+
required:
|
|
5653
|
+
- type
|
|
4589
5654
|
type: object
|
|
4590
5655
|
RoleRelationships:
|
|
4591
5656
|
description: Relationships of the role object.
|
|
@@ -4630,7 +5695,7 @@ components:
|
|
|
4630
5695
|
attributes:
|
|
4631
5696
|
$ref: '#/components/schemas/RoleUpdateAttributes'
|
|
4632
5697
|
id:
|
|
4633
|
-
description:
|
|
5698
|
+
description: The unique identifier of the role.
|
|
4634
5699
|
example: 00000000-0000-1111-0000-000000000000
|
|
4635
5700
|
type: string
|
|
4636
5701
|
type:
|
|
@@ -4652,20 +5717,22 @@ components:
|
|
|
4652
5717
|
description: Response containing information about an updated role.
|
|
4653
5718
|
properties:
|
|
4654
5719
|
data:
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4662
|
-
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
5720
|
+
$ref: '#/components/schemas/RoleUpdateResponseData'
|
|
5721
|
+
type: object
|
|
5722
|
+
RoleUpdateResponseData:
|
|
5723
|
+
description: Role object returned by the API.
|
|
5724
|
+
properties:
|
|
5725
|
+
attributes:
|
|
5726
|
+
$ref: '#/components/schemas/RoleUpdateAttributes'
|
|
5727
|
+
id:
|
|
5728
|
+
description: The unique identifier of the role.
|
|
5729
|
+
type: string
|
|
5730
|
+
relationships:
|
|
5731
|
+
$ref: '#/components/schemas/RoleResponseRelationships'
|
|
5732
|
+
type:
|
|
5733
|
+
$ref: '#/components/schemas/RolesType'
|
|
5734
|
+
required:
|
|
5735
|
+
- type
|
|
4669
5736
|
type: object
|
|
4670
5737
|
RolesResponse:
|
|
4671
5738
|
description: Response containing information about multiple roles.
|
|
@@ -4712,10 +5779,8 @@ components:
|
|
|
4712
5779
|
$ref: '#/components/schemas/SAMLAssertionAttributeAttributes'
|
|
4713
5780
|
id:
|
|
4714
5781
|
description: The ID of the SAML assertion attribute.
|
|
4715
|
-
example: 0
|
|
4716
|
-
|
|
4717
|
-
maximum: 2147483647
|
|
4718
|
-
type: integer
|
|
5782
|
+
example: '0'
|
|
5783
|
+
type: string
|
|
4719
5784
|
type:
|
|
4720
5785
|
$ref: '#/components/schemas/SAMLAssertionAttributesType'
|
|
4721
5786
|
required:
|
|
@@ -5108,11 +6173,15 @@ components:
|
|
|
5108
6173
|
- threshold
|
|
5109
6174
|
- new_value
|
|
5110
6175
|
- anomaly_detection
|
|
6176
|
+
- impossible_travel
|
|
6177
|
+
- hardcoded
|
|
5111
6178
|
type: string
|
|
5112
6179
|
x-enum-varnames:
|
|
5113
6180
|
- THRESHOLD
|
|
5114
6181
|
- NEW_VALUE
|
|
5115
6182
|
- ANOMALY_DETECTION
|
|
6183
|
+
- IMPOSSIBLE_TRAVEL
|
|
6184
|
+
- HARDCODED
|
|
5116
6185
|
SecurityMonitoringRuleEvaluationWindow:
|
|
5117
6186
|
description: 'A time window is specified to match when at least one of the cases
|
|
5118
6187
|
matches true. This is a sliding window
|
|
@@ -5138,6 +6207,27 @@ components:
|
|
|
5138
6207
|
- THIRTY_MINUTES
|
|
5139
6208
|
- ONE_HOUR
|
|
5140
6209
|
- TWO_HOURS
|
|
6210
|
+
SecurityMonitoringRuleHardcodedEvaluatorType:
|
|
6211
|
+
description: Hardcoded evaluator type.
|
|
6212
|
+
enum:
|
|
6213
|
+
- log4shell
|
|
6214
|
+
type: string
|
|
6215
|
+
x-enum-varnames:
|
|
6216
|
+
- LOG4SHELL
|
|
6217
|
+
SecurityMonitoringRuleImpossibleTravelOptions:
|
|
6218
|
+
description: Options on impossible travel rules.
|
|
6219
|
+
properties:
|
|
6220
|
+
baselineUserLocations:
|
|
6221
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleImpossibleTravelOptionsBaselineUserLocations'
|
|
6222
|
+
type: object
|
|
6223
|
+
SecurityMonitoringRuleImpossibleTravelOptionsBaselineUserLocations:
|
|
6224
|
+
description: 'If true, signals are suppressed for the first 24 hours. In that
|
|
6225
|
+
time, Datadog learns the user''s regular
|
|
6226
|
+
|
|
6227
|
+
access locations. This can be helpful to reduce noise and infer VPN usage
|
|
6228
|
+
or credentialed API access.'
|
|
6229
|
+
example: true
|
|
6230
|
+
type: boolean
|
|
5141
6231
|
SecurityMonitoringRuleKeepAlive:
|
|
5142
6232
|
description: "Once a signal is generated, the signal will remain \u201Copen\u201D
|
|
5143
6233
|
if a case is matched at least once within\nthis keep alive window."
|
|
@@ -5246,6 +6336,10 @@ components:
|
|
|
5246
6336
|
$ref: '#/components/schemas/SecurityMonitoringRuleDetectionMethod'
|
|
5247
6337
|
evaluationWindow:
|
|
5248
6338
|
$ref: '#/components/schemas/SecurityMonitoringRuleEvaluationWindow'
|
|
6339
|
+
hardcodedEvaluatorType:
|
|
6340
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleHardcodedEvaluatorType'
|
|
6341
|
+
impossibleTravelOptions:
|
|
6342
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleImpossibleTravelOptions'
|
|
5249
6343
|
keepAlive:
|
|
5250
6344
|
$ref: '#/components/schemas/SecurityMonitoringRuleKeepAlive'
|
|
5251
6345
|
maxSignalDuration:
|
|
@@ -5290,6 +6384,7 @@ components:
|
|
|
5290
6384
|
- sum
|
|
5291
6385
|
- max
|
|
5292
6386
|
- new_value
|
|
6387
|
+
- geo_data
|
|
5293
6388
|
type: string
|
|
5294
6389
|
x-enum-varnames:
|
|
5295
6390
|
- COUNT
|
|
@@ -5297,6 +6392,7 @@ components:
|
|
|
5297
6392
|
- SUM
|
|
5298
6393
|
- MAX
|
|
5299
6394
|
- NEW_VALUE
|
|
6395
|
+
- GEO_DATA
|
|
5300
6396
|
SecurityMonitoringRuleQueryCreate:
|
|
5301
6397
|
description: Query for matching rule.
|
|
5302
6398
|
properties:
|
|
@@ -5486,42 +6582,7 @@ components:
|
|
|
5486
6582
|
description: Object description of a security signal.
|
|
5487
6583
|
properties:
|
|
5488
6584
|
attributes:
|
|
5489
|
-
|
|
5490
|
-
|
|
5491
|
-
associated values.'
|
|
5492
|
-
properties:
|
|
5493
|
-
attributes:
|
|
5494
|
-
additionalProperties: {}
|
|
5495
|
-
description: A JSON object of attributes in the security signal.
|
|
5496
|
-
example:
|
|
5497
|
-
workflow:
|
|
5498
|
-
first_seen: '2020-06-23T14:46:01.000Z'
|
|
5499
|
-
last_seen: '2020-06-23T14:46:49.000Z'
|
|
5500
|
-
rule:
|
|
5501
|
-
id: 0f5-e0c-805
|
|
5502
|
-
name: 'Brute Force Attack Grouped By User '
|
|
5503
|
-
version: 12
|
|
5504
|
-
type: object
|
|
5505
|
-
message:
|
|
5506
|
-
description: The message in the security signal defined by the rule
|
|
5507
|
-
that generated the signal.
|
|
5508
|
-
example: Detect Account Take Over (ATO) through brute force attempts
|
|
5509
|
-
type: string
|
|
5510
|
-
tags:
|
|
5511
|
-
description: An array of tags associated with the security signal.
|
|
5512
|
-
example:
|
|
5513
|
-
- security:attack
|
|
5514
|
-
- technique:T1110-brute-force
|
|
5515
|
-
format: array
|
|
5516
|
-
items:
|
|
5517
|
-
description: The tag associated with the security signal.
|
|
5518
|
-
type: string
|
|
5519
|
-
timestamp:
|
|
5520
|
-
description: The timestamp of the security signal.
|
|
5521
|
-
example: '2019-01-02T09:42:36.320Z'
|
|
5522
|
-
format: date-time
|
|
5523
|
-
type: string
|
|
5524
|
-
type: object
|
|
6585
|
+
$ref: '#/components/schemas/SecurityMonitoringSignalAttributes'
|
|
5525
6586
|
id:
|
|
5526
6587
|
description: The unique ID of the security signal.
|
|
5527
6588
|
example: AAAAAWgN8Xwgr1vKDQAAAABBV2dOOFh3ZzZobm1mWXJFYTR0OA
|
|
@@ -5529,46 +6590,87 @@ components:
|
|
|
5529
6590
|
type:
|
|
5530
6591
|
$ref: '#/components/schemas/SecurityMonitoringSignalType'
|
|
5531
6592
|
type: object
|
|
6593
|
+
SecurityMonitoringSignalAttributes:
|
|
6594
|
+
description: 'The object containing all signal attributes and their
|
|
6595
|
+
|
|
6596
|
+
associated values.'
|
|
6597
|
+
properties:
|
|
6598
|
+
attributes:
|
|
6599
|
+
additionalProperties: {}
|
|
6600
|
+
description: A JSON object of attributes in the security signal.
|
|
6601
|
+
example:
|
|
6602
|
+
workflow:
|
|
6603
|
+
first_seen: '2020-06-23T14:46:01.000Z'
|
|
6604
|
+
last_seen: '2020-06-23T14:46:49.000Z'
|
|
6605
|
+
rule:
|
|
6606
|
+
id: 0f5-e0c-805
|
|
6607
|
+
name: 'Brute Force Attack Grouped By User '
|
|
6608
|
+
version: 12
|
|
6609
|
+
type: object
|
|
6610
|
+
message:
|
|
6611
|
+
description: The message in the security signal defined by the rule that
|
|
6612
|
+
generated the signal.
|
|
6613
|
+
example: Detect Account Take Over (ATO) through brute force attempts
|
|
6614
|
+
type: string
|
|
6615
|
+
tags:
|
|
6616
|
+
description: An array of tags associated with the security signal.
|
|
6617
|
+
example:
|
|
6618
|
+
- security:attack
|
|
6619
|
+
- technique:T1110-brute-force
|
|
6620
|
+
items:
|
|
6621
|
+
description: The tag associated with the security signal.
|
|
6622
|
+
type: string
|
|
6623
|
+
type: array
|
|
6624
|
+
timestamp:
|
|
6625
|
+
description: The timestamp of the security signal.
|
|
6626
|
+
example: '2019-01-02T09:42:36.320Z'
|
|
6627
|
+
format: date-time
|
|
6628
|
+
type: string
|
|
6629
|
+
type: object
|
|
5532
6630
|
SecurityMonitoringSignalListRequest:
|
|
5533
6631
|
description: The request for a security signal list.
|
|
5534
6632
|
properties:
|
|
5535
6633
|
filter:
|
|
5536
|
-
|
|
5537
|
-
properties:
|
|
5538
|
-
from:
|
|
5539
|
-
description: The minimum timestamp for requested security signals.
|
|
5540
|
-
example: '2019-01-02T09:42:36.320Z'
|
|
5541
|
-
format: date-time
|
|
5542
|
-
type: string
|
|
5543
|
-
query:
|
|
5544
|
-
description: Search query for listing security signals.
|
|
5545
|
-
example: security:attack status:high
|
|
5546
|
-
type: string
|
|
5547
|
-
to:
|
|
5548
|
-
description: The maximum timestamp for requested security signals.
|
|
5549
|
-
example: '2019-01-03T09:42:36.320Z'
|
|
5550
|
-
format: date-time
|
|
5551
|
-
type: string
|
|
5552
|
-
type: object
|
|
6634
|
+
$ref: '#/components/schemas/SecurityMonitoringSignalListRequestFilter'
|
|
5553
6635
|
page:
|
|
5554
|
-
|
|
5555
|
-
properties:
|
|
5556
|
-
cursor:
|
|
5557
|
-
description: A list of results using the cursor provided in the previous
|
|
5558
|
-
query.
|
|
5559
|
-
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
5560
|
-
type: string
|
|
5561
|
-
limit:
|
|
5562
|
-
default: 10
|
|
5563
|
-
description: The maximum number of security signals in the response.
|
|
5564
|
-
example: 25
|
|
5565
|
-
format: int32
|
|
5566
|
-
maximum: 1000
|
|
5567
|
-
type: integer
|
|
5568
|
-
type: object
|
|
6636
|
+
$ref: '#/components/schemas/SecurityMonitoringSignalListRequestPage'
|
|
5569
6637
|
sort:
|
|
5570
6638
|
$ref: '#/components/schemas/SecurityMonitoringSignalsSort'
|
|
5571
6639
|
type: object
|
|
6640
|
+
SecurityMonitoringSignalListRequestFilter:
|
|
6641
|
+
description: Search filters for listing security signals.
|
|
6642
|
+
properties:
|
|
6643
|
+
from:
|
|
6644
|
+
description: The minimum timestamp for requested security signals.
|
|
6645
|
+
example: '2019-01-02T09:42:36.320Z'
|
|
6646
|
+
format: date-time
|
|
6647
|
+
type: string
|
|
6648
|
+
query:
|
|
6649
|
+
description: Search query for listing security signals.
|
|
6650
|
+
example: security:attack status:high
|
|
6651
|
+
type: string
|
|
6652
|
+
to:
|
|
6653
|
+
description: The maximum timestamp for requested security signals.
|
|
6654
|
+
example: '2019-01-03T09:42:36.320Z'
|
|
6655
|
+
format: date-time
|
|
6656
|
+
type: string
|
|
6657
|
+
type: object
|
|
6658
|
+
SecurityMonitoringSignalListRequestPage:
|
|
6659
|
+
description: The paging attributes for listing security signals.
|
|
6660
|
+
properties:
|
|
6661
|
+
cursor:
|
|
6662
|
+
description: A list of results using the cursor provided in the previous
|
|
6663
|
+
query.
|
|
6664
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
6665
|
+
type: string
|
|
6666
|
+
limit:
|
|
6667
|
+
default: 10
|
|
6668
|
+
description: The maximum number of security signals in the response.
|
|
6669
|
+
example: 25
|
|
6670
|
+
format: int32
|
|
6671
|
+
maximum: 1000
|
|
6672
|
+
type: integer
|
|
6673
|
+
type: object
|
|
5572
6674
|
SecurityMonitoringSignalType:
|
|
5573
6675
|
default: signal
|
|
5574
6676
|
description: The type of event.
|
|
@@ -5589,31 +6691,37 @@ components:
|
|
|
5589
6691
|
$ref: '#/components/schemas/SecurityMonitoringSignal'
|
|
5590
6692
|
type: array
|
|
5591
6693
|
links:
|
|
5592
|
-
|
|
5593
|
-
properties:
|
|
5594
|
-
next:
|
|
5595
|
-
description: 'The link for the next set of results. **Note**: The request
|
|
5596
|
-
can also be made using the
|
|
5597
|
-
|
|
5598
|
-
POST endpoint.'
|
|
5599
|
-
example: https://app.datadoghq.com/api/v2/security_monitoring/signals?filter[query]=foo&page[cursor]=eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
5600
|
-
type: string
|
|
5601
|
-
type: object
|
|
6694
|
+
$ref: '#/components/schemas/SecurityMonitoringSignalsListResponseLinks'
|
|
5602
6695
|
meta:
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
|
|
5615
|
-
|
|
5616
|
-
|
|
6696
|
+
$ref: '#/components/schemas/SecurityMonitoringSignalsListResponseMeta'
|
|
6697
|
+
type: object
|
|
6698
|
+
SecurityMonitoringSignalsListResponseLinks:
|
|
6699
|
+
description: Links attributes.
|
|
6700
|
+
properties:
|
|
6701
|
+
next:
|
|
6702
|
+
description: 'The link for the next set of results. **Note**: The request
|
|
6703
|
+
can also be made using the
|
|
6704
|
+
|
|
6705
|
+
POST endpoint.'
|
|
6706
|
+
example: https://app.datadoghq.com/api/v2/security_monitoring/signals?filter[query]=foo&page[cursor]=eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
6707
|
+
type: string
|
|
6708
|
+
type: object
|
|
6709
|
+
SecurityMonitoringSignalsListResponseMeta:
|
|
6710
|
+
description: Meta attributes.
|
|
6711
|
+
properties:
|
|
6712
|
+
page:
|
|
6713
|
+
$ref: '#/components/schemas/SecurityMonitoringSignalsListResponseMetaPage'
|
|
6714
|
+
type: object
|
|
6715
|
+
SecurityMonitoringSignalsListResponseMetaPage:
|
|
6716
|
+
description: Paging attributes.
|
|
6717
|
+
properties:
|
|
6718
|
+
after:
|
|
6719
|
+
description: 'The cursor used to get the next results, if any. To make the
|
|
6720
|
+
next request, use the same
|
|
6721
|
+
|
|
6722
|
+
parameters with the addition of the `page[cursor]`.'
|
|
6723
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
6724
|
+
type: string
|
|
5617
6725
|
type: object
|
|
5618
6726
|
SecurityMonitoringSignalsSort:
|
|
5619
6727
|
description: The sort parameters used for querying security signals.
|
|
@@ -5666,6 +6774,87 @@ components:
|
|
|
5666
6774
|
required:
|
|
5667
6775
|
- data
|
|
5668
6776
|
type: object
|
|
6777
|
+
UsageApplicationSecurityMonitoringResponse:
|
|
6778
|
+
description: Application Security Monitoring usage response.
|
|
6779
|
+
properties:
|
|
6780
|
+
data:
|
|
6781
|
+
description: Response containing Application Security Monitoring usage.
|
|
6782
|
+
items:
|
|
6783
|
+
$ref: '#/components/schemas/UsageDataObject'
|
|
6784
|
+
type: array
|
|
6785
|
+
type: object
|
|
6786
|
+
UsageAttributesObject:
|
|
6787
|
+
description: Usage attributes data.
|
|
6788
|
+
properties:
|
|
6789
|
+
org_name:
|
|
6790
|
+
description: The organization name.
|
|
6791
|
+
type: string
|
|
6792
|
+
product_family:
|
|
6793
|
+
description: The product for which usage is being reported.
|
|
6794
|
+
type: string
|
|
6795
|
+
public_id:
|
|
6796
|
+
description: The organization public ID.
|
|
6797
|
+
type: string
|
|
6798
|
+
timeseries:
|
|
6799
|
+
description: List of usage data reported for each requested hour.
|
|
6800
|
+
items:
|
|
6801
|
+
$ref: '#/components/schemas/UsageTimeSeriesObject'
|
|
6802
|
+
type: array
|
|
6803
|
+
usage_type:
|
|
6804
|
+
$ref: '#/components/schemas/HourlyUsageType'
|
|
6805
|
+
type: object
|
|
6806
|
+
UsageDataObject:
|
|
6807
|
+
description: Usage data.
|
|
6808
|
+
properties:
|
|
6809
|
+
attributes:
|
|
6810
|
+
$ref: '#/components/schemas/UsageAttributesObject'
|
|
6811
|
+
id:
|
|
6812
|
+
description: Unique ID of the response.
|
|
6813
|
+
type: string
|
|
6814
|
+
type:
|
|
6815
|
+
$ref: '#/components/schemas/UsageTimeSeriesType'
|
|
6816
|
+
type: object
|
|
6817
|
+
UsageLambdaTracedInvocationsResponse:
|
|
6818
|
+
description: Lambda Traced Invocations usage response.
|
|
6819
|
+
properties:
|
|
6820
|
+
data:
|
|
6821
|
+
description: Response containing Lambda Traced Invocations usage.
|
|
6822
|
+
items:
|
|
6823
|
+
$ref: '#/components/schemas/UsageDataObject'
|
|
6824
|
+
type: array
|
|
6825
|
+
type: object
|
|
6826
|
+
UsageObservabilityPipelinesResponse:
|
|
6827
|
+
description: Observability Pipelines usage response.
|
|
6828
|
+
properties:
|
|
6829
|
+
data:
|
|
6830
|
+
description: Response containing Observability Pipelines usage.
|
|
6831
|
+
items:
|
|
6832
|
+
$ref: '#/components/schemas/UsageDataObject'
|
|
6833
|
+
type: array
|
|
6834
|
+
type: object
|
|
6835
|
+
UsageTimeSeriesObject:
|
|
6836
|
+
description: Usage timeseries data.
|
|
6837
|
+
properties:
|
|
6838
|
+
timestamp:
|
|
6839
|
+
description: Datetime in ISO-8601 format, UTC. The hour for the usage.
|
|
6840
|
+
format: date-time
|
|
6841
|
+
type: string
|
|
6842
|
+
value:
|
|
6843
|
+
description: Contains the number measured for the given usage_type during
|
|
6844
|
+
the hour.
|
|
6845
|
+
format: int64
|
|
6846
|
+
nullable: true
|
|
6847
|
+
type: integer
|
|
6848
|
+
type: object
|
|
6849
|
+
UsageTimeSeriesType:
|
|
6850
|
+
default: usage_timeseries
|
|
6851
|
+
description: Type of usage data.
|
|
6852
|
+
enum:
|
|
6853
|
+
- usage_timeseries
|
|
6854
|
+
example: usage_timeseries
|
|
6855
|
+
type: string
|
|
6856
|
+
x-enum-varnames:
|
|
6857
|
+
- USAGE_TIMESERIES
|
|
5669
6858
|
User:
|
|
5670
6859
|
description: User object returned by the API.
|
|
5671
6860
|
properties:
|
|
@@ -5947,25 +7136,23 @@ components:
|
|
|
5947
7136
|
authorizationCode:
|
|
5948
7137
|
authorizationUrl: /oauth2/v1/authorize
|
|
5949
7138
|
scopes:
|
|
5950
|
-
dashboards_public_share:
|
|
5951
|
-
dashboards_read:
|
|
5952
|
-
dashboards_write:
|
|
5953
|
-
events_read:
|
|
5954
|
-
incident_read:
|
|
5955
|
-
incident_settings_write:
|
|
5956
|
-
incident_write:
|
|
5957
|
-
metrics_read:
|
|
5958
|
-
security_monitoring_filters_read:
|
|
5959
|
-
security_monitoring_filters_write:
|
|
5960
|
-
|
|
5961
|
-
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
user_access_manage: The ability to disable users, manage user roles, and
|
|
5968
|
-
manage SAML-to-role mappings.
|
|
7139
|
+
dashboards_public_share: Share dashboards externally.
|
|
7140
|
+
dashboards_read: View dashboards.
|
|
7141
|
+
dashboards_write: Create and change dashboards.
|
|
7142
|
+
events_read: Read Events data.
|
|
7143
|
+
incident_read: View incidents in Datadog.
|
|
7144
|
+
incident_settings_write: Configure Incidents settings.
|
|
7145
|
+
incident_write: Create, view, and manage incidents in Datadog.
|
|
7146
|
+
metrics_read: View custom metrics.
|
|
7147
|
+
security_monitoring_filters_read: Read Security Filters.
|
|
7148
|
+
security_monitoring_filters_write: Create, edit, and delete Security Filters.
|
|
7149
|
+
security_monitoring_rules_read: Read Detection Rules.
|
|
7150
|
+
security_monitoring_rules_write: Create and edit Detection Rules.
|
|
7151
|
+
security_monitoring_signals_read: View Security Signals.
|
|
7152
|
+
usage_read: View your organization's usage and usage attribution.
|
|
7153
|
+
user_access_invite: Invite other users to your organization.
|
|
7154
|
+
user_access_manage: Disable users, manage user roles, manage SAML-to-role
|
|
7155
|
+
mappings, and configure logs restriction queries.
|
|
5969
7156
|
tokenUrl: /oauth2/v1/token
|
|
5970
7157
|
type: oauth2
|
|
5971
7158
|
apiKeyAuth:
|
|
@@ -6335,6 +7522,134 @@ paths:
|
|
|
6335
7522
|
x-codegen-request-body-name: body
|
|
6336
7523
|
x-undo:
|
|
6337
7524
|
type: idempotent
|
|
7525
|
+
/api/v2/audit/events:
|
|
7526
|
+
get:
|
|
7527
|
+
description: 'List endpoint returns events that match a Audit Logs search query.
|
|
7528
|
+
|
|
7529
|
+
[Results are paginated][1].
|
|
7530
|
+
|
|
7531
|
+
|
|
7532
|
+
Use this endpoint to see your latest Audit Logs events.
|
|
7533
|
+
|
|
7534
|
+
|
|
7535
|
+
[1]: https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination'
|
|
7536
|
+
operationId: ListAuditLogs
|
|
7537
|
+
parameters:
|
|
7538
|
+
- description: Search query following Audit Logs syntax.
|
|
7539
|
+
example: '@type:session @application_id:xxxx'
|
|
7540
|
+
in: query
|
|
7541
|
+
name: filter[query]
|
|
7542
|
+
required: false
|
|
7543
|
+
schema:
|
|
7544
|
+
type: string
|
|
7545
|
+
- description: Minimum timestamp for requested events.
|
|
7546
|
+
example: '2019-01-02T09:42:36.320Z'
|
|
7547
|
+
in: query
|
|
7548
|
+
name: filter[from]
|
|
7549
|
+
required: false
|
|
7550
|
+
schema:
|
|
7551
|
+
format: date-time
|
|
7552
|
+
type: string
|
|
7553
|
+
- description: Maximum timestamp for requested events.
|
|
7554
|
+
example: '2019-01-03T09:42:36.320Z'
|
|
7555
|
+
in: query
|
|
7556
|
+
name: filter[to]
|
|
7557
|
+
required: false
|
|
7558
|
+
schema:
|
|
7559
|
+
format: date-time
|
|
7560
|
+
type: string
|
|
7561
|
+
- description: Order of events in results.
|
|
7562
|
+
in: query
|
|
7563
|
+
name: sort
|
|
7564
|
+
required: false
|
|
7565
|
+
schema:
|
|
7566
|
+
$ref: '#/components/schemas/AuditLogsSort'
|
|
7567
|
+
- description: List following results with a cursor provided in the previous
|
|
7568
|
+
query.
|
|
7569
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
7570
|
+
in: query
|
|
7571
|
+
name: page[cursor]
|
|
7572
|
+
required: false
|
|
7573
|
+
schema:
|
|
7574
|
+
type: string
|
|
7575
|
+
- description: Maximum number of events in the response.
|
|
7576
|
+
example: 25
|
|
7577
|
+
in: query
|
|
7578
|
+
name: page[limit]
|
|
7579
|
+
required: false
|
|
7580
|
+
schema:
|
|
7581
|
+
default: 10
|
|
7582
|
+
format: int32
|
|
7583
|
+
maximum: 1000
|
|
7584
|
+
type: integer
|
|
7585
|
+
responses:
|
|
7586
|
+
'200':
|
|
7587
|
+
content:
|
|
7588
|
+
application/json:
|
|
7589
|
+
schema:
|
|
7590
|
+
$ref: '#/components/schemas/AuditLogsEventsResponse'
|
|
7591
|
+
description: OK
|
|
7592
|
+
'400':
|
|
7593
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
7594
|
+
'403':
|
|
7595
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
|
7596
|
+
'429':
|
|
7597
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
7598
|
+
summary: Get a list of Audit Logs events
|
|
7599
|
+
tags:
|
|
7600
|
+
- Audit
|
|
7601
|
+
x-menu-order: 2
|
|
7602
|
+
x-pagination:
|
|
7603
|
+
cursorParam: page[cursor]
|
|
7604
|
+
cursorPath: meta.page.after
|
|
7605
|
+
limitParam: page[limit]
|
|
7606
|
+
resultsPath: data
|
|
7607
|
+
x-undo:
|
|
7608
|
+
type: safe
|
|
7609
|
+
/api/v2/audit/events/search:
|
|
7610
|
+
post:
|
|
7611
|
+
description: 'List endpoint returns Audit Logs events that match an Audit search
|
|
7612
|
+
query.
|
|
7613
|
+
|
|
7614
|
+
[Results are paginated][1].
|
|
7615
|
+
|
|
7616
|
+
|
|
7617
|
+
Use this endpoint to build complex Audit Logs events filtering and search.
|
|
7618
|
+
|
|
7619
|
+
|
|
7620
|
+
[1]: https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination'
|
|
7621
|
+
operationId: SearchAuditLogs
|
|
7622
|
+
requestBody:
|
|
7623
|
+
content:
|
|
7624
|
+
application/json:
|
|
7625
|
+
schema:
|
|
7626
|
+
$ref: '#/components/schemas/AuditLogsSearchEventsRequest'
|
|
7627
|
+
required: false
|
|
7628
|
+
responses:
|
|
7629
|
+
'200':
|
|
7630
|
+
content:
|
|
7631
|
+
application/json:
|
|
7632
|
+
schema:
|
|
7633
|
+
$ref: '#/components/schemas/AuditLogsEventsResponse'
|
|
7634
|
+
description: OK
|
|
7635
|
+
'400':
|
|
7636
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
7637
|
+
'403':
|
|
7638
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
|
7639
|
+
'429':
|
|
7640
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
7641
|
+
summary: Search Audit Logs events
|
|
7642
|
+
tags:
|
|
7643
|
+
- Audit
|
|
7644
|
+
x-codegen-request-body-name: body
|
|
7645
|
+
x-menu-order: 1
|
|
7646
|
+
x-pagination:
|
|
7647
|
+
cursorParam: body.page.cursor
|
|
7648
|
+
cursorPath: meta.page.after
|
|
7649
|
+
limitParam: body.page.limit
|
|
7650
|
+
resultsPath: data
|
|
7651
|
+
x-undo:
|
|
7652
|
+
type: safe
|
|
6338
7653
|
/api/v2/authn_mappings:
|
|
6339
7654
|
get:
|
|
6340
7655
|
description: List all AuthN Mappings in the org.
|
|
@@ -6344,18 +7659,10 @@ paths:
|
|
|
6344
7659
|
- $ref: '#/components/parameters/PageNumber'
|
|
6345
7660
|
- description: Sort AuthN Mappings depending on the given field.
|
|
6346
7661
|
in: query
|
|
6347
|
-
name: sort
|
|
6348
|
-
required: false
|
|
6349
|
-
schema:
|
|
6350
|
-
$ref: '#/components/schemas/AuthNMappingsSort'
|
|
6351
|
-
- description: Include additional information in the response.
|
|
6352
|
-
in: query
|
|
6353
|
-
name: include
|
|
7662
|
+
name: sort
|
|
6354
7663
|
required: false
|
|
6355
7664
|
schema:
|
|
6356
|
-
|
|
6357
|
-
type: string
|
|
6358
|
-
type: array
|
|
7665
|
+
$ref: '#/components/schemas/AuthNMappingsSort'
|
|
6359
7666
|
- description: Filter all mappings by the given string.
|
|
6360
7667
|
in: query
|
|
6361
7668
|
name: filter
|
|
@@ -6925,6 +8232,23 @@ paths:
|
|
|
6925
8232
|
tags:
|
|
6926
8233
|
- Dashboard Lists
|
|
6927
8234
|
x-codegen-request-body-name: body
|
|
8235
|
+
x-given:
|
|
8236
|
+
dashboard_list_dashboard:
|
|
8237
|
+
parameters:
|
|
8238
|
+
- name: dashboard_list_id
|
|
8239
|
+
source: dashboard_list.id
|
|
8240
|
+
- name: body
|
|
8241
|
+
value: "{\n \"dashboards\": [\n {\n \"id\": \"{{ dashboard.id
|
|
8242
|
+
}}\",\n \"type\": \"custom_timeboard\"\n }\n ]\n}"
|
|
8243
|
+
step: the "dashboard_list" has the "dashboard"
|
|
8244
|
+
dashboard_list_screenboard_dashboard:
|
|
8245
|
+
parameters:
|
|
8246
|
+
- name: dashboard_list_id
|
|
8247
|
+
source: dashboard_list.id
|
|
8248
|
+
- name: body
|
|
8249
|
+
value: "{\n \"dashboards\": [\n {\n \"id\": \"{{ screenboard_dashboard.id
|
|
8250
|
+
}}\",\n \"type\": \"custom_screenboard\"\n }\n ]\n}"
|
|
8251
|
+
step: the "dashboard_list" has the "screenboard_dashboard"
|
|
6928
8252
|
x-menu-order: 2
|
|
6929
8253
|
x-undo:
|
|
6930
8254
|
type: safe
|
|
@@ -7013,6 +8337,10 @@ paths:
|
|
|
7013
8337
|
summary: Get a list of incidents
|
|
7014
8338
|
tags:
|
|
7015
8339
|
- Incidents
|
|
8340
|
+
x-pagination:
|
|
8341
|
+
limitParam: page[size]
|
|
8342
|
+
pageOffsetParam: page[offset]
|
|
8343
|
+
resultsPath: data
|
|
7016
8344
|
x-undo:
|
|
7017
8345
|
type: safe
|
|
7018
8346
|
x-unstable: '**Note**: This endpoint is in public beta.
|
|
@@ -7145,6 +8473,7 @@ paths:
|
|
|
7145
8473
|
operationId: UpdateIncident
|
|
7146
8474
|
parameters:
|
|
7147
8475
|
- $ref: '#/components/parameters/IncidentIDPathParameter'
|
|
8476
|
+
- $ref: '#/components/parameters/IncidentIncludeQueryParameter'
|
|
7148
8477
|
requestBody:
|
|
7149
8478
|
content:
|
|
7150
8479
|
application/json:
|
|
@@ -8093,6 +9422,11 @@ paths:
|
|
|
8093
9422
|
tags:
|
|
8094
9423
|
- Logs
|
|
8095
9424
|
x-menu-order: 3
|
|
9425
|
+
x-pagination:
|
|
9426
|
+
cursorParam: page[cursor]
|
|
9427
|
+
cursorPath: meta.page.after
|
|
9428
|
+
limitParam: page[limit]
|
|
9429
|
+
resultsPath: data
|
|
8096
9430
|
x-undo:
|
|
8097
9431
|
type: safe
|
|
8098
9432
|
/api/v2/logs/events/search:
|
|
@@ -8140,6 +9474,11 @@ paths:
|
|
|
8140
9474
|
- Logs
|
|
8141
9475
|
x-codegen-request-body-name: body
|
|
8142
9476
|
x-menu-order: 2
|
|
9477
|
+
x-pagination:
|
|
9478
|
+
cursorParam: body.page.cursor
|
|
9479
|
+
cursorPath: meta.page.after
|
|
9480
|
+
limitParam: body.page.limit
|
|
9481
|
+
resultsPath: data
|
|
8143
9482
|
x-undo:
|
|
8144
9483
|
type: safe
|
|
8145
9484
|
/api/v2/metrics:
|
|
@@ -8410,6 +9749,107 @@ paths:
|
|
|
8410
9749
|
x-menu-order: 6
|
|
8411
9750
|
x-undo:
|
|
8412
9751
|
type: safe
|
|
9752
|
+
/api/v2/metrics/{metric_name}/estimate:
|
|
9753
|
+
get:
|
|
9754
|
+
description: Returns the estimated cardinality for a metric with a given tag,
|
|
9755
|
+
percentile and number of aggregations configuration using Metrics without
|
|
9756
|
+
Limits™.
|
|
9757
|
+
operationId: EstimateMetricsOutputSeries
|
|
9758
|
+
parameters:
|
|
9759
|
+
- $ref: '#/components/parameters/MetricName'
|
|
9760
|
+
- description: Filtered tag keys that the metric is configured to query with.
|
|
9761
|
+
example: app,host
|
|
9762
|
+
in: query
|
|
9763
|
+
name: filter[groups]
|
|
9764
|
+
required: false
|
|
9765
|
+
schema:
|
|
9766
|
+
type: string
|
|
9767
|
+
- description: The number of hours of look back (from now) to estimate cardinality
|
|
9768
|
+
with.
|
|
9769
|
+
example: 49
|
|
9770
|
+
in: query
|
|
9771
|
+
name: filter[hours_ago]
|
|
9772
|
+
required: false
|
|
9773
|
+
schema:
|
|
9774
|
+
type: integer
|
|
9775
|
+
- description: The number of aggregations that a `count`, `rate`, or `gauge`
|
|
9776
|
+
metric is configured to use. Max number of aggregation combos is 9.
|
|
9777
|
+
example: 1
|
|
9778
|
+
in: query
|
|
9779
|
+
name: filter[num_aggregations]
|
|
9780
|
+
required: false
|
|
9781
|
+
schema:
|
|
9782
|
+
type: integer
|
|
9783
|
+
- description: A boolean, for distribution metrics only, to estimate cardinality
|
|
9784
|
+
if the metric includes additional percentile aggregators.
|
|
9785
|
+
example: true
|
|
9786
|
+
in: query
|
|
9787
|
+
name: filter[pct]
|
|
9788
|
+
required: false
|
|
9789
|
+
schema:
|
|
9790
|
+
type: boolean
|
|
9791
|
+
- description: A window, in hours, from the look back to estimate cardinality
|
|
9792
|
+
with.
|
|
9793
|
+
example: 6
|
|
9794
|
+
in: query
|
|
9795
|
+
name: filter[timespan_h]
|
|
9796
|
+
required: false
|
|
9797
|
+
schema:
|
|
9798
|
+
type: integer
|
|
9799
|
+
responses:
|
|
9800
|
+
'200':
|
|
9801
|
+
content:
|
|
9802
|
+
application/json:
|
|
9803
|
+
schema:
|
|
9804
|
+
$ref: '#/components/schemas/MetricEstimateResponse'
|
|
9805
|
+
description: Success
|
|
9806
|
+
'400':
|
|
9807
|
+
content:
|
|
9808
|
+
application/json:
|
|
9809
|
+
schema:
|
|
9810
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
9811
|
+
description: API error response.
|
|
9812
|
+
'403':
|
|
9813
|
+
content:
|
|
9814
|
+
application/json:
|
|
9815
|
+
schema:
|
|
9816
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
9817
|
+
description: API error response.
|
|
9818
|
+
'404':
|
|
9819
|
+
content:
|
|
9820
|
+
application/json:
|
|
9821
|
+
schema:
|
|
9822
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
9823
|
+
description: API error response.
|
|
9824
|
+
'429':
|
|
9825
|
+
content:
|
|
9826
|
+
application/json:
|
|
9827
|
+
schema:
|
|
9828
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
9829
|
+
description: Too Many Requests
|
|
9830
|
+
security:
|
|
9831
|
+
- apiKeyAuth: []
|
|
9832
|
+
appKeyAuth: []
|
|
9833
|
+
- AuthZ: []
|
|
9834
|
+
summary: Tag Configuration Cardinality Estimator
|
|
9835
|
+
tags:
|
|
9836
|
+
- Metrics
|
|
9837
|
+
x-dd-ownership:
|
|
9838
|
+
notification_configuration:
|
|
9839
|
+
manual_escalation_policy: '[Points Aggregation] Primary'
|
|
9840
|
+
prod_high_urgency: '@pagerduty-Points-Aggregation @slack-points-aggr-ops'
|
|
9841
|
+
prod_low_urgency: '@slack-points-aggr-ops'
|
|
9842
|
+
slack_support_channel: '#points-aggregation'
|
|
9843
|
+
staging_high_urgency: '@slack-points-aggr-stg-ops'
|
|
9844
|
+
staging_low_urgency: '@slack-points-aggr-stg-ops'
|
|
9845
|
+
team: points-aggregation
|
|
9846
|
+
team_escalation: '[Points Aggregation] Primary'
|
|
9847
|
+
x-menu-order: 10
|
|
9848
|
+
x-permission:
|
|
9849
|
+
operator: OPEN
|
|
9850
|
+
permissions: []
|
|
9851
|
+
x-undo:
|
|
9852
|
+
type: safe
|
|
8413
9853
|
/api/v2/metrics/{metric_name}/tags:
|
|
8414
9854
|
delete:
|
|
8415
9855
|
description: 'Deletes a metric''s tag configuration. Can only be used with application
|
|
@@ -8610,7 +10050,7 @@ paths:
|
|
|
8610
10050
|
value: '"{{ unique_alnum }}"'
|
|
8611
10051
|
- name: body
|
|
8612
10052
|
value: "{\n \"data\": {\n \"attributes\": {\n \"tags\":[\"app\",
|
|
8613
|
-
\"datacenter\", \"{{ unique_alnum }}\"],\n \"metric_type\":\"
|
|
10053
|
+
\"datacenter\", \"{{ unique_alnum }}\"],\n \"metric_type\":\"gauge\"\n
|
|
8614
10054
|
\ },\n \"type\": \"manage_tags\",\n \"id\": \"{{ unique_alnum
|
|
8615
10055
|
}}\"\n }\n}"
|
|
8616
10056
|
step: there is a valid "metric_tag_configuration" in the system
|
|
@@ -8813,11 +10253,16 @@ paths:
|
|
|
8813
10253
|
tags:
|
|
8814
10254
|
- Processes
|
|
8815
10255
|
x-menu-order: 1
|
|
10256
|
+
x-pagination:
|
|
10257
|
+
cursorParam: page[cursor]
|
|
10258
|
+
cursorPath: meta.page.after
|
|
10259
|
+
limitParam: page[limit]
|
|
10260
|
+
resultsPath: data
|
|
8816
10261
|
x-undo:
|
|
8817
10262
|
type: safe
|
|
8818
10263
|
/api/v2/roles:
|
|
8819
10264
|
get:
|
|
8820
|
-
description: Returns all roles, including their names and
|
|
10265
|
+
description: Returns all roles, including their names and their unique identifiers.
|
|
8821
10266
|
operationId: ListRoles
|
|
8822
10267
|
parameters:
|
|
8823
10268
|
- $ref: '#/components/parameters/PageSize'
|
|
@@ -9364,22 +10809,249 @@ paths:
|
|
|
9364
10809
|
x-undo:
|
|
9365
10810
|
type: safe
|
|
9366
10811
|
post:
|
|
9367
|
-
description: Adds a user to a role.
|
|
9368
|
-
operationId: AddUserToRole
|
|
9369
|
-
parameters:
|
|
9370
|
-
- $ref: '#/components/parameters/RoleID'
|
|
10812
|
+
description: Adds a user to a role.
|
|
10813
|
+
operationId: AddUserToRole
|
|
10814
|
+
parameters:
|
|
10815
|
+
- $ref: '#/components/parameters/RoleID'
|
|
10816
|
+
requestBody:
|
|
10817
|
+
content:
|
|
10818
|
+
application/json:
|
|
10819
|
+
schema:
|
|
10820
|
+
$ref: '#/components/schemas/RelationshipToUser'
|
|
10821
|
+
required: true
|
|
10822
|
+
responses:
|
|
10823
|
+
'200':
|
|
10824
|
+
content:
|
|
10825
|
+
application/json:
|
|
10826
|
+
schema:
|
|
10827
|
+
$ref: '#/components/schemas/UsersResponse'
|
|
10828
|
+
description: OK
|
|
10829
|
+
'400':
|
|
10830
|
+
content:
|
|
10831
|
+
application/json:
|
|
10832
|
+
schema:
|
|
10833
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
10834
|
+
description: Bad Request
|
|
10835
|
+
'403':
|
|
10836
|
+
content:
|
|
10837
|
+
application/json:
|
|
10838
|
+
schema:
|
|
10839
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
10840
|
+
description: Authentication error
|
|
10841
|
+
'404':
|
|
10842
|
+
content:
|
|
10843
|
+
application/json:
|
|
10844
|
+
schema:
|
|
10845
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
10846
|
+
description: Not found
|
|
10847
|
+
'429':
|
|
10848
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
10849
|
+
security:
|
|
10850
|
+
- apiKeyAuth: []
|
|
10851
|
+
appKeyAuth: []
|
|
10852
|
+
- AuthZ:
|
|
10853
|
+
- user_access_manage
|
|
10854
|
+
summary: Add a user to a role
|
|
10855
|
+
tags:
|
|
10856
|
+
- Roles
|
|
10857
|
+
x-codegen-request-body-name: body
|
|
10858
|
+
x-given:
|
|
10859
|
+
permission_role:
|
|
10860
|
+
parameters:
|
|
10861
|
+
- name: role_id
|
|
10862
|
+
source: role.data.id
|
|
10863
|
+
- name: body
|
|
10864
|
+
value: "{\n \"data\": {\n \"id\": \"{{ user.data.id }}\",\n \"type\":
|
|
10865
|
+
\"{{ user.data.type }}\"\n }\n}"
|
|
10866
|
+
step: the "user" has the "role"
|
|
10867
|
+
x-menu-order: 10
|
|
10868
|
+
x-undo:
|
|
10869
|
+
type: safe
|
|
10870
|
+
/api/v2/rum/analytics/aggregate:
|
|
10871
|
+
post:
|
|
10872
|
+
description: The API endpoint to aggregate RUM events into buckets of computed
|
|
10873
|
+
metrics and timeseries.
|
|
10874
|
+
operationId: AggregateRUMEvents
|
|
10875
|
+
requestBody:
|
|
10876
|
+
content:
|
|
10877
|
+
application/json:
|
|
10878
|
+
schema:
|
|
10879
|
+
$ref: '#/components/schemas/RUMAggregateRequest'
|
|
10880
|
+
required: true
|
|
10881
|
+
responses:
|
|
10882
|
+
'200':
|
|
10883
|
+
content:
|
|
10884
|
+
application/json:
|
|
10885
|
+
schema:
|
|
10886
|
+
$ref: '#/components/schemas/RUMAnalyticsAggregateResponse'
|
|
10887
|
+
description: OK
|
|
10888
|
+
'400':
|
|
10889
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
10890
|
+
'403':
|
|
10891
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
|
10892
|
+
'429':
|
|
10893
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
10894
|
+
security:
|
|
10895
|
+
- apiKeyAuth: []
|
|
10896
|
+
appKeyAuth: []
|
|
10897
|
+
- AuthZ: []
|
|
10898
|
+
summary: Aggregate RUM events
|
|
10899
|
+
tags:
|
|
10900
|
+
- RUM
|
|
10901
|
+
x-codegen-request-body-name: body
|
|
10902
|
+
x-menu-order: 3
|
|
10903
|
+
x-undo:
|
|
10904
|
+
type: safe
|
|
10905
|
+
/api/v2/rum/events:
|
|
10906
|
+
get:
|
|
10907
|
+
description: 'List endpoint returns events that match a RUM search query.
|
|
10908
|
+
|
|
10909
|
+
[Results are paginated][1].
|
|
10910
|
+
|
|
10911
|
+
|
|
10912
|
+
Use this endpoint to see your latest RUM events.
|
|
10913
|
+
|
|
10914
|
+
|
|
10915
|
+
[1]: https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination'
|
|
10916
|
+
operationId: ListRUMEvents
|
|
10917
|
+
parameters:
|
|
10918
|
+
- description: Search query following RUM syntax.
|
|
10919
|
+
example: '@type:session @application_id:xxxx'
|
|
10920
|
+
in: query
|
|
10921
|
+
name: filter[query]
|
|
10922
|
+
required: false
|
|
10923
|
+
schema:
|
|
10924
|
+
type: string
|
|
10925
|
+
- description: Minimum timestamp for requested events.
|
|
10926
|
+
example: '2019-01-02T09:42:36.320Z'
|
|
10927
|
+
in: query
|
|
10928
|
+
name: filter[from]
|
|
10929
|
+
required: false
|
|
10930
|
+
schema:
|
|
10931
|
+
format: date-time
|
|
10932
|
+
type: string
|
|
10933
|
+
- description: Maximum timestamp for requested events.
|
|
10934
|
+
example: '2019-01-03T09:42:36.320Z'
|
|
10935
|
+
in: query
|
|
10936
|
+
name: filter[to]
|
|
10937
|
+
required: false
|
|
10938
|
+
schema:
|
|
10939
|
+
format: date-time
|
|
10940
|
+
type: string
|
|
10941
|
+
- description: Order of events in results.
|
|
10942
|
+
in: query
|
|
10943
|
+
name: sort
|
|
10944
|
+
required: false
|
|
10945
|
+
schema:
|
|
10946
|
+
$ref: '#/components/schemas/RUMSort'
|
|
10947
|
+
- description: List following results with a cursor provided in the previous
|
|
10948
|
+
query.
|
|
10949
|
+
example: eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==
|
|
10950
|
+
in: query
|
|
10951
|
+
name: page[cursor]
|
|
10952
|
+
required: false
|
|
10953
|
+
schema:
|
|
10954
|
+
type: string
|
|
10955
|
+
- description: Maximum number of events in the response.
|
|
10956
|
+
example: 25
|
|
10957
|
+
in: query
|
|
10958
|
+
name: page[limit]
|
|
10959
|
+
required: false
|
|
10960
|
+
schema:
|
|
10961
|
+
default: 10
|
|
10962
|
+
format: int32
|
|
10963
|
+
maximum: 1000
|
|
10964
|
+
type: integer
|
|
10965
|
+
responses:
|
|
10966
|
+
'200':
|
|
10967
|
+
content:
|
|
10968
|
+
application/json:
|
|
10969
|
+
schema:
|
|
10970
|
+
$ref: '#/components/schemas/RUMEventsResponse'
|
|
10971
|
+
description: OK
|
|
10972
|
+
'400':
|
|
10973
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
10974
|
+
'403':
|
|
10975
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
|
10976
|
+
'429':
|
|
10977
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
10978
|
+
security:
|
|
10979
|
+
- apiKeyAuth: []
|
|
10980
|
+
appKeyAuth: []
|
|
10981
|
+
- AuthZ: []
|
|
10982
|
+
summary: Get a list of RUM events
|
|
10983
|
+
tags:
|
|
10984
|
+
- RUM
|
|
10985
|
+
x-menu-order: 2
|
|
10986
|
+
x-pagination:
|
|
10987
|
+
cursorParam: page[cursor]
|
|
10988
|
+
cursorPath: meta.page.after
|
|
10989
|
+
limitParam: page[limit]
|
|
10990
|
+
resultsPath: data
|
|
10991
|
+
x-undo:
|
|
10992
|
+
type: safe
|
|
10993
|
+
/api/v2/rum/events/search:
|
|
10994
|
+
post:
|
|
10995
|
+
description: 'List endpoint returns RUM events that match a RUM search query.
|
|
10996
|
+
|
|
10997
|
+
[Results are paginated][1].
|
|
10998
|
+
|
|
10999
|
+
|
|
11000
|
+
Use this endpoint to build complex RUM events filtering and search.
|
|
11001
|
+
|
|
11002
|
+
|
|
11003
|
+
[1]: https://docs.datadoghq.com/logs/guide/collect-multiple-logs-with-pagination'
|
|
11004
|
+
operationId: SearchRUMEvents
|
|
11005
|
+
requestBody:
|
|
11006
|
+
content:
|
|
11007
|
+
application/json:
|
|
11008
|
+
schema:
|
|
11009
|
+
$ref: '#/components/schemas/RUMSearchEventsRequest'
|
|
11010
|
+
required: true
|
|
11011
|
+
responses:
|
|
11012
|
+
'200':
|
|
11013
|
+
content:
|
|
11014
|
+
application/json:
|
|
11015
|
+
schema:
|
|
11016
|
+
$ref: '#/components/schemas/RUMEventsResponse'
|
|
11017
|
+
description: OK
|
|
11018
|
+
'400':
|
|
11019
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
11020
|
+
'403':
|
|
11021
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
|
11022
|
+
'429':
|
|
11023
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
11024
|
+
security:
|
|
11025
|
+
- apiKeyAuth: []
|
|
11026
|
+
appKeyAuth: []
|
|
11027
|
+
- AuthZ: []
|
|
11028
|
+
summary: Search RUM events
|
|
11029
|
+
tags:
|
|
11030
|
+
- RUM
|
|
11031
|
+
x-codegen-request-body-name: body
|
|
11032
|
+
x-menu-order: 1
|
|
11033
|
+
x-pagination:
|
|
11034
|
+
cursorParam: body.page.cursor
|
|
11035
|
+
cursorPath: meta.page.after
|
|
11036
|
+
limitParam: body.page.limit
|
|
11037
|
+
resultsPath: data
|
|
11038
|
+
x-undo:
|
|
11039
|
+
type: safe
|
|
11040
|
+
/api/v2/saml_configurations/idp_metadata:
|
|
11041
|
+
post:
|
|
11042
|
+
description: 'Endpoint for uploading IdP metadata for SAML setup.
|
|
11043
|
+
|
|
11044
|
+
|
|
11045
|
+
Use this endpoint to upload or replace IdP metadata for SAML login configuration.'
|
|
11046
|
+
operationId: UploadIdPMetadata
|
|
9371
11047
|
requestBody:
|
|
9372
11048
|
content:
|
|
9373
|
-
|
|
11049
|
+
multipart/form-data:
|
|
9374
11050
|
schema:
|
|
9375
|
-
$ref: '#/components/schemas/
|
|
11051
|
+
$ref: '#/components/schemas/IdPMetadataFormData'
|
|
9376
11052
|
required: true
|
|
9377
11053
|
responses:
|
|
9378
11054
|
'200':
|
|
9379
|
-
content:
|
|
9380
|
-
application/json:
|
|
9381
|
-
schema:
|
|
9382
|
-
$ref: '#/components/schemas/UsersResponse'
|
|
9383
11055
|
description: OK
|
|
9384
11056
|
'400':
|
|
9385
11057
|
content:
|
|
@@ -9392,36 +11064,16 @@ paths:
|
|
|
9392
11064
|
application/json:
|
|
9393
11065
|
schema:
|
|
9394
11066
|
$ref: '#/components/schemas/APIErrorResponse'
|
|
9395
|
-
description:
|
|
9396
|
-
'404':
|
|
9397
|
-
content:
|
|
9398
|
-
application/json:
|
|
9399
|
-
schema:
|
|
9400
|
-
$ref: '#/components/schemas/APIErrorResponse'
|
|
9401
|
-
description: Not found
|
|
11067
|
+
description: Forbidden
|
|
9402
11068
|
'429':
|
|
9403
11069
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
9404
|
-
|
|
9405
|
-
- apiKeyAuth: []
|
|
9406
|
-
appKeyAuth: []
|
|
9407
|
-
- AuthZ:
|
|
9408
|
-
- user_access_manage
|
|
9409
|
-
summary: Add a user to a role
|
|
11070
|
+
summary: Upload IdP metadata
|
|
9410
11071
|
tags:
|
|
9411
|
-
-
|
|
11072
|
+
- Organizations
|
|
9412
11073
|
x-codegen-request-body-name: body
|
|
9413
|
-
x-
|
|
9414
|
-
permission_role:
|
|
9415
|
-
parameters:
|
|
9416
|
-
- name: role_id
|
|
9417
|
-
source: role.data.id
|
|
9418
|
-
- name: body
|
|
9419
|
-
value: "{\n \"data\": {\n \"id\": \"{{ user.data.id }}\",\n \"type\":
|
|
9420
|
-
\"{{ user.data.type }}\"\n }\n}"
|
|
9421
|
-
step: the "user" has the "role"
|
|
9422
|
-
x-menu-order: 10
|
|
11074
|
+
x-menu-order: 1
|
|
9423
11075
|
x-undo:
|
|
9424
|
-
type:
|
|
11076
|
+
type: idempotent
|
|
9425
11077
|
/api/v2/security/cloud_workload/policy/download:
|
|
9426
11078
|
get:
|
|
9427
11079
|
description: 'The download endpoint generates a Cloud Workload Security policy
|
|
@@ -10043,6 +11695,11 @@ paths:
|
|
|
10043
11695
|
tags:
|
|
10044
11696
|
- Security Monitoring
|
|
10045
11697
|
x-menu-order: 7
|
|
11698
|
+
x-pagination:
|
|
11699
|
+
cursorParam: page[cursor]
|
|
11700
|
+
cursorPath: meta.page.after
|
|
11701
|
+
limitParam: page[limit]
|
|
11702
|
+
resultsPath: data
|
|
10046
11703
|
x-undo:
|
|
10047
11704
|
type: safe
|
|
10048
11705
|
x-unstable: '**Note**: This endpoint is in public beta.
|
|
@@ -10085,11 +11742,90 @@ paths:
|
|
|
10085
11742
|
- Security Monitoring
|
|
10086
11743
|
x-codegen-request-body-name: body
|
|
10087
11744
|
x-menu-order: 6
|
|
11745
|
+
x-pagination:
|
|
11746
|
+
cursorParam: body.page.cursor
|
|
11747
|
+
cursorPath: meta.page.after
|
|
11748
|
+
limitParam: body.page.limit
|
|
11749
|
+
resultsPath: data
|
|
10088
11750
|
x-undo:
|
|
10089
11751
|
type: safe
|
|
10090
11752
|
x-unstable: '**Note**: This endpoint is in public beta.
|
|
10091
11753
|
|
|
10092
11754
|
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
11755
|
+
/api/v2/series:
|
|
11756
|
+
post:
|
|
11757
|
+
description: "The metrics end-point allows you to post time-series data that
|
|
11758
|
+
can be graphed on Datadog\u2019s dashboards.\nThe maximum payload size is
|
|
11759
|
+
500 kilobytes (512000 bytes). Compressed payloads must have a decompressed
|
|
11760
|
+
size of less than 5 megabytes (5242880 bytes).\n\nIf you\u2019re submitting
|
|
11761
|
+
metrics directly to the Datadog API without using DogStatsD, expect:\n\n-
|
|
11762
|
+
64 bits for the timestamp\n- 64 bits for the value\n- 20 bytes for the metric
|
|
11763
|
+
names\n- 50 bytes for the timeseries\n- The full payload is approximately
|
|
11764
|
+
100 bytes."
|
|
11765
|
+
operationId: SubmitMetrics
|
|
11766
|
+
parameters:
|
|
11767
|
+
- description: HTTP header used to compress the media-type.
|
|
11768
|
+
in: header
|
|
11769
|
+
name: Content-Encoding
|
|
11770
|
+
required: false
|
|
11771
|
+
schema:
|
|
11772
|
+
$ref: '#/components/schemas/MetricContentEncoding'
|
|
11773
|
+
requestBody:
|
|
11774
|
+
content:
|
|
11775
|
+
application/json:
|
|
11776
|
+
examples:
|
|
11777
|
+
dynamic-points:
|
|
11778
|
+
description: "Post time-series data that can be graphed on Datadog\u2019s
|
|
11779
|
+
dashboards."
|
|
11780
|
+
externalValue: examples/metrics/dynamic-points.json.sh
|
|
11781
|
+
summary: Dynamic Points
|
|
11782
|
+
x-variables:
|
|
11783
|
+
NOW: $(date +%s)
|
|
11784
|
+
schema:
|
|
11785
|
+
$ref: '#/components/schemas/MetricPayload'
|
|
11786
|
+
required: true
|
|
11787
|
+
responses:
|
|
11788
|
+
'202':
|
|
11789
|
+
content:
|
|
11790
|
+
application/json:
|
|
11791
|
+
schema:
|
|
11792
|
+
$ref: '#/components/schemas/IntakePayloadAccepted'
|
|
11793
|
+
description: Payload accepted
|
|
11794
|
+
'400':
|
|
11795
|
+
content:
|
|
11796
|
+
application/json:
|
|
11797
|
+
schema:
|
|
11798
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
11799
|
+
description: Bad Request
|
|
11800
|
+
'403':
|
|
11801
|
+
content:
|
|
11802
|
+
application/json:
|
|
11803
|
+
schema:
|
|
11804
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
11805
|
+
description: Authentication error
|
|
11806
|
+
'408':
|
|
11807
|
+
content:
|
|
11808
|
+
application/json:
|
|
11809
|
+
schema:
|
|
11810
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
11811
|
+
description: Request timeout
|
|
11812
|
+
'413':
|
|
11813
|
+
content:
|
|
11814
|
+
application/json:
|
|
11815
|
+
schema:
|
|
11816
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
11817
|
+
description: Payload too large
|
|
11818
|
+
'429':
|
|
11819
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
11820
|
+
security:
|
|
11821
|
+
- apiKeyAuth: []
|
|
11822
|
+
summary: Submit metrics
|
|
11823
|
+
tags:
|
|
11824
|
+
- Metrics
|
|
11825
|
+
x-codegen-request-body-name: body
|
|
11826
|
+
x-menu-order: 1
|
|
11827
|
+
x-undo:
|
|
11828
|
+
type: safe
|
|
10093
11829
|
/api/v2/service_accounts:
|
|
10094
11830
|
post:
|
|
10095
11831
|
description: Create a service account for your organization.
|
|
@@ -10762,6 +12498,241 @@ paths:
|
|
|
10762
12498
|
x-unstable: '**Note**: This endpoint is in public beta.
|
|
10763
12499
|
|
|
10764
12500
|
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
12501
|
+
/api/v2/usage/application_security:
|
|
12502
|
+
get:
|
|
12503
|
+
description: Get hourly usage for Application Security .
|
|
12504
|
+
operationId: GetUsageApplicationSecurityMonitoring
|
|
12505
|
+
parameters:
|
|
12506
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
12507
|
+
for usage beginning at this hour.'
|
|
12508
|
+
in: query
|
|
12509
|
+
name: start_hr
|
|
12510
|
+
required: true
|
|
12511
|
+
schema:
|
|
12512
|
+
format: date-time
|
|
12513
|
+
type: string
|
|
12514
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
12515
|
+
for usage ending
|
|
12516
|
+
|
|
12517
|
+
**before** this hour.'
|
|
12518
|
+
in: query
|
|
12519
|
+
name: end_hr
|
|
12520
|
+
required: false
|
|
12521
|
+
schema:
|
|
12522
|
+
format: date-time
|
|
12523
|
+
type: string
|
|
12524
|
+
responses:
|
|
12525
|
+
'200':
|
|
12526
|
+
content:
|
|
12527
|
+
application/json;datetime-format=rfc3339:
|
|
12528
|
+
schema:
|
|
12529
|
+
$ref: '#/components/schemas/UsageApplicationSecurityMonitoringResponse'
|
|
12530
|
+
description: OK
|
|
12531
|
+
'400':
|
|
12532
|
+
content:
|
|
12533
|
+
application/json;datetime-format=rfc3339:
|
|
12534
|
+
schema:
|
|
12535
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12536
|
+
description: Bad Request
|
|
12537
|
+
'403':
|
|
12538
|
+
content:
|
|
12539
|
+
application/json;datetime-format=rfc3339:
|
|
12540
|
+
schema:
|
|
12541
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12542
|
+
description: Forbidden - User is not authorized
|
|
12543
|
+
'429':
|
|
12544
|
+
content:
|
|
12545
|
+
application/json;datetime-format=rfc3339:
|
|
12546
|
+
schema:
|
|
12547
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12548
|
+
description: Too many requests
|
|
12549
|
+
security:
|
|
12550
|
+
- apiKeyAuth: []
|
|
12551
|
+
appKeyAuth: []
|
|
12552
|
+
- AuthZ:
|
|
12553
|
+
- usage_read
|
|
12554
|
+
summary: Get hourly usage for Application Security
|
|
12555
|
+
tags:
|
|
12556
|
+
- Usage Metering
|
|
12557
|
+
x-menu-order: 38
|
|
12558
|
+
x-undo:
|
|
12559
|
+
type: safe
|
|
12560
|
+
/api/v2/usage/cost_by_org:
|
|
12561
|
+
get:
|
|
12562
|
+
description: Get cost across multi-org account. Cost by org data for a given
|
|
12563
|
+
month becomes available no later than the 16th of the following month.
|
|
12564
|
+
operationId: GetCostByOrg
|
|
12565
|
+
parameters:
|
|
12566
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
|
|
12567
|
+
for cost beginning this month.'
|
|
12568
|
+
in: query
|
|
12569
|
+
name: start_month
|
|
12570
|
+
required: true
|
|
12571
|
+
schema:
|
|
12572
|
+
format: date-time
|
|
12573
|
+
type: string
|
|
12574
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
|
|
12575
|
+
for cost ending this month.'
|
|
12576
|
+
in: query
|
|
12577
|
+
name: end_month
|
|
12578
|
+
required: false
|
|
12579
|
+
schema:
|
|
12580
|
+
format: date-time
|
|
12581
|
+
type: string
|
|
12582
|
+
responses:
|
|
12583
|
+
'200':
|
|
12584
|
+
content:
|
|
12585
|
+
application/json;datetime-format=rfc3339:
|
|
12586
|
+
schema:
|
|
12587
|
+
$ref: '#/components/schemas/CostByOrgResponse'
|
|
12588
|
+
description: OK
|
|
12589
|
+
'400':
|
|
12590
|
+
content:
|
|
12591
|
+
application/json;datetime-format=rfc3339:
|
|
12592
|
+
schema:
|
|
12593
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12594
|
+
description: Bad Request
|
|
12595
|
+
'403':
|
|
12596
|
+
content:
|
|
12597
|
+
application/json;datetime-format=rfc3339:
|
|
12598
|
+
schema:
|
|
12599
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12600
|
+
description: Forbidden - User is not authorized
|
|
12601
|
+
'429':
|
|
12602
|
+
content:
|
|
12603
|
+
application/json;datetime-format=rfc3339:
|
|
12604
|
+
schema:
|
|
12605
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12606
|
+
description: Too many requests
|
|
12607
|
+
security:
|
|
12608
|
+
- apiKeyAuth: []
|
|
12609
|
+
appKeyAuth: []
|
|
12610
|
+
- AuthZ:
|
|
12611
|
+
- usage_read
|
|
12612
|
+
summary: Get cost across multi-org account
|
|
12613
|
+
tags:
|
|
12614
|
+
- Usage Metering
|
|
12615
|
+
x-menu-order: 39
|
|
12616
|
+
x-undo:
|
|
12617
|
+
type: safe
|
|
12618
|
+
/api/v2/usage/lambda_traced_invocations:
|
|
12619
|
+
get:
|
|
12620
|
+
description: Get hourly usage for Lambda Traced Invocations.
|
|
12621
|
+
operationId: GetUsageLambdaTracedInvocations
|
|
12622
|
+
parameters:
|
|
12623
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
12624
|
+
for usage beginning at this hour.'
|
|
12625
|
+
in: query
|
|
12626
|
+
name: start_hr
|
|
12627
|
+
required: true
|
|
12628
|
+
schema:
|
|
12629
|
+
format: date-time
|
|
12630
|
+
type: string
|
|
12631
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
12632
|
+
for usage ending
|
|
12633
|
+
|
|
12634
|
+
**before** this hour.'
|
|
12635
|
+
in: query
|
|
12636
|
+
name: end_hr
|
|
12637
|
+
required: false
|
|
12638
|
+
schema:
|
|
12639
|
+
format: date-time
|
|
12640
|
+
type: string
|
|
12641
|
+
responses:
|
|
12642
|
+
'200':
|
|
12643
|
+
content:
|
|
12644
|
+
application/json;datetime-format=rfc3339:
|
|
12645
|
+
schema:
|
|
12646
|
+
$ref: '#/components/schemas/UsageLambdaTracedInvocationsResponse'
|
|
12647
|
+
description: OK
|
|
12648
|
+
'400':
|
|
12649
|
+
content:
|
|
12650
|
+
application/json;datetime-format=rfc3339:
|
|
12651
|
+
schema:
|
|
12652
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12653
|
+
description: Bad Request
|
|
12654
|
+
'403':
|
|
12655
|
+
content:
|
|
12656
|
+
application/json;datetime-format=rfc3339:
|
|
12657
|
+
schema:
|
|
12658
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12659
|
+
description: Forbidden - User is not authorized
|
|
12660
|
+
'429':
|
|
12661
|
+
content:
|
|
12662
|
+
application/json;datetime-format=rfc3339:
|
|
12663
|
+
schema:
|
|
12664
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12665
|
+
description: Too many requests
|
|
12666
|
+
security:
|
|
12667
|
+
- apiKeyAuth: []
|
|
12668
|
+
appKeyAuth: []
|
|
12669
|
+
- AuthZ:
|
|
12670
|
+
- usage_read
|
|
12671
|
+
summary: Get hourly usage for Lambda Traced Invocations
|
|
12672
|
+
tags:
|
|
12673
|
+
- Usage Metering
|
|
12674
|
+
x-menu-order: 38
|
|
12675
|
+
x-undo:
|
|
12676
|
+
type: safe
|
|
12677
|
+
/api/v2/usage/observability_pipelines:
|
|
12678
|
+
get:
|
|
12679
|
+
description: Get hourly usage for Observability Pipelines.
|
|
12680
|
+
operationId: GetUsageObservabilityPipelines
|
|
12681
|
+
parameters:
|
|
12682
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
12683
|
+
for usage beginning at this hour.'
|
|
12684
|
+
in: query
|
|
12685
|
+
name: start_hr
|
|
12686
|
+
required: true
|
|
12687
|
+
schema:
|
|
12688
|
+
format: date-time
|
|
12689
|
+
type: string
|
|
12690
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
12691
|
+
for usage ending
|
|
12692
|
+
|
|
12693
|
+
**before** this hour.'
|
|
12694
|
+
in: query
|
|
12695
|
+
name: end_hr
|
|
12696
|
+
required: false
|
|
12697
|
+
schema:
|
|
12698
|
+
format: date-time
|
|
12699
|
+
type: string
|
|
12700
|
+
responses:
|
|
12701
|
+
'200':
|
|
12702
|
+
content:
|
|
12703
|
+
application/json;datetime-format=rfc3339:
|
|
12704
|
+
schema:
|
|
12705
|
+
$ref: '#/components/schemas/UsageObservabilityPipelinesResponse'
|
|
12706
|
+
description: OK
|
|
12707
|
+
'400':
|
|
12708
|
+
content:
|
|
12709
|
+
application/json;datetime-format=rfc3339:
|
|
12710
|
+
schema:
|
|
12711
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12712
|
+
description: Bad Request
|
|
12713
|
+
'403':
|
|
12714
|
+
content:
|
|
12715
|
+
application/json;datetime-format=rfc3339:
|
|
12716
|
+
schema:
|
|
12717
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12718
|
+
description: Forbidden - User is not authorized
|
|
12719
|
+
'429':
|
|
12720
|
+
content:
|
|
12721
|
+
application/json;datetime-format=rfc3339:
|
|
12722
|
+
schema:
|
|
12723
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12724
|
+
description: Too many requests
|
|
12725
|
+
security:
|
|
12726
|
+
- apiKeyAuth: []
|
|
12727
|
+
appKeyAuth: []
|
|
12728
|
+
- AuthZ:
|
|
12729
|
+
- usage_read
|
|
12730
|
+
summary: Get hourly usage for Observability Pipelines
|
|
12731
|
+
tags:
|
|
12732
|
+
- Usage Metering
|
|
12733
|
+
x-menu-order: 38
|
|
12734
|
+
x-undo:
|
|
12735
|
+
type: safe
|
|
10765
12736
|
/api/v2/user_invitations:
|
|
10766
12737
|
post:
|
|
10767
12738
|
description: Sends emails to one or more users inviting them to join the organization.
|
|
@@ -11239,7 +13210,9 @@ servers:
|
|
|
11239
13210
|
default: api
|
|
11240
13211
|
description: The subdomain where the API is deployed.
|
|
11241
13212
|
tags:
|
|
11242
|
-
- description:
|
|
13213
|
+
- description: Search your Audit Logs events over HTTP.
|
|
13214
|
+
name: Audit
|
|
13215
|
+
- description: '[AuthN Mappings API](https://docs.datadoghq.com/account_management/authn_mapping/?tab=example)
|
|
11243
13216
|
|
|
11244
13217
|
is used to automatically map group of users to roles in Datadog using attributes
|
|
11245
13218
|
|
|
@@ -11300,8 +13273,16 @@ tags:
|
|
|
11300
13273
|
that set number.\n\nThe Post, Patch, and Delete `manage_tags` API methods can
|
|
11301
13274
|
only be performed by\na user who has the `Manage Tags for Metrics` permission."
|
|
11302
13275
|
name: Metrics
|
|
13276
|
+
- description: Create, edit, and manage your organizations. Read more about [multi-org
|
|
13277
|
+
accounts](https://docs.datadoghq.com/account_management/multi_organization).
|
|
13278
|
+
externalDocs:
|
|
13279
|
+
description: Find out more at
|
|
13280
|
+
url: https://docs.datadoghq.com/account_management/multi_organization
|
|
13281
|
+
name: Organizations
|
|
11303
13282
|
- description: The processes API allows you to query processes data for your organization.
|
|
11304
13283
|
name: Processes
|
|
13284
|
+
- description: Search or aggregate your RUM events over HTTP.
|
|
13285
|
+
name: RUM
|
|
11305
13286
|
- description: 'The Roles API is used to create and manage Datadog roles, what
|
|
11306
13287
|
|
|
11307
13288
|
[global permissions](https://docs.datadoghq.com/account_management/rbac/)
|
|
@@ -11323,6 +13304,27 @@ tags:
|
|
|
11323
13304
|
name: Security Monitoring
|
|
11324
13305
|
- description: Create, edit, and disable service accounts.
|
|
11325
13306
|
name: Service Accounts
|
|
13307
|
+
- description: 'The usage metering API allows you to get hourly, daily, and
|
|
13308
|
+
|
|
13309
|
+
monthly usage across multiple facets of Datadog.
|
|
13310
|
+
|
|
13311
|
+
This API is available to all Pro and Enterprise customers.
|
|
13312
|
+
|
|
13313
|
+
Usage is only accessible for [parent-level organizations](https://docs.datadoghq.com/account_management/multi_organization/).
|
|
13314
|
+
|
|
13315
|
+
|
|
13316
|
+
**Note**: Usage data is delayed by up to 72 hours from when it was incurred.
|
|
13317
|
+
|
|
13318
|
+
It is retained for 15 months.
|
|
13319
|
+
|
|
13320
|
+
|
|
13321
|
+
You can retrieve up to 24 hours of hourly usage data for multiple organizations,
|
|
13322
|
+
|
|
13323
|
+
and up to two months of hourly usage data for a single organization in one request.'
|
|
13324
|
+
externalDocs:
|
|
13325
|
+
description: Find out more at
|
|
13326
|
+
url: https://docs.datadoghq.com/account_management/billing/usage_details/
|
|
13327
|
+
name: Usage Metering
|
|
11326
13328
|
- description: Create, edit, and disable users.
|
|
11327
13329
|
externalDocs:
|
|
11328
13330
|
url: https://docs.datadoghq.com/account_management/users
|