@@ -132,8 +132,6 @@ type AuditLogListParams struct {
132132 Start time.Time `query:"start" api:"required" format:"date-time" json:"-"`
133133 // Filter by authentication strategy.
134134 AuthStrategy param.Opt [string ] `query:"auth_strategy,omitzero" json:"-"`
135- // Filter out results by HTTP method.
136- ExcludeMethod param.Opt [string ] `query:"exclude_method,omitzero" json:"-"`
137135 // Maximum number of results to return.
138136 Limit param.Opt [int64 ] `query:"limit,omitzero" json:"-"`
139137 // Filter by HTTP method.
@@ -144,6 +142,8 @@ type AuditLogListParams struct {
144142 Search param.Opt [string ] `query:"search,omitzero" json:"-"`
145143 // Filter by service name.
146144 Service param.Opt [string ] `query:"service,omitzero" json:"-"`
145+ // Filter out results by HTTP method.
146+ ExcludeMethod []string `query:"exclude_method,omitzero" json:"-"`
147147 // Additional user IDs to OR into free-text search.
148148 SearchUserID []string `query:"search_user_id,omitzero" json:"-"`
149149 paramObj
@@ -166,8 +166,6 @@ type AuditLogExportChunkParams struct {
166166 AuthStrategy param.Opt [string ] `query:"auth_strategy,omitzero" json:"-"`
167167 // Opaque cursor from X-Next-Cursor for the next chunk of older records.
168168 Cursor param.Opt [string ] `query:"cursor,omitzero" json:"-"`
169- // Filter out results by HTTP method.
170- ExcludeMethod param.Opt [string ] `query:"exclude_method,omitzero" json:"-"`
171169 // Maximum number of records to return in this chunk.
172170 Limit param.Opt [int64 ] `query:"limit,omitzero" json:"-"`
173171 // Filter by HTTP method.
@@ -176,6 +174,8 @@ type AuditLogExportChunkParams struct {
176174 Search param.Opt [string ] `query:"search,omitzero" json:"-"`
177175 // Filter by service name.
178176 Service param.Opt [string ] `query:"service,omitzero" json:"-"`
177+ // Filter out results by HTTP method.
178+ ExcludeMethod []string `query:"exclude_method,omitzero" json:"-"`
179179 // Encoding for the returned chunk.
180180 //
181181 // Any of "jsonl", "jsonl.gz".
0 commit comments