@@ -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_fargate_usage", "profiled_fargate_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", "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", "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
@@ -43,6 +43,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
43
43
"cspm_hosts_usage" ,
44
44
"custom_timeseries_usage" ,
45
45
"custom_timeseries_percentage" ,
46
+ "custom_ingested_timeseries_usage" ,
47
+ "custom_ingested_timeseries_percentage" ,
46
48
"cws_containers_percentage" ,
47
49
"cws_containers_usage" ,
48
50
"cws_hosts_percentage" ,
@@ -103,6 +105,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
103
105
CSPM_HOSTS_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
104
106
CUSTOM_TIMESERIES_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
105
107
CUSTOM_TIMESERIES_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
108
+ CUSTOM_INGESTED_TIMESERIES_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
109
+ CUSTOM_INGESTED_TIMESERIES_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
106
110
CWS_CONTAINERS_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
107
111
CWS_CONTAINERS_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
108
112
CWS_HOSTS_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
@@ -196,6 +200,12 @@ def openapi_types(_):
196
200
MonthlyUsageAttributionSupportedMetrics .CUSTOM_TIMESERIES_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
197
201
"custom_timeseries_percentage"
198
202
)
203
+ MonthlyUsageAttributionSupportedMetrics .CUSTOM_INGESTED_TIMESERIES_USAGE = MonthlyUsageAttributionSupportedMetrics (
204
+ "custom_ingested_timeseries_usage"
205
+ )
206
+ MonthlyUsageAttributionSupportedMetrics .CUSTOM_INGESTED_TIMESERIES_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
207
+ "custom_ingested_timeseries_percentage"
208
+ )
199
209
MonthlyUsageAttributionSupportedMetrics .CWS_CONTAINERS_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
200
210
"cws_containers_percentage"
201
211
)
0 commit comments