@datadog/datadog-api-client 1.1.0 → 1.2.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.
Files changed (105) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/packages/datadog-api-client-common/configuration.js +3 -0
  3. package/dist/packages/datadog-api-client-common/configuration.js.map +1 -1
  4. package/dist/packages/datadog-api-client-v1/apis/UsageMeteringApi.d.ts +34 -7
  5. package/dist/packages/datadog-api-client-v1/apis/UsageMeteringApi.js +34 -7
  6. package/dist/packages/datadog-api-client-v1/apis/UsageMeteringApi.js.map +1 -1
  7. package/dist/packages/datadog-api-client-v1/models/TreeMapWidgetDefinition.d.ts +15 -5
  8. package/dist/packages/datadog-api-client-v1/models/TreeMapWidgetDefinition.js +9 -1
  9. package/dist/packages/datadog-api-client-v1/models/TreeMapWidgetDefinition.js.map +1 -1
  10. package/dist/packages/datadog-api-client-v2/apis/EventsApi.d.ts +97 -0
  11. package/dist/packages/datadog-api-client-v2/apis/EventsApi.js +493 -0
  12. package/dist/packages/datadog-api-client-v2/apis/EventsApi.js.map +1 -0
  13. package/dist/packages/datadog-api-client-v2/apis/MetricsApi.d.ts +2 -0
  14. package/dist/packages/datadog-api-client-v2/apis/MetricsApi.js +2 -0
  15. package/dist/packages/datadog-api-client-v2/apis/MetricsApi.js.map +1 -1
  16. package/dist/packages/datadog-api-client-v2/apis/UsageMeteringApi.d.ts +76 -8
  17. package/dist/packages/datadog-api-client-v2/apis/UsageMeteringApi.js +170 -20
  18. package/dist/packages/datadog-api-client-v2/apis/UsageMeteringApi.js.map +1 -1
  19. package/dist/packages/datadog-api-client-v2/index.d.ts +26 -1
  20. package/dist/packages/datadog-api-client-v2/index.js +51 -8
  21. package/dist/packages/datadog-api-client-v2/index.js.map +1 -1
  22. package/dist/packages/datadog-api-client-v2/models/Event.d.ts +40 -0
  23. package/dist/packages/datadog-api-client-v2/models/Event.js +45 -0
  24. package/dist/packages/datadog-api-client-v2/models/Event.js.map +1 -0
  25. package/dist/packages/datadog-api-client-v2/models/EventAttributes.d.ts +110 -0
  26. package/dist/packages/datadog-api-client-v2/models/EventAttributes.js +103 -0
  27. package/dist/packages/datadog-api-client-v2/models/EventAttributes.js.map +1 -0
  28. package/dist/packages/datadog-api-client-v2/models/EventPriority.d.ts +8 -0
  29. package/dist/packages/datadog-api-client-v2/models/EventPriority.js +11 -0
  30. package/dist/packages/datadog-api-client-v2/models/EventPriority.js.map +1 -0
  31. package/dist/packages/datadog-api-client-v2/models/EventResponse.d.ts +38 -0
  32. package/dist/packages/datadog-api-client-v2/models/EventResponse.js +36 -0
  33. package/dist/packages/datadog-api-client-v2/models/EventResponse.js.map +1 -0
  34. package/dist/packages/datadog-api-client-v2/models/EventResponseAttributes.d.ts +37 -0
  35. package/dist/packages/datadog-api-client-v2/models/EventResponseAttributes.js +37 -0
  36. package/dist/packages/datadog-api-client-v2/models/EventResponseAttributes.js.map +1 -0
  37. package/dist/packages/datadog-api-client-v2/models/EventStatusType.d.ts +14 -0
  38. package/dist/packages/datadog-api-client-v2/models/EventStatusType.js +17 -0
  39. package/dist/packages/datadog-api-client-v2/models/EventStatusType.js.map +1 -0
  40. package/dist/packages/datadog-api-client-v2/models/EventType.d.ts +7 -0
  41. package/dist/packages/datadog-api-client-v2/models/EventType.js +10 -0
  42. package/dist/packages/datadog-api-client-v2/models/EventType.js.map +1 -0
  43. package/dist/packages/datadog-api-client-v2/models/EventsListRequest.d.ts +45 -0
  44. package/dist/packages/datadog-api-client-v2/models/EventsListRequest.js +40 -0
  45. package/dist/packages/datadog-api-client-v2/models/EventsListRequest.js.map +1 -0
  46. package/dist/packages/datadog-api-client-v2/models/EventsListResponse.d.ts +39 -0
  47. package/dist/packages/datadog-api-client-v2/models/EventsListResponse.js +36 -0
  48. package/dist/packages/datadog-api-client-v2/models/EventsListResponse.js.map +1 -0
  49. package/dist/packages/datadog-api-client-v2/models/EventsListResponseLinks.d.ts +29 -0
  50. package/dist/packages/datadog-api-client-v2/models/EventsListResponseLinks.js +33 -0
  51. package/dist/packages/datadog-api-client-v2/models/EventsListResponseLinks.js.map +1 -0
  52. package/dist/packages/datadog-api-client-v2/models/EventsQueryFilter.d.ts +36 -0
  53. package/dist/packages/datadog-api-client-v2/models/EventsQueryFilter.js +41 -0
  54. package/dist/packages/datadog-api-client-v2/models/EventsQueryFilter.js.map +1 -0
  55. package/dist/packages/datadog-api-client-v2/models/EventsQueryOptions.d.ts +33 -0
  56. package/dist/packages/datadog-api-client-v2/models/EventsQueryOptions.js +39 -0
  57. package/dist/packages/datadog-api-client-v2/models/EventsQueryOptions.js.map +1 -0
  58. package/dist/packages/datadog-api-client-v2/models/EventsRequestPage.d.ts +32 -0
  59. package/dist/packages/datadog-api-client-v2/models/EventsRequestPage.js +38 -0
  60. package/dist/packages/datadog-api-client-v2/models/EventsRequestPage.js.map +1 -0
  61. package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadata.d.ts +43 -0
  62. package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadata.js +41 -0
  63. package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadata.js.map +1 -0
  64. package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadataPage.d.ts +29 -0
  65. package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadataPage.js +33 -0
  66. package/dist/packages/datadog-api-client-v2/models/EventsResponseMetadataPage.js.map +1 -0
  67. package/dist/packages/datadog-api-client-v2/models/EventsSort.d.ts +8 -0
  68. package/dist/packages/datadog-api-client-v2/models/EventsSort.js +11 -0
  69. package/dist/packages/datadog-api-client-v2/models/EventsSort.js.map +1 -0
  70. package/dist/packages/datadog-api-client-v2/models/EventsWarning.d.ts +36 -0
  71. package/dist/packages/datadog-api-client-v2/models/EventsWarning.js +41 -0
  72. package/dist/packages/datadog-api-client-v2/models/EventsWarning.js.map +1 -0
  73. package/dist/packages/datadog-api-client-v2/models/HourlyUsage.d.ts +38 -0
  74. package/dist/packages/datadog-api-client-v2/models/HourlyUsage.js +36 -0
  75. package/dist/packages/datadog-api-client-v2/models/HourlyUsage.js.map +1 -0
  76. package/dist/packages/datadog-api-client-v2/models/HourlyUsageAttributes.d.ts +49 -0
  77. package/dist/packages/datadog-api-client-v2/models/HourlyUsageAttributes.js +49 -0
  78. package/dist/packages/datadog-api-client-v2/models/HourlyUsageAttributes.js.map +1 -0
  79. package/dist/packages/datadog-api-client-v2/models/HourlyUsageMeasurement.d.ts +32 -0
  80. package/dist/packages/datadog-api-client-v2/models/HourlyUsageMeasurement.js +38 -0
  81. package/dist/packages/datadog-api-client-v2/models/HourlyUsageMeasurement.js.map +1 -0
  82. package/dist/packages/datadog-api-client-v2/models/HourlyUsageMetadata.d.ts +29 -0
  83. package/dist/packages/datadog-api-client-v2/models/HourlyUsageMetadata.js +28 -0
  84. package/dist/packages/datadog-api-client-v2/models/HourlyUsageMetadata.js.map +1 -0
  85. package/dist/packages/datadog-api-client-v2/models/HourlyUsagePagination.d.ts +28 -0
  86. package/dist/packages/datadog-api-client-v2/models/HourlyUsagePagination.js +33 -0
  87. package/dist/packages/datadog-api-client-v2/models/HourlyUsagePagination.js.map +1 -0
  88. package/dist/packages/datadog-api-client-v2/models/HourlyUsageResponse.d.ts +34 -0
  89. package/dist/packages/datadog-api-client-v2/models/HourlyUsageResponse.js +32 -0
  90. package/dist/packages/datadog-api-client-v2/models/HourlyUsageResponse.js.map +1 -0
  91. package/dist/packages/datadog-api-client-v2/models/MetricResource.d.ts +2 -2
  92. package/dist/packages/datadog-api-client-v2/models/MonitorType.d.ts +68 -0
  93. package/dist/packages/datadog-api-client-v2/models/MonitorType.js +73 -0
  94. package/dist/packages/datadog-api-client-v2/models/MonitorType.js.map +1 -0
  95. package/dist/packages/datadog-api-client-v2/models/ObjectSerializer.js +53 -0
  96. package/dist/packages/datadog-api-client-v2/models/ObjectSerializer.js.map +1 -1
  97. package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQuery.d.ts +4 -0
  98. package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQuery.js +4 -0
  99. package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQuery.js.map +1 -1
  100. package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQueryCreate.d.ts +4 -0
  101. package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQueryCreate.js +4 -0
  102. package/dist/packages/datadog-api-client-v2/models/SecurityMonitoringRuleQueryCreate.js.map +1 -1
  103. package/dist/version.d.ts +1 -1
  104. package/dist/version.js +1 -1
  105. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.2.0 / 2022-08-01
