Skip to content

Commit da1a5ef

Browse files
committed
Add store api reference
1 parent f069ddf commit da1a5ef

File tree

9 files changed

+64
-0
lines changed

9 files changed

+64
-0
lines changed

python/docs/api/store/aws.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# AWS S3
2+
3+
::: async_tiff.store.S3Store
4+
::: async_tiff.store.S3ConfigInput
5+
options:
6+
show_if_no_docstring: true
7+
::: async_tiff.store.S3Config
8+
options:
9+
show_if_no_docstring: true
10+
::: async_tiff.store.S3Credential
11+
::: async_tiff.store.S3CredentialProvider

python/docs/api/store/azure.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Microsoft Azure
2+
3+
::: async_tiff.store.AzureStore
4+
::: async_tiff.store.AzureAccessKey
5+
::: async_tiff.store.AzureConfigInput
6+
options:
7+
show_if_no_docstring: true
8+
::: async_tiff.store.AzureConfig
9+
options:
10+
show_if_no_docstring: true
11+
::: async_tiff.store.AzureSASToken
12+
::: async_tiff.store.AzureBearerToken
13+
::: async_tiff.store.AzureCredential
14+
::: async_tiff.store.AzureCredentialProvider

python/docs/api/store/config.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Configuration
2+
3+
::: async_tiff.store.ClientConfig
4+
::: async_tiff.store.BackoffConfig
5+
::: async_tiff.store.RetryConfig

python/docs/api/store/gcs.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Google Cloud Storage
2+
3+
::: async_tiff.store.GCSStore
4+
::: async_tiff.store.GCSConfigInput
5+
options:
6+
show_if_no_docstring: true
7+
::: async_tiff.store.GCSConfig
8+
options:
9+
show_if_no_docstring: true
10+
::: async_tiff.store.GCSCredential
11+
::: async_tiff.store.GCSCredentialProvider

python/docs/api/store/http.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# HTTP
2+
3+
::: async_tiff.store.HTTPStore

python/docs/api/store/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# ObjectStore
2+
3+
::: async_tiff.store.from_url
4+
::: async_tiff.store.ObjectStore

python/docs/api/store/local.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Local
2+
3+
::: async_tiff.store.LocalStore

python/docs/api/store/memory.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Memory
2+
3+
::: async_tiff.store.MemoryStore

python/mkdocs.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@ extra:
2222

2323
nav:
2424
- "index.md"
25+
- API Reference:
26+
- async-tiff.store:
27+
- api/store/index.md
28+
- api/store/aws.md
29+
- api/store/gcs.md
30+
- api/store/azure.md
31+
- api/store/http.md
32+
- api/store/local.md
33+
- api/store/memory.md
34+
- api/store/config.md
2535
# - API Reference:
2636
# - api/rtree.md
2737
# - api/kdtree.md

0 commit comments

Comments
 (0)