Skip to content

Commit 42d30e6

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 3452903 of spec repo
1 parent 35e2cc2 commit 42d30e6

File tree

10 files changed

+232
-151
lines changed

10 files changed

+232
-151
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 107 additions & 83 deletions
Large diffs are not rendered by default.

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65059,8 +65059,8 @@ paths:
6505965059
`lambda_traced_invocations`, `logs`, `network_flows`, `network_hosts`, `network_monitoring`,
6506065060
`observability_pipelines`,
6506165061

65062-
`online_archive`, `profiling`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`,
65063-
`sds`, `snmp`, `software_delivery`,
65062+
`online_archive`, `profiling`, `product_analytics`, `rum`, `rum_browser_sessions`,
65063+
`rum_mobile_sessions`, `sds`, `snmp`, `software_delivery`,
6506465064

6506565065
`synthetics_api`, `synthetics_browser`, `synthetics_mobile`, `synthetics_parallel_testing`,
6506665066
`timeseries`, `vuln_management`,

services/usage_metering/src/v1/models/HourlyUsageAttributionUsageType.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export type HourlyUsageAttributionUsageType =
6565
| typeof PROFILED_CONTAINER_USAGE
6666
| typeof PROFILED_FARGATE_USAGE
6767
| typeof PROFILED_HOST_USAGE
68+
| typeof PRODUCT_ANALYTICS_SESSION_USAGE
6869
| typeof RUM_BROWSER_MOBILE_SESSIONS_USAGE
6970
| typeof RUM_REPLAY_SESSIONS_USAGE
7071
| typeof SCA_FARGATE_USAGE
@@ -145,6 +146,8 @@ export const ONLINE_ARCHIVE_USAGE = "online_archive_usage";
145146
export const PROFILED_CONTAINER_USAGE = "profiled_container_usage";
146147
export const PROFILED_FARGATE_USAGE = "profiled_fargate_usage";
147148
export const PROFILED_HOST_USAGE = "profiled_host_usage";
149+
export const PRODUCT_ANALYTICS_SESSION_USAGE =
150+
"product_analytics_session_usage";
148151
export const RUM_BROWSER_MOBILE_SESSIONS_USAGE =
149152
"rum_browser_mobile_sessions_usage";
150153
export const RUM_REPLAY_SESSIONS_USAGE = "rum_replay_sessions_usage";

services/usage_metering/src/v1/models/MonthlyUsageAttributionSupportedMetrics.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
130130
| typeof LOGS_INDEXED_3DAY_PERCENTAGE
131131
| typeof LOGS_INDEXED_1DAY_USAGE
132132
| typeof LOGS_INDEXED_1DAY_PERCENTAGE
133+
| typeof PRODUCT_ANALYTICS_SESSION_USAGE
134+
| typeof PRODUCT_ANALYTICS_SESSION_PERCENTAGE
133135
| typeof RUM_REPLAY_SESSIONS_USAGE
134136
| typeof RUM_REPLAY_SESSIONS_PERCENTAGE
135137
| typeof RUM_BROWSER_MOBILE_SESSIONS_USAGE
@@ -293,6 +295,10 @@ export const LOGS_INDEXED_3DAY_USAGE = "logs_indexed_3day_usage";
293295
export const LOGS_INDEXED_3DAY_PERCENTAGE = "logs_indexed_3day_percentage";
294296
export const LOGS_INDEXED_1DAY_USAGE = "logs_indexed_1day_usage";
295297
export const LOGS_INDEXED_1DAY_PERCENTAGE = "logs_indexed_1day_percentage";
298+
export const PRODUCT_ANALYTICS_SESSION_USAGE =
299+
"product_analytics_session_usage";
300+
export const PRODUCT_ANALYTICS_SESSION_PERCENTAGE =
301+
"product_analytics_session_percentage";
296302
export const RUM_REPLAY_SESSIONS_USAGE = "rum_replay_sessions_usage";
297303
export const RUM_REPLAY_SESSIONS_PERCENTAGE = "rum_replay_sessions_percentage";
298304
export const RUM_BROWSER_MOBILE_SESSIONS_USAGE =

services/usage_metering/src/v1/models/MonthlyUsageAttributionValues.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,14 @@ export class MonthlyUsageAttributionValues {
444444
* The online archive usage by tag(s).
445445
*/
446446
"onlineArchiveUsage"?: number;
447+
/**
448+
* The percentage of Product Analytics session usage by tag(s).
449+
*/
450+
"productAnalyticsSessionPercentage"?: number;
451+
/**
452+
* The total Product Analytics session usage by tag(s).
453+
*/
454+
"productAnalyticsSessionUsage"?: number;
447455
/**
448456
* The percentage of profiled container usage by tag(s).
449457
*/
@@ -1121,6 +1129,16 @@ export class MonthlyUsageAttributionValues {
11211129
type: "number",
11221130
format: "double",
11231131
},
1132+
productAnalyticsSessionPercentage: {
1133+
baseName: "product_analytics_session_percentage",
1134+
type: "number",
1135+
format: "double",
1136+
},
1137+
productAnalyticsSessionUsage: {
1138+
baseName: "product_analytics_session_usage",
1139+
type: "number",
1140+
format: "double",
1141+
},
11241142
profiledContainerPercentage: {
11251143
baseName: "profiled_container_percentage",
11261144
type: "number",

services/usage_metering/src/v1/models/TypingInfo.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ export const TypingInfo: ModelTypingInfo = {
159159
"profiled_container_usage",
160160
"profiled_fargate_usage",
161161
"profiled_host_usage",
162+
"product_analytics_session_usage",
162163
"rum_browser_mobile_sessions_usage",
163164
"rum_replay_sessions_usage",
164165
"sca_fargate_usage",
@@ -298,6 +299,8 @@ export const TypingInfo: ModelTypingInfo = {
298299
"logs_indexed_3day_percentage",
299300
"logs_indexed_1day_usage",
300301
"logs_indexed_1day_percentage",
302+
"product_analytics_session_usage",
303+
"product_analytics_session_percentage",
301304
"rum_replay_sessions_usage",
302305
"rum_replay_sessions_percentage",
303306
"rum_browser_mobile_sessions_usage",

services/usage_metering/src/v1/models/UsageSummaryDate.ts

Lines changed: 74 additions & 65 deletions
Large diffs are not rendered by default.

services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,10 @@ export class UsageSummaryDateOrg {
480480
* Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
481481
*/
482482
"opentelemetryHostTop99P"?: number;
483+
/**
484+
* Shows the sum of all product analytics sessions over all hours in the current date for the given org.
485+
*/
486+
"productAnalyticsSum"?: number;
483487
/**
484488
* Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations.
485489
*/
@@ -1286,6 +1290,11 @@ export class UsageSummaryDateOrg {
12861290
type: "number",
12871291
format: "int64",
12881292
},
1293+
productAnalyticsSum: {
1294+
baseName: "product_analytics_sum",
1295+
type: "number",
1296+
format: "int64",
1297+
},
12891298
profilingAasCountTop99P: {
12901299
baseName: "profiling_aas_count_top99p",
12911300
type: "number",

services/usage_metering/src/v1/models/UsageSummaryResponse.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,6 +491,10 @@ export class UsageSummaryResponse {
491491
* Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current month for all organizations.
492492
*/
493493
"opentelemetryHostTop99PSum"?: number;
494+
/**
495+
* Sum of all product analytics sessions for all hours in the current month for all organizations.
496+
*/
497+
"productAnalyticsAggSum"?: number;
494498
/**
495499
* Shows the 99th percentile of all profiled Azure app services over all hours in the current month for all organizations.
496500
*/
@@ -1322,6 +1326,11 @@ export class UsageSummaryResponse {
13221326
type: "number",
13231327
format: "int64",
13241328
},
1329+
productAnalyticsAggSum: {
1330+
baseName: "product_analytics_agg_sum",
1331+
type: "number",
1332+
format: "int64",
1333+
},
13251334
profilingAasCountTop99PSum: {
13261335
baseName: "profiling_aas_count_top99p_sum",
13271336
type: "number",

services/usage_metering/src/v2/UsageMeteringApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@ export interface UsageMeteringApiGetHourlyUsageRequest {
16101610
* `csm_container_enterprise`, `csm_host_enterprise`, `cspm`, `custom_events`, `cws`, `dbm`, `error_tracking`,
16111611
* `fargate`, `infra_hosts`, `incident_management`, `indexed_logs`, `indexed_spans`, `ingested_spans`, `iot`,
16121612
* `lambda_traced_invocations`, `logs`, `network_flows`, `network_hosts`, `network_monitoring`, `observability_pipelines`,
1613-
* `online_archive`, `profiling`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`, `sds`, `snmp`, `software_delivery`,
1613+
* `online_archive`, `profiling`, `product_analytics`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`, `sds`, `snmp`, `software_delivery`,
16141614
* `synthetics_api`, `synthetics_browser`, `synthetics_mobile`, `synthetics_parallel_testing`, `timeseries`, `vuln_management`,
16151615
* and `workflow_executions`.
16161616
* The following product family has been **deprecated**: `audit_logs`.

0 commit comments

Comments
 (0)