datadog_api_client 1.8.0 → 1.11.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 +288 -71
- data/.generator/pyproject.toml +3 -0
- data/.generator/schemas/v1/openapi.yaml +1461 -270
- data/.generator/schemas/v2/openapi.yaml +1887 -221
- data/.generator/src/generator/__main__.py +1 -1
- data/.generator/src/generator/cli.py +16 -13
- data/.generator/src/generator/formatter.py +106 -39
- data/.generator/src/generator/openapi.py +184 -44
- data/.generator/src/generator/replacement.json +1 -0
- data/.generator/src/generator/templates/api.j2 +38 -17
- data/.generator/src/generator/templates/api_client.j2 +107 -67
- data/.generator/src/generator/templates/api_error.j2 +1 -1
- data/.generator/src/generator/templates/configuration.j2 +2 -13
- data/.generator/src/generator/templates/example.j2 +40 -0
- data/.generator/src/generator/templates/model.j2 +2 -2
- data/.generator/src/generator/templates/model_base.j2 +6 -6
- data/.generator/src/generator/templates/model_generic.j2 +46 -59
- data/.generator/src/generator/templates/model_oneof.j2 +4 -4
- data/.generator/src/generator/templates/package.j2 +9 -8
- data/.generator/tests/test_scenarios.py +6 -0
- data/.github/workflows/prepare_release.yml +15 -3
- data/.github/workflows/test.yml +10 -5
- data/.github/workflows/test_integration.yml +0 -7
- data/.pre-commit-config.yaml +12 -3
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +98 -0
- data/Makefile +3 -1
- data/README.md +17 -1
- data/check-examples.sh +0 -2
- data/datadog_api_client.gemspec +1 -1
- data/examples/v1/aws-integration/CreateAWSAccount.rb +26 -0
- data/examples/v1/aws-integration/CreateAWSTagFilter.rb +11 -0
- data/examples/v1/aws-integration/CreateNewAWSExternalID.rb +26 -0
- data/examples/v1/aws-integration/DeleteAWSAccount.rb +10 -0
- data/examples/v1/aws-integration/DeleteAWSTagFilter.rb +10 -0
- data/examples/v1/aws-integration/ListAWSAccounts.rb +5 -0
- data/examples/v1/aws-integration/ListAWSTagFilters.rb +5 -0
- data/examples/v1/aws-integration/ListAvailableAWSNamespaces.rb +5 -0
- data/examples/v1/aws-integration/UpdateAWSAccount.rb +30 -0
- data/examples/v1/aws-logs-integration/CheckAWSLogsLambdaAsync.rb +10 -0
- data/examples/v1/aws-logs-integration/CheckAWSLogsServicesAsync.rb +17 -0
- data/examples/v1/aws-logs-integration/CreateAWSLambdaARN.rb +10 -0
- data/examples/v1/aws-logs-integration/DeleteAWSLambdaARN.rb +10 -0
- data/examples/v1/aws-logs-integration/EnableAWSLogServices.rb +17 -0
- data/examples/v1/aws-logs-integration/ListAWSLogsIntegrations.rb +5 -0
- data/examples/v1/aws-logs-integration/ListAWSLogsServices.rb +5 -0
- data/examples/v1/azure-integration/CreateAzureIntegration.rb +18 -0
- data/examples/v1/azure-integration/DeleteAzureIntegration.rb +18 -0
- data/examples/v1/azure-integration/ListAzureIntegration.rb +5 -0
- data/examples/v1/azure-integration/UpdateAzureHostFilters.rb +18 -0
- data/examples/v1/azure-integration/UpdateAzureIntegration.rb +18 -0
- data/examples/v1/dashboards/CreateDashboard_1442588603.rb +61 -0
- data/examples/v1/dashboards/CreateDashboard_2308247857.rb +1 -1
- data/examples/v1/dashboards/CreateDashboard_2316374332.rb +1 -1
- data/examples/v1/dashboards/CreateDashboard_2338918735.rb +1 -1
- data/examples/v1/dashboards/CreateDashboard_252716965.rb +52 -0
- data/examples/v1/dashboards/CreateDashboard_3882428227.rb +60 -0
- data/examples/v1/dashboards/CreateDashboard_4026341408.rb +32 -0
- data/examples/v1/dashboards/CreateDashboard_4076476470.rb +32 -0
- data/examples/v1/dashboards/CreateDashboard_765140092.rb +53 -0
- data/examples/v1/dashboards/UpdateDashboard.rb +1 -1
- data/examples/v1/downtimes/CreateDowntime_2908359488.rb +1 -0
- data/examples/v1/downtimes/CreateDowntime_3059354445.rb +1 -0
- data/examples/v1/downtimes/ListDowntimes.rb +5 -0
- data/examples/v1/downtimes/ListMonitorDowntimes.rb +5 -0
- data/examples/v1/downtimes/UpdateDowntime.rb +1 -0
- data/examples/v1/events/GetEvent.rb +5 -0
- data/examples/v1/events/ListEvents.rb +5 -0
- data/examples/v1/gcp-integration/CreateGCPIntegration.rb +22 -0
- data/examples/v1/gcp-integration/DeleteGCPIntegration.rb +22 -0
- data/examples/v1/gcp-integration/ListGCPIntegration.rb +5 -0
- data/examples/v1/gcp-integration/UpdateGCPIntegration.rb +22 -0
- data/examples/v1/hosts/GetHostTotals.rb +5 -0
- data/examples/v1/hosts/MuteHost.rb +11 -0
- data/examples/v1/hosts/UnmuteHost.rb +5 -0
- data/examples/v1/key-management/CreateAPIKey.rb +9 -0
- data/examples/v1/key-management/CreateApplicationKey.rb +9 -0
- data/examples/v1/key-management/DeleteAPIKey.rb +5 -0
- data/examples/v1/key-management/DeleteApplicationKey.rb +5 -0
- data/examples/v1/key-management/GetAPIKey.rb +5 -0
- data/examples/v1/key-management/GetApplicationKey.rb +5 -0
- data/examples/v1/key-management/ListAPIKeys.rb +5 -0
- data/examples/v1/key-management/ListApplicationKeys.rb +5 -0
- data/examples/v1/key-management/UpdateAPIKey.rb +9 -0
- data/examples/v1/key-management/UpdateApplicationKey.rb +9 -0
- data/examples/v1/logs/ListLogs.rb +15 -0
- data/examples/v1/logs/ListLogs_235998668.rb +1 -1
- data/examples/v1/logs-indexes/CreateLogsIndex.rb +23 -0
- data/examples/v1/logs-indexes/GetLogsIndex.rb +5 -0
- data/examples/v1/logs-indexes/GetLogsIndexOrder.rb +5 -0
- data/examples/v1/logs-indexes/ListLogIndexes.rb +5 -0
- data/examples/v1/logs-indexes/UpdateLogsIndex.rb +20 -0
- data/examples/v1/logs-indexes/UpdateLogsIndexOrder.rb +13 -0
- data/examples/v1/logs-pipelines/CreateLogsPipeline.rb +24 -0
- data/examples/v1/logs-pipelines/DeleteLogsPipeline.rb +5 -0
- data/examples/v1/logs-pipelines/GetLogsPipeline.rb +5 -0
- data/examples/v1/logs-pipelines/GetLogsPipelineOrder.rb +5 -0
- data/examples/v1/logs-pipelines/ListLogsPipelines.rb +5 -0
- data/examples/v1/logs-pipelines/UpdateLogsPipeline.rb +24 -0
- data/examples/v1/logs-pipelines/UpdateLogsPipelineOrder.rb +13 -0
- data/examples/v1/metrics/GetMetricMetadata.rb +5 -0
- data/examples/v1/metrics/ListActiveMetrics.rb +5 -0
- data/examples/v1/metrics/ListMetrics.rb +5 -0
- data/examples/v1/metrics/SubmitDistributionPoints.rb +22 -0
- data/examples/v1/metrics/SubmitDistributionPoints_3109558960.rb +25 -0
- data/examples/v1/metrics/UpdateMetricMetadata.rb +11 -0
- data/examples/v1/monitors/CreateMonitor_1969035628.rb +52 -0
- data/examples/v1/monitors/CreateMonitor_2520912138.rb +22 -0
- data/examples/v1/monitors/CreateMonitor_3824294658.rb +52 -0
- data/examples/v1/monitors/ListMonitors_3448441939.rb +9 -0
- data/examples/v1/monitors/ValidateExistingMonitor.rb +39 -0
- data/examples/v1/organizations/CreateChildOrg.rb +15 -0
- data/examples/v1/organizations/DowngradeOrg.rb +5 -0
- data/examples/v1/organizations/GetOrg.rb +5 -0
- data/examples/v1/organizations/ListOrgs.rb +5 -0
- data/examples/v1/organizations/UpdateOrg.rb +41 -0
- data/examples/v1/organizations/UploadIdPForOrg.rb +5 -0
- data/examples/v1/pagerduty-integration/CreatePagerDutyIntegrationService.rb +10 -0
- data/examples/v1/pagerduty-integration/DeletePagerDutyIntegrationService.rb +5 -0
- data/examples/v1/pagerduty-integration/GetPagerDutyIntegrationService.rb +5 -0
- data/examples/v1/pagerduty-integration/UpdatePagerDutyIntegrationService.rb +9 -0
- data/examples/v1/security-monitoring/AddSecurityMonitoringSignalToIncident.rb +9 -0
- data/examples/v1/security-monitoring/EditSecurityMonitoringSignalAssignee.rb +9 -0
- data/examples/v1/security-monitoring/EditSecurityMonitoringSignalState.rb +10 -0
- data/examples/v1/service-level-objective-corrections/CreateSLOCorrection.rb +0 -3
- data/examples/v1/service-level-objective-corrections/CreateSLOCorrection_1326388368.rb +0 -3
- data/examples/v1/service-level-objective-corrections/DeleteSLOCorrection.rb +5 -0
- data/examples/v1/service-level-objective-corrections/GetSLOCorrection.rb +0 -3
- data/examples/v1/service-level-objective-corrections/ListSLOCorrection.rb +0 -3
- data/examples/v1/service-level-objective-corrections/UpdateSLOCorrection.rb +0 -3
- data/examples/v1/service-level-objectives/CheckCanDeleteSLO.rb +5 -0
- data/examples/v1/service-level-objectives/DeleteSLOTimeframeInBulk.rb +15 -0
- data/examples/v1/service-level-objectives/GetSLOCorrections.rb +0 -3
- data/examples/v1/service-level-objectives/ListSLOs.rb +1 -1
- data/examples/v1/service-level-objectives/SearchSLO.rb +16 -0
- data/examples/v1/slack-integration/CreateSlackIntegrationChannel.rb +15 -0
- data/examples/v1/slack-integration/GetSlackIntegrationChannel.rb +5 -0
- data/examples/v1/slack-integration/GetSlackIntegrationChannels.rb +5 -0
- data/examples/v1/slack-integration/RemoveSlackIntegrationChannel.rb +5 -0
- data/examples/v1/slack-integration/UpdateSlackIntegrationChannel.rb +15 -0
- data/examples/v1/snapshots/GetGraphSnapshot.rb +2 -0
- data/examples/v1/synthetics/CreateGlobalVariable.rb +32 -0
- data/examples/v1/synthetics/CreatePrivateLocation.rb +21 -0
- data/examples/v1/synthetics/CreateSyntheticsAPITest.rb +22 -60
- data/examples/v1/synthetics/CreateSyntheticsAPITest_1402674167.rb +44 -0
- data/examples/v1/synthetics/CreateSyntheticsBrowserTest.rb +1 -1
- data/examples/v1/synthetics/CreateSyntheticsBrowserTest_2932742688.rb +67 -0
- data/examples/v1/synthetics/DeleteGlobalVariable.rb +5 -0
- data/examples/v1/synthetics/DeletePrivateLocation.rb +5 -0
- data/examples/v1/synthetics/DeleteTests.rb +14 -0
- data/examples/v1/synthetics/EditGlobalVariable.rb +32 -0
- data/examples/v1/synthetics/GetAPITest.rb +5 -0
- data/examples/v1/synthetics/GetAPITestLatestResults.rb +5 -0
- data/examples/v1/synthetics/GetAPITestResult.rb +5 -0
- data/examples/v1/synthetics/GetBrowserTest.rb +5 -0
- data/examples/v1/synthetics/GetBrowserTestLatestResults.rb +5 -0
- data/examples/v1/synthetics/GetBrowserTestResult.rb +5 -0
- data/examples/v1/synthetics/GetGlobalVariable.rb +5 -0
- data/examples/v1/synthetics/GetPrivateLocation.rb +5 -0
- data/examples/v1/synthetics/GetSyntheticsCIBatch.rb +5 -0
- data/examples/v1/synthetics/GetTest.rb +5 -0
- data/examples/v1/synthetics/ListGlobalVariables.rb +5 -0
- data/examples/v1/synthetics/ListLocations.rb +5 -0
- data/examples/v1/synthetics/ListTests.rb +5 -0
- data/examples/v1/synthetics/TriggerCITests.rb +32 -0
- data/examples/v1/synthetics/UpdateBrowserTest.rb +72 -0
- data/examples/v1/synthetics/UpdatePrivateLocation.rb +18 -0
- data/examples/v1/synthetics/UpdateTestPauseStatus.rb +9 -0
- data/examples/v1/tags/CreateHostTags.rb +12 -0
- data/examples/v1/tags/DeleteHostTags.rb +5 -0
- data/examples/v1/tags/GetHostTags.rb +5 -0
- data/examples/v1/tags/ListHostTags.rb +5 -0
- data/examples/v1/tags/UpdateHostTags.rb +12 -0
- data/examples/v1/usage-metering/GetDailyCustomReports.rb +8 -0
- data/examples/v1/usage-metering/GetHourlyUsageAttribution.rb +1 -1
- data/examples/v1/usage-metering/GetMonthlyCustomReports.rb +8 -0
- data/examples/v1/usage-metering/GetMonthlyUsageAttribution.rb +1 -1
- data/examples/v1/usage-metering/GetMonthlyUsageAttribution_3849653599.rb +11 -0
- data/examples/v1/usage-metering/GetSpecifiedDailyCustomReports.rb +8 -0
- data/examples/v1/usage-metering/GetSpecifiedMonthlyCustomReports.rb +8 -0
- data/examples/v1/usage-metering/GetUsageAttribution.rb +1 -1
- data/examples/v1/usage-metering/GetUsageAuditLogs.rb +8 -0
- data/examples/v1/usage-metering/GetUsageBillableSummary.rb +5 -0
- data/examples/v1/usage-metering/GetUsageCWS.rb +8 -0
- data/examples/v1/usage-metering/GetUsageDBM.rb +8 -0
- data/examples/v1/usage-metering/GetUsageFargate.rb +8 -0
- data/examples/v1/usage-metering/GetUsageHosts.rb +8 -0
- data/examples/v1/usage-metering/GetUsageLambda.rb +8 -0
- data/examples/v1/usage-metering/GetUsageLogs.rb +8 -0
- data/examples/v1/usage-metering/GetUsageLogsByIndex.rb +8 -0
- data/examples/v1/usage-metering/GetUsageLogsByRetention.rb +8 -0
- data/examples/v1/usage-metering/GetUsageNetworkFlows.rb +8 -0
- data/examples/v1/usage-metering/GetUsageNetworkHosts.rb +8 -0
- data/examples/v1/usage-metering/GetUsageRumSessions.rb +8 -0
- data/examples/v1/usage-metering/GetUsageRumSessions_3271366243.rb +9 -0
- data/examples/v1/usage-metering/GetUsageRumUnits.rb +8 -0
- data/examples/v1/usage-metering/GetUsageSDS.rb +8 -0
- data/examples/v1/usage-metering/GetUsageSummary.rb +5 -0
- data/examples/v1/usage-metering/GetUsageSynthetics.rb +5 -0
- data/examples/v1/usage-metering/GetUsageSyntheticsAPI.rb +8 -0
- data/examples/v1/usage-metering/GetUsageSyntheticsBrowser.rb +8 -0
- data/examples/v1/usage-metering/GetUsageTimeseries.rb +8 -0
- data/examples/v1/usage-metering/GetUsageTopAvgMetrics.rb +8 -0
- data/examples/v1/users/CreateUser.rb +13 -0
- data/examples/v1/users/DisableUser.rb +5 -0
- data/examples/v1/users/GetUser.rb +5 -0
- data/examples/v1/users/ListUsers.rb +5 -0
- data/examples/v1/users/UpdateUser.rb +13 -0
- data/examples/v1/webhooks-integration/GetWebhooksIntegrationCustomVariable.rb +5 -0
- data/examples/v2/authn-mappings/CreateAuthNMapping.rb +1 -1
- data/examples/v2/authn-mappings/DeleteAuthNMapping.rb +1 -1
- data/examples/v2/authn-mappings/GetAuthNMapping.rb +1 -1
- data/examples/v2/authn-mappings/ListAuthNMappings.rb +1 -1
- data/examples/v2/authn-mappings/UpdateAuthNMapping.rb +1 -1
- data/examples/v2/dashboard-lists/CreateDashboardListItems.rb +14 -0
- data/examples/v2/dashboard-lists/CreateDashboardListItems_3995409989.rb +20 -0
- data/examples/v2/dashboard-lists/CreateDashboardListItems_825696022.rb +20 -0
- data/examples/v2/dashboard-lists/DeleteDashboardListItems.rb +14 -0
- data/examples/v2/dashboard-lists/DeleteDashboardListItems_2656706656.rb +20 -0
- data/examples/v2/dashboard-lists/DeleteDashboardListItems_3851624753.rb +20 -0
- data/examples/v2/dashboard-lists/GetDashboardListItems.rb +8 -0
- data/examples/v2/dashboard-lists/UpdateDashboardListItems.rb +20 -0
- data/examples/v2/key-management/CreateCurrentUserApplicationKey.rb +19 -0
- data/examples/v2/key-management/DeleteApplicationKey.rb +5 -0
- data/examples/v2/key-management/DeleteCurrentUserApplicationKey.rb +5 -0
- data/examples/v2/key-management/GetCurrentUserApplicationKey.rb +5 -0
- data/examples/v2/key-management/ListApplicationKeys.rb +5 -0
- data/examples/v2/key-management/ListCurrentUserApplicationKeys.rb +5 -0
- data/examples/v2/logs/AggregateLogs_2955613758.rb +1 -1
- data/examples/v2/logs/ListLogsGet.rb +5 -0
- data/examples/v2/logs/SubmitLog.rb +16 -0
- data/examples/v2/logs-archives/AddReadRoleToArchive.rb +12 -0
- data/examples/v2/logs-archives/CreateLogsArchive.rb +30 -0
- data/examples/v2/logs-archives/DeleteLogsArchive.rb +5 -0
- data/examples/v2/logs-archives/GetLogsArchive.rb +5 -0
- data/examples/v2/logs-archives/GetLogsArchiveOrder.rb +5 -0
- data/examples/v2/logs-archives/ListArchiveReadRoles.rb +5 -0
- data/examples/v2/logs-archives/ListLogsArchives.rb +5 -0
- data/examples/v2/logs-archives/RemoveRoleFromArchive.rb +12 -0
- data/examples/v2/logs-archives/UpdateLogsArchive.rb +30 -0
- data/examples/v2/logs-archives/UpdateLogsArchiveOrder.rb +18 -0
- data/examples/v2/metrics/CreateTagConfiguration.rb +19 -0
- data/examples/v2/metrics/DeleteTagConfiguration.rb +5 -0
- data/examples/v2/metrics/EstimateMetricsOutputSeries.rb +9 -0
- data/examples/v2/metrics/ListTagConfigurationByName.rb +8 -0
- data/examples/v2/metrics/ListTagConfigurations.rb +5 -0
- data/examples/v2/metrics/ListTagConfigurations_103226315.rb +8 -0
- data/examples/v2/metrics/ListTagConfigurations_1799362914.rb +0 -3
- data/examples/v2/metrics/ListTagsByMetricName.rb +8 -0
- data/examples/v2/metrics/ListVolumesByMetricName.rb +5 -0
- data/examples/v2/metrics/SubmitMetrics.rb +20 -0
- data/examples/v2/metrics/UpdateTagConfiguration.rb +20 -0
- data/examples/v2/opsgenie-integration/CreateOpsgenieService.rb +16 -0
- data/examples/v2/opsgenie-integration/DeleteOpsgenieService.rb +8 -0
- data/examples/v2/opsgenie-integration/GetOpsgenieService.rb +8 -0
- data/examples/v2/opsgenie-integration/ListOpsgenieServices.rb +5 -0
- data/examples/v2/opsgenie-integration/UpdateOpsgenieService.rb +21 -0
- data/examples/v2/organizations/UploadIdPMetadata.rb +8 -0
- data/examples/v2/rum/AggregateRUMEvents.rb +33 -0
- data/examples/v2/rum/SearchRUMEvents.rb +1 -4
- data/examples/v2/security-monitoring/DeleteSecurityFilter.rb +5 -0
- data/examples/v2/security-monitoring/GetSecurityMonitoringRule.rb +5 -0
- data/examples/v2/security-monitoring/ListSecurityMonitoringRules.rb +5 -0
- data/examples/v2/security-monitoring/ListSecurityMonitoringSignals.rb +5 -0
- data/examples/v2/security-monitoring/SearchSecurityMonitoringSignals.rb +21 -0
- data/examples/v2/security-monitoring/UpdateSecurityMonitoringRule.rb +46 -0
- data/examples/v2/service-accounts/CreateServiceAccountApplicationKey.rb +19 -0
- data/examples/v2/service-accounts/DeleteServiceAccountApplicationKey.rb +5 -0
- data/examples/v2/service-accounts/GetServiceAccountApplicationKey.rb +5 -0
- data/examples/v2/service-accounts/ListServiceAccountApplicationKeys.rb +5 -0
- data/examples/v2/service-accounts/UpdateServiceAccountApplicationKey.rb +20 -0
- data/examples/v2/usage-metering/GetCostByOrg.rb +5 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg.rb +5 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg_1171921972.rb +9 -0
- data/examples/v2/usage-metering/GetEstimatedCostByOrg_627383212.rb +9 -0
- data/examples/v2/usage-metering/GetUsageApplicationSecurityMonitoring.rb +8 -0
- data/examples/v2/usage-metering/GetUsageLambdaTracedInvocations.rb +8 -0
- data/examples/v2/usage-metering/GetUsageObservabilityPipelines.rb +8 -0
- data/examples/v2/users/GetUser.rb +5 -0
- data/examples/v2/users/ListUserOrganizations.rb +5 -0
- data/lib/datadog_api_client/user_agent.rb +15 -0
- data/lib/datadog_api_client/v1/api/authentication_api.rb +7 -6
- data/lib/datadog_api_client/v1/api/aws_integration_api.rb +60 -67
- data/lib/datadog_api_client/v1/api/aws_logs_integration_api.rb +47 -61
- data/lib/datadog_api_client/v1/api/azure_integration_api.rb +34 -41
- data/lib/datadog_api_client/v1/api/dashboard_lists_api.rb +34 -34
- data/lib/datadog_api_client/v1/api/dashboards_api.rb +47 -53
- data/lib/datadog_api_client/v1/api/downtimes_api.rb +47 -48
- data/lib/datadog_api_client/v1/api/events_api.rb +19 -38
- data/lib/datadog_api_client/v1/api/gcp_integration_api.rb +28 -30
- data/lib/datadog_api_client/v1/api/hosts_api.rb +27 -39
- data/lib/datadog_api_client/v1/api/ip_ranges_api.rb +7 -6
- data/lib/datadog_api_client/v1/api/key_management_api.rb +70 -70
- data/lib/datadog_api_client/v1/api/logs_api.rb +12 -40
- data/lib/datadog_api_client/v1/api/logs_indexes_api.rb +41 -46
- data/lib/datadog_api_client/v1/api/logs_pipelines_api.rb +47 -57
- data/lib/datadog_api_client/v1/api/metrics_api.rb +122 -57
- data/lib/datadog_api_client/v1/api/monitors_api.rb +209 -305
- data/lib/datadog_api_client/v1/api/notebooks_api.rb +35 -46
- data/lib/datadog_api_client/v1/api/organizations_api.rb +113 -55
- data/lib/datadog_api_client/v1/api/pager_duty_integration_api.rb +28 -29
- data/lib/datadog_api_client/v1/api/security_monitoring_api.rb +266 -0
- data/lib/datadog_api_client/v1/api/service_checks_api.rb +6 -10
- data/lib/datadog_api_client/v1/api/service_level_objective_corrections_api.rb +36 -36
- data/lib/datadog_api_client/v1/api/service_level_objectives_api.rb +147 -100
- data/lib/datadog_api_client/v1/api/slack_integration_api.rb +35 -40
- data/lib/datadog_api_client/v1/api/snapshots_api.rb +10 -12
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +189 -202
- data/lib/datadog_api_client/v1/api/tags_api.rb +35 -44
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +295 -322
- data/lib/datadog_api_client/v1/api/users_api.rb +32 -40
- data/lib/datadog_api_client/v1/api/webhooks_integration_api.rb +55 -60
- data/lib/datadog_api_client/v1/api_client.rb +104 -64
- data/lib/datadog_api_client/v1/configuration.rb +52 -18
- data/lib/datadog_api_client/v1/models/add_signal_to_incident_request.rb +142 -0
- data/lib/datadog_api_client/v1/models/alert_graph_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/alert_value_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/api_error_response.rb +0 -11
- data/lib/datadog_api_client/v1/models/api_key.rb +0 -14
- data/lib/datadog_api_client/v1/models/api_key_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/api_key_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/apm_stats_query_column_type.rb +0 -11
- data/lib/datadog_api_client/v1/models/apm_stats_query_definition.rb +0 -23
- data/lib/datadog_api_client/v1/models/application_key.rb +0 -14
- data/lib/datadog_api_client/v1/models/application_key_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/application_key_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/authentication_validation_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_account.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_account_and_lambda_request.rb +0 -14
- data/lib/datadog_api_client/v1/models/aws_account_create_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_account_delete_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_account_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_async_error.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_async_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_lambda.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_list_services_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_logs_services_request.rb +0 -14
- data/lib/datadog_api_client/v1/models/aws_tag_filter.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_tag_filter_create_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_tag_filter_delete_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/aws_tag_filter_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/azure_account.rb +0 -8
- data/lib/datadog_api_client/v1/models/cancel_downtimes_by_scope_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/canceled_downtimes_ids.rb +0 -8
- data/lib/datadog_api_client/v1/models/change_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/change_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/check_can_delete_monitor_response.rb +0 -11
- data/lib/datadog_api_client/v1/models/check_can_delete_monitor_response_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/check_can_delete_slo_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/check_can_delete_slo_response_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/check_status_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/creator.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard.rb +0 -17
- data/lib/datadog_api_client/v1/models/dashboard_bulk_action_data.rb +0 -14
- data/lib/datadog_api_client/v1/models/dashboard_bulk_delete_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/dashboard_delete_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_list.rb +0 -11
- data/lib/datadog_api_client/v1/models/dashboard_list_delete_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_list_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_restore_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/dashboard_summary.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_summary_definition.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_template_variable.rb +0 -11
- data/lib/datadog_api_client/v1/models/dashboard_template_variable_preset.rb +0 -8
- data/lib/datadog_api_client/v1/models/dashboard_template_variable_preset_value.rb +0 -8
- data/lib/datadog_api_client/v1/models/deleted_monitor.rb +0 -8
- data/lib/datadog_api_client/v1/models/distribution_point_item.rb +63 -0
- data/lib/datadog_api_client/v1/models/distribution_points_content_encoding.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_points_payload.rb +124 -0
- data/lib/datadog_api_client/v1/models/distribution_points_series.rb +179 -0
- data/lib/datadog_api_client/v1/models/distribution_points_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_query.rb +64 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_histogram_request_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/distribution_widget_request.rb +21 -9
- data/lib/datadog_api_client/v1/models/distribution_widget_x_axis.rb +0 -8
- data/lib/datadog_api_client/v1/models/distribution_widget_y_axis.rb +0 -8
- data/lib/datadog_api_client/v1/models/downtime.rb +11 -18
- data/lib/datadog_api_client/v1/models/downtime_child.rb +11 -18
- data/lib/datadog_api_client/v1/models/downtime_recurrence.rb +0 -14
- data/lib/datadog_api_client/v1/models/event.rb +2 -13
- data/lib/datadog_api_client/v1/models/event_create_request.rb +1 -21
- data/lib/datadog_api_client/v1/models/event_create_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/event_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/event_query_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/event_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/event_stream_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/event_timeline_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_dependency_stats_query_definition.rb +0 -29
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stat_name.rb +1 -0
- data/lib/datadog_api_client/v1/models/formula_and_function_apm_resource_stats_query_definition.rb +0 -23
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition_compute.rb +0 -11
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_definition_search.rb +0 -11
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_group_by.rb +0 -11
- data/lib/datadog_api_client/v1/models/formula_and_function_event_query_group_by_sort.rb +0 -11
- data/lib/datadog_api_client/v1/models/formula_and_function_metric_query_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/formula_and_function_process_query_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/free_text_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/funnel_query.rb +0 -17
- data/lib/datadog_api_client/v1/models/funnel_step.rb +0 -14
- data/lib/datadog_api_client/v1/models/funnel_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/funnel_widget_request.rb +0 -14
- data/lib/datadog_api_client/v1/models/gcp_account.rb +0 -8
- data/lib/datadog_api_client/v1/models/geomap_widget_definition.rb +0 -26
- data/lib/datadog_api_client/v1/models/geomap_widget_definition_style.rb +0 -14
- data/lib/datadog_api_client/v1/models/geomap_widget_definition_view.rb +0 -11
- data/lib/datadog_api_client/v1/models/geomap_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/graph_snapshot.rb +0 -8
- data/lib/datadog_api_client/v1/models/group_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/heat_map_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/heat_map_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/host.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_map_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_map_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/host_map_widget_definition_requests.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_map_widget_definition_style.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_meta.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_meta_install_method.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_metrics.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_mute_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_mute_settings.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_tags.rb +0 -8
- data/lib/datadog_api_client/v1/models/host_totals.rb +0 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_pagination.rb +1 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +2 -0
- data/lib/datadog_api_client/v1/models/http_log_error.rb +0 -17
- data/lib/datadog_api_client/v1/models/http_log_item.rb +29 -15
- data/lib/datadog_api_client/v1/models/i_frame_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/idp_form_data.rb +0 -11
- data/lib/datadog_api_client/v1/models/idp_response.rb +0 -11
- data/lib/datadog_api_client/v1/models/image_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/intake_payload_accepted.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_agents.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_api.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_apm.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_logs.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_process.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_prefixes_synthetics.rb +0 -8
- data/lib/datadog_api_client/v1/models/{monitor_group_search_response_counts_type_item.rb → ip_prefixes_synthetics_private_locations.rb} +23 -27
- data/lib/datadog_api_client/v1/models/ip_prefixes_webhooks.rb +0 -8
- data/lib/datadog_api_client/v1/models/ip_ranges.rb +11 -9
- data/lib/datadog_api_client/v1/models/list_stream_column.rb +0 -14
- data/lib/datadog_api_client/v1/models/list_stream_query.rb +1 -15
- data/lib/datadog_api_client/v1/models/list_stream_source.rb +2 -1
- data/lib/datadog_api_client/v1/models/list_stream_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/list_stream_widget_request.rb +0 -17
- data/lib/datadog_api_client/v1/models/log.rb +0 -8
- data/lib/datadog_api_client/v1/models/log_content.rb +4 -10
- data/lib/datadog_api_client/v1/models/log_query_definition.rb +0 -8
- data/lib/datadog_api_client/v1/models/log_query_definition_group_by.rb +0 -11
- data/lib/datadog_api_client/v1/models/log_query_definition_group_by_sort.rb +0 -14
- data/lib/datadog_api_client/v1/models/log_query_definition_search.rb +0 -11
- data/lib/datadog_api_client/v1/models/log_stream_widget_definition.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_api_error.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_api_error_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_arithmetic_processor.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_attribute_remapper.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_by_retention.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_by_retention_monthly_usage.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_by_retention_org_usage.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_by_retention_orgs.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_category_processor.rb +1 -18
- data/lib/datadog_api_client/v1/models/logs_category_processor_category.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_date_remapper.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_exclusion.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_exclusion_filter.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_filter.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_geo_ip_parser.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_grok_parser.rb +0 -20
- data/lib/datadog_api_client/v1/models/logs_grok_parser_rules.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_index.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_index_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_index_update_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_indexes_order.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_list_request.rb +1 -15
- data/lib/datadog_api_client/v1/models/logs_list_request_time.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_lookup_processor.rb +0 -20
- data/lib/datadog_api_client/v1/models/logs_message_remapper.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_pipeline.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_pipeline_processor.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_pipelines_order.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_query_compute.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_retention_agg_sum_usage.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_retention_sum_usage.rb +0 -8
- data/lib/datadog_api_client/v1/models/logs_service_remapper.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_sort.rb +1 -1
- data/lib/datadog_api_client/v1/models/logs_status_remapper.rb +0 -14
- data/lib/datadog_api_client/v1/models/logs_string_builder_processor.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_trace_remapper.rb +0 -11
- data/lib/datadog_api_client/v1/models/logs_url_parser.rb +0 -17
- data/lib/datadog_api_client/v1/models/logs_user_agent_parser.rb +0 -17
- data/lib/datadog_api_client/v1/models/metric_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/metric_search_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/metric_search_response_results.rb +0 -8
- data/lib/datadog_api_client/v1/models/metrics_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/metrics_payload.rb +0 -11
- data/lib/datadog_api_client/v1/models/metrics_query_metadata.rb +0 -14
- data/lib/datadog_api_client/v1/models/metrics_query_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/metrics_query_unit.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor.rb +1 -21
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition_compute.rb +0 -11
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_definition_search.rb +0 -11
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_group_by.rb +0 -11
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_event_query_group_by_sort.rb +0 -11
- data/lib/datadog_api_client/v1/models/monitor_formula_and_function_events_data_source.rb +2 -0
- data/lib/datadog_api_client/v1/models/monitor_group_search_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_group_search_response_counts.rb +2 -10
- data/lib/datadog_api_client/v1/models/monitor_group_search_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_options.rb +0 -14
- data/lib/datadog_api_client/v1/models/monitor_options_aggregation.rb +0 -8
- data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_tag_item.rb → monitor_search_count_item.rb} +3 -11
- data/lib/datadog_api_client/v1/models/monitor_search_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_search_response_counts.rb +4 -12
- data/lib/datadog_api_client/v1/models/monitor_search_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_search_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_search_result_notification.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_state.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_state_group.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_summary_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/monitor_threshold_window_options.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_thresholds.rb +0 -8
- data/lib/datadog_api_client/v1/models/monitor_type.rb +1 -0
- data/lib/datadog_api_client/v1/models/monitor_update_request.rb +1 -15
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_pagination.rb +1 -8
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_response.rb +1 -9
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +4 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +41 -9
- data/lib/datadog_api_client/v1/models/note_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_absolute_time.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_author.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebook_cell_create_request.rb +146 -0
- data/lib/datadog_api_client/v1/models/notebook_cell_create_request_attributes.rb +68 -0
- data/lib/datadog_api_client/v1/models/notebook_cell_response.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebook_cell_update_request.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebook_create_data.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_create_data_attributes.rb +0 -23
- data/lib/datadog_api_client/v1/models/notebook_create_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_distribution_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_heat_map_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_log_stream_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_markdown_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_markdown_cell_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebook_relative_time.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebook_response_data.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebook_response_data_attributes.rb +0 -23
- data/lib/datadog_api_client/v1/models/notebook_split_by.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_timeseries_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_toplist_cell_attributes.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebook_update_data.rb +0 -14
- data/lib/datadog_api_client/v1/models/notebook_update_data_attributes.rb +0 -23
- data/lib/datadog_api_client/v1/models/notebook_update_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/notebooks_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebooks_response_data.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebooks_response_data_attributes.rb +0 -17
- data/lib/datadog_api_client/v1/models/notebooks_response_meta.rb +0 -8
- data/lib/datadog_api_client/v1/models/notebooks_response_page.rb +0 -8
- data/lib/datadog_api_client/v1/models/org_downgraded_response.rb +111 -0
- data/lib/datadog_api_client/v1/models/organization.rb +12 -13
- data/lib/datadog_api_client/v1/models/organization_billing.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_create_body.rb +0 -14
- data/lib/datadog_api_client/v1/models/organization_create_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings_saml.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings_saml_autocreate_users_domains.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings_saml_idp_initiated_login.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_settings_saml_strict_mode.rb +0 -8
- data/lib/datadog_api_client/v1/models/organization_subscription.rb +0 -8
- data/lib/datadog_api_client/v1/models/pager_duty_service.rb +0 -14
- data/lib/datadog_api_client/v1/models/pager_duty_service_key.rb +0 -11
- data/lib/datadog_api_client/v1/models/pager_duty_service_name.rb +0 -11
- data/lib/datadog_api_client/v1/models/pagination.rb +0 -8
- data/lib/datadog_api_client/v1/models/process_query_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/query_value_widget_definition.rb +11 -21
- data/lib/datadog_api_client/v1/models/query_value_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/response_meta_attributes.rb +0 -8
- data/lib/datadog_api_client/v1/models/scatter_plot_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/scatter_plot_widget_definition_requests.rb +0 -8
- data/lib/datadog_api_client/v1/models/scatterplot_table_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/scatterplot_widget_formula.rb +0 -14
- data/lib/datadog_api_client/v1/models/search_slo_response.rb +131 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data.rb +121 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes.rb +123 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_data_attributes_facets.rb +197 -0
- data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_type_item.rb → search_slo_response_data_attributes_facets_object_int.rb} +7 -15
- data/lib/datadog_api_client/v1/models/{monitor_search_response_counts_muted_item.rb → search_slo_response_data_attributes_facets_object_string.rb} +7 -15
- data/lib/datadog_api_client/v1/models/search_slo_response_links.rb +151 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_meta.rb +111 -0
- data/lib/datadog_api_client/v1/models/search_slo_response_meta_page.rb +181 -0
- data/lib/datadog_api_client/v1/models/series.rb +2 -16
- data/lib/datadog_api_client/v1/models/service_check.rb +0 -20
- data/lib/datadog_api_client/v1/models/service_level_objective.rb +3 -20
- data/lib/datadog_api_client/v1/models/service_level_objective_query.rb +1 -15
- data/lib/datadog_api_client/v1/models/service_level_objective_request.rb +3 -20
- data/lib/datadog_api_client/v1/models/service_map_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/service_summary_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/signal_archive_reason.rb +29 -0
- data/lib/datadog_api_client/v1/models/signal_assignee_update_request.rb +132 -0
- data/lib/datadog_api_client/v1/models/signal_state_update_request.rb +152 -0
- data/lib/datadog_api_client/v1/models/signal_triage_state.rb +28 -0
- data/lib/datadog_api_client/v1/models/slack_integration_channel.rb +0 -8
- data/lib/datadog_api_client/v1/models/slack_integration_channel_display.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_error.rb +0 -17
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_bulk_delete_response_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_create_data.rb +0 -11
- data/lib/datadog_api_client/v1/models/slo_correction_create_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_create_request_attributes.rb +1 -18
- data/lib/datadog_api_client/v1/models/slo_correction_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_response_attributes.rb +4 -12
- data/lib/datadog_api_client/v1/models/slo_correction_response_attributes_modifier.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_update_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_update_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_correction_update_request_attributes.rb +1 -9
- data/lib/datadog_api_client/v1/models/slo_delete_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_metrics.rb +1 -30
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series.rb +0 -17
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_metrics_series_metadata_unit.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_monitor.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_response_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_response_error.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_history_response_error_with_type.rb +0 -14
- data/lib/datadog_api_client/v1/models/slo_history_sli_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_list_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_list_response_metadata_page.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/slo_response_data.rb +1 -9
- data/lib/datadog_api_client/v1/models/slo_threshold.rb +0 -14
- data/lib/datadog_api_client/v1/models/slo_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/successful_signal_update_response.rb +111 -0
- data/lib/datadog_api_client/v1/models/sunburst_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend_inline_automatic.rb +0 -11
- data/lib/datadog_api_client/v1/models/sunburst_widget_legend_table.rb +0 -11
- data/lib/datadog_api_client/v1/models/sunburst_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_step.rb +0 -20
- data/lib/datadog_api_client/v1/models/synthetics_api_test.rb +12 -24
- data/lib/datadog_api_client/v1/models/synthetics_api_test_config.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_failure.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_full.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_full_check.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_short.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_api_test_result_short_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_assertion_json_path_target_target.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_assertion_target.rb +0 -17
- data/lib/datadog_api_client/v1/models/synthetics_assertion_type.rb +2 -0
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_ntlm.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_sigv4.rb +0 -17
- data/lib/datadog_api_client/v1/models/synthetics_basic_auth_web.rb +0 -28
- data/lib/datadog_api_client/v1/models/synthetics_batch_details.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_batch_details_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_batch_result.rb +1 -9
- data/lib/datadog_api_client/v1/models/synthetics_browser_error.rb +0 -17
- data/lib/datadog_api_client/v1/models/synthetics_browser_test.rb +11 -23
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_config.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_failure.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_full.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_full_check.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_short.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_result_short_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb +152 -0
- data/lib/datadog_api_client/v1/models/synthetics_browser_variable.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_ci.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_git.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_pipeline.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_batch_metadata_provider.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ci_test.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_ci_test_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_config_variable.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_core_web_vitals.rb +2 -10
- data/lib/datadog_api_client/v1/models/synthetics_delete_tests_payload.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_delete_tests_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_deleted_test.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_device.rb +0 -20
- data/lib/datadog_api_client/v1/models/synthetics_get_api_test_latest_results_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_get_browser_test_latest_results_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_global_variable.rb +0 -20
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_attributes.rb +1 -9
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_parse_test_options.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_global_variable_value.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_list_global_variables_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_list_tests_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_location.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_locations.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_parsing_options.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location.rb +11 -18
- data/lib/datadog_api_client/v1/models/synthetics_private_location_creation_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location_creation_response_result_encryption.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location_metadata.rb +113 -0
- data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets_authentication.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_private_location_secrets_config_decryption.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate_issuer.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_ssl_certificate_subject.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_step.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_step_detail.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_step_detail_warning.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_test_ci_options.rb +111 -0
- data/lib/datadog_api_client/v1/models/synthetics_test_config.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -9
- data/lib/datadog_api_client/v1/models/synthetics_test_details_sub_type.rb +2 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_options.rb +43 -21
- data/lib/datadog_api_client/v1/models/synthetics_test_options_monitor_options.rb +0 -14
- data/lib/datadog_api_client/v1/models/synthetics_test_options_retry.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +21 -21
- data/lib/datadog_api_client/v1/models/synthetics_test_request_certificate.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_test_request_certificate_item.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_test_request_proxy.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_timing.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_trigger_body.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_test_location.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_test_run_result.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_trigger_ci_tests_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_trigger_test.rb +0 -11
- data/lib/datadog_api_client/v1/models/synthetics_update_test_pause_status_payload.rb +0 -8
- data/lib/datadog_api_client/v1/models/synthetics_variable_parser.rb +0 -11
- data/lib/datadog_api_client/v1/models/table_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/table_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/tag_to_hosts.rb +0 -8
- data/lib/datadog_api_client/v1/models/{monitor_group_search_response_counts_status_item.rb → timeseries_background.rb} +32 -27
- data/lib/datadog_api_client/v1/models/timeseries_background_type.rb +27 -0
- data/lib/datadog_api_client/v1/models/timeseries_widget_definition.rb +0 -17
- data/lib/datadog_api_client/v1/models/timeseries_widget_expression_alias.rb +0 -11
- data/lib/datadog_api_client/v1/models/timeseries_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/toplist_widget_definition.rb +0 -14
- data/lib/datadog_api_client/v1/models/toplist_widget_request.rb +0 -11
- data/lib/datadog_api_client/v1/models/tree_map_widget_definition.rb +0 -20
- data/lib/datadog_api_client/v1/models/tree_map_widget_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_analyzed_logs_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_analyzed_logs_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_aggregates_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_metadata.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_pagination.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_attribution_response.rb +1 -9
- data/lib/datadog_api_client/v1/models/usage_attribution_sort.rb +4 -2
- data/lib/datadog_api_client/v1/models/usage_attribution_supported_metrics.rb +4 -2
- data/lib/datadog_api_client/v1/models/usage_attribution_values.rb +41 -33
- data/lib/datadog_api_client/v1/models/usage_audit_logs_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_audit_logs_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_billable_summary_body.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_billable_summary_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_billable_summary_keys.rb +473 -11
- data/lib/datadog_api_client/v1/models/usage_billable_summary_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_ci_visibility_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_cloud_security_posture_management_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_attributes.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_meta.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_page.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_custom_reports_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_cws_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_cws_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_dbm_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_dbm_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_fargate_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_fargate_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_host_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_hosts_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_incident_management_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_incident_management_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_indexed_spans_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_indexed_spans_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_ingested_spans_hour.rb +1 -9
- data/lib/datadog_api_client/v1/models/usage_ingested_spans_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/{usage_io_t_hour.rb → usage_iot_hour.rb} +0 -8
- data/lib/datadog_api_client/v1/models/{usage_io_t_response.rb → usage_iot_response.rb} +0 -8
- data/lib/datadog_api_client/v1/models/usage_lambda_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_lambda_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_by_index_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_by_index_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_by_retention_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_by_retention_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_logs_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_network_flows_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_network_flows_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_network_hosts_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_network_hosts_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_online_archive_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_online_archive_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_profiling_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_profiling_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_rum_sessions_hour.rb +17 -11
- data/lib/datadog_api_client/v1/models/usage_rum_sessions_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_rum_units_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_rum_units_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_sds_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_sds_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_snmp_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_snmp_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_attributes.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_data.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_meta.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_page.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_specified_custom_reports_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +22 -10
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +22 -10
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +22 -10
- data/lib/datadog_api_client/v1/models/usage_synthetics_api_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_api_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_browser_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_browser_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_synthetics_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_timeseries_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_timeseries_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_hour.rb +0 -8
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_metadata.rb +1 -9
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_pagination.rb +132 -0
- data/lib/datadog_api_client/v1/models/usage_top_avg_metrics_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/user.rb +0 -8
- data/lib/datadog_api_client/v1/models/user_disable_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/user_list_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/user_response.rb +0 -8
- data/lib/datadog_api_client/v1/models/webhooks_integration.rb +0 -14
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable.rb +0 -17
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_response.rb +0 -14
- data/lib/datadog_api_client/v1/models/webhooks_integration_custom_variable_update_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/webhooks_integration_update_request.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget.rb +0 -11
- data/lib/datadog_api_client/v1/models/widget_axis.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_conditional_format.rb +0 -17
- data/lib/datadog_api_client/v1/models/widget_custom_link.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_event.rb +0 -11
- data/lib/datadog_api_client/v1/models/widget_field_sort.rb +0 -14
- data/lib/datadog_api_client/v1/models/widget_formula.rb +0 -11
- data/lib/datadog_api_client/v1/models/widget_formula_limit.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_layout.rb +0 -32
- data/lib/datadog_api_client/v1/models/widget_marker.rb +0 -11
- data/lib/datadog_api_client/v1/models/widget_request_style.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_style.rb +0 -8
- data/lib/datadog_api_client/v1/models/widget_time.rb +0 -8
- data/lib/datadog_api_client/v1.rb +37 -8
- data/lib/datadog_api_client/v2/api/audit_api.rb +51 -26
- data/lib/datadog_api_client/v2/api/{auth_n_mappings_api.rb → authn_mappings_api.rb} +88 -95
- data/lib/datadog_api_client/v2/api/cloud_workload_security_api.rb +43 -45
- data/lib/datadog_api_client/v2/api/dashboard_lists_api.rb +28 -31
- data/lib/datadog_api_client/v2/api/incident_services_api.rb +35 -41
- data/lib/datadog_api_client/v2/api/incident_teams_api.rb +35 -41
- data/lib/datadog_api_client/v2/api/incidents_api.rb +54 -39
- data/lib/datadog_api_client/v2/api/key_management_api.rb +96 -119
- data/lib/datadog_api_client/v2/api/logs_api.rb +60 -70
- data/lib/datadog_api_client/v2/api/logs_archives_api.rb +68 -77
- data/lib/datadog_api_client/v2/api/logs_metrics_api.rb +35 -37
- data/lib/datadog_api_client/v2/api/metrics_api.rb +232 -87
- data/lib/datadog_api_client/v2/api/opsgenie_integration_api.rb +395 -0
- data/lib/datadog_api_client/v2/api/organizations_api.rb +100 -0
- data/lib/datadog_api_client/v2/api/processes_api.rb +27 -12
- data/lib/datadog_api_client/v2/api/roles_api.rb +91 -103
- data/lib/datadog_api_client/v2/api/rum_api.rb +133 -29
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +118 -98
- data/lib/datadog_api_client/v2/api/service_accounts_api.rb +34 -45
- data/lib/datadog_api_client/v2/api/usage_metering_api.rb +406 -0
- data/lib/datadog_api_client/v2/api/users_api.rb +70 -81
- data/lib/datadog_api_client/v2/api_client.rb +104 -64
- data/lib/datadog_api_client/v2/configuration.rb +1 -19
- data/lib/datadog_api_client/v2/model_base.rb +1 -1
- data/lib/datadog_api_client/v2/models/api_error_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_key_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_key_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/api_key_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_key_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/api_key_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/api_key_update_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_key_update_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/api_key_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/api_keys_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/application_key_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/application_key_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/application_key_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/application_key_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/application_key_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/application_key_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/application_key_update_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/application_key_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/audit_logs_event.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_events_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_query_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_query_options.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_query_page_options.rb +0 -11
- data/lib/datadog_api_client/v2/models/audit_logs_response_links.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_response_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_search_events_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/audit_logs_warning.rb +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping.rb → authn_mapping.rb} +1 -27
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_attributes.rb → authn_mapping_attributes.rb} +1 -23
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_create_attributes.rb → authn_mapping_create_attributes.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_create_data.rb → authn_mapping_create_data.rb} +0 -11
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_create_relationships.rb → authn_mapping_create_relationships.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_create_request.rb → authn_mapping_create_request.rb} +0 -11
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_included.rb → authn_mapping_included.rb} +0 -0
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_relationships.rb → authn_mapping_relationships.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_response.rb → authn_mapping_response.rb} +15 -11
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_update_attributes.rb → authn_mapping_update_attributes.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_update_data.rb → authn_mapping_update_data.rb} +0 -14
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_update_relationships.rb → authn_mapping_update_relationships.rb} +0 -8
- data/lib/datadog_api_client/v2/models/{auth_n_mapping_update_request.rb → authn_mapping_update_request.rb} +0 -11
- data/lib/datadog_api_client/v2/models/{auth_n_mappings_response.rb → authn_mappings_response.rb} +13 -9
- data/lib/datadog_api_client/v2/models/{auth_n_mappings_sort.rb → authn_mappings_sort.rb} +0 -0
- data/lib/datadog_api_client/v2/models/{auth_n_mappings_type.rb → authn_mappings_type.rb} +0 -0
- data/lib/datadog_api_client/v2/models/chargeback_breakdown.rb +131 -0
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_creator_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rule_updater_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/cloud_workload_security_agent_rules_list_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/cost_by_org.rb +133 -0
- data/lib/datadog_api_client/v2/models/cost_by_org_attributes.rb +153 -0
- data/lib/datadog_api_client/v2/models/cost_by_org_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/cost_by_org_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/creator.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_add_items_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_add_items_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_delete_items_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_delete_items_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_item.rb +0 -17
- data/lib/datadog_api_client/v2/models/dashboard_list_item_request.rb +0 -14
- data/lib/datadog_api_client/v2/models/dashboard_list_item_response.rb +0 -14
- data/lib/datadog_api_client/v2/models/dashboard_list_items.rb +0 -11
- data/lib/datadog_api_client/v2/models/dashboard_list_update_items_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/dashboard_list_update_items_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/full_api_key.rb +0 -8
- data/lib/datadog_api_client/v2/models/full_api_key_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/full_application_key.rb +0 -8
- data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/hourly_usage_type.rb +28 -0
- data/lib/datadog_api_client/v2/models/http_log_error.rb +0 -8
- data/lib/datadog_api_client/v2/models/http_log_errors.rb +0 -8
- data/lib/datadog_api_client/v2/models/http_log_item.rb +40 -12
- data/lib/datadog_api_client/v2/models/idp_metadata_form_data.rb +111 -0
- data/lib/datadog_api_client/v2/models/incident_create_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_create_relationships.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_field_attributes_multiple_value.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_field_attributes_single_value.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_notification_handle.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_response_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_response_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_response_meta.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_response_meta_pagination.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_response_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_service_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_create_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_service_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_response_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_service_response_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_service_update_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_update_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_service_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_services_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_create_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_team_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_response_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_team_response_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_team_update_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_update_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_team_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_teams_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_create_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_timeline_cell_markdown_create_attributes_content.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/incident_update_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/incident_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/incidents_response.rb +0 -11
- data/lib/datadog_api_client/v2/models/intake_payload_accepted.rb +113 -0
- data/lib/datadog_api_client/v2/models/list_application_keys_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/log.rb +0 -8
- data/lib/datadog_api_client/v2/models/log_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value.rb +3 -3
- data/lib/datadog_api_client/v2/models/logs_aggregate_bucket_value_timeseries_point.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_request_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_response_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregate_sort.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_aggregation_function.rb +1 -0
- data/lib/datadog_api_client/v2/models/logs_archive.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_archive_attributes.rb +12 -15
- data/lib/datadog_api_client/v2/models/logs_archive_create_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_archive_create_request_attributes.rb +12 -18
- data/lib/datadog_api_client/v2/models/logs_archive_create_request_definition.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_archive_definition.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_archive_destination_azure.rb +0 -20
- data/lib/datadog_api_client/v2/models/logs_archive_destination_gcs.rb +0 -17
- data/lib/datadog_api_client/v2/models/logs_archive_destination_s3.rb +0 -17
- data/lib/datadog_api_client/v2/models/logs_archive_integration_azure.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_archive_integration_gcs.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_archive_integration_s3.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_archive_order.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_archive_order_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_archive_order_definition.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_archives.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_compute.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_group_by.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_group_by_histogram.rb +0 -17
- data/lib/datadog_api_client/v2/models/logs_group_by_missing.rb +2 -2
- data/lib/datadog_api_client/v2/models/logs_group_by_total.rb +3 -3
- data/lib/datadog_api_client/v2/models/logs_list_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_list_request_page.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_list_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_list_response_links.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_compute.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metric_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metric_create_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/logs_metric_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metric_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_group_by.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metric_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_compute.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_response_group_by.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_metric_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/logs_metric_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/logs_metrics_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_query_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_query_options.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_response_metadata_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/logs_warning.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_all_tags.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_all_tags_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_all_tags_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_delete_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_bulk_tag_config_status_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_content_encoding.rb +26 -0
- data/lib/datadog_api_client/v2/models/metric_custom_aggregation.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_distinct_volume.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_distinct_volume_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_estimate.rb +133 -0
- data/lib/datadog_api_client/v2/models/metric_estimate_attributes.rb +133 -0
- data/lib/datadog_api_client/v2/models/metric_estimate_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/metric_estimate_response.rb +111 -0
- data/lib/datadog_api_client/v2/models/metric_estimate_type.rb +28 -0
- data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_ingested_indexed_volume_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_intake_type.rb +30 -0
- data/lib/datadog_api_client/v2/models/metric_metadata.rb +111 -0
- data/lib/datadog_api_client/v2/models/metric_origin.rb +170 -0
- data/lib/datadog_api_client/v2/models/metric_payload.rb +124 -0
- data/lib/datadog_api_client/v2/models/metric_point.rb +122 -0
- data/lib/datadog_api_client/v2/models/metric_resource.rb +121 -0
- data/lib/datadog_api_client/v2/models/metric_series.rb +220 -0
- data/lib/datadog_api_client/v2/models/metric_tag_configuration.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_attributes.rb +0 -16
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_attributes.rb +0 -10
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/metric_tag_configuration_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/metric_volumes_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/metrics_and_metric_tag_configurations_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/nullable_relationship_to_user.rb +0 -8
- data/lib/datadog_api_client/v2/models/nullable_relationship_to_user_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_attributes.rb +174 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_data.rb +145 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_create_request.rb +122 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_region_type.rb +28 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_response.rb +122 -0
- data/lib/datadog_api_client/{v1/models/monitor_search_response_counts_status_item.rb → v2/models/opsgenie_service_response_attributes.rb} +28 -25
- data/lib/datadog_api_client/v2/models/opsgenie_service_response_data.rb +166 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_attributes.rb +142 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_data.rb +166 -0
- data/lib/datadog_api_client/v2/models/opsgenie_service_update_request.rb +122 -0
- data/lib/datadog_api_client/v2/models/opsgenie_services_response.rb +124 -0
- data/lib/datadog_api_client/v2/models/organization.rb +0 -11
- data/lib/datadog_api_client/v2/models/organization_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/pagination.rb +0 -8
- data/lib/datadog_api_client/v2/models/partial_api_key.rb +0 -8
- data/lib/datadog_api_client/v2/models/partial_api_key_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/partial_application_key.rb +0 -8
- data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/partial_application_key_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/permission.rb +0 -11
- data/lib/datadog_api_client/v2/models/permission_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/permissions_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/process_summaries_meta.rb +0 -8
- data/lib/datadog_api_client/v2/models/process_summaries_meta_page.rb +0 -14
- data/lib/datadog_api_client/v2/models/process_summaries_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/process_summary.rb +0 -8
- data/lib/datadog_api_client/v2/models/process_summary_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadata_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/relationship_to_incident_integration_metadatas.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_incident_postmortem.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_incident_postmortem_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/relationship_to_organization.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_organization_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/relationship_to_organizations.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_permission.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_permission_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_permissions.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_role.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_role_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_roles.rb +0 -8
- data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_saml_assertion_attribute_data.rb +1 -22
- data/lib/datadog_api_client/v2/models/relationship_to_user.rb +0 -11
- data/lib/datadog_api_client/v2/models/relationship_to_user_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/relationship_to_users.rb +0 -11
- data/lib/datadog_api_client/v2/models/response_meta_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/role.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_clone.rb +0 -14
- data/lib/datadog_api_client/v2/models/role_clone_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_clone_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_create_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_create_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_create_response_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_response_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_update_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/role_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/role_update_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/role_update_response_data.rb +0 -11
- data/lib/datadog_api_client/v2/models/roles_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_aggregate_bucket_value.rb +64 -0
- data/lib/datadog_api_client/v2/models/rum_aggregate_bucket_value_timeseries_point.rb +121 -0
- data/lib/datadog_api_client/v2/models/rum_aggregate_request.rb +156 -0
- data/lib/datadog_api_client/v2/models/rum_aggregate_sort.rb +143 -0
- data/lib/datadog_api_client/v2/models/rum_aggregate_sort_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_aggregation_buckets_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/rum_aggregation_function.rb +37 -0
- data/lib/datadog_api_client/v2/models/rum_analytics_aggregate_response.rb +131 -0
- data/lib/datadog_api_client/v2/models/rum_bucket_response.rb +121 -0
- data/lib/datadog_api_client/v2/models/rum_compute.rb +155 -0
- data/lib/datadog_api_client/v2/models/rum_compute_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_event.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_event_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_events_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_group_by.rb +177 -0
- data/lib/datadog_api_client/v2/models/rum_group_by_histogram.rb +167 -0
- data/lib/datadog_api_client/v2/models/rum_group_by_missing.rb +63 -0
- data/lib/datadog_api_client/v2/models/rum_group_by_total.rb +64 -0
- data/lib/datadog_api_client/v2/models/rum_query_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_query_options.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_query_page_options.rb +0 -11
- data/lib/datadog_api_client/v2/models/rum_response_links.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_response_metadata.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_response_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_search_events_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/rum_sort_order.rb +27 -0
- data/lib/datadog_api_client/v2/models/rum_warning.rb +0 -8
- data/lib/datadog_api_client/v2/models/saml_assertion_attribute.rb +1 -22
- data/lib/datadog_api_client/v2/models/saml_assertion_attribute_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_filter_create_attributes.rb +0 -23
- data/lib/datadog_api_client/v2/models/security_filter_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/security_filter_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter.rb +0 -14
- data/lib/datadog_api_client/v2/models/security_filter_exclusion_filter_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter_meta.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_filter_update_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_filter_update_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/security_filter_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_filters_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_list_rules_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_case_create.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_create_payload.rb +0 -26
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_detection_method.rb +1 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_hardcoded_evaluator_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_impossible_travel_options.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options.rb +29 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_method.rb +27 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_new_value_options_learning_threshold.rb +27 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +23 -9
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_query.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_query_create.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_update_payload.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_signal.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_attributes.rb +3 -9
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request_filter.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signal_list_request_page.rb +0 -11
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_links.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_meta.rb +0 -8
- data/lib/datadog_api_client/v2/models/security_monitoring_signals_list_response_meta_page.rb +0 -8
- data/lib/datadog_api_client/v2/models/service_account_create_attributes.rb +0 -14
- data/lib/datadog_api_client/v2/models/service_account_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/service_account_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/usage_application_security_monitoring_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/usage_attributes_object.rb +153 -0
- data/lib/datadog_api_client/v2/models/usage_data_object.rb +133 -0
- data/lib/datadog_api_client/v2/models/usage_lambda_traced_invocations_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/usage_observability_pipelines_response.rb +113 -0
- data/lib/datadog_api_client/v2/models/usage_time_series_object.rb +122 -0
- data/lib/datadog_api_client/v2/models/usage_time_series_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/user.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_create_attributes.rb +0 -11
- data/lib/datadog_api_client/v2/models/user_create_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/user_create_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/user_invitation_data.rb +0 -14
- data/lib/datadog_api_client/v2/models/user_invitation_data_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_invitation_relationships.rb +0 -11
- data/lib/datadog_api_client/v2/models/user_invitation_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_invitation_response_data.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_invitations_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/user_invitations_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_response.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_response_relationships.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_update_attributes.rb +0 -8
- data/lib/datadog_api_client/v2/models/user_update_data.rb +0 -17
- data/lib/datadog_api_client/v2/models/user_update_request.rb +0 -11
- data/lib/datadog_api_client/v2/models/users_response.rb +0 -8
- data/lib/datadog_api_client/v2.rb +80 -17
- data/lib/datadog_api_client/version.rb +1 -11
- data/lib/datadog_api_client.rb +1 -0
- data/spec/v1/api_client_spec.rb +9 -28
- data/spec/v2/api_client_spec.rb +9 -28
- metadata +352 -58
- data/.generator/config/v1.json +0 -9
- data/.generator/config/v2.json +0 -9
- data/examples/generated/v1/logs/SubmitLog.rb +0 -15
- data/examples/generated/v2/authn-mappings/ListAuthNMappings.rb +0 -17
- data/examples/generated/v2/incidents/UpdateIncident.rb +0 -20
- data/examples/generated/v2/roles/AddUserToRole.rb +0 -12
- data/examples/generated/v2/roles/RemoveUserFromRole.rb +0 -12
- data/examples/generated/v2/roles/UpdateRole.rb +0 -12
- data/examples/generated/v2/service-accounts/CreateServiceAccountApplicationKey.rb +0 -12
- data/examples/generated/v2/service-accounts/DeleteServiceAccountApplicationKey.rb +0 -11
- data/examples/generated/v2/service-accounts/GetServiceAccountApplicationKey.rb +0 -12
- data/examples/generated/v2/service-accounts/ListServiceAccountApplicationKeys.rb +0 -19
- data/examples/generated/v2/service-accounts/UpdateServiceAccountApplicationKey.rb +0 -13
- data/examples/generated/v2/users/DisableUser.rb +0 -10
- data/examples/generated/v2/users/GetInvitation.rb +0 -11
- data/examples/generated/v2/users/GetUser.rb +0 -11
- data/examples/generated/v2/users/ListUserOrganizations.rb +0 -11
- data/examples/generated/v2/users/ListUserPermissions.rb +0 -11
- data/examples/generated/v2/users/SendInvitations.rb +0 -11
- data/examples/generated/v2/users/UpdateUser.rb +0 -12
- data/extract-code-blocks.awk +0 -81
- data/extract-code-blocks.sh +0 -12
|
@@ -224,6 +224,13 @@ components:
|
|
|
224
224
|
required: true
|
|
225
225
|
schema:
|
|
226
226
|
type: string
|
|
227
|
+
OpsgenieServiceIDPathParameter:
|
|
228
|
+
description: The UUID of the service.
|
|
229
|
+
in: path
|
|
230
|
+
name: integration_service_id
|
|
231
|
+
required: true
|
|
232
|
+
schema:
|
|
233
|
+
type: string
|
|
227
234
|
PageNumber:
|
|
228
235
|
description: Specific page number to return.
|
|
229
236
|
in: query
|
|
@@ -850,11 +857,6 @@ components:
|
|
|
850
857
|
description: ID of the AuthN Mapping.
|
|
851
858
|
example: 3653d3c6-0c75-11ea-ad28-fb5701eabc7d
|
|
852
859
|
type: string
|
|
853
|
-
included:
|
|
854
|
-
description: Included data in the AuthN Mapping response.
|
|
855
|
-
items:
|
|
856
|
-
$ref: '#/components/schemas/AuthNMappingIncluded'
|
|
857
|
-
type: array
|
|
858
860
|
relationships:
|
|
859
861
|
$ref: '#/components/schemas/AuthNMappingRelationships'
|
|
860
862
|
type:
|
|
@@ -888,10 +890,8 @@ components:
|
|
|
888
890
|
type: string
|
|
889
891
|
saml_assertion_attribute_id:
|
|
890
892
|
description: The ID of the SAML assertion attribute.
|
|
891
|
-
example: 0
|
|
892
|
-
|
|
893
|
-
maximum: 2147483647
|
|
894
|
-
type: integer
|
|
893
|
+
example: '0'
|
|
894
|
+
type: string
|
|
895
895
|
type: object
|
|
896
896
|
AuthNMappingCreateAttributes:
|
|
897
897
|
description: Key/Value pair of attributes used for create request.
|
|
@@ -953,6 +953,11 @@ components:
|
|
|
953
953
|
properties:
|
|
954
954
|
data:
|
|
955
955
|
$ref: '#/components/schemas/AuthNMapping'
|
|
956
|
+
included:
|
|
957
|
+
description: Included data in the AuthN Mapping response.
|
|
958
|
+
items:
|
|
959
|
+
$ref: '#/components/schemas/AuthNMappingIncluded'
|
|
960
|
+
type: array
|
|
956
961
|
type: object
|
|
957
962
|
AuthNMappingUpdateAttributes:
|
|
958
963
|
description: Key/Value pair of attributes used for update request.
|
|
@@ -1007,6 +1012,11 @@ components:
|
|
|
1007
1012
|
items:
|
|
1008
1013
|
$ref: '#/components/schemas/AuthNMapping'
|
|
1009
1014
|
type: array
|
|
1015
|
+
included:
|
|
1016
|
+
description: Included data in the AuthN Mapping response.
|
|
1017
|
+
items:
|
|
1018
|
+
$ref: '#/components/schemas/AuthNMappingIncluded'
|
|
1019
|
+
type: array
|
|
1010
1020
|
meta:
|
|
1011
1021
|
$ref: '#/components/schemas/ResponseMetaAttributes'
|
|
1012
1022
|
type: object
|
|
@@ -1048,6 +1058,23 @@ components:
|
|
|
1048
1058
|
type: string
|
|
1049
1059
|
x-enum-varnames:
|
|
1050
1060
|
- AUTHN_MAPPINGS
|
|
1061
|
+
ChargebackBreakdown:
|
|
1062
|
+
description: Charges breakdown.
|
|
1063
|
+
properties:
|
|
1064
|
+
charge_type:
|
|
1065
|
+
description: The type of charge for a particular product.
|
|
1066
|
+
example: on_demand
|
|
1067
|
+
type: string
|
|
1068
|
+
cost:
|
|
1069
|
+
description: The cost for a particular product and charge type during a
|
|
1070
|
+
given month.
|
|
1071
|
+
format: double
|
|
1072
|
+
type: number
|
|
1073
|
+
product_name:
|
|
1074
|
+
description: The product for which cost is being reported.
|
|
1075
|
+
example: infra_host
|
|
1076
|
+
type: string
|
|
1077
|
+
type: object
|
|
1051
1078
|
CloudWorkloadSecurityAgentRuleAttributes:
|
|
1052
1079
|
description: A Cloud Workload Security Agent rule returned by the API.
|
|
1053
1080
|
properties:
|
|
@@ -1242,6 +1269,58 @@ components:
|
|
|
1242
1269
|
x-enum-varnames:
|
|
1243
1270
|
- GZIP
|
|
1244
1271
|
- DEFLATE
|
|
1272
|
+
CostByOrg:
|
|
1273
|
+
description: Cost data.
|
|
1274
|
+
properties:
|
|
1275
|
+
attributes:
|
|
1276
|
+
$ref: '#/components/schemas/CostByOrgAttributes'
|
|
1277
|
+
id:
|
|
1278
|
+
description: Unique ID of the response.
|
|
1279
|
+
type: string
|
|
1280
|
+
type:
|
|
1281
|
+
$ref: '#/components/schemas/CostByOrgType'
|
|
1282
|
+
type: object
|
|
1283
|
+
CostByOrgAttributes:
|
|
1284
|
+
description: Cost attributes data.
|
|
1285
|
+
properties:
|
|
1286
|
+
charges:
|
|
1287
|
+
description: List of charges data reported for the requested month.
|
|
1288
|
+
items:
|
|
1289
|
+
$ref: '#/components/schemas/ChargebackBreakdown'
|
|
1290
|
+
type: array
|
|
1291
|
+
date:
|
|
1292
|
+
description: The month requested.
|
|
1293
|
+
format: date-time
|
|
1294
|
+
type: string
|
|
1295
|
+
org_name:
|
|
1296
|
+
description: The organization name.
|
|
1297
|
+
type: string
|
|
1298
|
+
public_id:
|
|
1299
|
+
description: The organization public ID.
|
|
1300
|
+
type: string
|
|
1301
|
+
total_cost:
|
|
1302
|
+
description: The total cost of products for the month.
|
|
1303
|
+
format: double
|
|
1304
|
+
type: number
|
|
1305
|
+
type: object
|
|
1306
|
+
CostByOrgResponse:
|
|
1307
|
+
description: Chargeback Summary response.
|
|
1308
|
+
properties:
|
|
1309
|
+
data:
|
|
1310
|
+
description: Response containing Chargeback Summary.
|
|
1311
|
+
items:
|
|
1312
|
+
$ref: '#/components/schemas/CostByOrg'
|
|
1313
|
+
type: array
|
|
1314
|
+
type: object
|
|
1315
|
+
CostByOrgType:
|
|
1316
|
+
default: cost_by_org
|
|
1317
|
+
description: Type of cost data.
|
|
1318
|
+
enum:
|
|
1319
|
+
- cost_by_org
|
|
1320
|
+
example: cost_by_org
|
|
1321
|
+
type: string
|
|
1322
|
+
x-enum-varnames:
|
|
1323
|
+
- COST_BY_ORG
|
|
1245
1324
|
Creator:
|
|
1246
1325
|
description: Creator of the object.
|
|
1247
1326
|
properties:
|
|
@@ -1551,6 +1630,9 @@ components:
|
|
|
1551
1630
|
type: array
|
|
1552
1631
|
type: object
|
|
1553
1632
|
HTTPLogItem:
|
|
1633
|
+
additionalProperties:
|
|
1634
|
+
description: Additional log attributes.
|
|
1635
|
+
type: string
|
|
1554
1636
|
description: Logs that are sent over HTTP.
|
|
1555
1637
|
properties:
|
|
1556
1638
|
ddsource:
|
|
@@ -1592,7 +1674,28 @@ components:
|
|
|
1592
1674
|
example: payment
|
|
1593
1675
|
type: string
|
|
1594
1676
|
required:
|
|
1595
|
-
-
|
|
1677
|
+
- message
|
|
1678
|
+
type: object
|
|
1679
|
+
HourlyUsageType:
|
|
1680
|
+
description: Usage type that is being measured.
|
|
1681
|
+
enum:
|
|
1682
|
+
- app_sec_host_count
|
|
1683
|
+
- observability_pipelines_bytes_processed
|
|
1684
|
+
- lambda_traced_invocations_count
|
|
1685
|
+
example: observability_pipelines_bytes_processed
|
|
1686
|
+
type: string
|
|
1687
|
+
x-enum-varnames:
|
|
1688
|
+
- APP_SEC_HOST_COUNT
|
|
1689
|
+
- OBSERVABILITY_PIPELINES_BYTES_PROCESSSED
|
|
1690
|
+
- LAMBDA_TRACED_INVOCATIONS_COUNT
|
|
1691
|
+
IdPMetadataFormData:
|
|
1692
|
+
description: The form data submitted to upload IdP metadata
|
|
1693
|
+
properties:
|
|
1694
|
+
idp_file:
|
|
1695
|
+
description: The IdP metadata XML file
|
|
1696
|
+
format: binary
|
|
1697
|
+
type: string
|
|
1698
|
+
x-mimetype: application/xml
|
|
1596
1699
|
type: object
|
|
1597
1700
|
IncidentCreateAttributes:
|
|
1598
1701
|
description: The incident's attributes for a create request.
|
|
@@ -2506,6 +2609,16 @@ components:
|
|
|
2506
2609
|
required:
|
|
2507
2610
|
- data
|
|
2508
2611
|
type: object
|
|
2612
|
+
IntakePayloadAccepted:
|
|
2613
|
+
description: The payload accepted for intake.
|
|
2614
|
+
properties:
|
|
2615
|
+
errors:
|
|
2616
|
+
description: A list of errors.
|
|
2617
|
+
items:
|
|
2618
|
+
description: An empty error list.
|
|
2619
|
+
type: string
|
|
2620
|
+
type: array
|
|
2621
|
+
type: object
|
|
2509
2622
|
ListApplicationKeysResponse:
|
|
2510
2623
|
description: Response for a list of application keys.
|
|
2511
2624
|
properties:
|
|
@@ -2631,7 +2744,7 @@ components:
|
|
|
2631
2744
|
items:
|
|
2632
2745
|
$ref: '#/components/schemas/LogsAggregateBucketValueTimeseriesPoint'
|
|
2633
2746
|
type: array
|
|
2634
|
-
|
|
2747
|
+
x-generate-alias-as-model: true
|
|
2635
2748
|
LogsAggregateBucketValueTimeseriesPoint:
|
|
2636
2749
|
description: A timeseries point
|
|
2637
2750
|
properties:
|
|
@@ -2743,6 +2856,7 @@ components:
|
|
|
2743
2856
|
- min
|
|
2744
2857
|
- max
|
|
2745
2858
|
- avg
|
|
2859
|
+
- median
|
|
2746
2860
|
example: pc90
|
|
2747
2861
|
type: string
|
|
2748
2862
|
x-enum-varnames:
|
|
@@ -2757,6 +2871,7 @@ components:
|
|
|
2757
2871
|
- MIN
|
|
2758
2872
|
- MAX
|
|
2759
2873
|
- AVG
|
|
2874
|
+
- MEDIAN
|
|
2760
2875
|
LogsArchive:
|
|
2761
2876
|
description: The logs archive.
|
|
2762
2877
|
properties:
|
|
@@ -2785,6 +2900,12 @@ components:
|
|
|
2785
2900
|
in the archive.
|
|
2786
2901
|
example: source:nginx
|
|
2787
2902
|
type: string
|
|
2903
|
+
rehydration_max_scan_size_in_gb:
|
|
2904
|
+
description: Maximum scan size for rehydration from this archive.
|
|
2905
|
+
example: 100
|
|
2906
|
+
format: int64
|
|
2907
|
+
nullable: true
|
|
2908
|
+
type: integer
|
|
2788
2909
|
rehydration_tags:
|
|
2789
2910
|
description: An array of tags to add to rehydrated logs from an archive.
|
|
2790
2911
|
example:
|
|
@@ -2829,6 +2950,12 @@ components:
|
|
|
2829
2950
|
in the archive.
|
|
2830
2951
|
example: source:nginx
|
|
2831
2952
|
type: string
|
|
2953
|
+
rehydration_max_scan_size_in_gb:
|
|
2954
|
+
description: Maximum scan size for rehydration from this archive.
|
|
2955
|
+
example: 100
|
|
2956
|
+
format: int64
|
|
2957
|
+
nullable: true
|
|
2958
|
+
type: integer
|
|
2832
2959
|
rehydration_tags:
|
|
2833
2960
|
description: An array of tags to add to rehydrated logs from an archive.
|
|
2834
2961
|
example:
|
|
@@ -3770,6 +3897,14 @@ components:
|
|
|
3770
3897
|
pattern: ^[A-Za-z][A-Za-z0-9\.\-\_:\/]*$
|
|
3771
3898
|
type: string
|
|
3772
3899
|
type: array
|
|
3900
|
+
MetricContentEncoding:
|
|
3901
|
+
default: deflate
|
|
3902
|
+
description: HTTP header used to compress the media-type.
|
|
3903
|
+
enum:
|
|
3904
|
+
- deflate
|
|
3905
|
+
type: string
|
|
3906
|
+
x-enum-varnames:
|
|
3907
|
+
- DEFLATE
|
|
3773
3908
|
MetricCustomAggregation:
|
|
3774
3909
|
description: A time and space aggregation combination for use in query.
|
|
3775
3910
|
example:
|
|
@@ -3883,6 +4018,63 @@ components:
|
|
|
3883
4018
|
type: string
|
|
3884
4019
|
x-enum-varnames:
|
|
3885
4020
|
- DISTINCT_METRIC_VOLUMES
|
|
4021
|
+
MetricEstimate:
|
|
4022
|
+
description: Object for a metric cardinality estimate.
|
|
4023
|
+
properties:
|
|
4024
|
+
attributes:
|
|
4025
|
+
$ref: '#/components/schemas/MetricEstimateAttributes'
|
|
4026
|
+
id:
|
|
4027
|
+
$ref: '#/components/schemas/MetricName'
|
|
4028
|
+
type:
|
|
4029
|
+
$ref: '#/components/schemas/MetricEstimateResourceType'
|
|
4030
|
+
type: object
|
|
4031
|
+
MetricEstimateAttributes:
|
|
4032
|
+
description: Object containing the definition of a metric estimate attribute.
|
|
4033
|
+
properties:
|
|
4034
|
+
estimate_type:
|
|
4035
|
+
$ref: '#/components/schemas/MetricEstimateType'
|
|
4036
|
+
estimated_at:
|
|
4037
|
+
description: Timestamp when the cardinality estimate was requested.
|
|
4038
|
+
example: '2022-04-27T09:48:37.463835Z'
|
|
4039
|
+
format: date-time
|
|
4040
|
+
type: string
|
|
4041
|
+
estimated_output_series:
|
|
4042
|
+
description: Estimated cardinality of the metric based on the queried configuration.
|
|
4043
|
+
example: 50
|
|
4044
|
+
format: int64
|
|
4045
|
+
type: integer
|
|
4046
|
+
type: object
|
|
4047
|
+
MetricEstimateResourceType:
|
|
4048
|
+
default: metric_cardinality_estimate
|
|
4049
|
+
description: The metric estimate resource type.
|
|
4050
|
+
enum:
|
|
4051
|
+
- metric_cardinality_estimate
|
|
4052
|
+
example: metric_cardinality_estimate
|
|
4053
|
+
type: string
|
|
4054
|
+
x-enum-varnames:
|
|
4055
|
+
- METRIC_CARDINALITY_ESTIMATE
|
|
4056
|
+
MetricEstimateResponse:
|
|
4057
|
+
description: Response object that includes metric cardinality estimates.
|
|
4058
|
+
properties:
|
|
4059
|
+
data:
|
|
4060
|
+
$ref: '#/components/schemas/MetricEstimate'
|
|
4061
|
+
type: object
|
|
4062
|
+
MetricEstimateType:
|
|
4063
|
+
default: count_or_gauge
|
|
4064
|
+
description: Estimate type based on the queried configuration. By default, `count_or_gauge`
|
|
4065
|
+
is returned. `distribution` is returned for distribution metrics without percentiles
|
|
4066
|
+
enabled. Lastly, `percentile` is returned if `filter[pct]=true` is queried
|
|
4067
|
+
with a distribution metric.
|
|
4068
|
+
enum:
|
|
4069
|
+
- count_or_gauge
|
|
4070
|
+
- distribution
|
|
4071
|
+
- percentile
|
|
4072
|
+
example: distribution
|
|
4073
|
+
type: string
|
|
4074
|
+
x-enum-varnames:
|
|
4075
|
+
- COUNT_OR_GAUGE
|
|
4076
|
+
- DISTRIBUTION
|
|
4077
|
+
- PERCENTILE
|
|
3886
4078
|
MetricIngestedIndexedVolume:
|
|
3887
4079
|
description: Object for a single metric's ingested and indexed volume.
|
|
3888
4080
|
properties:
|
|
@@ -3917,10 +4109,151 @@ components:
|
|
|
3917
4109
|
type: string
|
|
3918
4110
|
x-enum-varnames:
|
|
3919
4111
|
- METRIC_VOLUMES
|
|
4112
|
+
MetricIntakeType:
|
|
4113
|
+
description: The type of metric.
|
|
4114
|
+
enum:
|
|
4115
|
+
- 0
|
|
4116
|
+
- 1
|
|
4117
|
+
- 2
|
|
4118
|
+
- 3
|
|
4119
|
+
- 15
|
|
4120
|
+
format: int32
|
|
4121
|
+
type: integer
|
|
4122
|
+
x-enum-varnames:
|
|
4123
|
+
- UNSPECIFIED
|
|
4124
|
+
- COUNT
|
|
4125
|
+
- RATE
|
|
4126
|
+
- GAUGE
|
|
4127
|
+
- UNSPECIFIED_LEGACY
|
|
4128
|
+
MetricMetadata:
|
|
4129
|
+
description: Metadata for the metric.
|
|
4130
|
+
properties:
|
|
4131
|
+
origin:
|
|
4132
|
+
$ref: '#/components/schemas/MetricOrigin'
|
|
4133
|
+
type: object
|
|
3920
4134
|
MetricName:
|
|
3921
4135
|
description: The metric name for this resource.
|
|
3922
4136
|
example: test.metric.latency
|
|
3923
4137
|
type: string
|
|
4138
|
+
MetricOrigin:
|
|
4139
|
+
description: Metric origin information.
|
|
4140
|
+
properties:
|
|
4141
|
+
metric_type:
|
|
4142
|
+
default: 0
|
|
4143
|
+
description: The origin metric type code
|
|
4144
|
+
format: int32
|
|
4145
|
+
maximum: 1000
|
|
4146
|
+
type: integer
|
|
4147
|
+
product:
|
|
4148
|
+
default: 0
|
|
4149
|
+
description: The origin product code
|
|
4150
|
+
format: int32
|
|
4151
|
+
maximum: 1000
|
|
4152
|
+
type: integer
|
|
4153
|
+
service:
|
|
4154
|
+
default: 0
|
|
4155
|
+
description: The origin service code
|
|
4156
|
+
format: int32
|
|
4157
|
+
maximum: 1000
|
|
4158
|
+
type: integer
|
|
4159
|
+
type: object
|
|
4160
|
+
MetricPayload:
|
|
4161
|
+
description: The metrics' payload.
|
|
4162
|
+
properties:
|
|
4163
|
+
series:
|
|
4164
|
+
description: A list of time series to submit to Datadog.
|
|
4165
|
+
example:
|
|
4166
|
+
- metric: system.load.1
|
|
4167
|
+
points:
|
|
4168
|
+
- timestamp: 1475317847
|
|
4169
|
+
value: 0.7
|
|
4170
|
+
items:
|
|
4171
|
+
$ref: '#/components/schemas/MetricSeries'
|
|
4172
|
+
type: array
|
|
4173
|
+
required:
|
|
4174
|
+
- series
|
|
4175
|
+
type: object
|
|
4176
|
+
MetricPoint:
|
|
4177
|
+
description: A point object is of the form `{POSIX_timestamp, numeric_value}`.
|
|
4178
|
+
example:
|
|
4179
|
+
timestamp: 1575317847
|
|
4180
|
+
value: 0.5
|
|
4181
|
+
properties:
|
|
4182
|
+
timestamp:
|
|
4183
|
+
description: 'The timestamp should be in seconds and current.
|
|
4184
|
+
|
|
4185
|
+
Current is defined as not more than 10 minutes in the future or more than
|
|
4186
|
+
1 hour in the past.'
|
|
4187
|
+
format: int64
|
|
4188
|
+
type: integer
|
|
4189
|
+
value:
|
|
4190
|
+
description: The numeric value format should be a 64bit float gauge-type
|
|
4191
|
+
value.
|
|
4192
|
+
format: double
|
|
4193
|
+
type: number
|
|
4194
|
+
type: object
|
|
4195
|
+
MetricResource:
|
|
4196
|
+
description: Metric resource.
|
|
4197
|
+
properties:
|
|
4198
|
+
name:
|
|
4199
|
+
description: The name of the metric.
|
|
4200
|
+
type: string
|
|
4201
|
+
type:
|
|
4202
|
+
description: The type of metric.
|
|
4203
|
+
type: string
|
|
4204
|
+
type: object
|
|
4205
|
+
MetricSeries:
|
|
4206
|
+
description: 'A metric to submit to Datadog.
|
|
4207
|
+
|
|
4208
|
+
See [Datadog metrics](https://docs.datadoghq.com/developers/metrics/#custom-metrics-properties).'
|
|
4209
|
+
properties:
|
|
4210
|
+
interval:
|
|
4211
|
+
description: If the type of the metric is rate or count, define the corresponding
|
|
4212
|
+
interval.
|
|
4213
|
+
example: 20
|
|
4214
|
+
format: int64
|
|
4215
|
+
type: integer
|
|
4216
|
+
metadata:
|
|
4217
|
+
$ref: '#/components/schemas/MetricMetadata'
|
|
4218
|
+
metric:
|
|
4219
|
+
description: The name of the timeseries.
|
|
4220
|
+
example: system.load.1
|
|
4221
|
+
type: string
|
|
4222
|
+
points:
|
|
4223
|
+
description: Points relating to a metric. All points must be objects with
|
|
4224
|
+
timestamp and a scalar value (cannot be a string). Timestamps should be
|
|
4225
|
+
in POSIX time in seconds, and cannot be more than ten minutes in the future
|
|
4226
|
+
or more than one hour in the past.
|
|
4227
|
+
items:
|
|
4228
|
+
$ref: '#/components/schemas/MetricPoint'
|
|
4229
|
+
type: array
|
|
4230
|
+
resources:
|
|
4231
|
+
description: A list of resources to associate with this metric.
|
|
4232
|
+
items:
|
|
4233
|
+
$ref: '#/components/schemas/MetricResource'
|
|
4234
|
+
type: array
|
|
4235
|
+
source_type_name:
|
|
4236
|
+
description: The source type name.
|
|
4237
|
+
example: datadog
|
|
4238
|
+
type: string
|
|
4239
|
+
tags:
|
|
4240
|
+
description: A list of tags associated with the metric.
|
|
4241
|
+
example:
|
|
4242
|
+
- environment:test
|
|
4243
|
+
items:
|
|
4244
|
+
description: Individual tags.
|
|
4245
|
+
type: string
|
|
4246
|
+
type: array
|
|
4247
|
+
type:
|
|
4248
|
+
$ref: '#/components/schemas/MetricIntakeType'
|
|
4249
|
+
unit:
|
|
4250
|
+
description: The unit of point value.
|
|
4251
|
+
example: second
|
|
4252
|
+
type: string
|
|
4253
|
+
required:
|
|
4254
|
+
- metric
|
|
4255
|
+
- points
|
|
4256
|
+
type: object
|
|
3924
4257
|
MetricTagConfiguration:
|
|
3925
4258
|
description: Object for a single metric tag configuration.
|
|
3926
4259
|
example:
|
|
@@ -3986,7 +4319,6 @@ components:
|
|
|
3986
4319
|
aggregations:
|
|
3987
4320
|
$ref: '#/components/schemas/MetricCustomAggregations'
|
|
3988
4321
|
include_percentiles:
|
|
3989
|
-
default: false
|
|
3990
4322
|
description: 'Toggle to include/exclude percentiles for a distribution metric.
|
|
3991
4323
|
|
|
3992
4324
|
Defaults to false. Can only be applied to metrics that have a `metric_type`
|
|
@@ -4078,7 +4410,6 @@ components:
|
|
|
4078
4410
|
aggregations:
|
|
4079
4411
|
$ref: '#/components/schemas/MetricCustomAggregations'
|
|
4080
4412
|
include_percentiles:
|
|
4081
|
-
default: false
|
|
4082
4413
|
description: 'Toggle to include/exclude percentiles for a distribution metric.
|
|
4083
4414
|
|
|
4084
4415
|
Defaults to false. Can only be applied to metrics that have a `metric_type`
|
|
@@ -4186,75 +4517,243 @@ components:
|
|
|
4186
4517
|
- id
|
|
4187
4518
|
- type
|
|
4188
4519
|
type: object
|
|
4189
|
-
|
|
4190
|
-
description:
|
|
4520
|
+
OpsgenieServiceCreateAttributes:
|
|
4521
|
+
description: The Opsgenie service attributes for a create request.
|
|
4191
4522
|
properties:
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
description: ID of the organization.
|
|
4523
|
+
custom_url:
|
|
4524
|
+
description: The custom URL for a custom region.
|
|
4525
|
+
example: https://example.com
|
|
4196
4526
|
type: string
|
|
4527
|
+
name:
|
|
4528
|
+
description: The name for the Opsgenie service.
|
|
4529
|
+
example: fake-opsgenie-service-name
|
|
4530
|
+
type: string
|
|
4531
|
+
opsgenie_api_key:
|
|
4532
|
+
description: The Opsgenie API key for your Opsgenie service.
|
|
4533
|
+
example: 00000000-0000-0000-0000-000000000000
|
|
4534
|
+
type: string
|
|
4535
|
+
region:
|
|
4536
|
+
$ref: '#/components/schemas/OpsgenieServiceRegionType'
|
|
4537
|
+
required:
|
|
4538
|
+
- name
|
|
4539
|
+
- opsgenie_api_key
|
|
4540
|
+
- region
|
|
4541
|
+
type: object
|
|
4542
|
+
OpsgenieServiceCreateData:
|
|
4543
|
+
description: Opsgenie service data for a create request.
|
|
4544
|
+
properties:
|
|
4545
|
+
attributes:
|
|
4546
|
+
$ref: '#/components/schemas/OpsgenieServiceCreateAttributes'
|
|
4197
4547
|
type:
|
|
4198
|
-
$ref: '#/components/schemas/
|
|
4548
|
+
$ref: '#/components/schemas/OpsgenieServiceType'
|
|
4199
4549
|
required:
|
|
4200
4550
|
- type
|
|
4551
|
+
- attributes
|
|
4201
4552
|
type: object
|
|
4202
|
-
|
|
4203
|
-
description:
|
|
4553
|
+
OpsgenieServiceCreateRequest:
|
|
4554
|
+
description: Create request for an Opsgenie service.
|
|
4204
4555
|
properties:
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
description:
|
|
4210
|
-
description: Description of the organization.
|
|
4211
|
-
type: string
|
|
4212
|
-
disabled:
|
|
4213
|
-
description: Whether or not the organization is disabled.
|
|
4214
|
-
type: boolean
|
|
4215
|
-
modified_at:
|
|
4216
|
-
description: Time of last organization modification.
|
|
4217
|
-
format: date-time
|
|
4218
|
-
type: string
|
|
4219
|
-
name:
|
|
4220
|
-
description: Name of the organization.
|
|
4221
|
-
type: string
|
|
4222
|
-
public_id:
|
|
4223
|
-
description: Public ID of the organization.
|
|
4224
|
-
type: string
|
|
4225
|
-
sharing:
|
|
4226
|
-
description: Sharing type of the organization.
|
|
4227
|
-
type: string
|
|
4228
|
-
url:
|
|
4229
|
-
description: URL of the site that this organization exists at.
|
|
4230
|
-
type: string
|
|
4556
|
+
data:
|
|
4557
|
+
$ref: '#/components/schemas/OpsgenieServiceCreateData'
|
|
4558
|
+
required:
|
|
4559
|
+
- data
|
|
4231
4560
|
type: object
|
|
4232
|
-
|
|
4233
|
-
|
|
4234
|
-
description: Organizations resource type.
|
|
4561
|
+
OpsgenieServiceRegionType:
|
|
4562
|
+
description: The region for the Opsgenie service.
|
|
4235
4563
|
enum:
|
|
4236
|
-
-
|
|
4237
|
-
|
|
4564
|
+
- us
|
|
4565
|
+
- eu
|
|
4566
|
+
- custom
|
|
4567
|
+
example: us
|
|
4238
4568
|
type: string
|
|
4239
4569
|
x-enum-varnames:
|
|
4240
|
-
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4570
|
+
- US
|
|
4571
|
+
- EU
|
|
4572
|
+
- CUSTOM
|
|
4573
|
+
OpsgenieServiceResponse:
|
|
4574
|
+
description: Response of an Opsgenie service.
|
|
4243
4575
|
properties:
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
total_filtered_count:
|
|
4249
|
-
description: Total count of elements matched by the filter.
|
|
4250
|
-
format: int64
|
|
4251
|
-
type: integer
|
|
4576
|
+
data:
|
|
4577
|
+
$ref: '#/components/schemas/OpsgenieServiceResponseData'
|
|
4578
|
+
required:
|
|
4579
|
+
- data
|
|
4252
4580
|
type: object
|
|
4253
|
-
|
|
4254
|
-
description:
|
|
4581
|
+
OpsgenieServiceResponseAttributes:
|
|
4582
|
+
description: The attributes from an Opsgenie service response.
|
|
4583
|
+
properties:
|
|
4584
|
+
custom_url:
|
|
4585
|
+
description: The custom URL for a custom region.
|
|
4586
|
+
example: null
|
|
4587
|
+
nullable: true
|
|
4588
|
+
type: string
|
|
4589
|
+
name:
|
|
4590
|
+
description: The name for the Opsgenie service.
|
|
4591
|
+
example: fake-opsgenie-service-name
|
|
4592
|
+
type: string
|
|
4593
|
+
region:
|
|
4594
|
+
$ref: '#/components/schemas/OpsgenieServiceRegionType'
|
|
4595
|
+
type: object
|
|
4596
|
+
OpsgenieServiceResponseData:
|
|
4597
|
+
description: Opsgenie service data from a response.
|
|
4255
4598
|
properties:
|
|
4256
4599
|
attributes:
|
|
4257
|
-
$ref: '#/components/schemas/
|
|
4600
|
+
$ref: '#/components/schemas/OpsgenieServiceResponseAttributes'
|
|
4601
|
+
id:
|
|
4602
|
+
description: The ID of the Opsgenie service.
|
|
4603
|
+
example: 596da4af-0563-4097-90ff-07230c3f9db3
|
|
4604
|
+
type: string
|
|
4605
|
+
type:
|
|
4606
|
+
$ref: '#/components/schemas/OpsgenieServiceType'
|
|
4607
|
+
required:
|
|
4608
|
+
- id
|
|
4609
|
+
- type
|
|
4610
|
+
- attributes
|
|
4611
|
+
type: object
|
|
4612
|
+
OpsgenieServiceType:
|
|
4613
|
+
default: opsgenie-service
|
|
4614
|
+
description: Opsgenie service resource type.
|
|
4615
|
+
enum:
|
|
4616
|
+
- opsgenie-service
|
|
4617
|
+
example: opsgenie-service
|
|
4618
|
+
type: string
|
|
4619
|
+
x-enum-varnames:
|
|
4620
|
+
- OPSGENIE_SERVICE
|
|
4621
|
+
OpsgenieServiceUpdateAttributes:
|
|
4622
|
+
description: The Opsgenie service attributes for an update request.
|
|
4623
|
+
properties:
|
|
4624
|
+
custom_url:
|
|
4625
|
+
description: The custom URL for a custom region.
|
|
4626
|
+
example: https://example.com
|
|
4627
|
+
nullable: true
|
|
4628
|
+
type: string
|
|
4629
|
+
name:
|
|
4630
|
+
description: The name for the Opsgenie service.
|
|
4631
|
+
example: fake-opsgenie-service-name
|
|
4632
|
+
type: string
|
|
4633
|
+
opsgenie_api_key:
|
|
4634
|
+
description: The Opsgenie API key for your Opsgenie service.
|
|
4635
|
+
example: 00000000-0000-0000-0000-000000000000
|
|
4636
|
+
type: string
|
|
4637
|
+
region:
|
|
4638
|
+
$ref: '#/components/schemas/OpsgenieServiceRegionType'
|
|
4639
|
+
type: object
|
|
4640
|
+
OpsgenieServiceUpdateData:
|
|
4641
|
+
description: Opsgenie service for an update request.
|
|
4642
|
+
properties:
|
|
4643
|
+
attributes:
|
|
4644
|
+
$ref: '#/components/schemas/OpsgenieServiceUpdateAttributes'
|
|
4645
|
+
id:
|
|
4646
|
+
description: The ID of the Opsgenie service.
|
|
4647
|
+
example: 596da4af-0563-4097-90ff-07230c3f9db3
|
|
4648
|
+
type: string
|
|
4649
|
+
type:
|
|
4650
|
+
$ref: '#/components/schemas/OpsgenieServiceType'
|
|
4651
|
+
required:
|
|
4652
|
+
- id
|
|
4653
|
+
- type
|
|
4654
|
+
- attributes
|
|
4655
|
+
type: object
|
|
4656
|
+
OpsgenieServiceUpdateRequest:
|
|
4657
|
+
description: Update request for an Opsgenie service.
|
|
4658
|
+
properties:
|
|
4659
|
+
data:
|
|
4660
|
+
$ref: '#/components/schemas/OpsgenieServiceUpdateData'
|
|
4661
|
+
required:
|
|
4662
|
+
- data
|
|
4663
|
+
type: object
|
|
4664
|
+
OpsgenieServicesResponse:
|
|
4665
|
+
description: Response with a list of Opsgenie services.
|
|
4666
|
+
properties:
|
|
4667
|
+
data:
|
|
4668
|
+
description: An array of Opsgenie services.
|
|
4669
|
+
example:
|
|
4670
|
+
- attributes:
|
|
4671
|
+
custom_url: null
|
|
4672
|
+
name: fake-opsgenie-service-name
|
|
4673
|
+
region: us
|
|
4674
|
+
id: 596da4af-0563-4097-90ff-07230c3f9db3
|
|
4675
|
+
type: opsgenie-service
|
|
4676
|
+
- attributes:
|
|
4677
|
+
custom_url: null
|
|
4678
|
+
name: fake-opsgenie-service-name-2
|
|
4679
|
+
region: eu
|
|
4680
|
+
id: 0d2937f1-b561-44fa-914a-99910f848014
|
|
4681
|
+
type: opsgenie-service
|
|
4682
|
+
items:
|
|
4683
|
+
$ref: '#/components/schemas/OpsgenieServiceResponseData'
|
|
4684
|
+
type: array
|
|
4685
|
+
required:
|
|
4686
|
+
- data
|
|
4687
|
+
type: object
|
|
4688
|
+
Organization:
|
|
4689
|
+
description: Organization object.
|
|
4690
|
+
properties:
|
|
4691
|
+
attributes:
|
|
4692
|
+
$ref: '#/components/schemas/OrganizationAttributes'
|
|
4693
|
+
id:
|
|
4694
|
+
description: ID of the organization.
|
|
4695
|
+
type: string
|
|
4696
|
+
type:
|
|
4697
|
+
$ref: '#/components/schemas/OrganizationsType'
|
|
4698
|
+
required:
|
|
4699
|
+
- type
|
|
4700
|
+
type: object
|
|
4701
|
+
OrganizationAttributes:
|
|
4702
|
+
description: Attributes of the organization.
|
|
4703
|
+
properties:
|
|
4704
|
+
created_at:
|
|
4705
|
+
description: Creation time of the organization.
|
|
4706
|
+
format: date-time
|
|
4707
|
+
type: string
|
|
4708
|
+
description:
|
|
4709
|
+
description: Description of the organization.
|
|
4710
|
+
type: string
|
|
4711
|
+
disabled:
|
|
4712
|
+
description: Whether or not the organization is disabled.
|
|
4713
|
+
type: boolean
|
|
4714
|
+
modified_at:
|
|
4715
|
+
description: Time of last organization modification.
|
|
4716
|
+
format: date-time
|
|
4717
|
+
type: string
|
|
4718
|
+
name:
|
|
4719
|
+
description: Name of the organization.
|
|
4720
|
+
type: string
|
|
4721
|
+
public_id:
|
|
4722
|
+
description: Public ID of the organization.
|
|
4723
|
+
type: string
|
|
4724
|
+
sharing:
|
|
4725
|
+
description: Sharing type of the organization.
|
|
4726
|
+
type: string
|
|
4727
|
+
url:
|
|
4728
|
+
description: URL of the site that this organization exists at.
|
|
4729
|
+
type: string
|
|
4730
|
+
type: object
|
|
4731
|
+
OrganizationsType:
|
|
4732
|
+
default: orgs
|
|
4733
|
+
description: Organizations resource type.
|
|
4734
|
+
enum:
|
|
4735
|
+
- orgs
|
|
4736
|
+
example: orgs
|
|
4737
|
+
type: string
|
|
4738
|
+
x-enum-varnames:
|
|
4739
|
+
- ORGS
|
|
4740
|
+
Pagination:
|
|
4741
|
+
description: Pagination object.
|
|
4742
|
+
properties:
|
|
4743
|
+
total_count:
|
|
4744
|
+
description: Total count.
|
|
4745
|
+
format: int64
|
|
4746
|
+
type: integer
|
|
4747
|
+
total_filtered_count:
|
|
4748
|
+
description: Total count of elements matched by the filter.
|
|
4749
|
+
format: int64
|
|
4750
|
+
type: integer
|
|
4751
|
+
type: object
|
|
4752
|
+
PartialAPIKey:
|
|
4753
|
+
description: Partial Datadog API key.
|
|
4754
|
+
properties:
|
|
4755
|
+
attributes:
|
|
4756
|
+
$ref: '#/components/schemas/PartialAPIKeyAttributes'
|
|
4258
4757
|
id:
|
|
4259
4758
|
description: ID of the API key.
|
|
4260
4759
|
type: string
|
|
@@ -4501,6 +5000,186 @@ components:
|
|
|
4501
5000
|
x-enum-varnames:
|
|
4502
5001
|
- ASC
|
|
4503
5002
|
- DESC
|
|
5003
|
+
RUMAggregateBucketValue:
|
|
5004
|
+
description: A bucket value, can be either a timeseries or a single value.
|
|
5005
|
+
oneOf:
|
|
5006
|
+
- $ref: '#/components/schemas/RUMAggregateBucketValueSingleString'
|
|
5007
|
+
- $ref: '#/components/schemas/RUMAggregateBucketValueSingleNumber'
|
|
5008
|
+
- $ref: '#/components/schemas/RUMAggregateBucketValueTimeseries'
|
|
5009
|
+
RUMAggregateBucketValueSingleNumber:
|
|
5010
|
+
description: A single number value.
|
|
5011
|
+
format: double
|
|
5012
|
+
type: number
|
|
5013
|
+
RUMAggregateBucketValueSingleString:
|
|
5014
|
+
description: A single string value.
|
|
5015
|
+
type: string
|
|
5016
|
+
RUMAggregateBucketValueTimeseries:
|
|
5017
|
+
description: A timeseries array.
|
|
5018
|
+
items:
|
|
5019
|
+
$ref: '#/components/schemas/RUMAggregateBucketValueTimeseriesPoint'
|
|
5020
|
+
type: array
|
|
5021
|
+
x-generate-alias-as-model: true
|
|
5022
|
+
RUMAggregateBucketValueTimeseriesPoint:
|
|
5023
|
+
description: A timeseries point.
|
|
5024
|
+
properties:
|
|
5025
|
+
time:
|
|
5026
|
+
description: The time value for this point.
|
|
5027
|
+
example: '2020-06-08T11:55:00.123Z'
|
|
5028
|
+
format: date-time
|
|
5029
|
+
type: string
|
|
5030
|
+
value:
|
|
5031
|
+
description: The value for this point.
|
|
5032
|
+
example: 19
|
|
5033
|
+
format: double
|
|
5034
|
+
type: number
|
|
5035
|
+
type: object
|
|
5036
|
+
RUMAggregateRequest:
|
|
5037
|
+
description: The object sent with the request to retrieve aggregation buckets
|
|
5038
|
+
of RUM events from your organization.
|
|
5039
|
+
properties:
|
|
5040
|
+
compute:
|
|
5041
|
+
description: The list of metrics or timeseries to compute for the retrieved
|
|
5042
|
+
buckets.
|
|
5043
|
+
items:
|
|
5044
|
+
$ref: '#/components/schemas/RUMCompute'
|
|
5045
|
+
type: array
|
|
5046
|
+
filter:
|
|
5047
|
+
$ref: '#/components/schemas/RUMQueryFilter'
|
|
5048
|
+
group_by:
|
|
5049
|
+
description: The rules for the group by.
|
|
5050
|
+
items:
|
|
5051
|
+
$ref: '#/components/schemas/RUMGroupBy'
|
|
5052
|
+
type: array
|
|
5053
|
+
options:
|
|
5054
|
+
$ref: '#/components/schemas/RUMQueryOptions'
|
|
5055
|
+
page:
|
|
5056
|
+
$ref: '#/components/schemas/RUMQueryPageOptions'
|
|
5057
|
+
type: object
|
|
5058
|
+
RUMAggregateSort:
|
|
5059
|
+
description: A sort rule.
|
|
5060
|
+
example:
|
|
5061
|
+
aggregation: count
|
|
5062
|
+
order: asc
|
|
5063
|
+
properties:
|
|
5064
|
+
aggregation:
|
|
5065
|
+
$ref: '#/components/schemas/RUMAggregationFunction'
|
|
5066
|
+
metric:
|
|
5067
|
+
description: The metric to sort by (only used for `type=measure`).
|
|
5068
|
+
example: '@duration'
|
|
5069
|
+
type: string
|
|
5070
|
+
order:
|
|
5071
|
+
$ref: '#/components/schemas/RUMSortOrder'
|
|
5072
|
+
type:
|
|
5073
|
+
$ref: '#/components/schemas/RUMAggregateSortType'
|
|
5074
|
+
type: object
|
|
5075
|
+
RUMAggregateSortType:
|
|
5076
|
+
default: alphabetical
|
|
5077
|
+
description: The type of sorting algorithm.
|
|
5078
|
+
enum:
|
|
5079
|
+
- alphabetical
|
|
5080
|
+
- measure
|
|
5081
|
+
type: string
|
|
5082
|
+
x-enum-varnames:
|
|
5083
|
+
- ALPHABETICAL
|
|
5084
|
+
- MEASURE
|
|
5085
|
+
RUMAggregationBucketsResponse:
|
|
5086
|
+
description: The query results.
|
|
5087
|
+
properties:
|
|
5088
|
+
buckets:
|
|
5089
|
+
description: The list of matching buckets, one item per bucket.
|
|
5090
|
+
items:
|
|
5091
|
+
$ref: '#/components/schemas/RUMBucketResponse'
|
|
5092
|
+
type: array
|
|
5093
|
+
type: object
|
|
5094
|
+
RUMAggregationFunction:
|
|
5095
|
+
description: An aggregation function.
|
|
5096
|
+
enum:
|
|
5097
|
+
- count
|
|
5098
|
+
- cardinality
|
|
5099
|
+
- pc75
|
|
5100
|
+
- pc90
|
|
5101
|
+
- pc95
|
|
5102
|
+
- pc98
|
|
5103
|
+
- pc99
|
|
5104
|
+
- sum
|
|
5105
|
+
- min
|
|
5106
|
+
- max
|
|
5107
|
+
- avg
|
|
5108
|
+
- median
|
|
5109
|
+
example: pc90
|
|
5110
|
+
type: string
|
|
5111
|
+
x-enum-varnames:
|
|
5112
|
+
- COUNT
|
|
5113
|
+
- CARDINALITY
|
|
5114
|
+
- PERCENTILE_75
|
|
5115
|
+
- PERCENTILE_90
|
|
5116
|
+
- PERCENTILE_95
|
|
5117
|
+
- PERCENTILE_98
|
|
5118
|
+
- PERCENTILE_99
|
|
5119
|
+
- SUM
|
|
5120
|
+
- MIN
|
|
5121
|
+
- MAX
|
|
5122
|
+
- AVG
|
|
5123
|
+
- MEDIAN
|
|
5124
|
+
RUMAnalyticsAggregateResponse:
|
|
5125
|
+
description: The response object for the RUM events aggregate API endpoint.
|
|
5126
|
+
properties:
|
|
5127
|
+
data:
|
|
5128
|
+
$ref: '#/components/schemas/RUMAggregationBucketsResponse'
|
|
5129
|
+
links:
|
|
5130
|
+
$ref: '#/components/schemas/RUMResponseLinks'
|
|
5131
|
+
meta:
|
|
5132
|
+
$ref: '#/components/schemas/RUMResponseMetadata'
|
|
5133
|
+
type: object
|
|
5134
|
+
RUMBucketResponse:
|
|
5135
|
+
description: Bucket values.
|
|
5136
|
+
properties:
|
|
5137
|
+
by:
|
|
5138
|
+
additionalProperties:
|
|
5139
|
+
description: The values for each group-by.
|
|
5140
|
+
type: string
|
|
5141
|
+
description: The key-value pairs for each group-by.
|
|
5142
|
+
example:
|
|
5143
|
+
'@session.type': user
|
|
5144
|
+
'@type': view
|
|
5145
|
+
type: object
|
|
5146
|
+
computes:
|
|
5147
|
+
additionalProperties:
|
|
5148
|
+
$ref: '#/components/schemas/RUMAggregateBucketValue'
|
|
5149
|
+
description: A map of the metric name to value for regular compute, or a
|
|
5150
|
+
list of values for a timeseries.
|
|
5151
|
+
type: object
|
|
5152
|
+
type: object
|
|
5153
|
+
RUMCompute:
|
|
5154
|
+
description: A compute rule to compute metrics or timeseries.
|
|
5155
|
+
properties:
|
|
5156
|
+
aggregation:
|
|
5157
|
+
$ref: '#/components/schemas/RUMAggregationFunction'
|
|
5158
|
+
interval:
|
|
5159
|
+
description: 'The time buckets'' size (only used for type=timeseries)
|
|
5160
|
+
|
|
5161
|
+
Defaults to a resolution of 150 points.'
|
|
5162
|
+
example: 5m
|
|
5163
|
+
type: string
|
|
5164
|
+
metric:
|
|
5165
|
+
description: The metric to use.
|
|
5166
|
+
example: '@duration'
|
|
5167
|
+
type: string
|
|
5168
|
+
type:
|
|
5169
|
+
$ref: '#/components/schemas/RUMComputeType'
|
|
5170
|
+
required:
|
|
5171
|
+
- aggregation
|
|
5172
|
+
type: object
|
|
5173
|
+
RUMComputeType:
|
|
5174
|
+
default: total
|
|
5175
|
+
description: The type of compute.
|
|
5176
|
+
enum:
|
|
5177
|
+
- timeseries
|
|
5178
|
+
- total
|
|
5179
|
+
type: string
|
|
5180
|
+
x-enum-varnames:
|
|
5181
|
+
- TIMESERIES
|
|
5182
|
+
- TOTAL
|
|
4504
5183
|
RUMEvent:
|
|
4505
5184
|
description: Object description of a RUM event after being processed and stored
|
|
4506
5185
|
by Datadog.
|
|
@@ -4570,6 +5249,89 @@ components:
|
|
|
4570
5249
|
meta:
|
|
4571
5250
|
$ref: '#/components/schemas/RUMResponseMetadata'
|
|
4572
5251
|
type: object
|
|
5252
|
+
RUMGroupBy:
|
|
5253
|
+
description: A group-by rule.
|
|
5254
|
+
properties:
|
|
5255
|
+
facet:
|
|
5256
|
+
description: The name of the facet to use (required).
|
|
5257
|
+
example: '@view.time_spent'
|
|
5258
|
+
type: string
|
|
5259
|
+
histogram:
|
|
5260
|
+
$ref: '#/components/schemas/RUMGroupByHistogram'
|
|
5261
|
+
limit:
|
|
5262
|
+
default: 10
|
|
5263
|
+
description: The maximum buckets to return for this group-by.
|
|
5264
|
+
format: int64
|
|
5265
|
+
type: integer
|
|
5266
|
+
missing:
|
|
5267
|
+
$ref: '#/components/schemas/RUMGroupByMissing'
|
|
5268
|
+
sort:
|
|
5269
|
+
$ref: '#/components/schemas/RUMAggregateSort'
|
|
5270
|
+
total:
|
|
5271
|
+
$ref: '#/components/schemas/RUMGroupByTotal'
|
|
5272
|
+
required:
|
|
5273
|
+
- facet
|
|
5274
|
+
type: object
|
|
5275
|
+
RUMGroupByHistogram:
|
|
5276
|
+
description: 'Used to perform a histogram computation (only for measure facets).
|
|
5277
|
+
|
|
5278
|
+
Note: At most 100 buckets are allowed, the number of buckets is (max - min)/interval.'
|
|
5279
|
+
properties:
|
|
5280
|
+
interval:
|
|
5281
|
+
description: The bin size of the histogram buckets.
|
|
5282
|
+
example: 10
|
|
5283
|
+
format: double
|
|
5284
|
+
type: number
|
|
5285
|
+
max:
|
|
5286
|
+
description: 'The maximum value for the measure used in the histogram
|
|
5287
|
+
|
|
5288
|
+
(values greater than this one are filtered out).'
|
|
5289
|
+
example: 100
|
|
5290
|
+
format: double
|
|
5291
|
+
type: number
|
|
5292
|
+
min:
|
|
5293
|
+
description: 'The minimum value for the measure used in the histogram
|
|
5294
|
+
|
|
5295
|
+
(values smaller than this one are filtered out).'
|
|
5296
|
+
example: 50
|
|
5297
|
+
format: double
|
|
5298
|
+
type: number
|
|
5299
|
+
required:
|
|
5300
|
+
- interval
|
|
5301
|
+
- min
|
|
5302
|
+
- max
|
|
5303
|
+
type: object
|
|
5304
|
+
RUMGroupByMissing:
|
|
5305
|
+
description: The value to use for logs that don't have the facet used to group
|
|
5306
|
+
by.
|
|
5307
|
+
oneOf:
|
|
5308
|
+
- $ref: '#/components/schemas/RUMGroupByMissingString'
|
|
5309
|
+
- $ref: '#/components/schemas/RUMGroupByMissingNumber'
|
|
5310
|
+
RUMGroupByMissingNumber:
|
|
5311
|
+
description: The missing value to use if there is a number valued facet.
|
|
5312
|
+
format: double
|
|
5313
|
+
type: number
|
|
5314
|
+
RUMGroupByMissingString:
|
|
5315
|
+
description: The missing value to use if there is string valued facet.
|
|
5316
|
+
type: string
|
|
5317
|
+
RUMGroupByTotal:
|
|
5318
|
+
default: false
|
|
5319
|
+
description: A resulting object to put the given computes in over all the matching
|
|
5320
|
+
records.
|
|
5321
|
+
oneOf:
|
|
5322
|
+
- $ref: '#/components/schemas/RUMGroupByTotalBoolean'
|
|
5323
|
+
- $ref: '#/components/schemas/RUMGroupByTotalString'
|
|
5324
|
+
- $ref: '#/components/schemas/RUMGroupByTotalNumber'
|
|
5325
|
+
RUMGroupByTotalBoolean:
|
|
5326
|
+
description: If set to true, creates an additional bucket labeled "$facet_total".
|
|
5327
|
+
type: boolean
|
|
5328
|
+
RUMGroupByTotalNumber:
|
|
5329
|
+
description: A number to use as the key value for the total bucket.
|
|
5330
|
+
format: double
|
|
5331
|
+
type: number
|
|
5332
|
+
RUMGroupByTotalString:
|
|
5333
|
+
description: A string to use as the key value for the total bucket.
|
|
5334
|
+
type: string
|
|
4573
5335
|
RUMQueryFilter:
|
|
4574
5336
|
description: The search and filter query settings.
|
|
4575
5337
|
properties:
|
|
@@ -4700,6 +5462,16 @@ components:
|
|
|
4700
5462
|
x-enum-varnames:
|
|
4701
5463
|
- TIMESTAMP_ASCENDING
|
|
4702
5464
|
- TIMESTAMP_DESCENDING
|
|
5465
|
+
RUMSortOrder:
|
|
5466
|
+
description: The order to use, ascending or descending.
|
|
5467
|
+
enum:
|
|
5468
|
+
- asc
|
|
5469
|
+
- desc
|
|
5470
|
+
example: asc
|
|
5471
|
+
type: string
|
|
5472
|
+
x-enum-varnames:
|
|
5473
|
+
- ASCENDING
|
|
5474
|
+
- DESCENDING
|
|
4703
5475
|
RUMWarning:
|
|
4704
5476
|
description: A warning message indicating something that went wrong with the
|
|
4705
5477
|
query.
|
|
@@ -4878,11 +5650,9 @@ components:
|
|
|
4878
5650
|
description: Data of AuthN Mapping relationship to SAML Assertion Attribute.
|
|
4879
5651
|
properties:
|
|
4880
5652
|
id:
|
|
4881
|
-
description: The ID of the SAML assertion attribute.
|
|
4882
|
-
example: 0
|
|
4883
|
-
|
|
4884
|
-
maximum: 2147483647
|
|
4885
|
-
type: integer
|
|
5653
|
+
description: The ID of the SAML assertion attribute.
|
|
5654
|
+
example: '0'
|
|
5655
|
+
type: string
|
|
4886
5656
|
type:
|
|
4887
5657
|
$ref: '#/components/schemas/SAMLAssertionAttributesType'
|
|
4888
5658
|
required:
|
|
@@ -5184,10 +5954,8 @@ components:
|
|
|
5184
5954
|
$ref: '#/components/schemas/SAMLAssertionAttributeAttributes'
|
|
5185
5955
|
id:
|
|
5186
5956
|
description: The ID of the SAML assertion attribute.
|
|
5187
|
-
example: 0
|
|
5188
|
-
|
|
5189
|
-
maximum: 2147483647
|
|
5190
|
-
type: integer
|
|
5957
|
+
example: '0'
|
|
5958
|
+
type: string
|
|
5191
5959
|
type:
|
|
5192
5960
|
$ref: '#/components/schemas/SAMLAssertionAttributesType'
|
|
5193
5961
|
required:
|
|
@@ -5574,6 +6342,17 @@ components:
|
|
|
5574
6342
|
- cases
|
|
5575
6343
|
- message
|
|
5576
6344
|
type: object
|
|
6345
|
+
SecurityMonitoringRuleDecreaseCriticalityBasedOnEnv:
|
|
6346
|
+
description: 'If true, signals in non-production environments have a lower severity
|
|
6347
|
+
than what is defined by the rule case, which can reduce signal noise.
|
|
6348
|
+
|
|
6349
|
+
The severity is decreased by one level: `CRITICAL` in production becomes `HIGH`
|
|
6350
|
+
in non-production, `HIGH` becomes `MEDIUM` and so on. `INFO` remains `INFO`.
|
|
6351
|
+
|
|
6352
|
+
The decrement is applied when the environment tag of the signal starts with
|
|
6353
|
+
`staging`, `test` or `dev`.'
|
|
6354
|
+
example: false
|
|
6355
|
+
type: boolean
|
|
5577
6356
|
SecurityMonitoringRuleDetectionMethod:
|
|
5578
6357
|
description: The detection method.
|
|
5579
6358
|
enum:
|
|
@@ -5581,12 +6360,14 @@ components:
|
|
|
5581
6360
|
- new_value
|
|
5582
6361
|
- anomaly_detection
|
|
5583
6362
|
- impossible_travel
|
|
6363
|
+
- hardcoded
|
|
5584
6364
|
type: string
|
|
5585
6365
|
x-enum-varnames:
|
|
5586
6366
|
- THRESHOLD
|
|
5587
6367
|
- NEW_VALUE
|
|
5588
6368
|
- ANOMALY_DETECTION
|
|
5589
6369
|
- IMPOSSIBLE_TRAVEL
|
|
6370
|
+
- HARDCODED
|
|
5590
6371
|
SecurityMonitoringRuleEvaluationWindow:
|
|
5591
6372
|
description: 'A time window is specified to match when at least one of the cases
|
|
5592
6373
|
matches true. This is a sliding window
|
|
@@ -5612,6 +6393,13 @@ components:
|
|
|
5612
6393
|
- THIRTY_MINUTES
|
|
5613
6394
|
- ONE_HOUR
|
|
5614
6395
|
- TWO_HOURS
|
|
6396
|
+
SecurityMonitoringRuleHardcodedEvaluatorType:
|
|
6397
|
+
description: Hardcoded evaluator type.
|
|
6398
|
+
enum:
|
|
6399
|
+
- log4shell
|
|
6400
|
+
type: string
|
|
6401
|
+
x-enum-varnames:
|
|
6402
|
+
- LOG4SHELL
|
|
5615
6403
|
SecurityMonitoringRuleImpossibleTravelOptions:
|
|
5616
6404
|
description: Options on impossible travel rules.
|
|
5617
6405
|
properties:
|
|
@@ -5692,6 +6480,10 @@ components:
|
|
|
5692
6480
|
$ref: '#/components/schemas/SecurityMonitoringRuleNewValueOptionsForgetAfter'
|
|
5693
6481
|
learningDuration:
|
|
5694
6482
|
$ref: '#/components/schemas/SecurityMonitoringRuleNewValueOptionsLearningDuration'
|
|
6483
|
+
learningMethod:
|
|
6484
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleNewValueOptionsLearningMethod'
|
|
6485
|
+
learningThreshold:
|
|
6486
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleNewValueOptionsLearningThreshold'
|
|
5695
6487
|
type: object
|
|
5696
6488
|
SecurityMonitoringRuleNewValueOptionsForgetAfter:
|
|
5697
6489
|
description: The duration in days after which a learned value is forgotten.
|
|
@@ -5712,6 +6504,7 @@ components:
|
|
|
5712
6504
|
- THREE_WEEKS
|
|
5713
6505
|
- FOUR_WEEKS
|
|
5714
6506
|
SecurityMonitoringRuleNewValueOptionsLearningDuration:
|
|
6507
|
+
default: 0
|
|
5715
6508
|
description: 'The duration in days during which values are learned, and after
|
|
5716
6509
|
which signals will be generated for values that
|
|
5717
6510
|
|
|
@@ -5727,13 +6520,40 @@ components:
|
|
|
5727
6520
|
- ZERO_DAYS
|
|
5728
6521
|
- ONE_DAY
|
|
5729
6522
|
- SEVEN_DAYS
|
|
6523
|
+
SecurityMonitoringRuleNewValueOptionsLearningMethod:
|
|
6524
|
+
default: duration
|
|
6525
|
+
description: The learning method used to determine when signals should be generated
|
|
6526
|
+
for values that weren't learned.
|
|
6527
|
+
enum:
|
|
6528
|
+
- duration
|
|
6529
|
+
- threshold
|
|
6530
|
+
type: string
|
|
6531
|
+
x-enum-varnames:
|
|
6532
|
+
- DURATION
|
|
6533
|
+
- THRESHOLD
|
|
6534
|
+
SecurityMonitoringRuleNewValueOptionsLearningThreshold:
|
|
6535
|
+
default: 0
|
|
6536
|
+
description: A number of occurrences after which signals will be generated for
|
|
6537
|
+
values that weren't learned.
|
|
6538
|
+
enum:
|
|
6539
|
+
- 0
|
|
6540
|
+
- 1
|
|
6541
|
+
format: int32
|
|
6542
|
+
type: integer
|
|
6543
|
+
x-enum-varnames:
|
|
6544
|
+
- ZERO_OCCURRENCES
|
|
6545
|
+
- ONE_OCCURRENCE
|
|
5730
6546
|
SecurityMonitoringRuleOptions:
|
|
5731
6547
|
description: Options on rules.
|
|
5732
6548
|
properties:
|
|
6549
|
+
decreaseCriticalityBasedOnEnv:
|
|
6550
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleDecreaseCriticalityBasedOnEnv'
|
|
5733
6551
|
detectionMethod:
|
|
5734
6552
|
$ref: '#/components/schemas/SecurityMonitoringRuleDetectionMethod'
|
|
5735
6553
|
evaluationWindow:
|
|
5736
6554
|
$ref: '#/components/schemas/SecurityMonitoringRuleEvaluationWindow'
|
|
6555
|
+
hardcodedEvaluatorType:
|
|
6556
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleHardcodedEvaluatorType'
|
|
5737
6557
|
impossibleTravelOptions:
|
|
5738
6558
|
$ref: '#/components/schemas/SecurityMonitoringRuleImpossibleTravelOptions'
|
|
5739
6559
|
keepAlive:
|
|
@@ -6013,10 +6833,10 @@ components:
|
|
|
6013
6833
|
example:
|
|
6014
6834
|
- security:attack
|
|
6015
6835
|
- technique:T1110-brute-force
|
|
6016
|
-
format: array
|
|
6017
6836
|
items:
|
|
6018
6837
|
description: The tag associated with the security signal.
|
|
6019
6838
|
type: string
|
|
6839
|
+
type: array
|
|
6020
6840
|
timestamp:
|
|
6021
6841
|
description: The timestamp of the security signal.
|
|
6022
6842
|
example: '2019-01-02T09:42:36.320Z'
|
|
@@ -6170,6 +6990,87 @@ components:
|
|
|
6170
6990
|
required:
|
|
6171
6991
|
- data
|
|
6172
6992
|
type: object
|
|
6993
|
+
UsageApplicationSecurityMonitoringResponse:
|
|
6994
|
+
description: Application Security Monitoring usage response.
|
|
6995
|
+
properties:
|
|
6996
|
+
data:
|
|
6997
|
+
description: Response containing Application Security Monitoring usage.
|
|
6998
|
+
items:
|
|
6999
|
+
$ref: '#/components/schemas/UsageDataObject'
|
|
7000
|
+
type: array
|
|
7001
|
+
type: object
|
|
7002
|
+
UsageAttributesObject:
|
|
7003
|
+
description: Usage attributes data.
|
|
7004
|
+
properties:
|
|
7005
|
+
org_name:
|
|
7006
|
+
description: The organization name.
|
|
7007
|
+
type: string
|
|
7008
|
+
product_family:
|
|
7009
|
+
description: The product for which usage is being reported.
|
|
7010
|
+
type: string
|
|
7011
|
+
public_id:
|
|
7012
|
+
description: The organization public ID.
|
|
7013
|
+
type: string
|
|
7014
|
+
timeseries:
|
|
7015
|
+
description: List of usage data reported for each requested hour.
|
|
7016
|
+
items:
|
|
7017
|
+
$ref: '#/components/schemas/UsageTimeSeriesObject'
|
|
7018
|
+
type: array
|
|
7019
|
+
usage_type:
|
|
7020
|
+
$ref: '#/components/schemas/HourlyUsageType'
|
|
7021
|
+
type: object
|
|
7022
|
+
UsageDataObject:
|
|
7023
|
+
description: Usage data.
|
|
7024
|
+
properties:
|
|
7025
|
+
attributes:
|
|
7026
|
+
$ref: '#/components/schemas/UsageAttributesObject'
|
|
7027
|
+
id:
|
|
7028
|
+
description: Unique ID of the response.
|
|
7029
|
+
type: string
|
|
7030
|
+
type:
|
|
7031
|
+
$ref: '#/components/schemas/UsageTimeSeriesType'
|
|
7032
|
+
type: object
|
|
7033
|
+
UsageLambdaTracedInvocationsResponse:
|
|
7034
|
+
description: Lambda Traced Invocations usage response.
|
|
7035
|
+
properties:
|
|
7036
|
+
data:
|
|
7037
|
+
description: Response containing Lambda Traced Invocations usage.
|
|
7038
|
+
items:
|
|
7039
|
+
$ref: '#/components/schemas/UsageDataObject'
|
|
7040
|
+
type: array
|
|
7041
|
+
type: object
|
|
7042
|
+
UsageObservabilityPipelinesResponse:
|
|
7043
|
+
description: Observability Pipelines usage response.
|
|
7044
|
+
properties:
|
|
7045
|
+
data:
|
|
7046
|
+
description: Response containing Observability Pipelines usage.
|
|
7047
|
+
items:
|
|
7048
|
+
$ref: '#/components/schemas/UsageDataObject'
|
|
7049
|
+
type: array
|
|
7050
|
+
type: object
|
|
7051
|
+
UsageTimeSeriesObject:
|
|
7052
|
+
description: Usage timeseries data.
|
|
7053
|
+
properties:
|
|
7054
|
+
timestamp:
|
|
7055
|
+
description: Datetime in ISO-8601 format, UTC. The hour for the usage.
|
|
7056
|
+
format: date-time
|
|
7057
|
+
type: string
|
|
7058
|
+
value:
|
|
7059
|
+
description: Contains the number measured for the given usage_type during
|
|
7060
|
+
the hour.
|
|
7061
|
+
format: int64
|
|
7062
|
+
nullable: true
|
|
7063
|
+
type: integer
|
|
7064
|
+
type: object
|
|
7065
|
+
UsageTimeSeriesType:
|
|
7066
|
+
default: usage_timeseries
|
|
7067
|
+
description: Type of usage data.
|
|
7068
|
+
enum:
|
|
7069
|
+
- usage_timeseries
|
|
7070
|
+
example: usage_timeseries
|
|
7071
|
+
type: string
|
|
7072
|
+
x-enum-varnames:
|
|
7073
|
+
- USAGE_TIMESERIES
|
|
6173
7074
|
User:
|
|
6174
7075
|
description: User object returned by the API.
|
|
6175
7076
|
properties:
|
|
@@ -6451,7 +7352,6 @@ components:
|
|
|
6451
7352
|
authorizationCode:
|
|
6452
7353
|
authorizationUrl: /oauth2/v1/authorize
|
|
6453
7354
|
scopes:
|
|
6454
|
-
dashboards_public_share: Share dashboards externally.
|
|
6455
7355
|
dashboards_read: View dashboards.
|
|
6456
7356
|
dashboards_write: Create and change dashboards.
|
|
6457
7357
|
events_read: Read Events data.
|
|
@@ -6459,6 +7359,8 @@ components:
|
|
|
6459
7359
|
incident_settings_write: Configure Incidents settings.
|
|
6460
7360
|
incident_write: Create, view, and manage incidents in Datadog.
|
|
6461
7361
|
metrics_read: View custom metrics.
|
|
7362
|
+
monitors_read: View monitors.
|
|
7363
|
+
monitors_write: Edit, mute, and delete individual monitors.
|
|
6462
7364
|
security_monitoring_filters_read: Read Security Filters.
|
|
6463
7365
|
security_monitoring_filters_write: Create, edit, and delete Security Filters.
|
|
6464
7366
|
security_monitoring_rules_read: Read Detection Rules.
|
|
@@ -6466,8 +7368,8 @@ components:
|
|
|
6466
7368
|
security_monitoring_signals_read: View Security Signals.
|
|
6467
7369
|
usage_read: View your organization's usage and usage attribution.
|
|
6468
7370
|
user_access_invite: Invite other users to your organization.
|
|
6469
|
-
user_access_manage: Disable users, manage user roles,
|
|
6470
|
-
mappings.
|
|
7371
|
+
user_access_manage: Disable users, manage user roles, manage SAML-to-role
|
|
7372
|
+
mappings, and configure logs restriction queries.
|
|
6471
7373
|
tokenUrl: /oauth2/v1/token
|
|
6472
7374
|
type: oauth2
|
|
6473
7375
|
apiKeyAuth:
|
|
@@ -6914,6 +7816,11 @@ paths:
|
|
|
6914
7816
|
tags:
|
|
6915
7817
|
- Audit
|
|
6916
7818
|
x-menu-order: 2
|
|
7819
|
+
x-pagination:
|
|
7820
|
+
cursorParam: page[cursor]
|
|
7821
|
+
cursorPath: meta.page.after
|
|
7822
|
+
limitParam: page[limit]
|
|
7823
|
+
resultsPath: data
|
|
6917
7824
|
x-undo:
|
|
6918
7825
|
type: safe
|
|
6919
7826
|
/api/v2/audit/events/search:
|
|
@@ -6953,6 +7860,11 @@ paths:
|
|
|
6953
7860
|
- Audit
|
|
6954
7861
|
x-codegen-request-body-name: body
|
|
6955
7862
|
x-menu-order: 1
|
|
7863
|
+
x-pagination:
|
|
7864
|
+
cursorParam: body.page.cursor
|
|
7865
|
+
cursorPath: meta.page.after
|
|
7866
|
+
limitParam: body.page.limit
|
|
7867
|
+
resultsPath: data
|
|
6956
7868
|
x-undo:
|
|
6957
7869
|
type: safe
|
|
6958
7870
|
/api/v2/authn_mappings:
|
|
@@ -6968,14 +7880,6 @@ paths:
|
|
|
6968
7880
|
required: false
|
|
6969
7881
|
schema:
|
|
6970
7882
|
$ref: '#/components/schemas/AuthNMappingsSort'
|
|
6971
|
-
- description: Include additional information in the response.
|
|
6972
|
-
in: query
|
|
6973
|
-
name: include
|
|
6974
|
-
required: false
|
|
6975
|
-
schema:
|
|
6976
|
-
items:
|
|
6977
|
-
type: string
|
|
6978
|
-
type: array
|
|
6979
7883
|
- description: Filter all mappings by the given string.
|
|
6980
7884
|
in: query
|
|
6981
7885
|
name: filter
|
|
@@ -7545,6 +8449,23 @@ paths:
|
|
|
7545
8449
|
tags:
|
|
7546
8450
|
- Dashboard Lists
|
|
7547
8451
|
x-codegen-request-body-name: body
|
|
8452
|
+
x-given:
|
|
8453
|
+
dashboard_list_dashboard:
|
|
8454
|
+
parameters:
|
|
8455
|
+
- name: dashboard_list_id
|
|
8456
|
+
source: dashboard_list.id
|
|
8457
|
+
- name: body
|
|
8458
|
+
value: "{\n \"dashboards\": [\n {\n \"id\": \"{{ dashboard.id
|
|
8459
|
+
}}\",\n \"type\": \"custom_timeboard\"\n }\n ]\n}"
|
|
8460
|
+
step: the "dashboard_list" has the "dashboard"
|
|
8461
|
+
dashboard_list_screenboard_dashboard:
|
|
8462
|
+
parameters:
|
|
8463
|
+
- name: dashboard_list_id
|
|
8464
|
+
source: dashboard_list.id
|
|
8465
|
+
- name: body
|
|
8466
|
+
value: "{\n \"dashboards\": [\n {\n \"id\": \"{{ screenboard_dashboard.id
|
|
8467
|
+
}}\",\n \"type\": \"custom_screenboard\"\n }\n ]\n}"
|
|
8468
|
+
step: the "dashboard_list" has the "screenboard_dashboard"
|
|
7548
8469
|
x-menu-order: 2
|
|
7549
8470
|
x-undo:
|
|
7550
8471
|
type: safe
|
|
@@ -7633,177 +8554,334 @@ paths:
|
|
|
7633
8554
|
summary: Get a list of incidents
|
|
7634
8555
|
tags:
|
|
7635
8556
|
- Incidents
|
|
8557
|
+
x-pagination:
|
|
8558
|
+
limitParam: page[size]
|
|
8559
|
+
pageOffsetParam: page[offset]
|
|
8560
|
+
resultsPath: data
|
|
8561
|
+
x-undo:
|
|
8562
|
+
type: safe
|
|
8563
|
+
x-unstable: '**Note**: This endpoint is in public beta.
|
|
8564
|
+
|
|
8565
|
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
8566
|
+
post:
|
|
8567
|
+
description: Create an incident.
|
|
8568
|
+
operationId: CreateIncident
|
|
8569
|
+
requestBody:
|
|
8570
|
+
content:
|
|
8571
|
+
application/json:
|
|
8572
|
+
schema:
|
|
8573
|
+
$ref: '#/components/schemas/IncidentCreateRequest'
|
|
8574
|
+
description: Incident payload.
|
|
8575
|
+
required: true
|
|
8576
|
+
responses:
|
|
8577
|
+
'201':
|
|
8578
|
+
content:
|
|
8579
|
+
application/json:
|
|
8580
|
+
schema:
|
|
8581
|
+
$ref: '#/components/schemas/IncidentResponse'
|
|
8582
|
+
description: CREATED
|
|
8583
|
+
'400':
|
|
8584
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
8585
|
+
'401':
|
|
8586
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
|
8587
|
+
'403':
|
|
8588
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
|
8589
|
+
'404':
|
|
8590
|
+
$ref: '#/components/responses/NotFoundResponse'
|
|
8591
|
+
'429':
|
|
8592
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
8593
|
+
security:
|
|
8594
|
+
- apiKeyAuth: []
|
|
8595
|
+
appKeyAuth: []
|
|
8596
|
+
- AuthZ:
|
|
8597
|
+
- incident_write
|
|
8598
|
+
summary: Create an incident
|
|
8599
|
+
tags:
|
|
8600
|
+
- Incidents
|
|
8601
|
+
x-codegen-request-body-name: body
|
|
8602
|
+
x-given:
|
|
8603
|
+
incident:
|
|
8604
|
+
parameters:
|
|
8605
|
+
- name: body
|
|
8606
|
+
value: "{\n \"data\": {\n \"attributes\": {\n \"title\": \"{{
|
|
8607
|
+
unique }}\",\n \"customer_impacted\": false\n },\n \"type\":
|
|
8608
|
+
\"incidents\"\n }\n}"
|
|
8609
|
+
step: there is a valid "incident" in the system
|
|
8610
|
+
x-undo:
|
|
8611
|
+
operationId: DeleteIncident
|
|
8612
|
+
parameters:
|
|
8613
|
+
- name: incident_id
|
|
8614
|
+
source: data.id
|
|
8615
|
+
type: unsafe
|
|
8616
|
+
x-unstable: '**Note**: This endpoint is in public beta.
|
|
8617
|
+
|
|
8618
|
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
8619
|
+
/api/v2/incidents/{incident_id}:
|
|
8620
|
+
delete:
|
|
8621
|
+
description: Deletes an existing incident from the users organization.
|
|
8622
|
+
operationId: DeleteIncident
|
|
8623
|
+
parameters:
|
|
8624
|
+
- $ref: '#/components/parameters/IncidentIDPathParameter'
|
|
8625
|
+
responses:
|
|
8626
|
+
'204':
|
|
8627
|
+
description: OK
|
|
8628
|
+
'400':
|
|
8629
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
8630
|
+
'401':
|
|
8631
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
|
8632
|
+
'403':
|
|
8633
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
|
8634
|
+
'404':
|
|
8635
|
+
$ref: '#/components/responses/NotFoundResponse'
|
|
8636
|
+
'429':
|
|
8637
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
8638
|
+
security:
|
|
8639
|
+
- apiKeyAuth: []
|
|
8640
|
+
appKeyAuth: []
|
|
8641
|
+
- AuthZ:
|
|
8642
|
+
- incident_write
|
|
8643
|
+
summary: Delete an existing incident
|
|
8644
|
+
tags:
|
|
8645
|
+
- Incidents
|
|
8646
|
+
x-undo:
|
|
8647
|
+
type: idempotent
|
|
8648
|
+
x-unstable: '**Note**: This endpoint is in public beta.
|
|
8649
|
+
|
|
8650
|
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
8651
|
+
get:
|
|
8652
|
+
description: Get the details of an incident by `incident_id`.
|
|
8653
|
+
operationId: GetIncident
|
|
8654
|
+
parameters:
|
|
8655
|
+
- $ref: '#/components/parameters/IncidentIDPathParameter'
|
|
8656
|
+
- $ref: '#/components/parameters/IncidentIncludeQueryParameter'
|
|
8657
|
+
responses:
|
|
8658
|
+
'200':
|
|
8659
|
+
content:
|
|
8660
|
+
application/json:
|
|
8661
|
+
schema:
|
|
8662
|
+
$ref: '#/components/schemas/IncidentResponse'
|
|
8663
|
+
description: OK
|
|
8664
|
+
'400':
|
|
8665
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
8666
|
+
'401':
|
|
8667
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
|
8668
|
+
'403':
|
|
8669
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
|
8670
|
+
'404':
|
|
8671
|
+
$ref: '#/components/responses/NotFoundResponse'
|
|
8672
|
+
'429':
|
|
8673
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
8674
|
+
security:
|
|
8675
|
+
- apiKeyAuth: []
|
|
8676
|
+
appKeyAuth: []
|
|
8677
|
+
- AuthZ:
|
|
8678
|
+
- incident_read
|
|
8679
|
+
summary: Get the details of an incident
|
|
8680
|
+
tags:
|
|
8681
|
+
- Incidents
|
|
7636
8682
|
x-undo:
|
|
7637
8683
|
type: safe
|
|
7638
8684
|
x-unstable: '**Note**: This endpoint is in public beta.
|
|
7639
8685
|
|
|
7640
8686
|
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
8687
|
+
patch:
|
|
8688
|
+
description: Updates an incident. Provide only the attributes that should be
|
|
8689
|
+
updated as this request is a partial update.
|
|
8690
|
+
operationId: UpdateIncident
|
|
8691
|
+
parameters:
|
|
8692
|
+
- $ref: '#/components/parameters/IncidentIDPathParameter'
|
|
8693
|
+
- $ref: '#/components/parameters/IncidentIncludeQueryParameter'
|
|
8694
|
+
requestBody:
|
|
8695
|
+
content:
|
|
8696
|
+
application/json:
|
|
8697
|
+
schema:
|
|
8698
|
+
$ref: '#/components/schemas/IncidentUpdateRequest'
|
|
8699
|
+
description: Incident Payload.
|
|
8700
|
+
required: true
|
|
8701
|
+
responses:
|
|
8702
|
+
'200':
|
|
8703
|
+
content:
|
|
8704
|
+
application/json:
|
|
8705
|
+
schema:
|
|
8706
|
+
$ref: '#/components/schemas/IncidentResponse'
|
|
8707
|
+
description: OK
|
|
8708
|
+
'400':
|
|
8709
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
8710
|
+
'401':
|
|
8711
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
|
8712
|
+
'403':
|
|
8713
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
|
8714
|
+
'404':
|
|
8715
|
+
$ref: '#/components/responses/NotFoundResponse'
|
|
8716
|
+
'429':
|
|
8717
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
8718
|
+
security:
|
|
8719
|
+
- apiKeyAuth: []
|
|
8720
|
+
appKeyAuth: []
|
|
8721
|
+
- AuthZ:
|
|
8722
|
+
- incident_write
|
|
8723
|
+
summary: Update an existing incident
|
|
8724
|
+
tags:
|
|
8725
|
+
- Incidents
|
|
8726
|
+
x-codegen-request-body-name: body
|
|
8727
|
+
x-undo:
|
|
8728
|
+
type: idempotent
|
|
8729
|
+
x-unstable: '**Note**: This endpoint is in public beta.
|
|
8730
|
+
|
|
8731
|
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
8732
|
+
/api/v2/integration/opsgenie/services:
|
|
8733
|
+
get:
|
|
8734
|
+
description: Get a list of all services from the Datadog Opsgenie integration.
|
|
8735
|
+
operationId: ListOpsgenieServices
|
|
8736
|
+
responses:
|
|
8737
|
+
'200':
|
|
8738
|
+
content:
|
|
8739
|
+
application/json:
|
|
8740
|
+
schema:
|
|
8741
|
+
$ref: '#/components/schemas/OpsgenieServicesResponse'
|
|
8742
|
+
description: OK
|
|
8743
|
+
'403':
|
|
8744
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
|
8745
|
+
'429':
|
|
8746
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
8747
|
+
summary: Get all service objects
|
|
8748
|
+
tags:
|
|
8749
|
+
- Opsgenie Integration
|
|
8750
|
+
x-menu-order: 1
|
|
8751
|
+
x-undo:
|
|
8752
|
+
type: safe
|
|
7641
8753
|
post:
|
|
7642
|
-
description: Create
|
|
7643
|
-
operationId:
|
|
8754
|
+
description: Create a new service object in the Opsgenie integration.
|
|
8755
|
+
operationId: CreateOpsgenieService
|
|
7644
8756
|
requestBody:
|
|
7645
8757
|
content:
|
|
7646
8758
|
application/json:
|
|
7647
8759
|
schema:
|
|
7648
|
-
$ref: '#/components/schemas/
|
|
7649
|
-
description:
|
|
8760
|
+
$ref: '#/components/schemas/OpsgenieServiceCreateRequest'
|
|
8761
|
+
description: Opsgenie service payload
|
|
7650
8762
|
required: true
|
|
7651
8763
|
responses:
|
|
7652
8764
|
'201':
|
|
7653
8765
|
content:
|
|
7654
8766
|
application/json:
|
|
7655
8767
|
schema:
|
|
7656
|
-
$ref: '#/components/schemas/
|
|
8768
|
+
$ref: '#/components/schemas/OpsgenieServiceResponse'
|
|
7657
8769
|
description: CREATED
|
|
7658
8770
|
'400':
|
|
7659
8771
|
$ref: '#/components/responses/BadRequestResponse'
|
|
7660
|
-
'401':
|
|
7661
|
-
$ref: '#/components/responses/UnauthorizedResponse'
|
|
7662
8772
|
'403':
|
|
7663
8773
|
$ref: '#/components/responses/ForbiddenResponse'
|
|
7664
|
-
'
|
|
7665
|
-
$ref: '#/components/responses/
|
|
8774
|
+
'409':
|
|
8775
|
+
$ref: '#/components/responses/ConflictResponse'
|
|
7666
8776
|
'429':
|
|
7667
8777
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
7668
|
-
|
|
7669
|
-
- apiKeyAuth: []
|
|
7670
|
-
appKeyAuth: []
|
|
7671
|
-
- AuthZ:
|
|
7672
|
-
- incident_write
|
|
7673
|
-
summary: Create an incident
|
|
8778
|
+
summary: Create a new service object
|
|
7674
8779
|
tags:
|
|
7675
|
-
-
|
|
8780
|
+
- Opsgenie Integration
|
|
7676
8781
|
x-codegen-request-body-name: body
|
|
7677
8782
|
x-given:
|
|
7678
|
-
|
|
8783
|
+
opsgenie_service:
|
|
7679
8784
|
parameters:
|
|
7680
8785
|
- name: body
|
|
7681
|
-
value: "{\n \"data\": {\n \"attributes\": {\n \"
|
|
7682
|
-
unique }}\",\n \"
|
|
7683
|
-
\"
|
|
7684
|
-
|
|
8786
|
+
value: "{\n \"data\": {\n \"attributes\": {\n \"name\": \"{{
|
|
8787
|
+
unique }}\",\n \"opsgenie_api_key\": \"00000000-0000-0000-0000-000000000000\",\n
|
|
8788
|
+
\ \"region\": \"us\"\n },\n \"type\": \"opsgenie-service\"\n
|
|
8789
|
+
\ }\n}"
|
|
8790
|
+
step: there is a valid "opsgenie_service" in the system
|
|
8791
|
+
x-menu-order: 2
|
|
7685
8792
|
x-undo:
|
|
7686
|
-
operationId:
|
|
8793
|
+
operationId: DeleteOpsgenieService
|
|
7687
8794
|
parameters:
|
|
7688
|
-
- name:
|
|
8795
|
+
- name: integration_service_id
|
|
7689
8796
|
source: data.id
|
|
7690
8797
|
type: unsafe
|
|
7691
|
-
|
|
7692
|
-
|
|
7693
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
7694
|
-
/api/v2/incidents/{incident_id}:
|
|
8798
|
+
/api/v2/integration/opsgenie/services/{integration_service_id}:
|
|
7695
8799
|
delete:
|
|
7696
|
-
description:
|
|
7697
|
-
operationId:
|
|
8800
|
+
description: Delete a single service object in the Datadog Opsgenie integration.
|
|
8801
|
+
operationId: DeleteOpsgenieService
|
|
7698
8802
|
parameters:
|
|
7699
|
-
- $ref: '#/components/parameters/
|
|
8803
|
+
- $ref: '#/components/parameters/OpsgenieServiceIDPathParameter'
|
|
7700
8804
|
responses:
|
|
7701
8805
|
'204':
|
|
7702
8806
|
description: OK
|
|
7703
8807
|
'400':
|
|
7704
8808
|
$ref: '#/components/responses/BadRequestResponse'
|
|
7705
|
-
'401':
|
|
7706
|
-
$ref: '#/components/responses/UnauthorizedResponse'
|
|
7707
8809
|
'403':
|
|
7708
8810
|
$ref: '#/components/responses/ForbiddenResponse'
|
|
7709
8811
|
'404':
|
|
7710
8812
|
$ref: '#/components/responses/NotFoundResponse'
|
|
7711
8813
|
'429':
|
|
7712
8814
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
7713
|
-
|
|
7714
|
-
- apiKeyAuth: []
|
|
7715
|
-
appKeyAuth: []
|
|
7716
|
-
- AuthZ:
|
|
7717
|
-
- incident_write
|
|
7718
|
-
summary: Delete an existing incident
|
|
8815
|
+
summary: Delete a single service object
|
|
7719
8816
|
tags:
|
|
7720
|
-
-
|
|
8817
|
+
- Opsgenie Integration
|
|
8818
|
+
x-menu-order: 5
|
|
7721
8819
|
x-undo:
|
|
7722
8820
|
type: idempotent
|
|
7723
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
|
7724
|
-
|
|
7725
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
7726
8821
|
get:
|
|
7727
|
-
description: Get
|
|
7728
|
-
operationId:
|
|
8822
|
+
description: Get a single service from the Datadog Opsgenie integration.
|
|
8823
|
+
operationId: GetOpsgenieService
|
|
7729
8824
|
parameters:
|
|
7730
|
-
- $ref: '#/components/parameters/
|
|
7731
|
-
- $ref: '#/components/parameters/IncidentIncludeQueryParameter'
|
|
8825
|
+
- $ref: '#/components/parameters/OpsgenieServiceIDPathParameter'
|
|
7732
8826
|
responses:
|
|
7733
8827
|
'200':
|
|
7734
8828
|
content:
|
|
7735
8829
|
application/json:
|
|
7736
8830
|
schema:
|
|
7737
|
-
$ref: '#/components/schemas/
|
|
8831
|
+
$ref: '#/components/schemas/OpsgenieServiceResponse'
|
|
7738
8832
|
description: OK
|
|
7739
8833
|
'400':
|
|
7740
8834
|
$ref: '#/components/responses/BadRequestResponse'
|
|
7741
|
-
'401':
|
|
7742
|
-
$ref: '#/components/responses/UnauthorizedResponse'
|
|
7743
8835
|
'403':
|
|
7744
8836
|
$ref: '#/components/responses/ForbiddenResponse'
|
|
7745
8837
|
'404':
|
|
7746
8838
|
$ref: '#/components/responses/NotFoundResponse'
|
|
8839
|
+
'409':
|
|
8840
|
+
$ref: '#/components/responses/ConflictResponse'
|
|
7747
8841
|
'429':
|
|
7748
8842
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
7749
|
-
|
|
7750
|
-
- apiKeyAuth: []
|
|
7751
|
-
appKeyAuth: []
|
|
7752
|
-
- AuthZ:
|
|
7753
|
-
- incident_read
|
|
7754
|
-
summary: Get the details of an incident
|
|
8843
|
+
summary: Get a single service object
|
|
7755
8844
|
tags:
|
|
7756
|
-
-
|
|
8845
|
+
- Opsgenie Integration
|
|
8846
|
+
x-menu-order: 3
|
|
7757
8847
|
x-undo:
|
|
7758
8848
|
type: safe
|
|
7759
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
|
7760
|
-
|
|
7761
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
7762
8849
|
patch:
|
|
7763
|
-
description:
|
|
7764
|
-
|
|
7765
|
-
operationId: UpdateIncident
|
|
8850
|
+
description: Update a single service object in the Datadog Opsgenie integration.
|
|
8851
|
+
operationId: UpdateOpsgenieService
|
|
7766
8852
|
parameters:
|
|
7767
|
-
- $ref: '#/components/parameters/
|
|
7768
|
-
- $ref: '#/components/parameters/IncidentIncludeQueryParameter'
|
|
8853
|
+
- $ref: '#/components/parameters/OpsgenieServiceIDPathParameter'
|
|
7769
8854
|
requestBody:
|
|
7770
8855
|
content:
|
|
7771
8856
|
application/json:
|
|
7772
8857
|
schema:
|
|
7773
|
-
$ref: '#/components/schemas/
|
|
7774
|
-
description:
|
|
8858
|
+
$ref: '#/components/schemas/OpsgenieServiceUpdateRequest'
|
|
8859
|
+
description: Opsgenie service payload.
|
|
7775
8860
|
required: true
|
|
7776
8861
|
responses:
|
|
7777
8862
|
'200':
|
|
7778
8863
|
content:
|
|
7779
8864
|
application/json:
|
|
7780
8865
|
schema:
|
|
7781
|
-
$ref: '#/components/schemas/
|
|
8866
|
+
$ref: '#/components/schemas/OpsgenieServiceResponse'
|
|
7782
8867
|
description: OK
|
|
7783
8868
|
'400':
|
|
7784
8869
|
$ref: '#/components/responses/BadRequestResponse'
|
|
7785
|
-
'401':
|
|
7786
|
-
$ref: '#/components/responses/UnauthorizedResponse'
|
|
7787
8870
|
'403':
|
|
7788
8871
|
$ref: '#/components/responses/ForbiddenResponse'
|
|
7789
8872
|
'404':
|
|
7790
8873
|
$ref: '#/components/responses/NotFoundResponse'
|
|
8874
|
+
'409':
|
|
8875
|
+
$ref: '#/components/responses/ConflictResponse'
|
|
7791
8876
|
'429':
|
|
7792
8877
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
7793
|
-
|
|
7794
|
-
- apiKeyAuth: []
|
|
7795
|
-
appKeyAuth: []
|
|
7796
|
-
- AuthZ:
|
|
7797
|
-
- incident_write
|
|
7798
|
-
summary: Update an existing incident
|
|
8878
|
+
summary: Update a single service object
|
|
7799
8879
|
tags:
|
|
7800
|
-
-
|
|
8880
|
+
- Opsgenie Integration
|
|
7801
8881
|
x-codegen-request-body-name: body
|
|
8882
|
+
x-menu-order: 4
|
|
7802
8883
|
x-undo:
|
|
7803
8884
|
type: idempotent
|
|
7804
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
|
7805
|
-
|
|
7806
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
7807
8885
|
/api/v2/logs:
|
|
7808
8886
|
post:
|
|
7809
8887
|
description: 'Send your logs to your Datadog platform over HTTP. Limits per
|
|
@@ -8714,6 +9792,11 @@ paths:
|
|
|
8714
9792
|
tags:
|
|
8715
9793
|
- Logs
|
|
8716
9794
|
x-menu-order: 3
|
|
9795
|
+
x-pagination:
|
|
9796
|
+
cursorParam: page[cursor]
|
|
9797
|
+
cursorPath: meta.page.after
|
|
9798
|
+
limitParam: page[limit]
|
|
9799
|
+
resultsPath: data
|
|
8717
9800
|
x-undo:
|
|
8718
9801
|
type: safe
|
|
8719
9802
|
/api/v2/logs/events/search:
|
|
@@ -8761,6 +9844,11 @@ paths:
|
|
|
8761
9844
|
- Logs
|
|
8762
9845
|
x-codegen-request-body-name: body
|
|
8763
9846
|
x-menu-order: 2
|
|
9847
|
+
x-pagination:
|
|
9848
|
+
cursorParam: body.page.cursor
|
|
9849
|
+
cursorPath: meta.page.after
|
|
9850
|
+
limitParam: body.page.limit
|
|
9851
|
+
resultsPath: data
|
|
8764
9852
|
x-undo:
|
|
8765
9853
|
type: safe
|
|
8766
9854
|
/api/v2/metrics:
|
|
@@ -8857,10 +9945,6 @@ paths:
|
|
|
8857
9945
|
x-menu-order: 5
|
|
8858
9946
|
x-undo:
|
|
8859
9947
|
type: safe
|
|
8860
|
-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
|
|
8861
|
-
is only accessible for Metrics without Limits™ beta customers.\nIf you\u2019re
|
|
8862
|
-
interested in Metrics without Limits™, please contact your Customer
|
|
8863
|
-
Success Manager.**"
|
|
8864
9948
|
/api/v2/metrics/config/bulk-tags:
|
|
8865
9949
|
delete:
|
|
8866
9950
|
description: 'Delete all custom lists of queryable tag keys for a set of existing
|
|
@@ -9031,6 +10115,107 @@ paths:
|
|
|
9031
10115
|
x-menu-order: 6
|
|
9032
10116
|
x-undo:
|
|
9033
10117
|
type: safe
|
|
10118
|
+
/api/v2/metrics/{metric_name}/estimate:
|
|
10119
|
+
get:
|
|
10120
|
+
description: Returns the estimated cardinality for a metric with a given tag,
|
|
10121
|
+
percentile and number of aggregations configuration using Metrics without
|
|
10122
|
+
Limits™.
|
|
10123
|
+
operationId: EstimateMetricsOutputSeries
|
|
10124
|
+
parameters:
|
|
10125
|
+
- $ref: '#/components/parameters/MetricName'
|
|
10126
|
+
- description: Filtered tag keys that the metric is configured to query with.
|
|
10127
|
+
example: app,host
|
|
10128
|
+
in: query
|
|
10129
|
+
name: filter[groups]
|
|
10130
|
+
required: false
|
|
10131
|
+
schema:
|
|
10132
|
+
type: string
|
|
10133
|
+
- description: The number of hours of look back (from now) to estimate cardinality
|
|
10134
|
+
with.
|
|
10135
|
+
example: 49
|
|
10136
|
+
in: query
|
|
10137
|
+
name: filter[hours_ago]
|
|
10138
|
+
required: false
|
|
10139
|
+
schema:
|
|
10140
|
+
type: integer
|
|
10141
|
+
- description: The number of aggregations that a `count`, `rate`, or `gauge`
|
|
10142
|
+
metric is configured to use. Max number of aggregation combos is 9.
|
|
10143
|
+
example: 1
|
|
10144
|
+
in: query
|
|
10145
|
+
name: filter[num_aggregations]
|
|
10146
|
+
required: false
|
|
10147
|
+
schema:
|
|
10148
|
+
type: integer
|
|
10149
|
+
- description: A boolean, for distribution metrics only, to estimate cardinality
|
|
10150
|
+
if the metric includes additional percentile aggregators.
|
|
10151
|
+
example: true
|
|
10152
|
+
in: query
|
|
10153
|
+
name: filter[pct]
|
|
10154
|
+
required: false
|
|
10155
|
+
schema:
|
|
10156
|
+
type: boolean
|
|
10157
|
+
- description: A window, in hours, from the look back to estimate cardinality
|
|
10158
|
+
with.
|
|
10159
|
+
example: 6
|
|
10160
|
+
in: query
|
|
10161
|
+
name: filter[timespan_h]
|
|
10162
|
+
required: false
|
|
10163
|
+
schema:
|
|
10164
|
+
type: integer
|
|
10165
|
+
responses:
|
|
10166
|
+
'200':
|
|
10167
|
+
content:
|
|
10168
|
+
application/json:
|
|
10169
|
+
schema:
|
|
10170
|
+
$ref: '#/components/schemas/MetricEstimateResponse'
|
|
10171
|
+
description: Success
|
|
10172
|
+
'400':
|
|
10173
|
+
content:
|
|
10174
|
+
application/json:
|
|
10175
|
+
schema:
|
|
10176
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
10177
|
+
description: API error response.
|
|
10178
|
+
'403':
|
|
10179
|
+
content:
|
|
10180
|
+
application/json:
|
|
10181
|
+
schema:
|
|
10182
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
10183
|
+
description: API error response.
|
|
10184
|
+
'404':
|
|
10185
|
+
content:
|
|
10186
|
+
application/json:
|
|
10187
|
+
schema:
|
|
10188
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
10189
|
+
description: API error response.
|
|
10190
|
+
'429':
|
|
10191
|
+
content:
|
|
10192
|
+
application/json:
|
|
10193
|
+
schema:
|
|
10194
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
10195
|
+
description: Too Many Requests
|
|
10196
|
+
security:
|
|
10197
|
+
- apiKeyAuth: []
|
|
10198
|
+
appKeyAuth: []
|
|
10199
|
+
- AuthZ: []
|
|
10200
|
+
summary: Tag Configuration Cardinality Estimator
|
|
10201
|
+
tags:
|
|
10202
|
+
- Metrics
|
|
10203
|
+
x-dd-ownership:
|
|
10204
|
+
notification_configuration:
|
|
10205
|
+
manual_escalation_policy: '[Points Aggregation] Primary'
|
|
10206
|
+
prod_high_urgency: '@pagerduty-Points-Aggregation @slack-points-aggr-ops'
|
|
10207
|
+
prod_low_urgency: '@slack-points-aggr-ops'
|
|
10208
|
+
slack_support_channel: '#points-aggregation'
|
|
10209
|
+
staging_high_urgency: '@slack-points-aggr-stg-ops'
|
|
10210
|
+
staging_low_urgency: '@slack-points-aggr-stg-ops'
|
|
10211
|
+
team: points-aggregation
|
|
10212
|
+
team_escalation: '[Points Aggregation] Primary'
|
|
10213
|
+
x-menu-order: 10
|
|
10214
|
+
x-permission:
|
|
10215
|
+
operator: OPEN
|
|
10216
|
+
permissions: []
|
|
10217
|
+
x-undo:
|
|
10218
|
+
type: safe
|
|
9034
10219
|
/api/v2/metrics/{metric_name}/tags:
|
|
9035
10220
|
delete:
|
|
9036
10221
|
description: 'Deletes a metric''s tag configuration. Can only be used with application
|
|
@@ -9066,10 +10251,6 @@ paths:
|
|
|
9066
10251
|
x-menu-order: 4
|
|
9067
10252
|
x-undo:
|
|
9068
10253
|
type: idempotent
|
|
9069
|
-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
|
|
9070
|
-
is only accessible for Metrics without Limits™ beta customers.\nIf you\u2019re
|
|
9071
|
-
interested in Metrics without Limits™, please contact your Customer
|
|
9072
|
-
Success Manager.**"
|
|
9073
10254
|
get:
|
|
9074
10255
|
description: Returns the tag configuration for the given metric name.
|
|
9075
10256
|
operationId: ListTagConfigurationByName
|
|
@@ -9106,10 +10287,6 @@ paths:
|
|
|
9106
10287
|
x-menu-order: 2
|
|
9107
10288
|
x-undo:
|
|
9108
10289
|
type: safe
|
|
9109
|
-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
|
|
9110
|
-
is only accessible for Metrics without Limits™ beta customers.\nIf you\u2019re
|
|
9111
|
-
interested in Metrics without Limits™, please contact your Customer
|
|
9112
|
-
Success Manager.**"
|
|
9113
10290
|
patch:
|
|
9114
10291
|
description: 'Update the tag configuration of a metric or percentile aggregations
|
|
9115
10292
|
of a distribution metric or custom aggregations
|
|
@@ -9165,10 +10342,6 @@ paths:
|
|
|
9165
10342
|
x-menu-order: 3
|
|
9166
10343
|
x-undo:
|
|
9167
10344
|
type: idempotent
|
|
9168
|
-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
|
|
9169
|
-
is only accessible for Metrics without Limits™ beta customers.\nIf you\u2019re
|
|
9170
|
-
interested in Metrics without Limits™, please contact your Customer
|
|
9171
|
-
Success Manager.**"
|
|
9172
10345
|
post:
|
|
9173
10346
|
description: 'Create and define a list of queryable tag keys for an existing
|
|
9174
10347
|
count/gauge/rate/distribution metric.
|
|
@@ -9231,7 +10404,7 @@ paths:
|
|
|
9231
10404
|
value: '"{{ unique_alnum }}"'
|
|
9232
10405
|
- name: body
|
|
9233
10406
|
value: "{\n \"data\": {\n \"attributes\": {\n \"tags\":[\"app\",
|
|
9234
|
-
\"datacenter\", \"{{ unique_alnum }}\"],\n \"metric_type\":\"
|
|
10407
|
+
\"datacenter\", \"{{ unique_alnum }}\"],\n \"metric_type\":\"gauge\"\n
|
|
9235
10408
|
\ },\n \"type\": \"manage_tags\",\n \"id\": \"{{ unique_alnum
|
|
9236
10409
|
}}\"\n }\n}"
|
|
9237
10410
|
step: there is a valid "metric_tag_configuration" in the system
|
|
@@ -9242,21 +10415,11 @@ paths:
|
|
|
9242
10415
|
- name: metric_name
|
|
9243
10416
|
source: data.id
|
|
9244
10417
|
type: unsafe
|
|
9245
|
-
x-unstable: "**Note: Use of this endpoint for count/gauge/rate metric types
|
|
9246
|
-
is only accessible for Metrics without Limits™ beta customers.\nIf you\u2019re
|
|
9247
|
-
interested in Metrics without Limits™, please contact your Customer
|
|
9248
|
-
Success Manager.**"
|
|
9249
10418
|
/api/v2/metrics/{metric_name}/volumes:
|
|
9250
10419
|
get:
|
|
9251
10420
|
description: 'View distinct metrics volumes for the given metric name.
|
|
9252
10421
|
|
|
9253
10422
|
|
|
9254
|
-
Custom distribution metrics will return both ingested and indexed custom metric
|
|
9255
|
-
volumes.
|
|
9256
|
-
|
|
9257
|
-
For Metrics without Limits™ beta customers, all metrics will return
|
|
9258
|
-
both ingested/indexed volumes.
|
|
9259
|
-
|
|
9260
10423
|
Custom metrics generated in-app from other products will return `null` for
|
|
9261
10424
|
ingested volumes.'
|
|
9262
10425
|
operationId: ListVolumesByMetricName
|
|
@@ -9434,6 +10597,11 @@ paths:
|
|
|
9434
10597
|
tags:
|
|
9435
10598
|
- Processes
|
|
9436
10599
|
x-menu-order: 1
|
|
10600
|
+
x-pagination:
|
|
10601
|
+
cursorParam: page[cursor]
|
|
10602
|
+
cursorPath: meta.page.after
|
|
10603
|
+
limitParam: page[limit]
|
|
10604
|
+
resultsPath: data
|
|
9437
10605
|
x-undo:
|
|
9438
10606
|
type: safe
|
|
9439
10607
|
/api/v2/roles:
|
|
@@ -10043,6 +11211,41 @@ paths:
|
|
|
10043
11211
|
x-menu-order: 10
|
|
10044
11212
|
x-undo:
|
|
10045
11213
|
type: safe
|
|
11214
|
+
/api/v2/rum/analytics/aggregate:
|
|
11215
|
+
post:
|
|
11216
|
+
description: The API endpoint to aggregate RUM events into buckets of computed
|
|
11217
|
+
metrics and timeseries.
|
|
11218
|
+
operationId: AggregateRUMEvents
|
|
11219
|
+
requestBody:
|
|
11220
|
+
content:
|
|
11221
|
+
application/json:
|
|
11222
|
+
schema:
|
|
11223
|
+
$ref: '#/components/schemas/RUMAggregateRequest'
|
|
11224
|
+
required: true
|
|
11225
|
+
responses:
|
|
11226
|
+
'200':
|
|
11227
|
+
content:
|
|
11228
|
+
application/json:
|
|
11229
|
+
schema:
|
|
11230
|
+
$ref: '#/components/schemas/RUMAnalyticsAggregateResponse'
|
|
11231
|
+
description: OK
|
|
11232
|
+
'400':
|
|
11233
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
11234
|
+
'403':
|
|
11235
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
|
11236
|
+
'429':
|
|
11237
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
11238
|
+
security:
|
|
11239
|
+
- apiKeyAuth: []
|
|
11240
|
+
appKeyAuth: []
|
|
11241
|
+
- AuthZ: []
|
|
11242
|
+
summary: Aggregate RUM events
|
|
11243
|
+
tags:
|
|
11244
|
+
- RUM
|
|
11245
|
+
x-codegen-request-body-name: body
|
|
11246
|
+
x-menu-order: 3
|
|
11247
|
+
x-undo:
|
|
11248
|
+
type: safe
|
|
10046
11249
|
/api/v2/rum/events:
|
|
10047
11250
|
get:
|
|
10048
11251
|
description: 'List endpoint returns events that match a RUM search query.
|
|
@@ -10124,6 +11327,11 @@ paths:
|
|
|
10124
11327
|
tags:
|
|
10125
11328
|
- RUM
|
|
10126
11329
|
x-menu-order: 2
|
|
11330
|
+
x-pagination:
|
|
11331
|
+
cursorParam: page[cursor]
|
|
11332
|
+
cursorPath: meta.page.after
|
|
11333
|
+
limitParam: page[limit]
|
|
11334
|
+
resultsPath: data
|
|
10127
11335
|
x-undo:
|
|
10128
11336
|
type: safe
|
|
10129
11337
|
/api/v2/rum/events/search:
|
|
@@ -10143,7 +11351,7 @@ paths:
|
|
|
10143
11351
|
application/json:
|
|
10144
11352
|
schema:
|
|
10145
11353
|
$ref: '#/components/schemas/RUMSearchEventsRequest'
|
|
10146
|
-
required:
|
|
11354
|
+
required: true
|
|
10147
11355
|
responses:
|
|
10148
11356
|
'200':
|
|
10149
11357
|
content:
|
|
@@ -10166,8 +11374,50 @@ paths:
|
|
|
10166
11374
|
- RUM
|
|
10167
11375
|
x-codegen-request-body-name: body
|
|
10168
11376
|
x-menu-order: 1
|
|
11377
|
+
x-pagination:
|
|
11378
|
+
cursorParam: body.page.cursor
|
|
11379
|
+
cursorPath: meta.page.after
|
|
11380
|
+
limitParam: body.page.limit
|
|
11381
|
+
resultsPath: data
|
|
10169
11382
|
x-undo:
|
|
10170
11383
|
type: safe
|
|
11384
|
+
/api/v2/saml_configurations/idp_metadata:
|
|
11385
|
+
post:
|
|
11386
|
+
description: 'Endpoint for uploading IdP metadata for SAML setup.
|
|
11387
|
+
|
|
11388
|
+
|
|
11389
|
+
Use this endpoint to upload or replace IdP metadata for SAML login configuration.'
|
|
11390
|
+
operationId: UploadIdPMetadata
|
|
11391
|
+
requestBody:
|
|
11392
|
+
content:
|
|
11393
|
+
multipart/form-data:
|
|
11394
|
+
schema:
|
|
11395
|
+
$ref: '#/components/schemas/IdPMetadataFormData'
|
|
11396
|
+
required: true
|
|
11397
|
+
responses:
|
|
11398
|
+
'200':
|
|
11399
|
+
description: OK
|
|
11400
|
+
'400':
|
|
11401
|
+
content:
|
|
11402
|
+
application/json:
|
|
11403
|
+
schema:
|
|
11404
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
11405
|
+
description: Bad Request
|
|
11406
|
+
'403':
|
|
11407
|
+
content:
|
|
11408
|
+
application/json:
|
|
11409
|
+
schema:
|
|
11410
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
11411
|
+
description: Forbidden
|
|
11412
|
+
'429':
|
|
11413
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
11414
|
+
summary: Upload IdP metadata
|
|
11415
|
+
tags:
|
|
11416
|
+
- Organizations
|
|
11417
|
+
x-codegen-request-body-name: body
|
|
11418
|
+
x-menu-order: 1
|
|
11419
|
+
x-undo:
|
|
11420
|
+
type: idempotent
|
|
10171
11421
|
/api/v2/security/cloud_workload/policy/download:
|
|
10172
11422
|
get:
|
|
10173
11423
|
description: 'The download endpoint generates a Cloud Workload Security policy
|
|
@@ -10190,11 +11440,6 @@ paths:
|
|
|
10190
11440
|
$ref: '#/components/responses/NotAuthorizedResponse'
|
|
10191
11441
|
'429':
|
|
10192
11442
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
10193
|
-
security:
|
|
10194
|
-
- apiKeyAuth: []
|
|
10195
|
-
appKeyAuth: []
|
|
10196
|
-
- AuthZ:
|
|
10197
|
-
- security_monitoring_rules_read
|
|
10198
11443
|
summary: Get the latest Cloud Workload Security policy
|
|
10199
11444
|
tags:
|
|
10200
11445
|
- Cloud Workload Security
|
|
@@ -10789,11 +12034,13 @@ paths:
|
|
|
10789
12034
|
tags:
|
|
10790
12035
|
- Security Monitoring
|
|
10791
12036
|
x-menu-order: 7
|
|
12037
|
+
x-pagination:
|
|
12038
|
+
cursorParam: page[cursor]
|
|
12039
|
+
cursorPath: meta.page.after
|
|
12040
|
+
limitParam: page[limit]
|
|
12041
|
+
resultsPath: data
|
|
10792
12042
|
x-undo:
|
|
10793
12043
|
type: safe
|
|
10794
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
|
10795
|
-
|
|
10796
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
10797
12044
|
/api/v2/security_monitoring/signals/search:
|
|
10798
12045
|
post:
|
|
10799
12046
|
description: 'Returns security signals that match a search query.
|
|
@@ -10806,36 +12053,112 @@ paths:
|
|
|
10806
12053
|
content:
|
|
10807
12054
|
application/json:
|
|
10808
12055
|
schema:
|
|
10809
|
-
$ref: '#/components/schemas/SecurityMonitoringSignalListRequest'
|
|
10810
|
-
required: false
|
|
12056
|
+
$ref: '#/components/schemas/SecurityMonitoringSignalListRequest'
|
|
12057
|
+
required: false
|
|
12058
|
+
responses:
|
|
12059
|
+
'200':
|
|
12060
|
+
content:
|
|
12061
|
+
application/json:
|
|
12062
|
+
schema:
|
|
12063
|
+
$ref: '#/components/schemas/SecurityMonitoringSignalsListResponse'
|
|
12064
|
+
description: OK
|
|
12065
|
+
'400':
|
|
12066
|
+
$ref: '#/components/responses/BadRequestResponse'
|
|
12067
|
+
'403':
|
|
12068
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
|
12069
|
+
'429':
|
|
12070
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
12071
|
+
security:
|
|
12072
|
+
- apiKeyAuth: []
|
|
12073
|
+
appKeyAuth: []
|
|
12074
|
+
- AuthZ:
|
|
12075
|
+
- security_monitoring_signals_read
|
|
12076
|
+
summary: Get a list of security signals
|
|
12077
|
+
tags:
|
|
12078
|
+
- Security Monitoring
|
|
12079
|
+
x-codegen-request-body-name: body
|
|
12080
|
+
x-menu-order: 6
|
|
12081
|
+
x-pagination:
|
|
12082
|
+
cursorParam: body.page.cursor
|
|
12083
|
+
cursorPath: meta.page.after
|
|
12084
|
+
limitParam: body.page.limit
|
|
12085
|
+
resultsPath: data
|
|
12086
|
+
x-undo:
|
|
12087
|
+
type: safe
|
|
12088
|
+
/api/v2/series:
|
|
12089
|
+
post:
|
|
12090
|
+
description: "The metrics end-point allows you to post time-series data that
|
|
12091
|
+
can be graphed on Datadog\u2019s dashboards.\nThe maximum payload size is
|
|
12092
|
+
500 kilobytes (512000 bytes). Compressed payloads must have a decompressed
|
|
12093
|
+
size of less than 5 megabytes (5242880 bytes).\n\nIf you\u2019re submitting
|
|
12094
|
+
metrics directly to the Datadog API without using DogStatsD, expect:\n\n-
|
|
12095
|
+
64 bits for the timestamp\n- 64 bits for the value\n- 20 bytes for the metric
|
|
12096
|
+
names\n- 50 bytes for the timeseries\n- The full payload is approximately
|
|
12097
|
+
100 bytes."
|
|
12098
|
+
operationId: SubmitMetrics
|
|
12099
|
+
parameters:
|
|
12100
|
+
- description: HTTP header used to compress the media-type.
|
|
12101
|
+
in: header
|
|
12102
|
+
name: Content-Encoding
|
|
12103
|
+
required: false
|
|
12104
|
+
schema:
|
|
12105
|
+
$ref: '#/components/schemas/MetricContentEncoding'
|
|
12106
|
+
requestBody:
|
|
12107
|
+
content:
|
|
12108
|
+
application/json:
|
|
12109
|
+
examples:
|
|
12110
|
+
dynamic-points:
|
|
12111
|
+
description: "Post time-series data that can be graphed on Datadog\u2019s
|
|
12112
|
+
dashboards."
|
|
12113
|
+
externalValue: examples/metrics/dynamic-points.json.sh
|
|
12114
|
+
summary: Dynamic Points
|
|
12115
|
+
x-variables:
|
|
12116
|
+
NOW: $(date +%s)
|
|
12117
|
+
schema:
|
|
12118
|
+
$ref: '#/components/schemas/MetricPayload'
|
|
12119
|
+
required: true
|
|
10811
12120
|
responses:
|
|
10812
|
-
'
|
|
12121
|
+
'202':
|
|
10813
12122
|
content:
|
|
10814
12123
|
application/json:
|
|
10815
12124
|
schema:
|
|
10816
|
-
$ref: '#/components/schemas/
|
|
10817
|
-
description:
|
|
12125
|
+
$ref: '#/components/schemas/IntakePayloadAccepted'
|
|
12126
|
+
description: Payload accepted
|
|
10818
12127
|
'400':
|
|
10819
|
-
|
|
12128
|
+
content:
|
|
12129
|
+
application/json:
|
|
12130
|
+
schema:
|
|
12131
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12132
|
+
description: Bad Request
|
|
10820
12133
|
'403':
|
|
10821
|
-
|
|
12134
|
+
content:
|
|
12135
|
+
application/json:
|
|
12136
|
+
schema:
|
|
12137
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12138
|
+
description: Authentication error
|
|
12139
|
+
'408':
|
|
12140
|
+
content:
|
|
12141
|
+
application/json:
|
|
12142
|
+
schema:
|
|
12143
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12144
|
+
description: Request timeout
|
|
12145
|
+
'413':
|
|
12146
|
+
content:
|
|
12147
|
+
application/json:
|
|
12148
|
+
schema:
|
|
12149
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12150
|
+
description: Payload too large
|
|
10822
12151
|
'429':
|
|
10823
12152
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
|
10824
12153
|
security:
|
|
10825
12154
|
- apiKeyAuth: []
|
|
10826
|
-
|
|
10827
|
-
- AuthZ:
|
|
10828
|
-
- security_monitoring_signals_read
|
|
10829
|
-
summary: Get a list of security signals
|
|
12155
|
+
summary: Submit metrics
|
|
10830
12156
|
tags:
|
|
10831
|
-
-
|
|
12157
|
+
- Metrics
|
|
10832
12158
|
x-codegen-request-body-name: body
|
|
10833
|
-
x-menu-order:
|
|
12159
|
+
x-menu-order: 1
|
|
10834
12160
|
x-undo:
|
|
10835
12161
|
type: safe
|
|
10836
|
-
x-unstable: '**Note**: This endpoint is in public beta.
|
|
10837
|
-
|
|
10838
|
-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
10839
12162
|
/api/v2/service_accounts:
|
|
10840
12163
|
post:
|
|
10841
12164
|
description: Create a service account for your organization.
|
|
@@ -11508,6 +12831,316 @@ paths:
|
|
|
11508
12831
|
x-unstable: '**Note**: This endpoint is in public beta.
|
|
11509
12832
|
|
|
11510
12833
|
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
|
12834
|
+
/api/v2/usage/application_security:
|
|
12835
|
+
get:
|
|
12836
|
+
description: Get hourly usage for Application Security .
|
|
12837
|
+
operationId: GetUsageApplicationSecurityMonitoring
|
|
12838
|
+
parameters:
|
|
12839
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
12840
|
+
for usage beginning at this hour.'
|
|
12841
|
+
in: query
|
|
12842
|
+
name: start_hr
|
|
12843
|
+
required: true
|
|
12844
|
+
schema:
|
|
12845
|
+
format: date-time
|
|
12846
|
+
type: string
|
|
12847
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
12848
|
+
for usage ending
|
|
12849
|
+
|
|
12850
|
+
**before** this hour.'
|
|
12851
|
+
in: query
|
|
12852
|
+
name: end_hr
|
|
12853
|
+
required: false
|
|
12854
|
+
schema:
|
|
12855
|
+
format: date-time
|
|
12856
|
+
type: string
|
|
12857
|
+
responses:
|
|
12858
|
+
'200':
|
|
12859
|
+
content:
|
|
12860
|
+
application/json;datetime-format=rfc3339:
|
|
12861
|
+
schema:
|
|
12862
|
+
$ref: '#/components/schemas/UsageApplicationSecurityMonitoringResponse'
|
|
12863
|
+
description: OK
|
|
12864
|
+
'400':
|
|
12865
|
+
content:
|
|
12866
|
+
application/json;datetime-format=rfc3339:
|
|
12867
|
+
schema:
|
|
12868
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12869
|
+
description: Bad Request
|
|
12870
|
+
'403':
|
|
12871
|
+
content:
|
|
12872
|
+
application/json;datetime-format=rfc3339:
|
|
12873
|
+
schema:
|
|
12874
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12875
|
+
description: Forbidden - User is not authorized
|
|
12876
|
+
'429':
|
|
12877
|
+
content:
|
|
12878
|
+
application/json;datetime-format=rfc3339:
|
|
12879
|
+
schema:
|
|
12880
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12881
|
+
description: Too many requests
|
|
12882
|
+
security:
|
|
12883
|
+
- apiKeyAuth: []
|
|
12884
|
+
appKeyAuth: []
|
|
12885
|
+
- AuthZ:
|
|
12886
|
+
- usage_read
|
|
12887
|
+
summary: Get hourly usage for Application Security
|
|
12888
|
+
tags:
|
|
12889
|
+
- Usage Metering
|
|
12890
|
+
x-menu-order: 38
|
|
12891
|
+
x-undo:
|
|
12892
|
+
type: safe
|
|
12893
|
+
/api/v2/usage/cost_by_org:
|
|
12894
|
+
get:
|
|
12895
|
+
description: Get cost across multi-org account. Cost by org data for a given
|
|
12896
|
+
month becomes available no later than the 16th of the following month.
|
|
12897
|
+
operationId: GetCostByOrg
|
|
12898
|
+
parameters:
|
|
12899
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
|
|
12900
|
+
for cost beginning this month.'
|
|
12901
|
+
in: query
|
|
12902
|
+
name: start_month
|
|
12903
|
+
required: true
|
|
12904
|
+
schema:
|
|
12905
|
+
format: date-time
|
|
12906
|
+
type: string
|
|
12907
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
|
|
12908
|
+
for cost ending this month.'
|
|
12909
|
+
in: query
|
|
12910
|
+
name: end_month
|
|
12911
|
+
required: false
|
|
12912
|
+
schema:
|
|
12913
|
+
format: date-time
|
|
12914
|
+
type: string
|
|
12915
|
+
responses:
|
|
12916
|
+
'200':
|
|
12917
|
+
content:
|
|
12918
|
+
application/json;datetime-format=rfc3339:
|
|
12919
|
+
schema:
|
|
12920
|
+
$ref: '#/components/schemas/CostByOrgResponse'
|
|
12921
|
+
description: OK
|
|
12922
|
+
'400':
|
|
12923
|
+
content:
|
|
12924
|
+
application/json;datetime-format=rfc3339:
|
|
12925
|
+
schema:
|
|
12926
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12927
|
+
description: Bad Request
|
|
12928
|
+
'403':
|
|
12929
|
+
content:
|
|
12930
|
+
application/json;datetime-format=rfc3339:
|
|
12931
|
+
schema:
|
|
12932
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12933
|
+
description: Forbidden - User is not authorized
|
|
12934
|
+
'429':
|
|
12935
|
+
content:
|
|
12936
|
+
application/json;datetime-format=rfc3339:
|
|
12937
|
+
schema:
|
|
12938
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
12939
|
+
description: Too many requests
|
|
12940
|
+
security:
|
|
12941
|
+
- apiKeyAuth: []
|
|
12942
|
+
appKeyAuth: []
|
|
12943
|
+
- AuthZ:
|
|
12944
|
+
- usage_read
|
|
12945
|
+
summary: Get cost across multi-org account
|
|
12946
|
+
tags:
|
|
12947
|
+
- Usage Metering
|
|
12948
|
+
x-menu-order: 39
|
|
12949
|
+
x-undo:
|
|
12950
|
+
type: safe
|
|
12951
|
+
/api/v2/usage/estimated_cost_by_org:
|
|
12952
|
+
get:
|
|
12953
|
+
description: Get estimated cost across multi-org account.
|
|
12954
|
+
operationId: GetEstimatedCostByOrg
|
|
12955
|
+
parameters:
|
|
12956
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
|
|
12957
|
+
for cost beginning this month. Either start_month or start_date should be
|
|
12958
|
+
specified, but not both.'
|
|
12959
|
+
in: query
|
|
12960
|
+
name: start_month
|
|
12961
|
+
required: false
|
|
12962
|
+
schema:
|
|
12963
|
+
format: date-time
|
|
12964
|
+
type: string
|
|
12965
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to month: `[YYYY-MM]`
|
|
12966
|
+
for cost ending this month.'
|
|
12967
|
+
in: query
|
|
12968
|
+
name: end_month
|
|
12969
|
+
required: false
|
|
12970
|
+
schema:
|
|
12971
|
+
format: date-time
|
|
12972
|
+
type: string
|
|
12973
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to day: `[YYYY-MM-DD]`
|
|
12974
|
+
for cost beginning this day. Either start_month or start_date should be
|
|
12975
|
+
specified, but not both.'
|
|
12976
|
+
in: query
|
|
12977
|
+
name: start_date
|
|
12978
|
+
required: false
|
|
12979
|
+
schema:
|
|
12980
|
+
format: date-time
|
|
12981
|
+
type: string
|
|
12982
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to day: `[YYYY-MM-DD]`
|
|
12983
|
+
for cost ending this day.'
|
|
12984
|
+
in: query
|
|
12985
|
+
name: end_date
|
|
12986
|
+
required: false
|
|
12987
|
+
schema:
|
|
12988
|
+
format: date-time
|
|
12989
|
+
type: string
|
|
12990
|
+
responses:
|
|
12991
|
+
'200':
|
|
12992
|
+
content:
|
|
12993
|
+
application/json;datetime-format=rfc3339:
|
|
12994
|
+
schema:
|
|
12995
|
+
$ref: '#/components/schemas/CostByOrgResponse'
|
|
12996
|
+
description: OK
|
|
12997
|
+
'400':
|
|
12998
|
+
content:
|
|
12999
|
+
application/json;datetime-format=rfc3339:
|
|
13000
|
+
schema:
|
|
13001
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13002
|
+
description: Bad Request
|
|
13003
|
+
'403':
|
|
13004
|
+
content:
|
|
13005
|
+
application/json;datetime-format=rfc3339:
|
|
13006
|
+
schema:
|
|
13007
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13008
|
+
description: Forbidden - User is not authorized
|
|
13009
|
+
'429':
|
|
13010
|
+
content:
|
|
13011
|
+
application/json;datetime-format=rfc3339:
|
|
13012
|
+
schema:
|
|
13013
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13014
|
+
description: Too many requests
|
|
13015
|
+
security:
|
|
13016
|
+
- apiKeyAuth: []
|
|
13017
|
+
appKeyAuth: []
|
|
13018
|
+
- AuthZ:
|
|
13019
|
+
- usage_read
|
|
13020
|
+
summary: Get estimated cost across multi-org account
|
|
13021
|
+
tags:
|
|
13022
|
+
- Usage Metering
|
|
13023
|
+
x-menu-order: 39
|
|
13024
|
+
x-undo:
|
|
13025
|
+
type: safe
|
|
13026
|
+
/api/v2/usage/lambda_traced_invocations:
|
|
13027
|
+
get:
|
|
13028
|
+
description: Get hourly usage for Lambda Traced Invocations.
|
|
13029
|
+
operationId: GetUsageLambdaTracedInvocations
|
|
13030
|
+
parameters:
|
|
13031
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
13032
|
+
for usage beginning at this hour.'
|
|
13033
|
+
in: query
|
|
13034
|
+
name: start_hr
|
|
13035
|
+
required: true
|
|
13036
|
+
schema:
|
|
13037
|
+
format: date-time
|
|
13038
|
+
type: string
|
|
13039
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
13040
|
+
for usage ending
|
|
13041
|
+
|
|
13042
|
+
**before** this hour.'
|
|
13043
|
+
in: query
|
|
13044
|
+
name: end_hr
|
|
13045
|
+
required: false
|
|
13046
|
+
schema:
|
|
13047
|
+
format: date-time
|
|
13048
|
+
type: string
|
|
13049
|
+
responses:
|
|
13050
|
+
'200':
|
|
13051
|
+
content:
|
|
13052
|
+
application/json;datetime-format=rfc3339:
|
|
13053
|
+
schema:
|
|
13054
|
+
$ref: '#/components/schemas/UsageLambdaTracedInvocationsResponse'
|
|
13055
|
+
description: OK
|
|
13056
|
+
'400':
|
|
13057
|
+
content:
|
|
13058
|
+
application/json;datetime-format=rfc3339:
|
|
13059
|
+
schema:
|
|
13060
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13061
|
+
description: Bad Request
|
|
13062
|
+
'403':
|
|
13063
|
+
content:
|
|
13064
|
+
application/json;datetime-format=rfc3339:
|
|
13065
|
+
schema:
|
|
13066
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13067
|
+
description: Forbidden - User is not authorized
|
|
13068
|
+
'429':
|
|
13069
|
+
content:
|
|
13070
|
+
application/json;datetime-format=rfc3339:
|
|
13071
|
+
schema:
|
|
13072
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13073
|
+
description: Too many requests
|
|
13074
|
+
security:
|
|
13075
|
+
- apiKeyAuth: []
|
|
13076
|
+
appKeyAuth: []
|
|
13077
|
+
- AuthZ:
|
|
13078
|
+
- usage_read
|
|
13079
|
+
summary: Get hourly usage for Lambda Traced Invocations
|
|
13080
|
+
tags:
|
|
13081
|
+
- Usage Metering
|
|
13082
|
+
x-menu-order: 38
|
|
13083
|
+
x-undo:
|
|
13084
|
+
type: safe
|
|
13085
|
+
/api/v2/usage/observability_pipelines:
|
|
13086
|
+
get:
|
|
13087
|
+
description: Get hourly usage for Observability Pipelines.
|
|
13088
|
+
operationId: GetUsageObservabilityPipelines
|
|
13089
|
+
parameters:
|
|
13090
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
13091
|
+
for usage beginning at this hour.'
|
|
13092
|
+
in: query
|
|
13093
|
+
name: start_hr
|
|
13094
|
+
required: true
|
|
13095
|
+
schema:
|
|
13096
|
+
format: date-time
|
|
13097
|
+
type: string
|
|
13098
|
+
- description: 'Datetime in ISO-8601 format, UTC, precise to hour: `[YYYY-MM-DDThh]`
|
|
13099
|
+
for usage ending
|
|
13100
|
+
|
|
13101
|
+
**before** this hour.'
|
|
13102
|
+
in: query
|
|
13103
|
+
name: end_hr
|
|
13104
|
+
required: false
|
|
13105
|
+
schema:
|
|
13106
|
+
format: date-time
|
|
13107
|
+
type: string
|
|
13108
|
+
responses:
|
|
13109
|
+
'200':
|
|
13110
|
+
content:
|
|
13111
|
+
application/json;datetime-format=rfc3339:
|
|
13112
|
+
schema:
|
|
13113
|
+
$ref: '#/components/schemas/UsageObservabilityPipelinesResponse'
|
|
13114
|
+
description: OK
|
|
13115
|
+
'400':
|
|
13116
|
+
content:
|
|
13117
|
+
application/json;datetime-format=rfc3339:
|
|
13118
|
+
schema:
|
|
13119
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13120
|
+
description: Bad Request
|
|
13121
|
+
'403':
|
|
13122
|
+
content:
|
|
13123
|
+
application/json;datetime-format=rfc3339:
|
|
13124
|
+
schema:
|
|
13125
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13126
|
+
description: Forbidden - User is not authorized
|
|
13127
|
+
'429':
|
|
13128
|
+
content:
|
|
13129
|
+
application/json;datetime-format=rfc3339:
|
|
13130
|
+
schema:
|
|
13131
|
+
$ref: '#/components/schemas/APIErrorResponse'
|
|
13132
|
+
description: Too many requests
|
|
13133
|
+
security:
|
|
13134
|
+
- apiKeyAuth: []
|
|
13135
|
+
appKeyAuth: []
|
|
13136
|
+
- AuthZ:
|
|
13137
|
+
- usage_read
|
|
13138
|
+
summary: Get hourly usage for Observability Pipelines
|
|
13139
|
+
tags:
|
|
13140
|
+
- Usage Metering
|
|
13141
|
+
x-menu-order: 38
|
|
13142
|
+
x-undo:
|
|
13143
|
+
type: safe
|
|
11511
13144
|
/api/v2/user_invitations:
|
|
11512
13145
|
post:
|
|
11513
13146
|
description: Sends emails to one or more users inviting them to join the organization.
|
|
@@ -11987,7 +13620,7 @@ servers:
|
|
|
11987
13620
|
tags:
|
|
11988
13621
|
- description: Search your Audit Logs events over HTTP.
|
|
11989
13622
|
name: Audit
|
|
11990
|
-
- description: '[AuthN Mappings API]
|
|
13623
|
+
- description: '[AuthN Mappings API](https://docs.datadoghq.com/account_management/authn_mapping/?tab=example)
|
|
11991
13624
|
|
|
11992
13625
|
is used to automatically map group of users to roles in Datadog using attributes
|
|
11993
13626
|
|
|
@@ -12048,9 +13681,21 @@ tags:
|
|
|
12048
13681
|
that set number.\n\nThe Post, Patch, and Delete `manage_tags` API methods can
|
|
12049
13682
|
only be performed by\na user who has the `Manage Tags for Metrics` permission."
|
|
12050
13683
|
name: Metrics
|
|
13684
|
+
- description: 'Configure your [Datadog Opsgenie integration](https://docs.datadoghq.com/integrations/opsgenie/)
|
|
13685
|
+
|
|
13686
|
+
directly through the Datadog API.'
|
|
13687
|
+
externalDocs:
|
|
13688
|
+
url: https://docs.datadoghq.com/api/latest/opsgenie-integration
|
|
13689
|
+
name: Opsgenie Integration
|
|
13690
|
+
- description: Create, edit, and manage your organizations. Read more about [multi-org
|
|
13691
|
+
accounts](https://docs.datadoghq.com/account_management/multi_organization).
|
|
13692
|
+
externalDocs:
|
|
13693
|
+
description: Find out more at
|
|
13694
|
+
url: https://docs.datadoghq.com/account_management/multi_organization
|
|
13695
|
+
name: Organizations
|
|
12051
13696
|
- description: The processes API allows you to query processes data for your organization.
|
|
12052
13697
|
name: Processes
|
|
12053
|
-
- description: Search your RUM events over HTTP.
|
|
13698
|
+
- description: Search or aggregate your RUM events over HTTP.
|
|
12054
13699
|
name: RUM
|
|
12055
13700
|
- description: 'The Roles API is used to create and manage Datadog roles, what
|
|
12056
13701
|
|
|
@@ -12073,6 +13718,27 @@ tags:
|
|
|
12073
13718
|
name: Security Monitoring
|
|
12074
13719
|
- description: Create, edit, and disable service accounts.
|
|
12075
13720
|
name: Service Accounts
|
|
13721
|
+
- description: 'The usage metering API allows you to get hourly, daily, and
|
|
13722
|
+
|
|
13723
|
+
monthly usage across multiple facets of Datadog.
|
|
13724
|
+
|
|
13725
|
+
This API is available to all Pro and Enterprise customers.
|
|
13726
|
+
|
|
13727
|
+
Usage is only accessible for [parent-level organizations](https://docs.datadoghq.com/account_management/multi_organization/).
|
|
13728
|
+
|
|
13729
|
+
|
|
13730
|
+
**Note**: Usage data is delayed by up to 72 hours from when it was incurred.
|
|
13731
|
+
|
|
13732
|
+
It is retained for 15 months.
|
|
13733
|
+
|
|
13734
|
+
|
|
13735
|
+
You can retrieve up to 24 hours of hourly usage data for multiple organizations,
|
|
13736
|
+
|
|
13737
|
+
and up to two months of hourly usage data for a single organization in one request.'
|
|
13738
|
+
externalDocs:
|
|
13739
|
+
description: Find out more at
|
|
13740
|
+
url: https://docs.datadoghq.com/account_management/billing/usage_details/
|
|
13741
|
+
name: Usage Metering
|
|
12076
13742
|
- description: Create, edit, and disable users.
|
|
12077
13743
|
externalDocs:
|
|
12078
13744
|
url: https://docs.datadoghq.com/account_management/users
|