azure-mgmt-agricultureplatform 1.0.0b1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. azure/mgmt/agricultureplatform/__init__.py +32 -0
  2. azure/mgmt/agricultureplatform/_client.py +137 -0
  3. azure/mgmt/agricultureplatform/_configuration.py +80 -0
  4. azure/mgmt/agricultureplatform/_patch.py +21 -0
  5. azure/mgmt/agricultureplatform/_utils/__init__.py +6 -0
  6. azure/mgmt/agricultureplatform/_utils/model_base.py +1337 -0
  7. azure/mgmt/agricultureplatform/_utils/serialization.py +2041 -0
  8. azure/mgmt/agricultureplatform/_version.py +9 -0
  9. azure/mgmt/agricultureplatform/aio/__init__.py +29 -0
  10. azure/mgmt/agricultureplatform/aio/_client.py +141 -0
  11. azure/mgmt/agricultureplatform/aio/_configuration.py +80 -0
  12. azure/mgmt/agricultureplatform/aio/_patch.py +21 -0
  13. azure/mgmt/agricultureplatform/aio/operations/__init__.py +27 -0
  14. azure/mgmt/agricultureplatform/aio/operations/_operations.py +1102 -0
  15. azure/mgmt/agricultureplatform/aio/operations/_patch.py +21 -0
  16. azure/mgmt/agricultureplatform/models/__init__.py +92 -0
  17. azure/mgmt/agricultureplatform/models/_enums.py +103 -0
  18. azure/mgmt/agricultureplatform/models/_models.py +1037 -0
  19. azure/mgmt/agricultureplatform/models/_patch.py +21 -0
  20. azure/mgmt/agricultureplatform/operations/__init__.py +27 -0
  21. azure/mgmt/agricultureplatform/operations/_operations.py +1303 -0
  22. azure/mgmt/agricultureplatform/operations/_patch.py +21 -0
  23. azure/mgmt/agricultureplatform/py.typed +1 -0
  24. azure_mgmt_agricultureplatform-1.0.0b1.dist-info/METADATA +94 -0
  25. azure_mgmt_agricultureplatform-1.0.0b1.dist-info/RECORD +28 -0
  26. azure_mgmt_agricultureplatform-1.0.0b1.dist-info/WHEEL +5 -0
  27. azure_mgmt_agricultureplatform-1.0.0b1.dist-info/licenses/LICENSE +21 -0
  28. azure_mgmt_agricultureplatform-1.0.0b1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,21 @@
