Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4351,6 +4351,7 @@ components:
- sca_fargate_usage
- sds_scanned_bytes_usage
- serverless_apps_usage
- serverless_apps_apm_usage
- siem_analyzed_logs_add_on_usage
- siem_ingested_bytes_usage
- snmp_usage
Expand Down Expand Up @@ -4438,6 +4439,7 @@ components:
- SCA_FARGATE_USAGE
- SDS_SCANNED_BYTES_USAGE
- SERVERLESS_APPS_USAGE
- SERVERLESS_APPS_APM_USAGE
- SIEM_ANALYZED_LOGS_ADD_ON_USAGE
- SIEM_INGESTED_BYTES_USAGE
- SNMP_USAGE
Expand Down Expand Up @@ -8892,6 +8894,8 @@ components:
- published_app_percentage
- serverless_apps_usage
- serverless_apps_percentage
- serverless_apps_apm_usage
- serverless_apps_apm_percentage
- snmp_usage
- snmp_percentage
- universal_service_monitoring_usage
Expand Down Expand Up @@ -9057,6 +9061,8 @@ components:
- PUBLISHED_APP_PERCENTAGE
- SERVERLESS_APPS_USAGE
- SERVERLESS_APPS_PERCENTAGE
- SERVERLESS_APPS_APM_USAGE
- SERVERLESS_APPS_APM_PERCENTAGE
- SNMP_USAGE
- SNMP_PERCENTAGE
- UNIVERSAL_SERVICE_MONITORING_USAGE
Expand Down Expand Up @@ -9714,6 +9720,14 @@ components:
description: The total Sensitive Data Scanner usage by tag(s).
format: double
type: number
serverless_apps_apm_percentage:
description: The percentage of Serverless Apps APM usage by tag(s).
format: double
type: number
serverless_apps_apm_usage:
description: The total Serverless Apps APM usage by tag(s).
format: double
type: number
serverless_apps_percentage:
description: The percentage of Serverless Apps usage by tag(s).
format: double
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export type HourlyUsageAttributionUsageType =
| typeof SCA_FARGATE_USAGE
| typeof SDS_SCANNED_BYTES_USAGE
| typeof SERVERLESS_APPS_USAGE
| typeof SERVERLESS_APPS_APM_USAGE
| typeof SIEM_ANALYZED_LOGS_ADD_ON_USAGE
| typeof SIEM_INGESTED_BYTES_USAGE
| typeof SNMP_USAGE
Expand Down Expand Up @@ -182,6 +183,7 @@ export const RUM_SESSION_REPLAY_ADD_ON_USAGE =
export const SCA_FARGATE_USAGE = "sca_fargate_usage";
export const SDS_SCANNED_BYTES_USAGE = "sds_scanned_bytes_usage";
export const SERVERLESS_APPS_USAGE = "serverless_apps_usage";
export const SERVERLESS_APPS_APM_USAGE = "serverless_apps_apm_usage";
export const SIEM_ANALYZED_LOGS_ADD_ON_USAGE =
"siem_analyzed_logs_add_on_usage";
export const SIEM_INGESTED_BYTES_USAGE = "siem_ingested_bytes_usage";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
| typeof PUBLISHED_APP_PERCENTAGE
| typeof SERVERLESS_APPS_USAGE
| typeof SERVERLESS_APPS_PERCENTAGE
| typeof SERVERLESS_APPS_APM_USAGE
| typeof SERVERLESS_APPS_APM_PERCENTAGE
| typeof SNMP_USAGE
| typeof SNMP_PERCENTAGE
| typeof UNIVERSAL_SERVICE_MONITORING_USAGE
Expand Down Expand Up @@ -288,6 +290,8 @@ export const PUBLISHED_APP_USAGE = "published_app_usage";
export const PUBLISHED_APP_PERCENTAGE = "published_app_percentage";
export const SERVERLESS_APPS_USAGE = "serverless_apps_usage";
export const SERVERLESS_APPS_PERCENTAGE = "serverless_apps_percentage";
export const SERVERLESS_APPS_APM_USAGE = "serverless_apps_apm_usage";
export const SERVERLESS_APPS_APM_PERCENTAGE = "serverless_apps_apm_percentage";
export const SNMP_USAGE = "snmp_usage";
export const SNMP_PERCENTAGE = "snmp_percentage";
export const UNIVERSAL_SERVICE_MONITORING_USAGE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,14 @@ export class MonthlyUsageAttributionValues {
* The total Sensitive Data Scanner usage by tag(s).
*/
"sdsScannedBytesUsage"?: number;
/**
* The percentage of Serverless Apps APM usage by tag(s).
*/
"serverlessAppsApmPercentage"?: number;
/**
* The total Serverless Apps APM usage by tag(s).
*/
"serverlessAppsApmUsage"?: number;
/**
* The percentage of Serverless Apps usage by tag(s).
*/
Expand Down Expand Up @@ -1407,6 +1415,16 @@ export class MonthlyUsageAttributionValues {
type: "number",
format: "double",
},
serverlessAppsApmPercentage: {
baseName: "serverless_apps_apm_percentage",
type: "number",
format: "double",
},
serverlessAppsApmUsage: {
baseName: "serverless_apps_apm_usage",
type: "number",
format: "double",
},
serverlessAppsPercentage: {
baseName: "serverless_apps_percentage",
type: "number",
Expand Down
3 changes: 3 additions & 0 deletions services/usage_metering/src/v1/models/TypingInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ export const TypingInfo: ModelTypingInfo = {
"sca_fargate_usage",
"sds_scanned_bytes_usage",
"serverless_apps_usage",
"serverless_apps_apm_usage",
"siem_analyzed_logs_add_on_usage",
"siem_ingested_bytes_usage",
"snmp_usage",
Expand Down Expand Up @@ -287,6 +288,8 @@ export const TypingInfo: ModelTypingInfo = {
"published_app_percentage",
"serverless_apps_usage",
"serverless_apps_percentage",
"serverless_apps_apm_usage",
"serverless_apps_apm_percentage",
"snmp_usage",
"snmp_percentage",
"universal_service_monitoring_usage",
Expand Down
Loading