@@ -34,9 +34,9 @@ describe('resource metrics', () => {
34
34
client . data . metrics . list (
35
35
{
36
36
dimension : 'asn' ,
37
- filters : [ 'string' , 'string' , 'string' ] ,
38
- metric_filters : [ 'string' , 'string' , 'string' ] ,
39
- timeframe : [ 'string' , 'string' , 'string' ] ,
37
+ filters : [ 'string' ] ,
38
+ metric_filters : [ 'string' ] ,
39
+ timeframe : [ 'string' ] ,
40
40
value : 'value' ,
41
41
} ,
42
42
{ path : '/_stainless_unknown_path' } ,
@@ -68,11 +68,11 @@ describe('resource metrics', () => {
68
68
client . data . metrics . getInsights (
69
69
'aggregate_startup_time' ,
70
70
{
71
- filters : [ 'string' , 'string' , 'string' ] ,
71
+ filters : [ 'string' ] ,
72
72
measurement : '95th' ,
73
- metric_filters : [ 'string' , 'string' , 'string' ] ,
73
+ metric_filters : [ 'string' ] ,
74
74
order_direction : 'asc' ,
75
- timeframe : [ 'string' , 'string' , 'string' ] ,
75
+ timeframe : [ 'string' ] ,
76
76
} ,
77
77
{ path : '/_stainless_unknown_path' } ,
78
78
) ,
@@ -102,12 +102,7 @@ describe('resource metrics', () => {
102
102
await expect (
103
103
client . data . metrics . getOverallValues (
104
104
'aggregate_startup_time' ,
105
- {
106
- filters : [ 'string' , 'string' , 'string' ] ,
107
- measurement : '95th' ,
108
- metric_filters : [ 'string' , 'string' , 'string' ] ,
109
- timeframe : [ 'string' , 'string' , 'string' ] ,
110
- } ,
105
+ { filters : [ 'string' ] , measurement : '95th' , metric_filters : [ 'string' ] , timeframe : [ 'string' ] } ,
111
106
{ path : '/_stainless_unknown_path' } ,
112
107
) ,
113
108
) . rejects . toThrow ( Mux . NotFoundError ) ;
@@ -137,12 +132,12 @@ describe('resource metrics', () => {
137
132
client . data . metrics . getTimeseries (
138
133
'aggregate_startup_time' ,
139
134
{
140
- filters : [ 'string' , 'string' , 'string' ] ,
135
+ filters : [ 'string' ] ,
141
136
group_by : 'minute' ,
142
137
measurement : '95th' ,
143
- metric_filters : [ 'string' , 'string' , 'string' ] ,
138
+ metric_filters : [ 'string' ] ,
144
139
order_direction : 'asc' ,
145
- timeframe : [ 'string' , 'string' , 'string' ] ,
140
+ timeframe : [ 'string' ] ,
146
141
} ,
147
142
{ path : '/_stainless_unknown_path' } ,
148
143
) ,
@@ -173,15 +168,15 @@ describe('resource metrics', () => {
173
168
client . data . metrics . listBreakdownValues (
174
169
'aggregate_startup_time' ,
175
170
{
176
- filters : [ 'string' , 'string' , 'string' ] ,
171
+ filters : [ 'string' ] ,
177
172
group_by : 'asn' ,
178
173
limit : 0 ,
179
174
measurement : '95th' ,
180
- metric_filters : [ 'string' , 'string' , 'string' ] ,
175
+ metric_filters : [ 'string' ] ,
181
176
order_by : 'negative_impact' ,
182
177
order_direction : 'asc' ,
183
178
page : 0 ,
184
- timeframe : [ 'string' , 'string' , 'string' ] ,
179
+ timeframe : [ 'string' ] ,
185
180
} ,
186
181
{ path : '/_stainless_unknown_path' } ,
187
182
) ,
0 commit comments