@@ -80,6 +80,7 @@ def create(
8080 * ,
8181 account_id : str ,
8282 instance_id : str | NotGiven = NOT_GIVEN ,
83+ instance_retention : object | NotGiven = NOT_GIVEN ,
8384 params : object | NotGiven = NOT_GIVEN ,
8485 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
8586 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -109,6 +110,7 @@ def create(
109110 body = maybe_transform (
110111 {
111112 "instance_id" : instance_id ,
113+ "instance_retention" : instance_retention ,
112114 "params" : params ,
113115 },
114116 instance_create_params .InstanceCreateParams ,
@@ -303,6 +305,7 @@ async def create(
303305 * ,
304306 account_id : str ,
305307 instance_id : str | NotGiven = NOT_GIVEN ,
308+ instance_retention : object | NotGiven = NOT_GIVEN ,
306309 params : object | NotGiven = NOT_GIVEN ,
307310 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
308311 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -332,6 +335,7 @@ async def create(
332335 body = await async_maybe_transform (
333336 {
334337 "instance_id" : instance_id ,
338+ "instance_retention" : instance_retention ,
335339 "params" : params ,
336340 },
337341 instance_create_params .InstanceCreateParams ,
0 commit comments