4
+
5
+ ### Fixed
6
+ * Add synthetics results api replay only tests by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-typescript/pull/763
7
+ ### Added
8
+ * docs(dataviz): update Treemap widget definition with deprecated properties + updated description [VIZZ-2305] by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-typescript/pull/764
9
+ * Add hourly usage v2 endpoint by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-typescript/pull/749
10
+ * Add metrics field in the RuleQuery by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-typescript/pull/750
11
+ * Add support for Events V2 endpoint by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-typescript/pull/727
12
+ * [RQ-2492]: Add custom_events to list of product families in hourly-usage api. by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-typescript/pull/774
13
+ * Re-introduce Estimated Cost API by @api-clients-generation-pipeline in https://github.com/DataDog/datadog-api-client-typescript/pull/780
14
+
15
+
16
+ **Full Changelog**: https://github.com/DataDog/datadog-api-client-typescript/compare/v1.1.0...v1.2.0
17
+
3
18
  ## 1.1.0 / 2022-07-19
4
19
 
5
20
  ### Fixed
@@ -50,6 +50,8 @@ function createConfiguration(conf) {
50
50
  "v1.getUsageAttribution": false,
51
51
  "v1.getSLOHistory": false,
52
52
  "v1.searchSLO": false,
53
+ "v2.listEvents": false,
54
+ "v2.searchEvents": false,
53
55
  "v2.createIncident": false,
54
56
  "v2.deleteIncident": false,
55
57
  "v2.getIncident": false,
@@ -65,6 +67,7 @@ function createConfiguration(conf) {
65
67
  "v2.getIncidentTeam": false,
66
68
  "v2.listIncidentTeams": false,
67
69
  "v2.updateIncidentTeam": false,
70
+ "v2.getEstimatedCostByOrg": false,
68
71
  },
69
72
  httpApi: conf.httpApi || new isomorphic_fetch_1.IsomorphicFetchHttpLibrary(),
70
73
  authMethods: (0, auth_1.configureAuthMethods)(authMethods),
@@ -1 +1 @@
1
- {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../../../packages/datadog-api-client-common/configuration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"configuration.js","sourceRoot":"","sources":["../../../packages/datadog-api-client-common/configuration.ts"],"names":[],"mappings":"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"}
@@ -1014,11 +1014,13 @@ export declare class UsageMeteringApi {
1014
1014
  getHourlyUsageAttribution(param: UsageMeteringApiGetHourlyUsageAttributionRequest, options?: Configuration): Promise<HourlyUsageAttributionResponse>;
1015
1015
  /**
1016
1016
  * Get hourly usage for incident management.
1017
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1017
1018
  * @param param The request object
1018
1019
  */
1019
1020
  getIncidentManagement(param: UsageMeteringApiGetIncidentManagementRequest, options?: Configuration): Promise<UsageIncidentManagementResponse>;
1020
1021
  /**
1021
1022
  * Get hourly usage for ingested spans.
1023
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1022
1024
  * @param param The request object
1023
1025
  */
1024
1026
  getIngestedSpans(param: UsageMeteringApiGetIngestedSpansRequest, options?: Configuration): Promise<UsageIngestedSpansResponse>;
@@ -1058,6 +1060,7 @@ export declare class UsageMeteringApi {
1058
1060
  getSpecifiedMonthlyCustomReports(param: UsageMeteringApiGetSpecifiedMonthlyCustomReportsRequest, options?: Configuration): Promise<UsageSpecifiedCustomReportsResponse>;
1059
1061
  /**
1060
1062
  * Get hourly usage for analyzed logs (Security Monitoring).
1063
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1061
1064
  * @param param The request object
1062
1065
  */
1063
1066
  getUsageAnalyzedLogs(param: UsageMeteringApiGetUsageAnalyzedLogsRequest, options?: Configuration): Promise<UsageAnalyzedLogsResponse>;
@@ -1068,6 +1071,7 @@ export declare class UsageMeteringApi {
1068
1071
  getUsageAttribution(param: UsageMeteringApiGetUsageAttributionRequest, options?: Configuration): Promise<UsageAttributionResponse>;
1069
1072
  /**
1070
1073
  * Get hourly usage for audit logs.
1074
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1071
1075
  * @param param The request object
1072
1076
  */
1073
1077
  getUsageAuditLogs(param: UsageMeteringApiGetUsageAuditLogsRequest, options?: Configuration): Promise<UsageAuditLogsResponse>;
@@ -1077,52 +1081,62 @@ export declare class UsageMeteringApi {
1077
1081
  */
1078
1082
  getUsageBillableSummary(param?: UsageMeteringApiGetUsageBillableSummaryRequest, options?: Configuration): Promise<UsageBillableSummaryResponse>;
1079
1083
  /**
1080
- * Get hourly usage for CI Visibility (Tests, Pipeline, and Spans).
1084
+ * Get hourly usage for CI visibility (tests, pipeline, and spans).
1085
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1081
1086
  * @param param The request object
1082
1087
  */
1083
1088
  getUsageCIApp(param: UsageMeteringApiGetUsageCIAppRequest, options?: Configuration): Promise<UsageCIVisibilityResponse>;
1084
1089
  /**
1085
- * Get hourly usage for Cloud Security Posture Management (CSPM).
1090
+ * Get hourly usage for cloud security posture management (CSPM).
1091
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1086
1092
  * @param param The request object
1087
1093
  */
1088
1094
  getUsageCloudSecurityPostureManagement(param: UsageMeteringApiGetUsageCloudSecurityPostureManagementRequest, options?: Configuration): Promise<UsageCloudSecurityPostureManagementResponse>;
1089
1095
  /**
1090
- * Get hourly usage for Cloud Workload Security.
1096
+ * Get hourly usage for cloud workload security.
1097
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1091
1098
  * @param param The request object
1092
1099
  */
1093
1100
  getUsageCWS(param: UsageMeteringApiGetUsageCWSRequest, options?: Configuration): Promise<UsageCWSResponse>;
1094
1101
  /**
1095
- * Get hourly usage for Database Monitoring
1102
+ * Get hourly usage for database monitoring
1103
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1096
1104
  * @param param The request object
1097
1105
  */
1098
1106
  getUsageDBM(param: UsageMeteringApiGetUsageDBMRequest, options?: Configuration): Promise<UsageDBMResponse>;
1099
1107
  /**
1100
1108
  * Get hourly usage for [Fargate](https://docs.datadoghq.com/integrations/ecs_fargate/).
1109
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1101
1110
  * @param param The request object
1102
1111
  */
1103
1112
  getUsageFargate(param: UsageMeteringApiGetUsageFargateRequest, options?: Configuration): Promise<UsageFargateResponse>;
1104
1113
  /**
1105
1114
  * Get hourly usage for hosts and containers.
1115
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1106
1116
  * @param param The request object
1107
1117
  */
1108
1118
  getUsageHosts(param: UsageMeteringApiGetUsageHostsRequest, options?: Configuration): Promise<UsageHostsResponse>;
1109
1119
  /**
1110
1120
  * Get hourly usage for indexed spans.
1121
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1111
1122
  * @param param The request object
1112
1123
  */
1113
1124
  getUsageIndexedSpans(param: UsageMeteringApiGetUsageIndexedSpansRequest, options?: Configuration): Promise<UsageIndexedSpansResponse>;
1114
1125
  /**
1115
1126
  * Get hourly usage for IoT.
1127
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1116
1128
  * @param param The request object
1117
1129
  */
1118
1130
  getUsageInternetOfThings(param: UsageMeteringApiGetUsageInternetOfThingsRequest, options?: Configuration): Promise<UsageIoTResponse>;
1119
1131
  /**
1120
1132
  * Get hourly usage for lambda.
1133
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1121
1134
  * @param param The request object
1122
1135
  */
1123
1136
  getUsageLambda(param: UsageMeteringApiGetUsageLambdaRequest, options?: Configuration): Promise<UsageLambdaResponse>;
1124
1137
  /**
1125
1138
  * Get hourly usage for logs.
1139
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1126
1140
  * @param param The request object
1127
1141
  */
1128
1142
  getUsageLogs(param: UsageMeteringApiGetUsageLogsRequest, options?: Configuration): Promise<UsageLogsResponse>;
@@ -1133,46 +1147,55 @@ export declare class UsageMeteringApi {
1133
1147
  getUsageLogsByIndex(param: UsageMeteringApiGetUsageLogsByIndexRequest, options?: Configuration): Promise<UsageLogsByIndexResponse>;
1134
1148
  /**
1135
1149
  * Get hourly usage for indexed logs by retention period.
1150
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1136
1151
  * @param param The request object
1137
1152
  */
1138
1153
  getUsageLogsByRetention(param: UsageMeteringApiGetUsageLogsByRetentionRequest, options?: Configuration): Promise<UsageLogsByRetentionResponse>;
1139
1154
  /**
1140
1155
  * Get hourly usage for network flows.
1156
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1141
1157
  * @param param The request object
1142
1158
  */
1143
1159
  getUsageNetworkFlows(param: UsageMeteringApiGetUsageNetworkFlowsRequest, options?: Configuration): Promise<UsageNetworkFlowsResponse>;
1144
1160
  /**
1145
1161
  * Get hourly usage for network hosts.
1162
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1146
1163
  * @param param The request object
1147
1164
  */
1148
1165
  getUsageNetworkHosts(param: UsageMeteringApiGetUsageNetworkHostsRequest, options?: Configuration): Promise<UsageNetworkHostsResponse>;
1149
1166
  /**
1150
- * Get hourly usage for Online Archive.
1167
+ * Get hourly usage for online archive.
1168
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1151
1169
  * @param param The request object
1152
1170
  */
1153
1171
  getUsageOnlineArchive(param: UsageMeteringApiGetUsageOnlineArchiveRequest, options?: Configuration): Promise<UsageOnlineArchiveResponse>;
1154
1172
  /**
1155
1173
  * Get hourly usage for profiled hosts.
1174
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1156
1175
  * @param param The request object
1157
1176
  */
1158
1177
  getUsageProfiling(param: UsageMeteringApiGetUsageProfilingRequest, options?: Configuration): Promise<UsageProfilingResponse>;
1159
1178
  /**
1160
1179
  * Get hourly usage for [RUM](https://docs.datadoghq.com/real_user_monitoring/) Sessions.
1180
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1161
1181
  * @param param The request object
1162
1182
  */
1163
1183
  getUsageRumSessions(param: UsageMeteringApiGetUsageRumSessionsRequest, options?: Configuration): Promise<UsageRumSessionsResponse>;
1164
1184
  /**
1165
1185
  * Get hourly usage for [RUM](https://docs.datadoghq.com/real_user_monitoring/) Units.
1186
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1166
1187
  * @param param The request object
1167
1188
  */
1168
1189
  getUsageRumUnits(param: UsageMeteringApiGetUsageRumUnitsRequest, options?: Configuration): Promise<UsageRumUnitsResponse>;
1169
1190
  /**
1170
- * Get hourly usage for Sensitive Data Scanner.
1191
+ * Get hourly usage for sensitive data scanner.
1192
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1171
1193
  * @param param The request object
1172
1194
  */
1173
1195
  getUsageSDS(param: UsageMeteringApiGetUsageSDSRequest, options?: Configuration): Promise<UsageSDSResponse>;
1174
1196
  /**
1175
1197
  * Get hourly usage for SNMP devices.
1198
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1176
1199
  * @param param The request object
1177
1200
  */
1178
1201
  getUsageSNMP(param: UsageMeteringApiGetUsageSNMPRequest, options?: Configuration): Promise<UsageSNMPResponse>;
@@ -1182,22 +1205,26 @@ export declare class UsageMeteringApi {
1182
1205
  */
1183
1206
  getUsageSummary(param: UsageMeteringApiGetUsageSummaryRequest, options?: Configuration): Promise<UsageSummaryResponse>;
1184
1207
  /**
1185
- * Get hourly usage for [Synthetics checks](https://docs.datadoghq.com/synthetics/).
1208
+ * Get hourly usage for [synthetics checks](https://docs.datadoghq.com/synthetics/).
1209
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1186
1210
  * @param param The request object
1187
1211
  */
1188
1212
  getUsageSynthetics(param: UsageMeteringApiGetUsageSyntheticsRequest, options?: Configuration): Promise<UsageSyntheticsResponse>;
1189
1213
  /**
1190
1214
  * Get hourly usage for [synthetics API checks](https://docs.datadoghq.com/synthetics/).
1215
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1191
1216
  * @param param The request object
1192
1217
  */
1193
1218
  getUsageSyntheticsAPI(param: UsageMeteringApiGetUsageSyntheticsAPIRequest, options?: Configuration): Promise<UsageSyntheticsAPIResponse>;
1194
1219
  /**
1195
1220
  * Get hourly usage for synthetics browser checks.
1221
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1196
1222
  * @param param The request object
1197
1223
  */
1198
1224
  getUsageSyntheticsBrowser(param: UsageMeteringApiGetUsageSyntheticsBrowserRequest, options?: Configuration): Promise<UsageSyntheticsBrowserResponse>;
1199
1225
  /**
1200
1226
  * Get hourly usage for [custom metrics](https://docs.datadoghq.com/developers/metrics/custom_metrics/).
1227
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
1201
1228
  * @param param The request object
1202
1229
  */
1203
1230
  getUsageTimeseries(param: UsageMeteringApiGetUsageTimeseriesRequest, options?: Configuration): Promise<UsageTimeseriesResponse>;
@@ -4003,6 +4003,7 @@ var UsageMeteringApi = /** @class */ (function () {
4003
4003
  };
4004
4004
  /**
4005
4005
  * Get hourly usage for incident management.
4006
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4006
4007
  * @param param The request object
4007
4008
  */
4008
4009
  UsageMeteringApi.prototype.getIncidentManagement = function (param, options) {
@@ -4018,6 +4019,7 @@ var UsageMeteringApi = /** @class */ (function () {
4018
4019
  };
4019
4020
  /**
4020
4021
  * Get hourly usage for ingested spans.
4022
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4021
4023
  * @param param The request object
4022
4024
  */
4023
4025
  UsageMeteringApi.prototype.getIngestedSpans = function (param, options) {
@@ -4108,6 +4110,7 @@ var UsageMeteringApi = /** @class */ (function () {
4108
4110
  };
4109
4111
  /**
4110
4112
  * Get hourly usage for analyzed logs (Security Monitoring).
4113
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4111
4114
  * @param param The request object
4112
4115
  */
4113
4116
  UsageMeteringApi.prototype.getUsageAnalyzedLogs = function (param, options) {
@@ -4138,6 +4141,7 @@ var UsageMeteringApi = /** @class */ (function () {
4138
4141
  };
4139
4142
  /**
4140
4143
  * Get hourly usage for audit logs.
4144
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4141
4145
  * @param param The request object
4142
4146
  */
4143
4147
  UsageMeteringApi.prototype.getUsageAuditLogs = function (param, options) {
@@ -4168,7 +4172,8 @@ var UsageMeteringApi = /** @class */ (function () {
4168
4172
  });
4169
4173
  };
4170
4174
  /**
4171
- * Get hourly usage for CI Visibility (Tests, Pipeline, and Spans).
4175
+ * Get hourly usage for CI visibility (tests, pipeline, and spans).
4176
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4172
4177
  * @param param The request object
4173
4178
  */
4174
4179
  UsageMeteringApi.prototype.getUsageCIApp = function (param, options) {
@@ -4183,7 +4188,8 @@ var UsageMeteringApi = /** @class */ (function () {
4183
4188
  });
4184
4189
  };
4185
4190
  /**
4186
- * Get hourly usage for Cloud Security Posture Management (CSPM).
4191
+ * Get hourly usage for cloud security posture management (CSPM).
4192
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4187
4193
  * @param param The request object
4188
4194
  */
4189
4195
  UsageMeteringApi.prototype.getUsageCloudSecurityPostureManagement = function (param, options) {
@@ -4198,7 +4204,8 @@ var UsageMeteringApi = /** @class */ (function () {
4198
4204
  });
4199
4205
  };
4200
4206
  /**
4201
- * Get hourly usage for Cloud Workload Security.
4207
+ * Get hourly usage for cloud workload security.
4208
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4202
4209
  * @param param The request object
4203
4210
  */
4204
4211
  UsageMeteringApi.prototype.getUsageCWS = function (param, options) {
@@ -4213,7 +4220,8 @@ var UsageMeteringApi = /** @class */ (function () {
4213
4220
  });
4214
4221
  };
4215
4222
  /**
4216
- * Get hourly usage for Database Monitoring
4223
+ * Get hourly usage for database monitoring
4224
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4217
4225
  * @param param The request object
4218
4226
  */
4219
4227
  UsageMeteringApi.prototype.getUsageDBM = function (param, options) {
@@ -4229,6 +4237,7 @@ var UsageMeteringApi = /** @class */ (function () {
4229
4237
  };
4230
4238
  /**
4231
4239
  * Get hourly usage for [Fargate](https://docs.datadoghq.com/integrations/ecs_fargate/).
4240
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4232
4241
  * @param param The request object
4233
4242
  */
4234
4243
  UsageMeteringApi.prototype.getUsageFargate = function (param, options) {
@@ -4244,6 +4253,7 @@ var UsageMeteringApi = /** @class */ (function () {
4244
4253
  };
4245
4254
  /**
4246
4255
  * Get hourly usage for hosts and containers.
4256
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4247
4257
  * @param param The request object
4248
4258
  */
4249
4259
  UsageMeteringApi.prototype.getUsageHosts = function (param, options) {
@@ -4259,6 +4269,7 @@ var UsageMeteringApi = /** @class */ (function () {
4259
4269
  };
4260
4270
  /**
4261
4271
  * Get hourly usage for indexed spans.
4272
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4262
4273
  * @param param The request object
4263
4274
  */
4264
4275
  UsageMeteringApi.prototype.getUsageIndexedSpans = function (param, options) {
@@ -4274,6 +4285,7 @@ var UsageMeteringApi = /** @class */ (function () {
4274
4285
  };
4275
4286
  /**
4276
4287
  * Get hourly usage for IoT.
4288
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4277
4289
  * @param param The request object
4278
4290
  */
4279
4291
  UsageMeteringApi.prototype.getUsageInternetOfThings = function (param, options) {
@@ -4289,6 +4301,7 @@ var UsageMeteringApi = /** @class */ (function () {
4289
4301
  };
4290
4302
  /**
4291
4303
  * Get hourly usage for lambda.
4304
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4292
4305
  * @param param The request object
4293
4306
  */
4294
4307
  UsageMeteringApi.prototype.getUsageLambda = function (param, options) {
@@ -4304,6 +4317,7 @@ var UsageMeteringApi = /** @class */ (function () {
4304
4317
  };
4305
4318
  /**
4306
4319
  * Get hourly usage for logs.
4320
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4307
4321
  * @param param The request object
4308
4322
  */
4309
4323
  UsageMeteringApi.prototype.getUsageLogs = function (param, options) {
@@ -4334,6 +4348,7 @@ var UsageMeteringApi = /** @class */ (function () {
4334
4348
  };
4335
4349
  /**
4336
4350
  * Get hourly usage for indexed logs by retention period.
4351
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4337
4352
  * @param param The request object
4338
4353
  */
4339
4354
  UsageMeteringApi.prototype.getUsageLogsByRetention = function (param, options) {
@@ -4349,6 +4364,7 @@ var UsageMeteringApi = /** @class */ (function () {
4349
4364
  };
4350
4365
  /**
4351
4366
  * Get hourly usage for network flows.
4367
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4352
4368
  * @param param The request object
4353
4369
  */
4354
4370
  UsageMeteringApi.prototype.getUsageNetworkFlows = function (param, options) {
@@ -4364,6 +4380,7 @@ var UsageMeteringApi = /** @class */ (function () {
4364
4380
  };
4365
4381
  /**
4366
4382
  * Get hourly usage for network hosts.
4383
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4367
4384
  * @param param The request object
4368
4385
  */
4369
4386
  UsageMeteringApi.prototype.getUsageNetworkHosts = function (param, options) {
@@ -4378,7 +4395,8 @@ var UsageMeteringApi = /** @class */ (function () {
4378
4395
  });
4379
4396
  };
4380
4397
  /**
4381
- * Get hourly usage for Online Archive.
4398
+ * Get hourly usage for online archive.
4399
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4382
4400
  * @param param The request object
4383
4401
  */
4384
4402
  UsageMeteringApi.prototype.getUsageOnlineArchive = function (param, options) {
@@ -4394,6 +4412,7 @@ var UsageMeteringApi = /** @class */ (function () {
4394
4412
  };
4395
4413
  /**
4396
4414
  * Get hourly usage for profiled hosts.
4415
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4397
4416
  * @param param The request object
4398
4417
  */
4399
4418
  UsageMeteringApi.prototype.getUsageProfiling = function (param, options) {
@@ -4409,6 +4428,7 @@ var UsageMeteringApi = /** @class */ (function () {
4409
4428
  };
4410
4429
  /**
4411
4430
  * Get hourly usage for [RUM](https://docs.datadoghq.com/real_user_monitoring/) Sessions.
4431
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4412
4432
  * @param param The request object
4413
4433
  */
4414
4434
  UsageMeteringApi.prototype.getUsageRumSessions = function (param, options) {
@@ -4424,6 +4444,7 @@ var UsageMeteringApi = /** @class */ (function () {
4424
4444
  };
4425
4445
  /**
4426
4446
  * Get hourly usage for [RUM](https://docs.datadoghq.com/real_user_monitoring/) Units.
4447
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4427
4448
  * @param param The request object
4428
4449
  */
4429
4450
  UsageMeteringApi.prototype.getUsageRumUnits = function (param, options) {
@@ -4438,7 +4459,8 @@ var UsageMeteringApi = /** @class */ (function () {
4438
4459
  });
4439
4460
  };
4440
4461
  /**
4441
- * Get hourly usage for Sensitive Data Scanner.
4462
+ * Get hourly usage for sensitive data scanner.
4463
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4442
4464
  * @param param The request object
4443
4465
  */
4444
4466
  UsageMeteringApi.prototype.getUsageSDS = function (param, options) {
@@ -4454,6 +4476,7 @@ var UsageMeteringApi = /** @class */ (function () {
4454
4476
  };
4455
4477
  /**
4456
4478
  * Get hourly usage for SNMP devices.
4479
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4457
4480
  * @param param The request object
4458
4481
  */
4459
4482
  UsageMeteringApi.prototype.getUsageSNMP = function (param, options) {
@@ -4483,7 +4506,8 @@ var UsageMeteringApi = /** @class */ (function () {
4483
4506
  });
4484
4507
  };
4485
4508
  /**
4486
- * Get hourly usage for [Synthetics checks](https://docs.datadoghq.com/synthetics/).
4509
+ * Get hourly usage for [synthetics checks](https://docs.datadoghq.com/synthetics/).
4510
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4487
4511
  * @param param The request object
4488
4512
  */
4489
4513
  UsageMeteringApi.prototype.getUsageSynthetics = function (param, options) {
@@ -4499,6 +4523,7 @@ var UsageMeteringApi = /** @class */ (function () {
4499
4523
  };
4500
4524
  /**
4501
4525
  * Get hourly usage for [synthetics API checks](https://docs.datadoghq.com/synthetics/).
4526
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4502
4527
  * @param param The request object
4503
4528
  */
4504
4529
  UsageMeteringApi.prototype.getUsageSyntheticsAPI = function (param, options) {
@@ -4514,6 +4539,7 @@ var UsageMeteringApi = /** @class */ (function () {
4514
4539
  };
4515
4540
  /**
4516
4541
  * Get hourly usage for synthetics browser checks.
4542
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4517
4543
  * @param param The request object
4518
4544
  */
4519
4545
  UsageMeteringApi.prototype.getUsageSyntheticsBrowser = function (param, options) {
@@ -4529,6 +4555,7 @@ var UsageMeteringApi = /** @class */ (function () {
4529
4555
  };
4530
4556
  /**
4531
4557
  * Get hourly usage for [custom metrics](https://docs.datadoghq.com/developers/metrics/custom_metrics/).
4558
+ * **Note:** hourly usage data for all products is now available in the [Get hourly usage by product family API](https://docs.datadoghq.com/api/latest/usage-metering/#get-hourly-usage-by-product-family)
4532
4559
  * @param param The request object
4533
4560
  */
4534
4561
  UsageMeteringApi.prototype.getUsageTimeseries = function (param, options) {