@@ -16,7 +16,7 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
16
16
"""
17
17
Supported metrics for monthly usage attribution requests.
18
18
19
- :param value: Must be one of ["api_usage", "api_percentage", "apm_fargate_usage", "apm_fargate_percentage", "appsec_fargate_usage", "appsec_fargate_percentage", "apm_host_usage", "apm_host_percentage", "apm_usm_usage", "apm_usm_percentage", "appsec_usage", "appsec_percentage", "browser_usage", "browser_percentage", "ci_visibility_itr_usage", "ci_visibility_itr_percentage", "cloud_siem_usage", "cloud_siem_percentage", "container_excl_agent_usage", "container_excl_agent_percentage", "container_usage", "container_percentage", "cspm_containers_percentage", "cspm_containers_usage", "cspm_hosts_percentage", "cspm_hosts_usage", "custom_timeseries_usage", "custom_timeseries_percentage", "custom_ingested_timeseries_usage", "custom_ingested_timeseries_percentage", "cws_containers_percentage", "cws_containers_usage", "cws_hosts_percentage", "cws_hosts_usage", "dbm_hosts_percentage", "dbm_hosts_usage", "dbm_queries_percentage", "dbm_queries_usage", "estimated_indexed_logs_usage", "estimated_indexed_logs_percentage", "estimated_ingested_logs_usage", "estimated_ingested_logs_percentage", "estimated_indexed_spans_usage", "estimated_indexed_spans_percentage", "estimated_ingested_spans_usage", "estimated_ingested_spans_percentage", "fargate_usage", "fargate_percentage", "functions_usage", "functions_percentage", "infra_host_usage", "infra_host_percentage", "invocations_usage", "invocations_percentage", "mobile_app_testing_percentage", "mobile_app_testing_usage", "ndm_netflow_usage", "ndm_netflow_percentage", "npm_host_usage", "npm_host_percentage", "obs_pipeline_bytes_usage", "obs_pipeline_bytes_percentage", "profiled_container_usage", "profiled_container_percentage", "profiled_fargate_usage", "profiled_fargate_percentage", "profiled_host_usage", "profiled_host_percentage", "serverless_apps_usage", "serverless_apps_percentage", "snmp_usage", "snmp_percentage", "estimated_rum_sessions_usage", "estimated_rum_sessions_percentage", "universal_service_monitoring_usage", "universal_service_monitoring_percentage", "vuln_management_hosts_usage", "vuln_management_hosts_percentage", "sds_scanned_bytes_usage", "sds_scanned_bytes_percentage", "*"].
19
+ :param value: Must be one of ["api_usage", "api_percentage", "apm_fargate_usage", "apm_fargate_percentage", "appsec_fargate_usage", "appsec_fargate_percentage", "apm_host_usage", "apm_host_percentage", "apm_usm_usage", "apm_usm_percentage", "appsec_usage", "appsec_percentage", "browser_usage", "browser_percentage", "ci_visibility_itr_usage", "ci_visibility_itr_percentage", "cloud_siem_usage", "cloud_siem_percentage", "container_excl_agent_usage", "container_excl_agent_percentage", "container_usage", "container_percentage", "cspm_containers_percentage", "cspm_containers_usage", "cspm_hosts_percentage", "cspm_hosts_usage", "custom_timeseries_usage", "custom_timeseries_percentage", "custom_ingested_timeseries_usage", "custom_ingested_timeseries_percentage", "cws_containers_percentage", "cws_containers_usage", "cws_hosts_percentage", "cws_hosts_usage", "dbm_hosts_percentage", "dbm_hosts_usage", "dbm_queries_percentage", "dbm_queries_usage", "estimated_indexed_logs_usage", "estimated_indexed_logs_percentage", "estimated_ingested_logs_usage", "estimated_ingested_logs_percentage", "estimated_indexed_spans_usage", "estimated_indexed_spans_percentage", "estimated_ingested_spans_usage", "estimated_ingested_spans_percentage", "fargate_usage", "fargate_percentage", "functions_usage", "functions_percentage", "infra_host_usage", "infra_host_percentage", "invocations_usage", "invocations_percentage", "lambda_traced_invocations_usage", "lambda_traced_invocations_percentage", "mobile_app_testing_percentage", "mobile_app_testing_usage", "ndm_netflow_usage", "ndm_netflow_percentage", "npm_host_usage", "npm_host_percentage", "obs_pipeline_bytes_usage", "obs_pipeline_bytes_percentage", "profiled_container_usage", "profiled_container_percentage", "profiled_fargate_usage", "profiled_fargate_percentage", "profiled_host_usage", "profiled_host_percentage", "serverless_apps_usage", "serverless_apps_percentage", "snmp_usage", "snmp_percentage", "estimated_rum_sessions_usage", "estimated_rum_sessions_percentage", "universal_service_monitoring_usage", "universal_service_monitoring_percentage", "vuln_management_hosts_usage", "vuln_management_hosts_percentage", "sds_scanned_bytes_usage", "sds_scanned_bytes_percentage", "*"].
20
20
:type value: str
21
21
"""
22
22
@@ -75,6 +75,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
75
75
"infra_host_percentage" ,
76
76
"invocations_usage" ,
77
77
"invocations_percentage" ,
78
+ "lambda_traced_invocations_usage" ,
79
+ "lambda_traced_invocations_percentage" ,
78
80
"mobile_app_testing_percentage" ,
79
81
"mobile_app_testing_usage" ,
80
82
"ndm_netflow_usage" ,
@@ -157,6 +159,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
157
159
INFRA_HOST_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
158
160
INVOCATIONS_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
159
161
INVOCATIONS_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
162
+ LAMBDA_TRACED_INVOCATIONS_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
163
+ LAMBDA_TRACED_INVOCATIONS_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
160
164
MOBILE_APP_TESTING_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
161
165
MOBILE_APP_TESTING_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
162
166
NDM_NETFLOW_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
@@ -318,6 +322,12 @@ def openapi_types(_):
318
322
MonthlyUsageAttributionSupportedMetrics .INVOCATIONS_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
319
323
"invocations_percentage"
320
324
)
325
+ MonthlyUsageAttributionSupportedMetrics .LAMBDA_TRACED_INVOCATIONS_USAGE = MonthlyUsageAttributionSupportedMetrics (
326
+ "lambda_traced_invocations_usage"
327
+ )
328
+ MonthlyUsageAttributionSupportedMetrics .LAMBDA_TRACED_INVOCATIONS_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
329
+ "lambda_traced_invocations_percentage"
330
+ )
321
331
MonthlyUsageAttributionSupportedMetrics .MOBILE_APP_TESTING_USAGE = MonthlyUsageAttributionSupportedMetrics (
322
332
"mobile_app_testing_percentage"
323
333
)
0 commit comments