@@ -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_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", "indexed_logs_usage", "indexed_logs_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_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", "indexed_logs_usage", "indexed_logs_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", "cont_usage", "cont_percentage", "*"].
20
20
:type value: str
21
21
"""
22
22
@@ -77,6 +77,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
77
77
"snmp_percentage" ,
78
78
"estimated_rum_sessions_usage" ,
79
79
"estimated_rum_sessions_percentage" ,
80
+ "cont_usage" ,
81
+ "cont_percentage" ,
80
82
"*" ,
81
83
}
82
84
API_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
@@ -135,6 +137,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
135
137
SNMP_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
136
138
ESTIMATED_RUM_SESSIONS_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
137
139
ESTIMATED_RUM_SESSIONS_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
140
+ CONT_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
141
+ CONT_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
138
142
ALL : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
139
143
140
144
@cached_property
@@ -274,4 +278,6 @@ def openapi_types(_):
274
278
MonthlyUsageAttributionSupportedMetrics .ESTIMATED_RUM_SESSIONS_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
275
279
"estimated_rum_sessions_percentage"
276
280
)
281
+ MonthlyUsageAttributionSupportedMetrics .CONT_USAGE = MonthlyUsageAttributionSupportedMetrics ("cont_usage" )
282
+ MonthlyUsageAttributionSupportedMetrics .CONT_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics ("cont_percentage" )
277
283
MonthlyUsageAttributionSupportedMetrics .ALL = MonthlyUsageAttributionSupportedMetrics ("*" )
0 commit comments