@@ -98,6 +98,7 @@ def create(
9898 config : project_create_params .Config ,
9999 name : str ,
100100 organization_id : str ,
101+ auto_clustering_enabled : bool | NotGiven = NOT_GIVEN ,
101102 description : Optional [str ] | NotGiven = NOT_GIVEN ,
102103 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
103104 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -125,6 +126,7 @@ def create(
125126 "config" : config ,
126127 "name" : name ,
127128 "organization_id" : organization_id ,
129+ "auto_clustering_enabled" : auto_clustering_enabled ,
128130 "description" : description ,
129131 },
130132 project_create_params .ProjectCreateParams ,
@@ -174,6 +176,7 @@ def update(
174176 * ,
175177 config : project_update_params .Config ,
176178 name : str ,
179+ auto_clustering_enabled : bool | NotGiven = NOT_GIVEN ,
177180 description : Optional [str ] | NotGiven = NOT_GIVEN ,
178181 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
179182 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -202,6 +205,7 @@ def update(
202205 {
203206 "config" : config ,
204207 "name" : name ,
208+ "auto_clustering_enabled" : auto_clustering_enabled ,
205209 "description" : description ,
206210 },
207211 project_update_params .ProjectUpdateParams ,
@@ -641,6 +645,7 @@ async def create(
641645 config : project_create_params .Config ,
642646 name : str ,
643647 organization_id : str ,
648+ auto_clustering_enabled : bool | NotGiven = NOT_GIVEN ,
644649 description : Optional [str ] | NotGiven = NOT_GIVEN ,
645650 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
646651 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -668,6 +673,7 @@ async def create(
668673 "config" : config ,
669674 "name" : name ,
670675 "organization_id" : organization_id ,
676+ "auto_clustering_enabled" : auto_clustering_enabled ,
671677 "description" : description ,
672678 },
673679 project_create_params .ProjectCreateParams ,
@@ -717,6 +723,7 @@ async def update(
717723 * ,
718724 config : project_update_params .Config ,
719725 name : str ,
726+ auto_clustering_enabled : bool | NotGiven = NOT_GIVEN ,
720727 description : Optional [str ] | NotGiven = NOT_GIVEN ,
721728 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
722729 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -745,6 +752,7 @@ async def update(
745752 {
746753 "config" : config ,
747754 "name" : name ,
755+ "auto_clustering_enabled" : auto_clustering_enabled ,
748756 "description" : description ,
749757 },
750758 project_update_params .ProjectUpdateParams ,
0 commit comments