@@ -145,10 +145,10 @@ def update(
145145 account_id : str ,
146146 name : str ,
147147 policies : Iterable [TokenPolicy ],
148- status : Literal ["active" , "disabled" , "expired" ],
149148 condition : token_update_params .Condition | NotGiven = NOT_GIVEN ,
150149 expires_on : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
151150 not_before : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
151+ status : Literal ["active" , "disabled" , "expired" ] | NotGiven = NOT_GIVEN ,
152152 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
153153 # The extra values given here take precedence over values defined on the client or passed to this method.
154154 extra_headers : Headers | None = None ,
@@ -168,13 +168,13 @@ def update(
168168
169169 policies: List of access policies assigned to the token.
170170
171- status: Status of the token.
172-
173171 expires_on: The expiration time on or after which the JWT MUST NOT be accepted for
174172 processing.
175173
176174 not_before: The time before which the token MUST NOT be accepted for processing.
177175
176+ status: Status of the token.
177+
178178 extra_headers: Send extra headers
179179
180180 extra_query: Add additional query parameters to the request
@@ -193,10 +193,10 @@ def update(
193193 {
194194 "name" : name ,
195195 "policies" : policies ,
196- "status" : status ,
197196 "condition" : condition ,
198197 "expires_on" : expires_on ,
199198 "not_before" : not_before ,
199+ "status" : status ,
200200 },
201201 token_update_params .TokenUpdateParams ,
202202 ),
@@ -492,10 +492,10 @@ async def update(
492492 account_id : str ,
493493 name : str ,
494494 policies : Iterable [TokenPolicy ],
495- status : Literal ["active" , "disabled" , "expired" ],
496495 condition : token_update_params .Condition | NotGiven = NOT_GIVEN ,
497496 expires_on : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
498497 not_before : Union [str , datetime ] | NotGiven = NOT_GIVEN ,
498+ status : Literal ["active" , "disabled" , "expired" ] | NotGiven = NOT_GIVEN ,
499499 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
500500 # The extra values given here take precedence over values defined on the client or passed to this method.
501501 extra_headers : Headers | None = None ,
@@ -515,13 +515,13 @@ async def update(
515515
516516 policies: List of access policies assigned to the token.
517517
518- status: Status of the token.
519-
520518 expires_on: The expiration time on or after which the JWT MUST NOT be accepted for
521519 processing.
522520
523521 not_before: The time before which the token MUST NOT be accepted for processing.
524522
523+ status: Status of the token.
524+
525525 extra_headers: Send extra headers
526526
527527 extra_query: Add additional query parameters to the request
@@ -540,10 +540,10 @@ async def update(
540540 {
541541 "name" : name ,
542542 "policies" : policies ,
543- "status" : status ,
544543 "condition" : condition ,
545544 "expires_on" : expires_on ,
546545 "not_before" : not_before ,
546+ "status" : status ,
547547 },
548548 token_update_params .TokenUpdateParams ,
549549 ),
0 commit comments