1
+ # coding=utf-8
2
+ # --------------------------------------------------------------------------
3
+ # Copyright (c) Microsoft Corporation. All rights reserved.
4
+ # Licensed under the MIT License. See License.txt in the project root for license information.
5
+ # --------------------------------------------------------------------------
6
+ """Customize generated code here.
7
+
8
+ Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
9
+ """
10
+
11
+
12
+ __all__: list[str] = [] # Add all objects you want publicly available to users at this package level
13
+
14
+
15
+ def patch_sdk():
16
+ """Do not remove from this file.
17
+
18
+ `patch_sdk` is a last resort escape hatch that allows you to do customizations
19
+ you can't accomplish using the techniques described in
20
+ https://aka.ms/azsdk/python/dpcodegen/python/customize
21
+ """
@@ -0,0 +1 @@
1
+ # Marker file for PEP 561.
@@ -0,0 +1,94 @@
1
+ Metadata-Version: 2.4
2
+ Name: azure-mgmt-agricultureplatform
3
+ Version: 1.0.0b1
4
+ Summary: Microsoft Azure Agricultureplatform Management Client Library for Python
5
+ Author-email: Microsoft Corporation <azpysdkhelp@microsoft.com>
6
+ License-Expression: MIT
7
+ Project-URL: repository, https://github.com/Azure/azure-sdk-for-python
8
+ Keywords: azure,azure sdk
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Requires-Python: >=3.9
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: isodate>=0.6.1
22
+ Requires-Dist: azure-mgmt-core>=1.6.0
23
+ Requires-Dist: typing-extensions>=4.6.0
24
+ Dynamic: license-file
25
+
26
+ # Microsoft Azure SDK for Python
27
+
28
+ This is the Microsoft Azure Agricultureplatform Management Client Library.
29
+ This package has been tested with Python 3.9+.
30
+ For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
31
+
32
+ ## _Disclaimer_
33
+
34
+ _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_
35
+
36
+ ## Getting started
37
+
38
+ ### Prerequisites
39
+
40
+ - Python 3.9+ is required to use this package.
41
+ - [Azure subscription](https://azure.microsoft.com/free/)
42
+
43
+ ### Install the package
44
+
45
+ ```bash
46
+ pip install azure-mgmt-agricultureplatform
47
+ pip install azure-identity
48
+ ```
49
+
50
+ ### Authentication
51
+
52
+ By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configuration of the following environment variables.
53
+
54
+ - `AZURE_CLIENT_ID` for Azure client ID.
55
+ - `AZURE_TENANT_ID` for Azure tenant ID.
56
+ - `AZURE_CLIENT_SECRET` for Azure client secret.
57
+
58
+ In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
59
+
60
+ With above configuration, client can be authenticated by following code:
61
+
62
+ ```python
63
+ from azure.identity import DefaultAzureCredential
64
+ from azure.mgmt.agricultureplatform import AgriculturePlatformMgmtClient
65
+ import os
66
+
67
+ sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
68
+ client = AgriculturePlatformMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
69
+ ```
70
+
71
+ ## Examples
72
+
73
+ Code samples for this package can be found at:
74
+ - [Search Agricultureplatform Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
75
+ - [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
76
+
77
+
78
+ ## Troubleshooting
79
+
80
+ ## Next steps
81
+
82
+ ## Provide Feedback
83
+
84
+ If you encounter any bugs or have suggestions, please file an issue in the
85
+ [Issues](https://github.com/Azure/azure-sdk-for-python/issues)
86
+ section of the project.
87
+
88
+ # Release History
89
+
90
+ ## 1.0.0b1 (2026-02-05)
91
+
92
+ ### Other Changes
93
+
94
+ - Initial version
@@ -0,0 +1,28 @@
1
+ azure/mgmt/agricultureplatform/__init__.py,sha256=uoZY6IO7SboypGP24RZZVo6i_vySlwp__vC-pzJyG7I,1054
2
+ azure/mgmt/agricultureplatform/_client.py,sha256=fpjzfDoItzTbvQE1SEvk_-dD3KIhZj7BxJYzKejnlNQ,6244
3
+ azure/mgmt/agricultureplatform/_configuration.py,sha256=WJ263GG7dsJGynXj9varsL6BIIwzuQF7ORstZjBqSkI,4014
4
+ azure/mgmt/agricultureplatform/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
5
+ azure/mgmt/agricultureplatform/_version.py,sha256=O4QAKqUqd5NYgBOMaio5NlyJfhohrHXcqV8Xdbpuh50,486
6
+ azure/mgmt/agricultureplatform/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
7
+ azure/mgmt/agricultureplatform/_utils/__init__.py,sha256=nh5swTUwCBe3xsb9n60QMcuJ33d89Itwx7q9V-oDOUE,450
8
+ azure/mgmt/agricultureplatform/_utils/model_base.py,sha256=_gvNGFrsOn1ijmwkCN_Bwpi3NFEWElVCcBoODJ5ry_E,50190
9
+ azure/mgmt/agricultureplatform/_utils/serialization.py,sha256=swIoE4Jt5ZU2lWpsyfjw5hhbvTjVXDvFWFAi-LIRxbw,82386
10
+ azure/mgmt/agricultureplatform/aio/__init__.py,sha256=1XBg1aJ3DHovmVfTvUCYMsRdlWFrmFfuuWyov1I5-IM,1001
11
+ azure/mgmt/agricultureplatform/aio/_client.py,sha256=L80vcFna8MWXU4orlTL6Lg6UgA6B9i4MG-TBwqcczAQ,6429
12
+ azure/mgmt/agricultureplatform/aio/_configuration.py,sha256=isJpRGs0t0Flx5kcbR6UwLqXjODUTkoO1CW7xODxIhE,4062
13
+ azure/mgmt/agricultureplatform/aio/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
14
+ azure/mgmt/agricultureplatform/aio/operations/__init__.py,sha256=MQ0Atw0brVSMXdbHMx5dhbD_7nDleUMWPm0jF43Au9A,1005
15
+ azure/mgmt/agricultureplatform/aio/operations/_operations.py,sha256=AIHm1xCCAqgIjMpnTlpTggY1DVK0gRtW5m_A0rzHzbk,48240
16
+ azure/mgmt/agricultureplatform/aio/operations/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
17
+ azure/mgmt/agricultureplatform/models/__init__.py,sha256=Hni9ldfiRWPLAPEzk41ME7tjDMOteBmywKVGWmt3oNU,2537
18
+ azure/mgmt/agricultureplatform/models/_enums.py,sha256=MLbxRIdGzN_NUAcFS3kbuUSkVX6m5ybgWLgdhu6kLTs,3625
19
+ azure/mgmt/agricultureplatform/models/_models.py,sha256=-B52_1S7Vj8Gw760UCO1mGXV7KNApZBcqoaZj8Fq0RM,44353
20
+ azure/mgmt/agricultureplatform/models/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
21
+ azure/mgmt/agricultureplatform/operations/__init__.py,sha256=MQ0Atw0brVSMXdbHMx5dhbD_7nDleUMWPm0jF43Au9A,1005
22
+ azure/mgmt/agricultureplatform/operations/_operations.py,sha256=uOKiKI1zZzwnyaYiyF1pnq82iP2Gxm_TXurkuBIc8l4,57120
23
+ azure/mgmt/agricultureplatform/operations/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
24
+ azure_mgmt_agricultureplatform-1.0.0b1.dist-info/licenses/LICENSE,sha256=_VMkgdgo4ToLE8y1mOAjOKNhd0BnWoYu5r3BVBto6T0,1073
25
+ azure_mgmt_agricultureplatform-1.0.0b1.dist-info/METADATA,sha256=14ui3gLtEBw3F8vSsEfAccmUVTpbwYXo4xGh8QF2LSs,3162
26
+ azure_mgmt_agricultureplatform-1.0.0b1.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
27
+ azure_mgmt_agricultureplatform-1.0.0b1.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
28
+ azure_mgmt_agricultureplatform-1.0.0b1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (77.0.3)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ Copyright (c) Microsoft Corporation.
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.