You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/mkdocs/docs/api/arctic_uri.md
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,15 +37,33 @@ Please refer to [Azure](https://learn.microsoft.com/en-us/azure/storage/common/s
37
37
38
38
`options` is a string that specifies connection specific options as `<name>=<value>` pairs joined with `;` (the final key value pair should not include a trailing `;`).
39
39
40
-
Additional options specific for ArcticDB:
41
-
40
+
### Notable options
41
+
| Option | Description |
42
+
|---------------|---------------|
43
+
| DefaultEndpointsProtocol | Indicate whether the connection to the storage account through https or http |
44
+
| AccountName | Name of the storage account |
45
+
| AccountKey | Access key of the storage account |
46
+
| BlobEndpoint | Endpoint of the storage account; Usually this should end with `blob.core.windows.net`|
47
+
| SharedAccessSignature | Shared Access Signature for authentication |
48
+
| EndpointSuffix | Suffix of the endpoint |
49
+
50
+
### Additional options specific for ArcticDB
42
51
| Option | Description |
43
52
|---------------|---------------|
44
53
| Container | Azure container for blobs |
45
54
| Path_prefix | Path within Azure container to use for data storage |
46
55
| CA_cert_path | (Linux platform only) Azure CA certificate path. If not set, python ``ssl.get_default_verify_paths().cafile`` will be used. If the certificate cannot be found in the provided path, an Azure exception with no meaningful error code will be thrown. For more details, please see [here](https://github.com/Azure/azure-sdk-for-cpp/issues/4738). For example, `Failed to iterate azure blobs 'C' 0:`.|
47
56
| CA_cert_dir | (Linux platform only) Azure CA certificate directory. If not set, python ``ssl.get_default_verify_paths().capath`` will be used. Certificates can only be used if corresponding hash files [exist](https://www.openssl.org/docs/man1.0.2/man3/SSL_CTX_load_verify_locations.html). If the certificate cannot be found in the provided path, an Azure exception with no meaningful error code will be thrown. For more details, please see [here](https://github.com/Azure/azure-sdk-for-cpp/issues/4738). For example, `Failed to iterate azure blobs 'C' 0:`.|
For non-Linux platforms, neither `CA_cert_path` nor `CA_cert_dir` may be set. Please set CA certificate related options using operating system settings.
50
68
For Windows, please see [here](https://learn.microsoft.com/en-us/skype-sdk/sdn/articles/installing-the-trusted-root-certificate)
0 commit comments