@@ -170,6 +170,7 @@ def list(
170170 cursor : Optional [int ] | NotGiven = NOT_GIVEN ,
171171 limit : Optional [int ] | NotGiven = NOT_GIVEN ,
172172 slot : Optional [str ] | NotGiven = NOT_GIVEN ,
173+ tunnel_id : Optional [str ] | NotGiven = NOT_GIVEN ,
173174 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
174175 # The extra values given here take precedence over values defined on the client or passed to this method.
175176 extra_headers : Headers | None = None ,
@@ -185,6 +186,8 @@ def list(
185186
186187 slot: If specified, only show CNIs associated with the specified slot
187188
189+ tunnel_id: If specified, only show cnis associated with the specified tunnel id
190+
188191 extra_headers: Send extra headers
189192
190193 extra_query: Add additional query parameters to the request
@@ -207,6 +210,7 @@ def list(
207210 "cursor" : cursor ,
208211 "limit" : limit ,
209212 "slot" : slot ,
213+ "tunnel_id" : tunnel_id ,
210214 },
211215 cni_list_params .CNIListParams ,
212216 ),
@@ -436,6 +440,7 @@ async def list(
436440 cursor : Optional [int ] | NotGiven = NOT_GIVEN ,
437441 limit : Optional [int ] | NotGiven = NOT_GIVEN ,
438442 slot : Optional [str ] | NotGiven = NOT_GIVEN ,
443+ tunnel_id : Optional [str ] | NotGiven = NOT_GIVEN ,
439444 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
440445 # The extra values given here take precedence over values defined on the client or passed to this method.
441446 extra_headers : Headers | None = None ,
@@ -451,6 +456,8 @@ async def list(
451456
452457 slot: If specified, only show CNIs associated with the specified slot
453458
459+ tunnel_id: If specified, only show cnis associated with the specified tunnel id
460+
454461 extra_headers: Send extra headers
455462
456463 extra_query: Add additional query parameters to the request
@@ -473,6 +480,7 @@ async def list(
473480 "cursor" : cursor ,
474481 "limit" : limit ,
475482 "slot" : slot ,
483+ "tunnel_id" : tunnel_id ,
476484 },
477485 cni_list_params .CNIListParams ,
478486 ),
0 commit comments