@@ -54,6 +54,8 @@ def create(
5454 datasource_id : str ,
5555 * ,
5656 name : str ,
57+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
58+ value_index : bool | NotGiven = NOT_GIVEN ,
5759 schemas : Dict [str , meta_create_params .MetaCreateSchemas ] | NotGiven = NOT_GIVEN ,
5860 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
5961 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -88,6 +90,8 @@ def create(
8890 datasource_id : str ,
8991 * ,
9092 body : None ,
93+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
94+ value_index : bool | NotGiven = NOT_GIVEN ,
9195 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
9296 # The extra values given here take precedence over values defined on the client or passed to this method.
9397 extra_headers : Headers | None = None ,
@@ -119,6 +123,8 @@ def create(
119123 datasource_id : str ,
120124 * ,
121125 name : str | NotGiven = NOT_GIVEN ,
126+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
127+ value_index : bool | NotGiven = NOT_GIVEN ,
122128 schemas : Dict [str , meta_create_params .MetaCreateSchemas ] | NotGiven = NOT_GIVEN ,
123129 body : None | NotGiven = NOT_GIVEN ,
124130 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -141,7 +147,17 @@ def create(
141147 meta_create_params .MetaCreateParams ,
142148 ),
143149 options = make_request_options (
144- extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
150+ extra_headers = extra_headers ,
151+ extra_query = extra_query ,
152+ extra_body = extra_body ,
153+ timeout = timeout ,
154+ query = maybe_transform (
155+ {
156+ "async_process_meta" : async_process_meta ,
157+ "value_index" : value_index ,
158+ },
159+ meta_create_params .MetaCreateParams ,
160+ ),
145161 ),
146162 cast_to = object ,
147163 )
@@ -296,6 +312,8 @@ async def create(
296312 datasource_id : str ,
297313 * ,
298314 name : str ,
315+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
316+ value_index : bool | NotGiven = NOT_GIVEN ,
299317 schemas : Dict [str , meta_create_params .MetaCreateSchemas ] | NotGiven = NOT_GIVEN ,
300318 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
301319 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -330,6 +348,8 @@ async def create(
330348 datasource_id : str ,
331349 * ,
332350 body : None ,
351+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
352+ value_index : bool | NotGiven = NOT_GIVEN ,
333353 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
334354 # The extra values given here take precedence over values defined on the client or passed to this method.
335355 extra_headers : Headers | None = None ,
@@ -361,6 +381,8 @@ async def create(
361381 datasource_id : str ,
362382 * ,
363383 name : str | NotGiven = NOT_GIVEN ,
384+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
385+ value_index : bool | NotGiven = NOT_GIVEN ,
364386 schemas : Dict [str , meta_create_params .MetaCreateSchemas ] | NotGiven = NOT_GIVEN ,
365387 body : None | NotGiven = NOT_GIVEN ,
366388 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -383,7 +405,17 @@ async def create(
383405 meta_create_params .MetaCreateParams ,
384406 ),
385407 options = make_request_options (
386- extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
408+ extra_headers = extra_headers ,
409+ extra_query = extra_query ,
410+ extra_body = extra_body ,
411+ timeout = timeout ,
412+ query = await async_maybe_transform (
413+ {
414+ "async_process_meta" : async_process_meta ,
415+ "value_index" : value_index ,
416+ },
417+ meta_create_params .MetaCreateParams ,
418+ ),
387419 ),
388420 cast_to = object ,
389421 )
0 commit comments