@@ -127,6 +127,7 @@ def update(
127127 description : str | NotGiven = NOT_GIVEN ,
128128 is_attributable : bool | NotGiven = NOT_GIVEN ,
129129 is_public : bool | NotGiven = NOT_GIVEN ,
130+ name : str | NotGiven = NOT_GIVEN ,
130131 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
131132 # The extra values given here take precedence over values defined on the client or passed to this method.
132133 extra_headers : Headers | None = None ,
@@ -148,6 +149,8 @@ def update(
148149
149150 is_public: The new is_public value of the feed
150151
152+ name: The new name of the feed
153+
151154 extra_headers: Send extra headers
152155
153156 extra_query: Add additional query parameters to the request
@@ -165,6 +168,7 @@ def update(
165168 "description" : description ,
166169 "is_attributable" : is_attributable ,
167170 "is_public" : is_public ,
171+ "name" : name ,
168172 },
169173 indicator_feed_update_params .IndicatorFeedUpdateParams ,
170174 ),
@@ -373,6 +377,7 @@ async def update(
373377 description : str | NotGiven = NOT_GIVEN ,
374378 is_attributable : bool | NotGiven = NOT_GIVEN ,
375379 is_public : bool | NotGiven = NOT_GIVEN ,
380+ name : str | NotGiven = NOT_GIVEN ,
376381 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
377382 # The extra values given here take precedence over values defined on the client or passed to this method.
378383 extra_headers : Headers | None = None ,
@@ -394,6 +399,8 @@ async def update(
394399
395400 is_public: The new is_public value of the feed
396401
402+ name: The new name of the feed
403+
397404 extra_headers: Send extra headers
398405
399406 extra_query: Add additional query parameters to the request
@@ -411,6 +418,7 @@ async def update(
411418 "description" : description ,
412419 "is_attributable" : is_attributable ,
413420 "is_public" : is_public ,
421+ "name" : name ,
414422 },
415423 indicator_feed_update_params .IndicatorFeedUpdateParams ,
416424 ),
0 commit comments