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.
- azure/mgmt/networkfunction/__init__.py +32 -0
- azure/mgmt/networkfunction/_client.py +172 -0
- azure/mgmt/networkfunction/_configuration.py +80 -0
- azure/mgmt/networkfunction/_patch.py +21 -0
- azure/mgmt/networkfunction/_utils/__init__.py +6 -0
- azure/mgmt/networkfunction/_utils/model_base.py +1770 -0
- azure/mgmt/networkfunction/_utils/serialization.py +2175 -0
- azure/mgmt/networkfunction/_version.py +9 -0
- azure/mgmt/networkfunction/aio/__init__.py +29 -0
- azure/mgmt/networkfunction/aio/_client.py +177 -0
- azure/mgmt/networkfunction/aio/_configuration.py +80 -0
- azure/mgmt/networkfunction/aio/_patch.py +21 -0
- azure/mgmt/networkfunction/aio/operations/__init__.py +33 -0
- azure/mgmt/networkfunction/aio/operations/_operations.py +1780 -0
- azure/mgmt/networkfunction/aio/operations/_patch.py +21 -0
- azure/mgmt/networkfunction/models/__init__.py +74 -0
- azure/mgmt/networkfunction/models/_enums.py +64 -0
- azure/mgmt/networkfunction/models/_models.py +718 -0
- azure/mgmt/networkfunction/models/_patch.py +21 -0
- azure/mgmt/networkfunction/operations/__init__.py +33 -0
- azure/mgmt/networkfunction/operations/_operations.py +2123 -0
- azure/mgmt/networkfunction/operations/_patch.py +21 -0
- azure/mgmt/networkfunction/py.typed +1 -0
- azure_mgmt_networkfunction-1.0.0.dist-info/METADATA +126 -0
- azure_mgmt_networkfunction-1.0.0.dist-info/RECORD +28 -0
- azure_mgmt_networkfunction-1.0.0.dist-info/WHEEL +5 -0
- azure_mgmt_networkfunction-1.0.0.dist-info/licenses/LICENSE +21 -0
- 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,74 @@
|
|
|
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
|
+
# Code generated by Microsoft (R) Python Code Generator.
|
|
6
|
+
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
+
# --------------------------------------------------------------------------
|
|
8
|
+
# pylint: disable=wrong-import-position
|
|
9
|
+
|
|
10
|
+
from typing import TYPE_CHECKING
|
|
11
|
+
|
|
12
|
+
if TYPE_CHECKING:
|
|
13
|
+
from ._patch import * # pylint: disable=unused-wildcard-import
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
from ._models import ( # type: ignore
|
|
17
|
+
AzureTrafficCollector,
|
|
18
|
+
AzureTrafficCollectorPropertiesFormat,
|
|
19
|
+
CloudError,
|
|
20
|
+
CloudErrorBody,
|
|
21
|
+
CollectorPolicy,
|
|
22
|
+
CollectorPolicyPropertiesFormat,
|
|
23
|
+
EmissionPoliciesPropertiesFormat,
|
|
24
|
+
EmissionPolicyDestination,
|
|
25
|
+
IngestionPolicyPropertiesFormat,
|
|
26
|
+
IngestionSourcesPropertiesFormat,
|
|
27
|
+
Operation,
|
|
28
|
+
OperationDisplay,
|
|
29
|
+
ProxyResource,
|
|
30
|
+
Resource,
|
|
31
|
+
ResourceReference,
|
|
32
|
+
SystemData,
|
|
33
|
+
TagsObject,
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
from ._enums import ( # type: ignore
|
|
37
|
+
CreatedByType,
|
|
38
|
+
DestinationType,
|
|
39
|
+
EmissionType,
|
|
40
|
+
IngestionType,
|
|
41
|
+
ProvisioningState,
|
|
42
|
+
SourceType,
|
|
43
|
+
)
|
|
44
|
+
from ._patch import __all__ as _patch_all
|
|
45
|
+
from ._patch import *
|
|
46
|
+
from ._patch import patch_sdk as _patch_sdk
|
|
47
|
+
|
|
48
|
+
__all__ = [
|
|
49
|
+
"AzureTrafficCollector",
|
|
50
|
+
"AzureTrafficCollectorPropertiesFormat",
|
|
51
|
+
"CloudError",
|
|
52
|
+
"CloudErrorBody",
|
|
53
|
+
"CollectorPolicy",
|
|
54
|
+
"CollectorPolicyPropertiesFormat",
|
|
55
|
+
"EmissionPoliciesPropertiesFormat",
|
|
56
|
+
"EmissionPolicyDestination",
|
|
57
|
+
"IngestionPolicyPropertiesFormat",
|
|
58
|
+
"IngestionSourcesPropertiesFormat",
|
|
59
|
+
"Operation",
|
|
60
|
+
"OperationDisplay",
|
|
61
|
+
"ProxyResource",
|
|
62
|
+
"Resource",
|
|
63
|
+
"ResourceReference",
|
|
64
|
+
"SystemData",
|
|
65
|
+
"TagsObject",
|
|
66
|
+
"CreatedByType",
|
|
67
|
+
"DestinationType",
|
|
68
|
+
"EmissionType",
|
|
69
|
+
"IngestionType",
|
|
70
|
+
"ProvisioningState",
|
|
71
|
+
"SourceType",
|
|
72
|
+
]
|
|
73
|
+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
|
|
74
|
+
_patch_sdk()
|
|
@@ -0,0 +1,64 @@
|
|
|
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
|
+
# Code generated by Microsoft (R) Python Code Generator.
|
|
6
|
+
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
+
# --------------------------------------------------------------------------
|
|
8
|
+
|
|
9
|
+
from enum import Enum
|
|
10
|
+
from azure.core import CaseInsensitiveEnumMeta
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class CreatedByType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
14
|
+
"""The kind of entity that created the resource."""
|
|
15
|
+
|
|
16
|
+
USER = "User"
|
|
17
|
+
"""The entity was created by a user."""
|
|
18
|
+
APPLICATION = "Application"
|
|
19
|
+
"""The entity was created by an application."""
|
|
20
|
+
MANAGED_IDENTITY = "ManagedIdentity"
|
|
21
|
+
"""The entity was created by a managed identity."""
|
|
22
|
+
KEY = "Key"
|
|
23
|
+
"""The entity was created by a key."""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class DestinationType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
27
|
+
"""Emission destination type."""
|
|
28
|
+
|
|
29
|
+
AZURE_MONITOR = "AzureMonitor"
|
|
30
|
+
"""AzureMonitor."""
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class EmissionType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
34
|
+
"""Emission format type."""
|
|
35
|
+
|
|
36
|
+
IPFIX = "IPFIX"
|
|
37
|
+
"""IPFIX."""
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class IngestionType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
41
|
+
"""The ingestion type."""
|
|
42
|
+
|
|
43
|
+
IPFIX = "IPFIX"
|
|
44
|
+
"""IPFIX."""
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class ProvisioningState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
48
|
+
"""The current provisioning state."""
|
|
49
|
+
|
|
50
|
+
SUCCEEDED = "Succeeded"
|
|
51
|
+
"""Succeeded."""
|
|
52
|
+
UPDATING = "Updating"
|
|
53
|
+
"""Updating."""
|
|
54
|
+
DELETING = "Deleting"
|
|
55
|
+
"""Deleting."""
|
|
56
|
+
FAILED = "Failed"
|
|
57
|
+
"""Failed."""
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
class SourceType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
|
|
61
|
+
"""Ingestion source type."""
|
|
62
|
+
|
|
63
|
+
RESOURCE = "Resource"
|
|
64
|
+
"""Resource."""
|