@@ -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 )
@@ -331,6 +347,8 @@ async def create(
331347 datasource_id : str ,
332348 * ,
333349 name : str ,
350+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
351+ value_index : bool | NotGiven = NOT_GIVEN ,
334352 schemas : Dict [str , meta_create_params .MetaCreateSchemas ] | NotGiven = NOT_GIVEN ,
335353 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
336354 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -365,6 +383,8 @@ async def create(
365383 datasource_id : str ,
366384 * ,
367385 body : None ,
386+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
387+ value_index : bool | NotGiven = NOT_GIVEN ,
368388 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
369389 # The extra values given here take precedence over values defined on the client or passed to this method.
370390 extra_headers : Headers | None = None ,
@@ -396,6 +416,8 @@ async def create(
396416 datasource_id : str ,
397417 * ,
398418 name : str | NotGiven = NOT_GIVEN ,
419+ async_process_meta : bool | NotGiven = NOT_GIVEN ,
420+ value_index : bool | NotGiven = NOT_GIVEN ,
399421 schemas : Dict [str , meta_create_params .MetaCreateSchemas ] | NotGiven = NOT_GIVEN ,
400422 body : None | NotGiven = NOT_GIVEN ,
401423 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -418,7 +440,17 @@ async def create(
418440 meta_create_params .MetaCreateParams ,
419441 ),
420442 options = make_request_options (
421- extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
443+ extra_headers = extra_headers ,
444+ extra_query = extra_query ,
445+ extra_body = extra_body ,
446+ timeout = timeout ,
447+ query = await async_maybe_transform (
448+ {
449+ "async_process_meta" : async_process_meta ,
450+ "value_index" : value_index ,
451+ },
452+ meta_create_params .MetaCreateParams ,
453+ ),
422454 ),
423455 cast_to = object ,
424456 )
0 commit comments