@@ -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", "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", "*"].
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", "*"].
20
20
:type value: str
21
21
"""
22
22
@@ -33,6 +33,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
33
33
"appsec_percentage" ,
34
34
"browser_usage" ,
35
35
"browser_percentage" ,
36
+ "container_excl_agent_usage" ,
37
+ "container_excl_agent_percentage" ,
36
38
"container_usage" ,
37
39
"container_percentage" ,
38
40
"cspm_containers_percentage" ,
@@ -75,8 +77,6 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
75
77
"snmp_percentage" ,
76
78
"estimated_rum_sessions_usage" ,
77
79
"estimated_rum_sessions_percentage" ,
78
- "cont_usage" ,
79
- "cont_percentage" ,
80
80
"*" ,
81
81
}
82
82
API_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
@@ -91,6 +91,8 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
91
91
APPSEC_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
92
92
BROWSER_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
93
93
BROWSER_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
94
+ CONTAINER_EXCL_AGENT_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
95
+ CONTAINER_EXCL_AGENT_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
94
96
CONTAINER_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
95
97
CONTAINER_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
96
98
CSPM_CONTAINERS_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
@@ -133,8 +135,6 @@ class MonthlyUsageAttributionSupportedMetrics(ModelSimple):
133
135
SNMP_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
134
136
ESTIMATED_RUM_SESSIONS_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
135
137
ESTIMATED_RUM_SESSIONS_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
136
- CONT_USAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
137
- CONT_PERCENTAGE : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
138
138
ALL : ClassVar ["MonthlyUsageAttributionSupportedMetrics" ]
139
139
140
140
@cached_property
@@ -166,6 +166,12 @@ def openapi_types(_):
166
166
MonthlyUsageAttributionSupportedMetrics .BROWSER_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
167
167
"browser_percentage"
168
168
)
169
+ MonthlyUsageAttributionSupportedMetrics .CONTAINER_EXCL_AGENT_USAGE = MonthlyUsageAttributionSupportedMetrics (
170
+ "container_excl_agent_usage"
171
+ )
172
+ MonthlyUsageAttributionSupportedMetrics .CONTAINER_EXCL_AGENT_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
173
+ "container_excl_agent_percentage"
174
+ )
169
175
MonthlyUsageAttributionSupportedMetrics .CONTAINER_USAGE = MonthlyUsageAttributionSupportedMetrics ("container_usage" )
170
176
MonthlyUsageAttributionSupportedMetrics .CONTAINER_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
171
177
"container_percentage"
@@ -268,6 +274,4 @@ def openapi_types(_):
268
274
MonthlyUsageAttributionSupportedMetrics .ESTIMATED_RUM_SESSIONS_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics (
269
275
"estimated_rum_sessions_percentage"
270
276
)
271
- MonthlyUsageAttributionSupportedMetrics .CONT_USAGE = MonthlyUsageAttributionSupportedMetrics ("cont_usage" )
272
- MonthlyUsageAttributionSupportedMetrics .CONT_PERCENTAGE = MonthlyUsageAttributionSupportedMetrics ("cont_percentage" )
273
277
MonthlyUsageAttributionSupportedMetrics .ALL = MonthlyUsageAttributionSupportedMetrics ("*" )
0 commit comments