Skip to content

Commit 3784a3b

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit a4e80cb2 of spec repo
1 parent 30ed2b4 commit 3784a3b

11 files changed

+236
-155
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-05-27 17:12:13.510503",
8-
"spec_repo_commit": "ed439f7c"
7+
"regenerated": "2025-05-28 13:24:38.898095",
8+
"spec_repo_commit": "a4e80cb2"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-05-27 17:12:13.526776",
13-
"spec_repo_commit": "ed439f7c"
12+
"regenerated": "2025-05-28 13:24:38.914637",
13+
"spec_repo_commit": "a4e80cb2"
1414
}
1515
}
1616
}

.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
@@ -61071,8 +61071,8 @@ paths:
6107161071
`lambda_traced_invocations`, `logs`, `network_flows`, `network_hosts`, `network_monitoring`,
6107261072
`observability_pipelines`,
6107361073

61074-
`online_archive`, `profiling`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`,
61075-
`sds`, `snmp`, `software_delivery`,
61074+
`online_archive`, `profiling`, `product_analytics`, `rum`, `rum_browser_sessions`,
61075+
`rum_mobile_sessions`, `sds`, `snmp`, `software_delivery`,
6107661076

6107761077
`synthetics_api`, `synthetics_browser`, `synthetics_mobile`, `synthetics_parallel_testing`,
6107861078
`timeseries`, `vuln_management`,

packages/datadog-api-client-v1/models/HourlyUsageAttributionUsageType.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export type HourlyUsageAttributionUsageType =
7272
| typeof PROFILED_CONTAINER_USAGE
7373
| typeof PROFILED_FARGATE_USAGE
7474
| typeof PROFILED_HOST_USAGE
75+
| typeof PRODUCT_ANALYTICS_SESSION_USAGE
7576
| typeof RUM_BROWSER_MOBILE_SESSIONS_USAGE
7677
| typeof RUM_REPLAY_SESSIONS_USAGE
7778
| typeof SCA_FARGATE_USAGE
@@ -152,6 +153,8 @@ export const ONLINE_ARCHIVE_USAGE = "online_archive_usage";
152153
export const PROFILED_CONTAINER_USAGE = "profiled_container_usage";
153154
export const PROFILED_FARGATE_USAGE = "profiled_fargate_usage";
154155
export const PROFILED_HOST_USAGE = "profiled_host_usage";
156+
export const PRODUCT_ANALYTICS_SESSION_USAGE =
157+
"product_analytics_session_usage";
155158
export const RUM_BROWSER_MOBILE_SESSIONS_USAGE =
156159
"rum_browser_mobile_sessions_usage";
157160
export const RUM_REPLAY_SESSIONS_USAGE = "rum_replay_sessions_usage";

packages/datadog-api-client-v1/models/MonthlyUsageAttributionSupportedMetrics.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
137137
| typeof LOGS_INDEXED_3DAY_PERCENTAGE
138138
| typeof LOGS_INDEXED_1DAY_USAGE
139139
| typeof LOGS_INDEXED_1DAY_PERCENTAGE
140+
| typeof PRODUCT_ANALYTICS_SESSION_USAGE
141+
| typeof PRODUCT_ANALYTICS_SESSION_PERCENTAGE
140142
| typeof RUM_REPLAY_SESSIONS_USAGE
141143
| typeof RUM_REPLAY_SESSIONS_PERCENTAGE
142144
| typeof RUM_BROWSER_MOBILE_SESSIONS_USAGE
@@ -300,6 +302,10 @@ export const LOGS_INDEXED_3DAY_USAGE = "logs_indexed_3day_usage";
300302
export const LOGS_INDEXED_3DAY_PERCENTAGE = "logs_indexed_3day_percentage";
301303
export const LOGS_INDEXED_1DAY_USAGE = "logs_indexed_1day_usage";
302304
export const LOGS_INDEXED_1DAY_PERCENTAGE = "logs_indexed_1day_percentage";
305+
export const PRODUCT_ANALYTICS_SESSION_USAGE =
306+
"product_analytics_session_usage";
307+
export const PRODUCT_ANALYTICS_SESSION_PERCENTAGE =
308+
"product_analytics_session_percentage";
303309
export const RUM_REPLAY_SESSIONS_USAGE = "rum_replay_sessions_usage";
304310
export const RUM_REPLAY_SESSIONS_PERCENTAGE = "rum_replay_sessions_percentage";
305311
export const RUM_BROWSER_MOBILE_SESSIONS_USAGE =

packages/datadog-api-client-v1/models/MonthlyUsageAttributionValues.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,14 @@ export class MonthlyUsageAttributionValues {
450450
* The online archive usage by tag(s).
451451
*/
452452
"onlineArchiveUsage"?: number;
453+
/**
454+
* The percentage of Product Analytics session usage by tag(s).
455+
*/
456+
"productAnalyticsSessionPercentage"?: number;
457+
/**
458+
* The total Product Analytics session usage by tag(s).
459+
*/
460+
"productAnalyticsSessionUsage"?: number;
453461
/**
454462
* The percentage of profiled container usage by tag(s).
455463
*/
@@ -1129,6 +1137,16 @@ export class MonthlyUsageAttributionValues {
11291137
type: "number",
11301138
format: "double",
11311139
},
1140+
productAnalyticsSessionPercentage: {
1141+
baseName: "product_analytics_session_percentage",
1142+
type: "number",
1143+
format: "double",
1144+
},
1145+
productAnalyticsSessionUsage: {
1146+
baseName: "product_analytics_session_usage",
1147+
type: "number",
1148+
format: "double",
1149+
},
11321150
profiledContainerPercentage: {
11331151
baseName: "profiled_container_percentage",
11341152
type: "number",

packages/datadog-api-client-v1/models/ObjectSerializer.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,7 @@ const enumsMap: { [key: string]: any[] } = {
866866
"profiled_container_usage",
867867
"profiled_fargate_usage",
868868
"profiled_host_usage",
869+
"product_analytics_session_usage",
869870
"rum_browser_mobile_sessions_usage",
870871
"rum_replay_sessions_usage",
871872
"sca_fargate_usage",
@@ -1151,6 +1152,8 @@ const enumsMap: { [key: string]: any[] } = {
11511152
"logs_indexed_3day_percentage",
11521153
"logs_indexed_1day_usage",
11531154
"logs_indexed_1day_percentage",
1155+
"product_analytics_session_usage",
1156+
"product_analytics_session_percentage",
11541157
"rum_replay_sessions_usage",
11551158
"rum_replay_sessions_percentage",
11561159
"rum_browser_mobile_sessions_usage",

0 commit comments

Comments
 (0)