-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README changes + Test Recordings (#18334)
* Doc changes + recordings * Additional doc fixes * Removed redundant exception information * Fixed README typos * Fixed date
- Loading branch information
1 parent
6ad43ad
commit d207900
Showing
12 changed files
with
2,111 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Release History | ||
|
||
## 1.0.0b1 (Unreleased) | ||
## 1.0.0b1 (2021-04-27) | ||
|
||
* Initial (Preview) Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,52 +13,174 @@ pip install azure-iot-modelsrepository | |
``` | ||
|
||
### Prerequisites | ||
* A models repository following [repo_conventions][Azure IoT conventions] | ||
* A models repository following [Azure IoT conventions][repo_conventions] | ||
* The models repository can be hosted on the local filesystem or hosted on a webserver | ||
* Azure IoT hosts the global [global_azure_repo][Azure IoT Models Repository] which the client will use if no custom location is provided | ||
* Azure IoT hosts the global [Azure IoT Models Repository][global_azure_repo] which the client will use if no custom location is provided | ||
|
||
### Publishing Models | ||
Follow the [guide](https://docs.microsoft.com/azure/iot-pnp/concepts-model-repository#publish-a-model) to publish models to the global Azure IoT Models Repository. | ||
|
||
If using a custom local or remote repository, you can simply add your model files to a directory structure in the repository location, e.g. `dtmi/com/example/thermostat-1.json` | ||
|
||
### Authentication | ||
Currently, no authentication mechanisms are supported. The global endpoint is not tied to an Azure subscription and does not support authentication. All models published are meant for anonymous public consumption. | ||
|
||
## Key concepts | ||
|
||
The Azure IoT Models Repository enables builders to manage and share digital twin models. The models are [json_ld][JSON-LD] documents defined using the Digital Twins Definition Language ([dtdl_spec][DTDL]). | ||
The Azure IoT Models Repository enables builders to manage and share digital twin models. The models are [JSON-LD][json_ld] documents defined using the Digital Twins Definition Language ([DTDL][dtdl_spec]). | ||
|
||
The repository defines a pattern to store DTDL interfaces in a directory structure based on the Digital Twin Model Identifier (DTMI). You can locate an interface in the repository by converting the DTMI to a relative path. For example, the DTMI `dtmi:com:example:Thermostat;1` translates to `/dtmi/com/example/thermostat-1.json`. | ||
|
||
## Examples | ||
The following sections provide several snippets covering common Models Repository tasks: | ||
* [Initializing the ModelsRepositoryClient](#initializing-the-modelsrepositoryclient, "Initializing the ModelsRepositoryClient") | ||
* [Get Models](#modelsrepositoryclient---get-models, "Get models") | ||
* [DTMI Conventions](#dtmi-conventions, "DTMI Conventions") | ||
|
||
## Troubleshooting | ||
### Initializing the ModelsRepositoryClient | ||
|
||
#### Repository Location | ||
When no repository location is provided during instantiation, the Azure IoT Models Repository global endpoint (https://devicemodels.azure.com/) is used | ||
|
||
```python | ||
client = ModelsRepositoryClient() | ||
``` | ||
|
||
Alternatively, you can provide a custom location for where your repository is located via the optional `repository_location` keyword. The client accepts the following location formats: | ||
* Web URL - e.g. `"https://contoso.com/models/"` | ||
* Local Filesystem URI - e.g. `"file:///path/to/repository/"` | ||
* POSIX filepath - e.g. `"/path/to/repository/"` | ||
* Drive letter filepath - e.g. `"C:/path/to/repository/"` | ||
```python | ||
client = ModelsRepositoryClient(repository_location="https://contoso.com/models/") | ||
``` | ||
|
||
#### Dependency Resolution Mode | ||
The client can be configured with an optional `dependency_resolution` mode at instantiation, using one of the following values: | ||
* `'disabled'` - The client will not resolve model dependencies | ||
* `'enabled'` - The client will resolve any model dependencies | ||
* `'tryFromExpanded'` - The client will attempt to resolve models using an expanded model definition (falling back on `'enabled'` mode if not possible) | ||
|
||
```python | ||
client = ModelsRepositoryClient(dependency_resolution="enabled") | ||
``` | ||
|
||
If the `dependency_resolution` mode is not specified: | ||
* Clients configured for the Azure IoT Models Repository global endpoint will default to using `'tryFromExpanded'` | ||
* Clients configured for a custom location (remote or local) will default to using `'enabled'` | ||
|
||
#### Additional Options | ||
If you need to override default pipeline behavior from the [azure-core library][azure_core_docs], you can provide various [keyword arguments][azure_core_kwargs] during instantiation. | ||
|
||
#### Client cleanup | ||
When you are finished with your client, make sure to call `.close()` in order to free up resources | ||
|
||
```python | ||
client = ModelsRepositoryClient() | ||
# Do things | ||
client.close() | ||
``` | ||
|
||
In order to avoid having to do this, it is recommended that you use your client from within a context manager whenever possible, which will automatically close for you | ||
```python | ||
with ModelsRepositoryClient() as client: | ||
# Do things | ||
``` | ||
|
||
### ModelsRepositoryClient - Get Models | ||
Note that you must first [publish models to your repository](#publishing-models, "Publishing models") before you can fetch them. The following examples assume you are using the global Azure IoT Models Repository. | ||
|
||
Calling `.get_models()` will fetch the model at the provided DTMI and potentially its dependencies (depending on the dependency resolution mode). It will return a `dict` that maps DTMIs to model definitions. | ||
|
||
```python | ||
dtmi = "dtmi:com:example:TemperatureController;1" | ||
with ModelsRepositoryClient() as client: | ||
models = get_models(dtmi) | ||
print("{} resolved in {} interfaces".format(dtmi, len(models))) | ||
``` | ||
|
||
If you provide multiple DTMIs to the method, you can retrieve multiple models (and potentially their dependencies) at once | ||
```python | ||
dtmis = ["dtmi:com:example:TemperatureController;1", "dtmi:com:example:azuresphere:sampledevice;1"] | ||
with ModelsRepositoryClient() as client: | ||
models = get_models(dtmis) | ||
print("{} resolved in {} interfaces".format(dtmi, len(models))) | ||
``` | ||
|
||
By default the client will use whichever [dependency resolution mode](#dependency-resolution-mode, "Dependency resolution mode") it was configured with at instantiation when retrieving models. However, this behavior can be overridden by passing any of the valid options in as an optional keyword argument to `.get_models()` | ||
|
||
### General | ||
Models Repository clients raise exceptions defined in [azure_core_exceptions][azure-core]. | ||
```python | ||
dtmi = "dtmi:com:example:TemperatureController;1" | ||
with ModelsRepositoryClient(dependency_resolution="disabled") as client: | ||
models = get_models(dtmi, dependency_resolution="enabled") | ||
``` | ||
|
||
### DTMI Conventions | ||
The package contains a module called `dtmi_conventions`, which, when imported provides a series of utility operations for working with DTMIs | ||
|
||
```python | ||
# Returns True - this is a valid DTMI | ||
dtmi_conventions.is_valid_dtmi("dtmi:com:example:Thermostat;1") | ||
|
||
# Returns False - this is NOT a valid DTMI | ||
dtmi_conventions.is_valid_dtmi("dtmi:com:example:Thermostat") | ||
``` | ||
|
||
```python | ||
dtmi = "dtmi:com:example:Thermostat;1" | ||
|
||
# Local repository example | ||
repo_uri = "file:///path/to/repository" | ||
print(dtmi_conventions.get_model_uri(dtmi, repo_uri)) | ||
# Prints: "file:///path/to/repository/dtmi/com/example/thermostat-1.json" | ||
print(dtmi_conventions.get_model_uri(dtmi, repo_uri, expanded=True)) | ||
# Prints: "file:///path/to/repository/dtmi/com/example/thermostat-1.expanded.json" | ||
|
||
# Remote repository example | ||
repo_uri = "https://contoso.com/models/" | ||
print(dtmi_conventions.get_model_uri(dtmi, repo_uri)) | ||
# Prints: "https://contoso/com/models/dtmi/com/example/thermostat-1.json" | ||
print(dtmi_conventions.get_model_uri(dtmi, repo_uri, expanded=True)) | ||
# Prints: "https://contoso/com/models/dtmi/com/example/thermostat-1.expanded.json" | ||
``` | ||
|
||
|
||
## Troubleshooting | ||
|
||
### Logging | ||
This library uses the standard [logging_doc][logging] library for logging. Information about HTTP sessions (URLs, headers, etc.) is logged at `DEBUG` level. | ||
This library uses the standard [logging][logging_doc] library for logging. Information about HTTP sessions (URLs, headers, etc.) is logged at `DEBUG` level. | ||
|
||
### Exceptions | ||
Models Repository APIs may raise exceptions defined in [azure-core][azure_core_exceptions]. | ||
|
||
Additionally, they may raise exceptions defined in the `azure-iot-modelsrepository`: | ||
* `ModelError` - Indicates an error occurred while trying to parse/resolve a model definition. This generally means that there is a malformed model that does not comply with the [model DTDL specification][dtdl_spec] | ||
|
||
### Provide Feedback | ||
If you encounter bugs or have suggestions, please | ||
[open an issue](https://github.com/Azure/azure-sdk-for-python/issues). | ||
|
||
## Next steps | ||
|
||
Several samples are available in the Azure SDK for Python GitHub repository. These provide example code for Models Repository Client scenarios: | ||
### Samples | ||
Additional samples are available in the [samples repository][samples_repo]. | ||
|
||
### Contributing | ||
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com. | ||
|
||
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. | ||
|
||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments. | ||
|
||
* [client_configuration_sample][client_configuration_sample] - Configure a ModelsRepositoryClient for a local or remote repository | ||
* [get_models_sample][get_models_sample] - Retrieve models from a repository | ||
* [dtmi_conventions_sample][dtmi_conventions_sample] - Use utility functions to generate and validate DTMIs | ||
|
||
<!-- LINKS --> | ||
[azure_core_docs]: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-core/latest/azure.core.html | ||
[azure_core_exceptions]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/core/azure-core#azure-core-library-exceptions | ||
[client_configuration_sample]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/modelsrepository/azure-iot-modelsrepository/samples/client_configuration_sample.py | ||
[azure_core_kwargs]: https://aka.ms/azsdk/python/options | ||
[dtdl_spec]: https://github.com/Azure/opendigitaltwins-dtdl/blob/master/DTDL/v2/dtdlv2.md | ||
[dtmi_conventions_sample]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/modelsrepository/azure-iot-modelsrepository/samples/dtmi_conventions_sample.py | ||
[get_models_sample]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/modelsrepository/azure-iot-modelsrepository/samples/get_models_sample.py | ||
[global_azure_repo]: https://devicemodels.azure.com/ | ||
[json_ld]: https://json-ld.org/ | ||
[logging_doc]: https://docs.python.org/3.5/library/logging.html | ||
[pip]: https://pypi.org/project/pip/ | ||
[repo_conventions]: https://github.com/Azure/iot-plugandplay-models-tools/wiki | ||
|
||
## Contributing | ||
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com. | ||
|
||
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. | ||
|
||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments. | ||
[samples_repo]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/modelsrepository/azure-iot-modelsrepository/samples/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.