azure-mgmt-networkfunction 1.0.0__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/networkfunction/__init__.py +32 -0
  2. azure/mgmt/networkfunction/_client.py +172 -0
  3. azure/mgmt/networkfunction/_configuration.py +80 -0
  4. azure/mgmt/networkfunction/_patch.py +21 -0
  5. azure/mgmt/networkfunction/_utils/__init__.py +6 -0
  6. azure/mgmt/networkfunction/_utils/model_base.py +1770 -0
  7. azure/mgmt/networkfunction/_utils/serialization.py +2175 -0
  8. azure/mgmt/networkfunction/_version.py +9 -0
  9. azure/mgmt/networkfunction/aio/__init__.py +29 -0
  10. azure/mgmt/networkfunction/aio/_client.py +177 -0
  11. azure/mgmt/networkfunction/aio/_configuration.py +80 -0
  12. azure/mgmt/networkfunction/aio/_patch.py +21 -0
  13. azure/mgmt/networkfunction/aio/operations/__init__.py +33 -0
  14. azure/mgmt/networkfunction/aio/operations/_operations.py +1780 -0
  15. azure/mgmt/networkfunction/aio/operations/_patch.py +21 -0
  16. azure/mgmt/networkfunction/models/__init__.py +74 -0
  17. azure/mgmt/networkfunction/models/_enums.py +64 -0
  18. azure/mgmt/networkfunction/models/_models.py +718 -0
  19. azure/mgmt/networkfunction/models/_patch.py +21 -0
  20. azure/mgmt/networkfunction/operations/__init__.py +33 -0
  21. azure/mgmt/networkfunction/operations/_operations.py +2123 -0
  22. azure/mgmt/networkfunction/operations/_patch.py +21 -0
  23. azure/mgmt/networkfunction/py.typed +1 -0
  24. azure_mgmt_networkfunction-1.0.0.dist-info/METADATA +126 -0
  25. azure_mgmt_networkfunction-1.0.0.dist-info/RECORD +28 -0
  26. azure_mgmt_networkfunction-1.0.0.dist-info/WHEEL +5 -0
  27. azure_mgmt_networkfunction-1.0.0.dist-info/licenses/LICENSE +21 -0
  28. azure_mgmt_networkfunction-1.0.0.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,126 @@
