Skip to content

Commit 9a86a25

Browse files
committed
Iterating
1 parent 1dde485 commit 9a86a25

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

docs/upgrading.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,22 @@ from pinecone import Pinecone
7272
pc = Pinecone()
7373

7474
pc.describe_backup(backup_id='4698a618-7e56-4a44-93bc-fc8f1371aa36')
75+
# {
76+
# "backup_id": "4698a618-7e56-4a44-93bc-fc8f1371aa36",
77+
# "source_index_name": "example-index",
78+
# "source_index_id": "ec6fd44c-ab45-4873-97f3-f6b44b67e9bc",
79+
# "status": "Ready",
80+
# "cloud": "aws",
81+
# "region": "us-east-1",
82+
# "tags": {},
83+
# "name": "example-backup",
84+
# "description": "testing out backups",
85+
# "dimension": 768,
86+
# "record_count": 1000,
87+
# "namespace_count": 1,
88+
# "size_bytes": 289656,
89+
# "created_at": "2025-05-16T18:44:28.480691Z"
90+
# }
7591
```
7692

7793
You can use `list_backups` to see all of your backups and their current status. If you have a large number of backups, results will be paginated. You can control the pagination with optional parameters for `limit` and `pagination_token`.
@@ -104,9 +120,9 @@ pc.create_index_from_backup(
104120
)
105121
```
106122

107-
Under the hood, a restore job is created to handle taking data from your backup and loading it into the newly created serverless index. You can check status of pending restore jobs with `pc.list_restore_jobs()` or `pc.describe_restore_job(job_id='')`
123+
Under the hood, a restore job is created to handle taking data from your backup and loading it into the newly created serverless index. You can check status of pending restore jobs with `pc.list_restore_jobs()` or `pc.describe_restore_job()`
108124

109-
### Explore and discover models in our Inference API
125+
### Explore and discover models available in our Inference API
110126

111127
You can now fetch a dynamic list of models supported by the Inference API.
112128

@@ -159,7 +175,7 @@ pc.inference.get_model(model_name='pinecone-rerank-v0')
159175
# }
160176
```
161177

162-
### Initial client support for BYOC (Bring Your Own Cloud)
178+
### Client support for BYOC (Bring Your Own Cloud)
163179

164180
For customers using our [BYOC offering](https://docs.pinecone.io/guides/production/bring-your-own-cloud), you can now create indexes and list/describe indexes you have created in your cloud.
165181

0 commit comments

Comments
 (0)