@@ -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", "appsec_usage", "appsec_percentage", "browser_usage", "browser_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", "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", "npm_host_usage", "npm_host_percentage", "profiled_container_usage", "profiled_container_percentage", "profiled_host_usage", "profiled_host_percentage", "snmp_usage", "snmp_percentage", "estimated_rum_sessions_usage", "estimated_rum_sessions_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", "appsec_usage", "appsec_percentage", "browser_usage", "browser_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", "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", "npm_host_usage", "npm_host_percentage", "profiled_container_usage", "profiled_container_percentage", "profiled_fargate_usage", "profiled_fargate_percentage", "profiled_host_usage", "profiled_host_percentage", "snmp_usage", "snmp_percentage", "estimated_rum_sessions_usage", "estimated_rum_sessions_percentage", "*"].
20
20
:type value: str
21
21
"""
22
22
@@ -71,6 +71,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
71
71
"npm_host_percentage" ,
72
72
"profiled_container_usage" ,
73
73
"profiled_container_percentage" ,
74
+ "profiled_fargate_usage" ,
75
+ "profiled_fargate_percentage" ,
74
76
"profiled_host_usage" ,
75
77
"profiled_host_percentage" ,
76
78
"snmp_usage" ,
@@ -129,6 +131,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
129
131
NPM_HOST_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
130
132
PROFILED_CONTAINER_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
131
133
PROFILED_CONTAINER_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
134
+ PROFILED_FARGATE_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
135
+ PROFILED_FARGATE_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
132
136
PROFILED_HOST_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
133
137
PROFILED_HOST_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
134
138
SNMP_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
@@ -260,6 +264,12 @@ def openapi_types(_):
260
264
MonthlyUsageAttributionSupportedMetrics .PROFILED_CONTAINER_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
261
265
"profiled_container_percentage"
262
266
)
267
+ MonthlyUsageAttributionSupportedMetrics .PROFILED_FARGATE_USAGE = MonthlyUsageAttributionSupportedMetrics (
268
+ "profiled_fargate_usage"
269
+ )
270
+ MonthlyUsageAttributionSupportedMetrics .PROFILED_FARGATE_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
271
+ "profiled_fargate_percentage"
272
+ )
263
273
MonthlyUsageAttributionSupportedMetrics .PROFILED_HOST_USAGE = MonthlyUsageAttributionSupportedMetrics (
264
274
"profiled_host_usage"
265
275
)
0 commit comments