1
+ Metadata-Version: 2.4
2
+ Name: azure-mgmt-networkfunction
3
+ Version: 1.0.0
4
+ Summary: Microsoft Azure Networkfunction 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 :: 5 - Production/Stable
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Requires-Python: >=3.10
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 Networkfunction Management Client Library.
29
+ This package has been tested with Python 3.10+.
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.10+ 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-networkfunction
47
+ pip install azure-identity
48
+ ```
49
+
50
+ ### Authentication
51
+
52
+ By default, [Microsoft Entra](https://learn.microsoft.com/entra/fundamentals/what-is-entra) 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.networkfunction import TrafficCollectorMgmtClient
65
+ import os
66
+
67
+ sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
68
+ client = TrafficCollectorMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
69
+ ```
70
+
71
+ ## Examples
72
+
73
+ Code samples for this package can be found at:
74
+ - [Search Networkfunction 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.0 (2026-06-30)
91
+
92
+ ### Other Changes
93
+
94
+ - First GA
95
+
96
+ ## 1.0.0b2 (2026-03-16)
97
+
98
+ ### Features Added
99
+
100
+ - Model `TrafficCollectorMgmtClient` added parameter `cloud_setting` in method `__init__`
101
+ - Client `TrafficCollectorMgmtClient` added method `send_request`
102
+ - Model `AzureTrafficCollector` added property `properties`
103
+ - Model `CollectorPolicy` added property `properties`
104
+ - Model `ProxyResource` added property `system_data`
105
+ - Model `SystemData` added property `last_modified_at`
106
+ - Added model `AzureTrafficCollectorPropertiesFormat`
107
+ - Added model `CloudError`
108
+ - Added model `CollectorPolicyPropertiesFormat`
109
+ - Added model `Resource`
110
+
111
+ ### Breaking Changes
112
+
113
+ - This version introduces new hybrid models which have dual dictionary and model nature. Please follow https://aka.ms/azsdk/python/migrate/hybrid-models for migration.
114
+ - For the method breakings, please refer to https://aka.ms/azsdk/python/migrate/operations for migration.
115
+ - Model `AzureTrafficCollector` moved instance variable `collector_policies`, `virtual_hub` and `provisioning_state` under property `properties`
116
+ - Model `CollectorPolicy` moved instance variable `ingestion_policy`, `emission_policies` and `provisioning_state` under property `properties`
117
+ - Method `AzureTrafficCollectorsOperations.begin_create_or_update` moved its parameters `location`/`tags`/`virtual_hub` under property `parameters`
118
+ - Method `CollectorPoliciesOperations.begin_create_or_update` moved its parameters `location`/`tags`/`ingestion_policy`/`emission_policies` under property `parameters`
119
+
120
+ ### Other Changes
121
+
122
+ - Deleted model `ApiVersionParameter`/`TrackedResource`/`TrackedResourceSystemData` which actually were not used by SDK users
123
+
124
+ ## 1.0.0b1 (2022-11-18)
125
+
126
+ * Initial Release
@@ -0,0 +1,28 @@
1
+ azure/mgmt/networkfunction/__init__.py,sha256=GS-ZUWqQ1Ai2elDOyeyV-qpQL8w81RlfjtPQV1COH2k,1048
2
+ azure/mgmt/networkfunction/_client.py,sha256=S-Ezi6Zus-RFzq5PqwFTslIiEWKnGbzkxHAQbR98hI4,7994
3
+ azure/mgmt/networkfunction/_configuration.py,sha256=KAd6uQ3qHmvtFJKup3lwHpkokBB4denD3FxxjNhC0q8,4068
4
+ azure/mgmt/networkfunction/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
5
+ azure/mgmt/networkfunction/_version.py,sha256=6XJZP09ex93xcxld_ynq-4nfQ2kymk53HTapx-_Wkiw,484
6
+ azure/mgmt/networkfunction/py.typed,sha256=dcrsqJrcYfTX-ckLFJMTaj6mD8aDe2u0tkQG-ZYxnEg,26
7
+ azure/mgmt/networkfunction/_utils/__init__.py,sha256=nh5swTUwCBe3xsb9n60QMcuJ33d89Itwx7q9V-oDOUE,450
8
+ azure/mgmt/networkfunction/_utils/model_base.py,sha256=_Wu8A6hbJNdyZnJ8irfMKQmx74s_j54ZwD_11HWSoiw,66296
9
+ azure/mgmt/networkfunction/_utils/serialization.py,sha256=O-WvkHdX3DtsYKSY0CH8suQl--tktaN-OIjj6KkUue8,88447
10
+ azure/mgmt/networkfunction/aio/__init__.py,sha256=WM93sauNmP30E9doF-taNp3hzUssSSFAMafa9DBZx3Q,995
11
+ azure/mgmt/networkfunction/aio/_client.py,sha256=okoVhxXhsSe63IcGJD9kfi-fqtyrHBW7nitn49iZTzE,8196
12
+ azure/mgmt/networkfunction/aio/_configuration.py,sha256=PUCwWvoR2WEhMST_0lvvHdTNAiNpS036cg--NE06zik,4116
13
+ azure/mgmt/networkfunction/aio/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
14
+ azure/mgmt/networkfunction/aio/operations/__init__.py,sha256=9SDN1j-gWkxRWq6KIo1XSKD8RaveME8EdyqsmaSKn5U,1447
15
+ azure/mgmt/networkfunction/aio/operations/_operations.py,sha256=VW9ozR0Qdhde3nPJbD43zXP3WW3Z1OWA_Jbv_J_Fyno,79051
16
+ azure/mgmt/networkfunction/aio/operations/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
17
+ azure/mgmt/networkfunction/models/__init__.py,sha256=mMRelfH-vFTpOz784IplB6EoSrrUy95nTjs0mtkszHk,2069
18
+ azure/mgmt/networkfunction/models/_enums.py,sha256=kUn3gIZ1FapkpfUitlomP_9CmV2A_R38JHul5ZTG7jY,1849
19
+ azure/mgmt/networkfunction/models/_models.py,sha256=KJBVOaUnKhhTJuvUVQnTDpYrJKBcxh8VaATfJFH40z4,28222
20
+ azure/mgmt/networkfunction/models/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
21
+ azure/mgmt/networkfunction/operations/__init__.py,sha256=9SDN1j-gWkxRWq6KIo1XSKD8RaveME8EdyqsmaSKn5U,1447
22
+ azure/mgmt/networkfunction/operations/_operations.py,sha256=cudtlHfr4OpJ9yPv1zhZYphYRUgq16XJOdTb9h1BQU8,94178
23
+ azure/mgmt/networkfunction/operations/_patch.py,sha256=bRmors9r9iYkR1NFjnMBYkj7OVhnGo-_rhjh67IMApE,824
24
+ azure_mgmt_networkfunction-1.0.0.dist-info/licenses/LICENSE,sha256=fHekSorNm0H9wgmGSoAWs9QwtdDgkwmBjVt0RDNt90Q,1074
25
+ azure_mgmt_networkfunction-1.0.0.dist-info/METADATA,sha256=e7gb-IDohgLUmgH6ws_i9qzZnyY3IbooX41wyjbZhOI,4871
26
+ azure_mgmt_networkfunction-1.0.0.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
27
+ azure_mgmt_networkfunction-1.0.0.dist-info/top_level.txt,sha256=S7DhWV9m80TBzAhOFjxDUiNbKszzoThbnrSz5MpbHSQ,6
28
+ azure_mgmt_networkfunction-1.0.0.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.