# Microsoft Azure SDK for Python
This is the Microsoft Azure Orbital Management Client Library.
This package has been tested with Python 3.7+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
## _Disclaimer_
_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_
## Getting started
### Prerequisites
- Python 3.7+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)
### Install the package
```bash
pip install azure-mgmt-orbital
pip install azure-identity
```
### Authentication
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.
- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
- `AZURE_CLIENT_SECRET` for Azure client secret.
In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
With above configuration, client can be authenticated by following code:
```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.orbital import AzureOrbital
import os
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = AzureOrbital(credential=DefaultAzureCredential(), subscription_id=sub_id)
```
## Examples
Code samples for this package can be found at [Orbital Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com and [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
## Troubleshooting
## Next steps
## Provide Feedback
If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project.
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-orbital%2FREADME.png)
# Release History
## 2.0.0 (2023-03-20)
### Features Added
- Model ContactProfile has a new parameter third_party_configurations
- Model ContactProfileProperties has a new parameter third_party_configurations
- Model ContactProfilesProperties has a new parameter third_party_configurations
- Model OperationResult has a new parameter next_link
- Model OperationResult has a new parameter value
- Operation ContactProfilesOperations.begin_create_or_update has a new optional parameter third_party_configurations
### Breaking Changes
- Model Contact no longer has parameter etag
- Model ContactProfile no longer has parameter etag
- Model Spacecraft no longer has parameter etag
- Parameter contact_profile of model Contact is now required
- Parameter expiration_date of model AuthorizedGroundstation is now required
- Parameter ground_station of model AuthorizedGroundstation is now required
- Parameter ground_station_name of model Contact is now required
- Parameter id of model AvailableContactsSpacecraft is now required
- Parameter id of model ContactParametersContactProfile is now required
- Parameter id of model ContactsPropertiesContactProfile is now required
- Parameter id of model ResourceReference is now required
- Parameter links of model ContactProfile is now required
- Parameter links of model Spacecraft is now required
- Parameter network_configuration of model ContactProfile is now required
- Parameter reservation_end_time of model Contact is now required
- Parameter reservation_start_time of model Contact is now required
- Parameter title_line of model Spacecraft is now required
- Parameter tle_line1 of model Spacecraft is now required
- Parameter tle_line2 of model Spacecraft is now required
- Removed operation AvailableGroundStationsOperations.get
## 1.1.0b1 (2022-11-30)
### Features Added
- Added model ContactsStatus
## 1.0.0 (2022-06-16)
**Features**
- Added operation ContactProfilesOperations.begin_update_tags
- Added operation SpacecraftsOperations.begin_update_tags
- Added operation group OperationsResultsOperations
- Model AvailableGroundStation has a new parameter release_mode
- Model Contact has a new parameter antenna_configuration
- Model Contact has a new parameter provisioning_state
- Model ContactProfile has a new parameter event_hub_uri
- Model ContactProfile has a new parameter network_configuration
- Model ContactProfile has a new parameter provisioning_state
- Model Spacecraft has a new parameter provisioning_state
- Model SpacecraftLink has a new parameter authorizations
**Breaking changes**
- Model ContactProfileLink has a new required parameter name
- Model ContactProfileLinkChannel has a new required parameter name
- Model Spacecraft no longer has parameter authorization_status
- Model Spacecraft no longer has parameter authorization_status_extended
- Model SpacecraftLink has a new required parameter name
- Operation ContactProfilesOperations.begin_create_or_update has a new parameter event_hub_uri
- Operation ContactProfilesOperations.begin_create_or_update has a new parameter network_configuration
- Operation ContactProfilesOperations.begin_create_or_update has a new parameter provisioning_state
- Operation ContactProfilesOperations.list has a new parameter skiptoken
- Operation ContactProfilesOperations.list_by_subscription has a new parameter skiptoken
- Operation ContactsOperations.list has a new parameter skiptoken
- Operation SpacecraftsOperations.begin_create_or_update has a new parameter provisioning_state
- Operation SpacecraftsOperations.list has a new parameter skiptoken
- Operation SpacecraftsOperations.list_by_subscription has a new parameter skiptoken
- Removed operation ContactProfilesOperations.update_tags
- Removed operation SpacecraftsOperations.update_tags
## 1.0.0b1 (2021-11-19)
* Initial Release
Raw data
{
"_id": null,
"home_page": "https://github.com/Azure/azure-sdk-for-python",
"name": "azure-mgmt-orbital",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "azure,azure sdk",
"author": "Microsoft Corporation",
"author_email": "azpysdkhelp@microsoft.com",
"download_url": "https://files.pythonhosted.org/packages/54/60/1a17391a7fc45286ad9fe25237e2823452f47f5914587f372ed1b91c4bc9/azure-mgmt-orbital-2.0.0.zip",
"platform": null,
"description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Orbital Management Client Library.\nThis package has been tested with Python 3.7+.\nFor a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).\n\n## _Disclaimer_\n\n_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_\n\n## Getting started\n\n### Prerequisites\n\n- Python 3.7+ is required to use this package.\n- [Azure subscription](https://azure.microsoft.com/free/)\n\n### Install the package\n\n```bash\npip install azure-mgmt-orbital\npip install azure-identity\n```\n\n### Authentication\n\nBy default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.\n\n- `AZURE_CLIENT_ID` for Azure client ID.\n- `AZURE_TENANT_ID` for Azure tenant ID.\n- `AZURE_CLIENT_SECRET` for Azure client secret.\n\nIn addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.\n\nWith above configuration, client can be authenticated by following code:\n\n```python\nfrom azure.identity import DefaultAzureCredential\nfrom azure.mgmt.orbital import AzureOrbital\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = AzureOrbital(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\n\nCode samples for this package can be found at [Orbital Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com and [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)\n\n\n## Troubleshooting\n\n## Next steps\n\n## Provide Feedback\n\nIf you encounter any bugs or have suggestions, please file an issue in the\n[Issues](https://github.com/Azure/azure-sdk-for-python/issues)\nsection of the project. \n\n\n![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-orbital%2FREADME.png)\n\n\n# Release History\n\n## 2.0.0 (2023-03-20)\n\n### Features Added\n\n - Model ContactProfile has a new parameter third_party_configurations\n - Model ContactProfileProperties has a new parameter third_party_configurations\n - Model ContactProfilesProperties has a new parameter third_party_configurations\n - Model OperationResult has a new parameter next_link\n - Model OperationResult has a new parameter value\n - Operation ContactProfilesOperations.begin_create_or_update has a new optional parameter third_party_configurations\n\n### Breaking Changes\n\n - Model Contact no longer has parameter etag\n - Model ContactProfile no longer has parameter etag\n - Model Spacecraft no longer has parameter etag\n - Parameter contact_profile of model Contact is now required\n - Parameter expiration_date of model AuthorizedGroundstation is now required\n - Parameter ground_station of model AuthorizedGroundstation is now required\n - Parameter ground_station_name of model Contact is now required\n - Parameter id of model AvailableContactsSpacecraft is now required\n - Parameter id of model ContactParametersContactProfile is now required\n - Parameter id of model ContactsPropertiesContactProfile is now required\n - Parameter id of model ResourceReference is now required\n - Parameter links of model ContactProfile is now required\n - Parameter links of model Spacecraft is now required\n - Parameter network_configuration of model ContactProfile is now required\n - Parameter reservation_end_time of model Contact is now required\n - Parameter reservation_start_time of model Contact is now required\n - Parameter title_line of model Spacecraft is now required\n - Parameter tle_line1 of model Spacecraft is now required\n - Parameter tle_line2 of model Spacecraft is now required\n - Removed operation AvailableGroundStationsOperations.get\n\n## 1.1.0b1 (2022-11-30)\n\n### Features Added\n\n - Added model ContactsStatus\n\n## 1.0.0 (2022-06-16)\n\n**Features**\n\n - Added operation ContactProfilesOperations.begin_update_tags\n - Added operation SpacecraftsOperations.begin_update_tags\n - Added operation group OperationsResultsOperations\n - Model AvailableGroundStation has a new parameter release_mode\n - Model Contact has a new parameter antenna_configuration\n - Model Contact has a new parameter provisioning_state\n - Model ContactProfile has a new parameter event_hub_uri\n - Model ContactProfile has a new parameter network_configuration\n - Model ContactProfile has a new parameter provisioning_state\n - Model Spacecraft has a new parameter provisioning_state\n - Model SpacecraftLink has a new parameter authorizations\n\n**Breaking changes**\n\n - Model ContactProfileLink has a new required parameter name\n - Model ContactProfileLinkChannel has a new required parameter name\n - Model Spacecraft no longer has parameter authorization_status\n - Model Spacecraft no longer has parameter authorization_status_extended\n - Model SpacecraftLink has a new required parameter name\n - Operation ContactProfilesOperations.begin_create_or_update has a new parameter event_hub_uri\n - Operation ContactProfilesOperations.begin_create_or_update has a new parameter network_configuration\n - Operation ContactProfilesOperations.begin_create_or_update has a new parameter provisioning_state\n - Operation ContactProfilesOperations.list has a new parameter skiptoken\n - Operation ContactProfilesOperations.list_by_subscription has a new parameter skiptoken\n - Operation ContactsOperations.list has a new parameter skiptoken\n - Operation SpacecraftsOperations.begin_create_or_update has a new parameter provisioning_state\n - Operation SpacecraftsOperations.list has a new parameter skiptoken\n - Operation SpacecraftsOperations.list_by_subscription has a new parameter skiptoken\n - Removed operation ContactProfilesOperations.update_tags\n - Removed operation SpacecraftsOperations.update_tags\n\n## 1.0.0b1 (2021-11-19)\n\n* Initial Release\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Microsoft Azure Orbital Management Client Library for Python",
"version": "2.0.0",
"split_keywords": [
"azure",
"azure sdk"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "becdd1d69de5268d373ccd7e07da963e623834a633d59a74b54a1307295c268a",
"md5": "f89adb41c268dd65d4052dd72602020b",
"sha256": "a8fb7e36728c6267d7e18b63ca0b1b62b4008fd8bd9f19a9ed75b8dd02afb33a"
},
"downloads": -1,
"filename": "azure_mgmt_orbital-2.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f89adb41c268dd65d4052dd72602020b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 98362,
"upload_time": "2023-03-20T05:46:38",
"upload_time_iso_8601": "2023-03-20T05:46:38.031785Z",
"url": "https://files.pythonhosted.org/packages/be/cd/d1d69de5268d373ccd7e07da963e623834a633d59a74b54a1307295c268a/azure_mgmt_orbital-2.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54601a17391a7fc45286ad9fe25237e2823452f47f5914587f372ed1b91c4bc9",
"md5": "e5a010844e7248dda86dbed85e1b8456",
"sha256": "fb49b569984ba5502178bfe8d4939a7434c721916d1e672fd5655397bc3363c8"
},
"downloads": -1,
"filename": "azure-mgmt-orbital-2.0.0.zip",
"has_sig": false,
"md5_digest": "e5a010844e7248dda86dbed85e1b8456",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 107397,
"upload_time": "2023-03-20T05:46:40",
"upload_time_iso_8601": "2023-03-20T05:46:40.563708Z",
"url": "https://files.pythonhosted.org/packages/54/60/1a17391a7fc45286ad9fe25237e2823452f47f5914587f372ed1b91c4bc9/azure-mgmt-orbital-2.0.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-03-20 05:46:40",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "Azure",
"github_project": "azure-sdk-for-python",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "azure-mgmt-orbital"
}