@@ -205,7 +205,7 @@ def create(
205205 extra_body : Body | None = None ,
206206 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
207207 ) -> InstanceCreateResponse :
208- """Create a new instances .
208+ """Create a new instance .
209209
210210 Args:
211211 id: AI Search instance ID.
@@ -438,13 +438,10 @@ def update(
438438 extra_body : Body | None = None ,
439439 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
440440 ) -> InstanceUpdateResponse :
441- """Update instances.
441+ """
442+ Update instance.
442443
443444 Args:
444- id: AI Search instance ID.
445-
446- Lowercase alphanumeric, hyphens, and underscores.
447-
448445 index_method: Controls which storage backends are used during indexing. Defaults to
449446 vector-only.
450447
@@ -522,7 +519,7 @@ def list(
522519 name : str ,
523520 * ,
524521 account_id : str ,
525- namespace : Optional [ str ] | Omit = omit ,
522+ namespace : str | Omit = omit ,
526523 order_by : Literal ["created_at" ] | Omit = omit ,
527524 order_by_direction : Literal ["asc" , "desc" ] | Omit = omit ,
528525 page : int | Omit = omit ,
@@ -539,11 +536,17 @@ def list(
539536 List instances.
540537
541538 Args:
542- order_by: Order By Column Name
539+ namespace: Filter by namespace.
543540
544- order_by_direction: Order By Direction
541+ order_by: Field to order results by.
545542
546- search: Search by id
543+ order_by_direction: Order direction.
544+
545+ page: Page number (1-indexed).
546+
547+ per_page: Number of results per page.
548+
549+ search: Filter instances whose id contains this string (case-insensitive).
547550
548551 extra_headers: Send extra headers
549552
@@ -595,13 +598,10 @@ def delete(
595598 extra_body : Body | None = None ,
596599 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
597600 ) -> InstanceDeleteResponse :
598- """Delete instances.
601+ """
602+ Delete instance.
599603
600604 Args:
601- id: AI Search instance ID.
602-
603- Lowercase alphanumeric, hyphens, and underscores.
604-
605605 extra_headers: Send extra headers
606606
607607 extra_query: Add additional query parameters to the request
@@ -738,13 +738,10 @@ def read(
738738 extra_body : Body | None = None ,
739739 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
740740 ) -> InstanceReadResponse :
741- """Read instances.
741+ """
742+ Read instance.
742743
743744 Args:
744- id: AI Search instance ID.
745-
746- Lowercase alphanumeric, hyphens, and underscores.
747-
748745 extra_headers: Send extra headers
749746
750747 extra_query: Add additional query parameters to the request
@@ -1042,7 +1039,7 @@ async def create(
10421039 extra_body : Body | None = None ,
10431040 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
10441041 ) -> InstanceCreateResponse :
1045- """Create a new instances .
1042+ """Create a new instance .
10461043
10471044 Args:
10481045 id: AI Search instance ID.
@@ -1275,13 +1272,10 @@ async def update(
12751272 extra_body : Body | None = None ,
12761273 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
12771274 ) -> InstanceUpdateResponse :
1278- """Update instances.
1275+ """
1276+ Update instance.
12791277
12801278 Args:
1281- id: AI Search instance ID.
1282-
1283- Lowercase alphanumeric, hyphens, and underscores.
1284-
12851279 index_method: Controls which storage backends are used during indexing. Defaults to
12861280 vector-only.
12871281
@@ -1359,7 +1353,7 @@ def list(
13591353 name : str ,
13601354 * ,
13611355 account_id : str ,
1362- namespace : Optional [ str ] | Omit = omit ,
1356+ namespace : str | Omit = omit ,
13631357 order_by : Literal ["created_at" ] | Omit = omit ,
13641358 order_by_direction : Literal ["asc" , "desc" ] | Omit = omit ,
13651359 page : int | Omit = omit ,
@@ -1376,11 +1370,17 @@ def list(
13761370 List instances.
13771371
13781372 Args:
1379- order_by: Order By Column Name
1373+ namespace: Filter by namespace.
13801374
1381- order_by_direction: Order By Direction
1375+ order_by: Field to order results by.
13821376
1383- search: Search by id
1377+ order_by_direction: Order direction.
1378+
1379+ page: Page number (1-indexed).
1380+
1381+ per_page: Number of results per page.
1382+
1383+ search: Filter instances whose id contains this string (case-insensitive).
13841384
13851385 extra_headers: Send extra headers
13861386
@@ -1432,13 +1432,10 @@ async def delete(
14321432 extra_body : Body | None = None ,
14331433 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
14341434 ) -> InstanceDeleteResponse :
1435- """Delete instances.
1435+ """
1436+ Delete instance.
14361437
14371438 Args:
1438- id: AI Search instance ID.
1439-
1440- Lowercase alphanumeric, hyphens, and underscores.
1441-
14421439 extra_headers: Send extra headers
14431440
14441441 extra_query: Add additional query parameters to the request
@@ -1575,13 +1572,10 @@ async def read(
15751572 extra_body : Body | None = None ,
15761573 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
15771574 ) -> InstanceReadResponse :
1578- """Read instances.
1575+ """
1576+ Read instance.
15791577
15801578 Args:
1581- id: AI Search instance ID.
1582-
1583- Lowercase alphanumeric, hyphens, and underscores.
1584-
15851579 extra_headers: Send extra headers
15861580
15871581 extra_query: Add additional query parameters to the request
0 commit comments