methodazure 0.0.12__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 (32) hide show
  1. methodazure/__init__.py +51 -0
  2. methodazure/core/__init__.py +25 -0
  3. methodazure/core/datetime_utils.py +28 -0
  4. methodazure/core/pydantic_utilities.py +206 -0
  5. methodazure/core/serialization.py +170 -0
  6. methodazure/py.typed +0 -0
  7. methodazure/resources/__init__.py +50 -0
  8. methodazure/resources/azure/__init__.py +6 -0
  9. methodazure/resources/azure/resource_group.py +18 -0
  10. methodazure/resources/azure/subresource.py +17 -0
  11. methodazure/resources/interface/__init__.py +17 -0
  12. methodazure/resources/interface/interface_ip_configuration.py +24 -0
  13. methodazure/resources/interface/network_interface.py +20 -0
  14. methodazure/resources/interface/public_ip_address.py +21 -0
  15. methodazure/resources/interface/public_ip_address_dns_settings.py +19 -0
  16. methodazure/resources/interface/subnet.py +22 -0
  17. methodazure/resources/interface/transport_protocol.py +5 -0
  18. methodazure/resources/loadbalancer/__init__.py +27 -0
  19. methodazure/resources/loadbalancer/backend_address_pool.py +37 -0
  20. methodazure/resources/loadbalancer/load_balancer.py +40 -0
  21. methodazure/resources/loadbalancer/load_balancer_backend_address.py +37 -0
  22. methodazure/resources/loadbalancer/load_balancer_backend_address_admin_state.py +5 -0
  23. methodazure/resources/loadbalancer/load_balancer_report.py +21 -0
  24. methodazure/resources/loadbalancer/load_balancer_sku.py +20 -0
  25. methodazure/resources/loadbalancer/load_balancer_sku_name.py +5 -0
  26. methodazure/resources/loadbalancer/load_balancer_sku_tier.py +5 -0
  27. methodazure/resources/loadbalancer/load_balancing_rule.py +35 -0
  28. methodazure/resources/loadbalancer/nat_rule_port_mapping.py +19 -0
  29. methodazure/resources/loadbalancer/sync_mode.py +5 -0
  30. methodazure-0.0.12.dist-info/METADATA +25 -0
  31. methodazure-0.0.12.dist-info/RECORD +32 -0
  32. methodazure-0.0.12.dist-info/WHEEL +4 -0
@@ -0,0 +1,51 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from .resources import (
4
+ BackendAddressPool,
5
+ InterfaceIpConfiguration,
6
+ LoadBalancer,
7
+ LoadBalancerBackendAddress,
8
+ LoadBalancerBackendAddressAdminState,
9
+ LoadBalancerReport,
10
+ LoadBalancerSku,
11
+ LoadBalancerSkuName,
12
+ LoadBalancerSkuTier,
13
+ LoadBalancingRule,
14
+ NatRulePortMapping,
15
+ NetworkInterface,
16
+ PublicIpAddress,
17
+ PublicIpAddressDnsSettings,
18
+ ResourceGroup,
19
+ Subnet,
20
+ Subresource,
21
+ SyncMode,
22
+ TransportProtocol,
23
+ azure,
24
+ interface,
25
+ loadbalancer,
26
+ )
27
+
28
+ __all__ = [
29
+ "BackendAddressPool",
30
+ "InterfaceIpConfiguration",
31
+ "LoadBalancer",
32
+ "LoadBalancerBackendAddress",
33
+ "LoadBalancerBackendAddressAdminState",
34
+ "LoadBalancerReport",
35
+ "LoadBalancerSku",
36
+ "LoadBalancerSkuName",
37
+ "LoadBalancerSkuTier",
38
+ "LoadBalancingRule",
39
+ "NatRulePortMapping",
40
+ "NetworkInterface",
41
+ "PublicIpAddress",
42
+ "PublicIpAddressDnsSettings",
43
+ "ResourceGroup",
44
+ "Subnet",
45
+ "Subresource",
46
+ "SyncMode",
47
+ "TransportProtocol",
48
+ "azure",
49
+ "interface",
50
+ "loadbalancer",
51
+ ]
@@ -0,0 +1,25 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from .datetime_utils import serialize_datetime
4
+ from .pydantic_utilities import (
5
+ IS_PYDANTIC_V2,
6
+ UniversalBaseModel,
7
+ UniversalRootModel,
8
+ parse_obj_as,
9
+ universal_field_validator,
10
+ universal_root_validator,
11
+ update_forward_refs,
12
+ )
13
+ from .serialization import FieldMetadata
14
+
15
+ __all__ = [
16
+ "FieldMetadata",
17
+ "IS_PYDANTIC_V2",
18
+ "UniversalBaseModel",
19
+ "UniversalRootModel",
20
+ "parse_obj_as",
21
+ "serialize_datetime",
22
+ "universal_field_validator",
23
+ "universal_root_validator",
24
+ "update_forward_refs",
25
+ ]
@@ -0,0 +1,28 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+
5
+
6
+ def serialize_datetime(v: dt.datetime) -> str:
7
+ """
8
+ Serialize a datetime including timezone info.
9
+
10
+ Uses the timezone info provided if present, otherwise uses the current runtime's timezone info.
11
+
12
+ UTC datetimes end in "Z" while all other timezones are represented as offset from UTC, e.g. +05:00.
13
+ """
14
+
15
+ def _serialize_zoned_datetime(v: dt.datetime) -> str:
16
+ if v.tzinfo is not None and v.tzinfo.tzname(None) == dt.timezone.utc.tzname(None):
17
+ # UTC is a special case where we use "Z" at the end instead of "+00:00"
18
+ return v.isoformat().replace("+00:00", "Z")
19
+ else:
20
+ # Delegate to the typical +/- offset format
21
+ return v.isoformat()
22
+
23
+ if v.tzinfo is not None:
24
+ return _serialize_zoned_datetime(v)
25
+ else:
26
+ local_tz = dt.datetime.now().astimezone().tzinfo
27
+ localized_dt = v.replace(tzinfo=local_tz)
28
+ return _serialize_zoned_datetime(localized_dt)
@@ -0,0 +1,206 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ # nopycln: file
4
+ import datetime as dt
5
+ import typing
6
+ from collections import defaultdict
7
+
8
+ import typing_extensions
9
+
10
+ import pydantic
11
+
12
+ from .datetime_utils import serialize_datetime
13
+
14
+ IS_PYDANTIC_V2 = pydantic.VERSION.startswith("2.")
15
+
16
+ if IS_PYDANTIC_V2:
17
+ # isort will try to reformat the comments on these imports, which breaks mypy
18
+ # isort: off
19
+ from pydantic.v1.datetime_parse import ( # type: ignore # pyright: ignore[reportMissingImports] # Pydantic v2
20
+ parse_date as parse_date,
21
+ )
22
+ from pydantic.v1.datetime_parse import ( # pyright: ignore[reportMissingImports] # Pydantic v2
23
+ parse_datetime as parse_datetime,
24
+ )
25
+ from pydantic.v1.json import ( # type: ignore # pyright: ignore[reportMissingImports] # Pydantic v2
26
+ ENCODERS_BY_TYPE as encoders_by_type,
27
+ )
28
+ from pydantic.v1.typing import ( # type: ignore # pyright: ignore[reportMissingImports] # Pydantic v2
29
+ get_args as get_args,
30
+ )
31
+ from pydantic.v1.typing import ( # pyright: ignore[reportMissingImports] # Pydantic v2
32
+ get_origin as get_origin,
33
+ )
34
+ from pydantic.v1.typing import ( # pyright: ignore[reportMissingImports] # Pydantic v2
35
+ is_literal_type as is_literal_type,
36
+ )
37
+ from pydantic.v1.typing import ( # pyright: ignore[reportMissingImports] # Pydantic v2
38
+ is_union as is_union,
39
+ )
40
+ from pydantic.v1.fields import ModelField as ModelField # type: ignore # pyright: ignore[reportMissingImports] # Pydantic v2
41
+ else:
42
+ from pydantic.datetime_parse import parse_date as parse_date # type: ignore # Pydantic v1
43
+ from pydantic.datetime_parse import parse_datetime as parse_datetime # type: ignore # Pydantic v1
44
+ from pydantic.fields import ModelField as ModelField # type: ignore # Pydantic v1
45
+ from pydantic.json import ENCODERS_BY_TYPE as encoders_by_type # type: ignore # Pydantic v1
46
+ from pydantic.typing import get_args as get_args # type: ignore # Pydantic v1
47
+ from pydantic.typing import get_origin as get_origin # type: ignore # Pydantic v1
48
+ from pydantic.typing import is_literal_type as is_literal_type # type: ignore # Pydantic v1
49
+ from pydantic.typing import is_union as is_union # type: ignore # Pydantic v1
50
+
51
+ # isort: on
52
+
53
+
54
+ T = typing.TypeVar("T")
55
+ Model = typing.TypeVar("Model", bound=pydantic.BaseModel)
56
+
57
+
58
+ def parse_obj_as(type_: typing.Type[T], object_: typing.Any) -> T:
59
+ if IS_PYDANTIC_V2:
60
+ adapter = pydantic.TypeAdapter(type_) # type: ignore # Pydantic v2
61
+ return adapter.validate_python(object_)
62
+ else:
63
+ return pydantic.parse_obj_as(type_, object_)
64
+
65
+
66
+ def to_jsonable_with_fallback(
67
+ obj: typing.Any, fallback_serializer: typing.Callable[[typing.Any], typing.Any]
68
+ ) -> typing.Any:
69
+ if IS_PYDANTIC_V2:
70
+ from pydantic_core import to_jsonable_python
71
+
72
+ return to_jsonable_python(obj, fallback=fallback_serializer)
73
+ else:
74
+ return fallback_serializer(obj)
75
+
76
+
77
+ class UniversalBaseModel(pydantic.BaseModel):
78
+ class Config:
79
+ populate_by_name = True
80
+ smart_union = True
81
+ allow_population_by_field_name = True
82
+ json_encoders = {dt.datetime: serialize_datetime}
83
+
84
+ def json(self, **kwargs: typing.Any) -> str:
85
+ kwargs_with_defaults: typing.Any = {
86
+ "by_alias": True,
87
+ "exclude_unset": True,
88
+ **kwargs,
89
+ }
90
+ if IS_PYDANTIC_V2:
91
+ return super().model_dump_json(**kwargs_with_defaults) # type: ignore # Pydantic v2
92
+ else:
93
+ return super().json(**kwargs_with_defaults)
94
+
95
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
96
+ """
97
+ Override the default dict method to `exclude_unset` by default. This function patches
98
+ `exclude_unset` to work include fields within non-None default values.
99
+ """
100
+ _fields_set = self.__fields_set__
101
+
102
+ fields = _get_model_fields(self.__class__)
103
+ for name, field in fields.items():
104
+ if name not in _fields_set:
105
+ default = _get_field_default(field)
106
+
107
+ # If the default values are non-null act like they've been set
108
+ # This effectively allows exclude_unset to work like exclude_none where
109
+ # the latter passes through intentionally set none values.
110
+ if default != None:
111
+ _fields_set.add(name)
112
+
113
+ kwargs_with_defaults_exclude_unset: typing.Any = {
114
+ "by_alias": True,
115
+ "exclude_unset": True,
116
+ "include": _fields_set,
117
+ **kwargs,
118
+ }
119
+
120
+ if IS_PYDANTIC_V2:
121
+ return super().model_dump(**kwargs_with_defaults_exclude_unset) # type: ignore # Pydantic v2
122
+ else:
123
+ return super().dict(**kwargs_with_defaults_exclude_unset)
124
+
125
+
126
+ if IS_PYDANTIC_V2:
127
+
128
+ class V2RootModel(UniversalBaseModel, pydantic.RootModel): # type: ignore # Pydantic v2
129
+ pass
130
+
131
+ UniversalRootModel: typing_extensions.TypeAlias = V2RootModel # type: ignore
132
+ else:
133
+ UniversalRootModel: typing_extensions.TypeAlias = UniversalBaseModel # type: ignore
134
+
135
+
136
+ def encode_by_type(o: typing.Any) -> typing.Any:
137
+ encoders_by_class_tuples: typing.Dict[typing.Callable[[typing.Any], typing.Any], typing.Tuple[typing.Any, ...]] = (
138
+ defaultdict(tuple)
139
+ )
140
+ for type_, encoder in encoders_by_type.items():
141
+ encoders_by_class_tuples[encoder] += (type_,)
142
+
143
+ if type(o) in encoders_by_type:
144
+ return encoders_by_type[type(o)](o)
145
+ for encoder, classes_tuple in encoders_by_class_tuples.items():
146
+ if isinstance(o, classes_tuple):
147
+ return encoder(o)
148
+
149
+
150
+ def update_forward_refs(model: typing.Type["Model"]) -> None:
151
+ if IS_PYDANTIC_V2:
152
+ model.model_rebuild(raise_errors=False) # type: ignore # Pydantic v2
153
+ else:
154
+ model.update_forward_refs()
155
+
156
+
157
+ # Mirrors Pydantic's internal typing
158
+ AnyCallable = typing.Callable[..., typing.Any]
159
+
160
+
161
+ def universal_root_validator(
162
+ pre: bool = False,
163
+ ) -> typing.Callable[[AnyCallable], AnyCallable]:
164
+ def decorator(func: AnyCallable) -> AnyCallable:
165
+ if IS_PYDANTIC_V2:
166
+ return pydantic.model_validator(mode="before" if pre else "after")(func) # type: ignore # Pydantic v2
167
+ else:
168
+ return pydantic.root_validator(pre=pre)(func) # type: ignore # Pydantic v1
169
+
170
+ return decorator
171
+
172
+
173
+ def universal_field_validator(field_name: str, pre: bool = False) -> typing.Callable[[AnyCallable], AnyCallable]:
174
+ def decorator(func: AnyCallable) -> AnyCallable:
175
+ if IS_PYDANTIC_V2:
176
+ return pydantic.field_validator(field_name, mode="before" if pre else "after")(func) # type: ignore # Pydantic v2
177
+ else:
178
+ return pydantic.validator(field_name, pre=pre)(func) # type: ignore # Pydantic v1
179
+
180
+ return decorator
181
+
182
+
183
+ PydanticField = typing.Union[ModelField, pydantic.fields.FieldInfo]
184
+
185
+
186
+ def _get_model_fields(
187
+ model: typing.Type["Model"],
188
+ ) -> typing.Mapping[str, PydanticField]:
189
+ if IS_PYDANTIC_V2:
190
+ return model.model_fields # type: ignore # Pydantic v2
191
+ else:
192
+ return model.__fields__ # type: ignore # Pydantic v1
193
+
194
+
195
+ def _get_field_default(field: PydanticField) -> typing.Any:
196
+ try:
197
+ value = field.get_default() # type: ignore # Pydantic < v1.10.15
198
+ except:
199
+ value = field.default
200
+ if IS_PYDANTIC_V2:
201
+ from pydantic_core import PydanticUndefined
202
+
203
+ if value == PydanticUndefined:
204
+ return None
205
+ return value
206
+ return value
@@ -0,0 +1,170 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import collections
4
+ import typing
5
+
6
+ import typing_extensions
7
+
8
+
9
+ class FieldMetadata:
10
+ """
11
+ Metadata class used to annotate fields to provide additional information.
12
+
13
+ Example:
14
+ class MyDict(TypedDict):
15
+ field: typing.Annotated[str, FieldMetadata(alias="field_name")]
16
+
17
+ Will serialize: `{"field": "value"}`
18
+ To: `{"field_name": "value"}`
19
+ """
20
+
21
+ alias: str
22
+
23
+ def __init__(self, *, alias: str) -> None:
24
+ self.alias = alias
25
+
26
+
27
+ def convert_and_respect_annotation_metadata(
28
+ *,
29
+ object_: typing.Any,
30
+ annotation: typing.Any,
31
+ inner_type: typing.Optional[typing.Any] = None,
32
+ ) -> typing.Any:
33
+ """
34
+ Respect the metadata annotations on a field, such as aliasing. This function effectively
35
+ manipulates the dict-form of an object to respect the metadata annotations. This is primarily used for
36
+ TypedDicts, which cannot support aliasing out of the box, and can be extended for additional
37
+ utilities, such as defaults.
38
+
39
+ Parameters
40
+ ----------
41
+ object_ : typing.Any
42
+
43
+ annotation : type
44
+ The type we're looking to apply typing annotations from
45
+
46
+ inner_type : typing.Optional[type]
47
+
48
+ Returns
49
+ -------
50
+ typing.Any
51
+ """
52
+
53
+ if object_ is None:
54
+ return None
55
+ if inner_type is None:
56
+ inner_type = annotation
57
+
58
+ clean_type = _remove_annotations(inner_type)
59
+ if typing_extensions.is_typeddict(clean_type) and isinstance(object_, typing.Mapping):
60
+ return _convert_typeddict(object_, clean_type)
61
+
62
+ if (
63
+ # If you're iterating on a string, do not bother to coerce it to a sequence.
64
+ (not isinstance(object_, str))
65
+ and (
66
+ (
67
+ (
68
+ typing_extensions.get_origin(clean_type) == typing.List
69
+ or typing_extensions.get_origin(clean_type) == list
70
+ or clean_type == typing.List
71
+ )
72
+ and isinstance(object_, typing.List)
73
+ )
74
+ or (
75
+ (
76
+ typing_extensions.get_origin(clean_type) == typing.Set
77
+ or typing_extensions.get_origin(clean_type) == set
78
+ or clean_type == typing.Set
79
+ )
80
+ and isinstance(object_, typing.Set)
81
+ )
82
+ or (
83
+ (
84
+ typing_extensions.get_origin(clean_type) == typing.Sequence
85
+ or typing_extensions.get_origin(clean_type) == collections.abc.Sequence
86
+ or clean_type == typing.Sequence
87
+ )
88
+ and isinstance(object_, typing.Sequence)
89
+ )
90
+ )
91
+ ):
92
+ inner_type = typing_extensions.get_args(clean_type)[0]
93
+ return [
94
+ convert_and_respect_annotation_metadata(object_=item, annotation=annotation, inner_type=inner_type)
95
+ for item in object_
96
+ ]
97
+
98
+ if typing_extensions.get_origin(clean_type) == typing.Union:
99
+ # We should be able to ~relatively~ safely try to convert keys against all
100
+ # member types in the union, the edge case here is if one member aliases a field
101
+ # of the same name to a different name from another member
102
+ # Or if another member aliases a field of the same name that another member does not.
103
+ for member in typing_extensions.get_args(clean_type):
104
+ object_ = convert_and_respect_annotation_metadata(object_=object_, annotation=annotation, inner_type=member)
105
+ return object_
106
+
107
+ annotated_type = _get_annotation(annotation)
108
+ if annotated_type is None:
109
+ return object_
110
+
111
+ # If the object is not a TypedDict, a Union, or other container (list, set, sequence, etc.)
112
+ # Then we can safely call it on the recursive conversion.
113
+ return object_
114
+
115
+
116
+ def _convert_typeddict(object_: typing.Mapping[str, object], expected_type: typing.Any) -> typing.Mapping[str, object]:
117
+ converted_object: typing.Dict[str, object] = {}
118
+ annotations = typing_extensions.get_type_hints(expected_type, include_extras=True)
119
+ for key, value in object_.items():
120
+ type_ = annotations.get(key)
121
+ if type_ is None:
122
+ converted_object[key] = value
123
+ else:
124
+ converted_object[_alias_key(key, type_)] = convert_and_respect_annotation_metadata(
125
+ object_=value, annotation=type_
126
+ )
127
+ return converted_object
128
+
129
+
130
+ def _get_annotation(type_: typing.Any) -> typing.Optional[typing.Any]:
131
+ maybe_annotated_type = typing_extensions.get_origin(type_)
132
+ if maybe_annotated_type is None:
133
+ return None
134
+
135
+ if maybe_annotated_type == typing_extensions.NotRequired:
136
+ type_ = typing_extensions.get_args(type_)[0]
137
+ maybe_annotated_type = typing_extensions.get_origin(type_)
138
+
139
+ if maybe_annotated_type == typing_extensions.Annotated:
140
+ return type_
141
+
142
+ return None
143
+
144
+
145
+ def _remove_annotations(type_: typing.Any) -> typing.Any:
146
+ maybe_annotated_type = typing_extensions.get_origin(type_)
147
+ if maybe_annotated_type is None:
148
+ return type_
149
+
150
+ if maybe_annotated_type == typing_extensions.NotRequired:
151
+ return _remove_annotations(typing_extensions.get_args(type_)[0])
152
+
153
+ if maybe_annotated_type == typing_extensions.Annotated:
154
+ return _remove_annotations(typing_extensions.get_args(type_)[0])
155
+
156
+ return type_
157
+
158
+
159
+ def _alias_key(key: str, type_: typing.Any) -> str:
160
+ maybe_annotated_type = _get_annotation(type_)
161
+
162
+ if maybe_annotated_type is not None:
163
+ # The actual annotations are 1 onward, the first is the annotated type
164
+ annotations = typing_extensions.get_args(maybe_annotated_type)[1:]
165
+
166
+ for annotation in annotations:
167
+ if isinstance(annotation, FieldMetadata) and annotation.alias is not None:
168
+ return annotation.alias
169
+
170
+ return key
methodazure/py.typed ADDED
File without changes
@@ -0,0 +1,50 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from . import azure, interface, loadbalancer
4
+ from .azure import ResourceGroup, Subresource
5
+ from .interface import (
6
+ InterfaceIpConfiguration,
7
+ NetworkInterface,
8
+ PublicIpAddress,
9
+ PublicIpAddressDnsSettings,
10
+ Subnet,
11
+ TransportProtocol,
12
+ )
13
+ from .loadbalancer import (
14
+ BackendAddressPool,
15
+ LoadBalancer,
16
+ LoadBalancerBackendAddress,
17
+ LoadBalancerBackendAddressAdminState,
18
+ LoadBalancerReport,
19
+ LoadBalancerSku,
20
+ LoadBalancerSkuName,
21
+ LoadBalancerSkuTier,
22
+ LoadBalancingRule,
23
+ NatRulePortMapping,
24
+ SyncMode,
25
+ )
26
+
27
+ __all__ = [
28
+ "BackendAddressPool",
29
+ "InterfaceIpConfiguration",
30
+ "LoadBalancer",
31
+ "LoadBalancerBackendAddress",
32
+ "LoadBalancerBackendAddressAdminState",
33
+ "LoadBalancerReport",
34
+ "LoadBalancerSku",
35
+ "LoadBalancerSkuName",
36
+ "LoadBalancerSkuTier",
37
+ "LoadBalancingRule",
38
+ "NatRulePortMapping",
39
+ "NetworkInterface",
40
+ "PublicIpAddress",
41
+ "PublicIpAddressDnsSettings",
42
+ "ResourceGroup",
43
+ "Subnet",
44
+ "Subresource",
45
+ "SyncMode",
46
+ "TransportProtocol",
47
+ "azure",
48
+ "interface",
49
+ "loadbalancer",
50
+ ]
@@ -0,0 +1,6 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from .resource_group import ResourceGroup
4
+ from .subresource import Subresource
5
+
6
+ __all__ = ["ResourceGroup", "Subresource"]
@@ -0,0 +1,18 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
5
+ import typing
6
+ import pydantic
7
+
8
+
9
+ class ResourceGroup(UniversalBaseModel):
10
+ id: str
11
+ name: str
12
+
13
+ if IS_PYDANTIC_V2:
14
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
15
+ else:
16
+
17
+ class Config:
18
+ extra = pydantic.Extra.allow
@@ -0,0 +1,17 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
5
+ import typing
6
+ import pydantic
7
+
8
+
9
+ class Subresource(UniversalBaseModel):
10
+ id: str
11
+
12
+ if IS_PYDANTIC_V2:
13
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
14
+ else:
15
+
16
+ class Config:
17
+ extra = pydantic.Extra.allow
@@ -0,0 +1,17 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from .interface_ip_configuration import InterfaceIpConfiguration
4
+ from .network_interface import NetworkInterface
5
+ from .public_ip_address import PublicIpAddress
6
+ from .public_ip_address_dns_settings import PublicIpAddressDnsSettings
7
+ from .subnet import Subnet
8
+ from .transport_protocol import TransportProtocol
9
+
10
+ __all__ = [
11
+ "InterfaceIpConfiguration",
12
+ "NetworkInterface",
13
+ "PublicIpAddress",
14
+ "PublicIpAddressDnsSettings",
15
+ "Subnet",
16
+ "TransportProtocol",
17
+ ]
@@ -0,0 +1,24 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ import pydantic
6
+ from .public_ip_address import PublicIpAddress
7
+ from .subnet import Subnet
8
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
9
+
10
+
11
+ class InterfaceIpConfiguration(UniversalBaseModel):
12
+ id: str
13
+ name: str
14
+ type: typing.Optional[str] = None
15
+ private_ip_address: typing.Optional[str] = pydantic.Field(alias="privateIpAddress", default=None)
16
+ public_ip_address: typing.Optional[PublicIpAddress] = pydantic.Field(alias="publicIpAddress", default=None)
17
+ subnet: typing.Optional[Subnet] = None
18
+
19
+ if IS_PYDANTIC_V2:
20
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
21
+ else:
22
+
23
+ class Config:
24
+ extra = pydantic.Extra.allow
@@ -0,0 +1,20 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ import pydantic
6
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
7
+
8
+
9
+ class NetworkInterface(UniversalBaseModel):
10
+ id: str
11
+ name: str
12
+ network_security_group_id: typing.Optional[str] = pydantic.Field(alias="networkSecurityGroupID", default=None)
13
+ mac_address: typing.Optional[str] = pydantic.Field(alias="macAddress", default=None)
14
+
15
+ if IS_PYDANTIC_V2:
16
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
17
+ else:
18
+
19
+ class Config:
20
+ extra = pydantic.Extra.allow
@@ -0,0 +1,21 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ import typing
6
+ from .public_ip_address_dns_settings import PublicIpAddressDnsSettings
7
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
8
+
9
+
10
+ class PublicIpAddress(UniversalBaseModel):
11
+ id: str
12
+ location: str
13
+ ip_address: str = pydantic.Field(alias="ipAddress")
14
+ dns_settings: typing.Optional[PublicIpAddressDnsSettings] = pydantic.Field(alias="dnsSettings", default=None)
15
+
16
+ if IS_PYDANTIC_V2:
17
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
18
+ else:
19
+
20
+ class Config:
21
+ extra = pydantic.Extra.allow
@@ -0,0 +1,19 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
6
+ import typing
7
+
8
+
9
+ class PublicIpAddressDnsSettings(UniversalBaseModel):
10
+ domain_name_label: str = pydantic.Field(alias="domainNameLabel")
11
+ fqdn: str
12
+ reverse_fqdn: str = pydantic.Field(alias="reverseFqdn")
13
+
14
+ if IS_PYDANTIC_V2:
15
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
16
+ else:
17
+
18
+ class Config:
19
+ extra = pydantic.Extra.allow
@@ -0,0 +1,22 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ import pydantic
6
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
7
+
8
+
9
+ class Subnet(UniversalBaseModel):
10
+ id: str
11
+ name: str
12
+ type: typing.Optional[str] = None
13
+ address_prefix: typing.Optional[str] = pydantic.Field(alias="addressPrefix", default=None)
14
+ address_prefixes: typing.Optional[typing.List[str]] = pydantic.Field(alias="addressPrefixes", default=None)
15
+ network_security_group_id: typing.Optional[str] = pydantic.Field(alias="networkSecurityGroupID", default=None)
16
+
17
+ if IS_PYDANTIC_V2:
18
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
19
+ else:
20
+
21
+ class Config:
22
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ TransportProtocol = typing.Union[typing.Literal["Tcp", "Udp", "All"], typing.Any]
@@ -0,0 +1,27 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from .backend_address_pool import BackendAddressPool
4
+ from .load_balancer import LoadBalancer
5
+ from .load_balancer_backend_address import LoadBalancerBackendAddress
6
+ from .load_balancer_backend_address_admin_state import LoadBalancerBackendAddressAdminState
7
+ from .load_balancer_report import LoadBalancerReport
8
+ from .load_balancer_sku import LoadBalancerSku
9
+ from .load_balancer_sku_name import LoadBalancerSkuName
10
+ from .load_balancer_sku_tier import LoadBalancerSkuTier
11
+ from .load_balancing_rule import LoadBalancingRule
12
+ from .nat_rule_port_mapping import NatRulePortMapping
13
+ from .sync_mode import SyncMode
14
+
15
+ __all__ = [
16
+ "BackendAddressPool",
17
+ "LoadBalancer",
18
+ "LoadBalancerBackendAddress",
19
+ "LoadBalancerBackendAddressAdminState",
20
+ "LoadBalancerReport",
21
+ "LoadBalancerSku",
22
+ "LoadBalancerSkuName",
23
+ "LoadBalancerSkuTier",
24
+ "LoadBalancingRule",
25
+ "NatRulePortMapping",
26
+ "SyncMode",
27
+ ]
@@ -0,0 +1,37 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ from .load_balancer_backend_address import LoadBalancerBackendAddress
6
+ import pydantic
7
+ from .sync_mode import SyncMode
8
+ from ..azure.subresource import Subresource
9
+ from ..interface.interface_ip_configuration import InterfaceIpConfiguration
10
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
11
+
12
+
13
+ class BackendAddressPool(UniversalBaseModel):
14
+ """
15
+ Collection of backend address pools used by the load balancer:
16
+ https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v5#BackendAddressPool
17
+ """
18
+
19
+ id: str
20
+ name: str
21
+ type: str
22
+ load_balancer_backend_addresses: typing.Optional[typing.List[LoadBalancerBackendAddress]] = pydantic.Field(
23
+ alias="loadBalancerBackendAddresses", default=None
24
+ )
25
+ location: typing.Optional[str] = None
26
+ sync_mode: typing.Optional[SyncMode] = pydantic.Field(alias="syncMode", default=None)
27
+ virtual_network: typing.Optional[Subresource] = pydantic.Field(alias="virtualNetwork", default=None)
28
+ backend_ip_configurations: typing.Optional[typing.List[InterfaceIpConfiguration]] = pydantic.Field(
29
+ alias="backendIpConfigurations", default=None
30
+ )
31
+
32
+ if IS_PYDANTIC_V2:
33
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
34
+ else:
35
+
36
+ class Config:
37
+ extra = pydantic.Extra.allow
@@ -0,0 +1,40 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ from .load_balancer_sku import LoadBalancerSku
6
+ import typing
7
+ from .backend_address_pool import BackendAddressPool
8
+ from ..interface.interface_ip_configuration import InterfaceIpConfiguration
9
+ from .load_balancing_rule import LoadBalancingRule
10
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
11
+
12
+
13
+ class LoadBalancer(UniversalBaseModel):
14
+ """
15
+ LoadBalancer represents an Azure Load Balancer as defined in the Azure Go SDK:
16
+ https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v5#LoadBalancer
17
+ """
18
+
19
+ id: str
20
+ name: str
21
+ location: str
22
+ resource_group: str = pydantic.Field(alias="resourceGroup")
23
+ resource_group_id: str = pydantic.Field(alias="resourceGroupId")
24
+ sku: LoadBalancerSku
25
+ backend_address_pools: typing.Optional[typing.List[BackendAddressPool]] = pydantic.Field(
26
+ alias="backendAddressPools", default=None
27
+ )
28
+ frontend_ip_configurations: typing.Optional[typing.List[InterfaceIpConfiguration]] = pydantic.Field(
29
+ alias="frontendIPConfigurations", default=None
30
+ )
31
+ load_balancing_rules: typing.Optional[typing.List[LoadBalancingRule]] = pydantic.Field(
32
+ alias="loadBalancingRules", default=None
33
+ )
34
+
35
+ if IS_PYDANTIC_V2:
36
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
37
+ else:
38
+
39
+ class Config:
40
+ extra = pydantic.Extra.allow
@@ -0,0 +1,37 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import typing
5
+ from .load_balancer_backend_address_admin_state import LoadBalancerBackendAddressAdminState
6
+ import pydantic
7
+ from ..azure.subresource import Subresource
8
+ from .nat_rule_port_mapping import NatRulePortMapping
9
+ from ..interface.network_interface import NetworkInterface
10
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
11
+
12
+
13
+ class LoadBalancerBackendAddress(UniversalBaseModel):
14
+ name: str
15
+ admin_state: typing.Optional[LoadBalancerBackendAddressAdminState] = pydantic.Field(
16
+ alias="adminState", default=None
17
+ )
18
+ ip_address: typing.Optional[str] = pydantic.Field(alias="ipAddress", default=None)
19
+ load_balancer_frontend_ip_configuration: typing.Optional[Subresource] = pydantic.Field(
20
+ alias="loadBalancerFrontendIPConfiguration", default=None
21
+ )
22
+ subnet: typing.Optional[Subresource] = None
23
+ virtual_network: typing.Optional[Subresource] = pydantic.Field(alias="virtualNetwork", default=None)
24
+ inbound_nat_rules_port_mapping: typing.Optional[typing.List[NatRulePortMapping]] = pydantic.Field(
25
+ alias="inboundNatRulesPortMapping", default=None
26
+ )
27
+ network_interface_ip_configurations: typing.Optional[Subresource] = pydantic.Field(
28
+ alias="networkInterfaceIpConfigurations", default=None
29
+ )
30
+ network_interface: typing.Optional[NetworkInterface] = pydantic.Field(alias="networkInterface", default=None)
31
+
32
+ if IS_PYDANTIC_V2:
33
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
34
+ else:
35
+
36
+ class Config:
37
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ LoadBalancerBackendAddressAdminState = typing.Union[typing.Literal["Down", "None", "Up"], typing.Any]
@@ -0,0 +1,21 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ import typing
6
+ from .load_balancer import LoadBalancer
7
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
8
+
9
+
10
+ class LoadBalancerReport(UniversalBaseModel):
11
+ subscription_id: str = pydantic.Field(alias="subscriptionId")
12
+ tenant_id: str = pydantic.Field(alias="tenantId")
13
+ load_balancers: typing.List[LoadBalancer] = pydantic.Field(alias="loadBalancers")
14
+ errors: typing.Optional[typing.List[str]] = None
15
+
16
+ if IS_PYDANTIC_V2:
17
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
18
+ else:
19
+
20
+ class Config:
21
+ extra = pydantic.Extra.allow
@@ -0,0 +1,20 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ from .load_balancer_sku_name import LoadBalancerSkuName
5
+ from .load_balancer_sku_tier import LoadBalancerSkuTier
6
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
7
+ import typing
8
+ import pydantic
9
+
10
+
11
+ class LoadBalancerSku(UniversalBaseModel):
12
+ name: LoadBalancerSkuName
13
+ tier: LoadBalancerSkuTier
14
+
15
+ if IS_PYDANTIC_V2:
16
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
17
+ else:
18
+
19
+ class Config:
20
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ LoadBalancerSkuName = typing.Union[typing.Literal["Basic", "Gateway", "Standard", "Unknown"], typing.Any]
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ LoadBalancerSkuTier = typing.Union[typing.Literal["Global", "Regional", "Unknown"], typing.Any]
@@ -0,0 +1,35 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ from ..interface.transport_protocol import TransportProtocol
6
+ import typing
7
+ from ..azure.subresource import Subresource
8
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
9
+
10
+
11
+ class LoadBalancingRule(UniversalBaseModel):
12
+ """
13
+ LoadBalancingRule represents an Azure Load Balancing Rule as defined in the Azure Go SDK:
14
+ https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v5#LoadBalancingRule
15
+ """
16
+
17
+ id: str
18
+ name: str
19
+ frontend_port: int = pydantic.Field(alias="frontendPort")
20
+ protocol: TransportProtocol
21
+ backend_address_pool: typing.Optional[Subresource] = pydantic.Field(alias="backendAddressPool", default=None)
22
+ backend_address_pools: typing.Optional[typing.List[Subresource]] = pydantic.Field(
23
+ alias="backendAddressPools", default=None
24
+ )
25
+ backend_port: int = pydantic.Field(alias="backendPort")
26
+ frontend_ip_configuration: typing.Optional[Subresource] = pydantic.Field(
27
+ alias="frontendIPConfiguration", default=None
28
+ )
29
+
30
+ if IS_PYDANTIC_V2:
31
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
32
+ else:
33
+
34
+ class Config:
35
+ extra = pydantic.Extra.allow
@@ -0,0 +1,19 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ...core.pydantic_utilities import UniversalBaseModel
4
+ import pydantic
5
+ from ...core.pydantic_utilities import IS_PYDANTIC_V2
6
+ import typing
7
+
8
+
9
+ class NatRulePortMapping(UniversalBaseModel):
10
+ backend_port: int = pydantic.Field(alias="backendPort")
11
+ frontend_port: int = pydantic.Field(alias="frontendPort")
12
+ inbound_nat_rule_name: str = pydantic.Field(alias="inboundNatRuleName")
13
+
14
+ if IS_PYDANTIC_V2:
15
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow") # type: ignore # Pydantic v2
16
+ else:
17
+
18
+ class Config:
19
+ extra = pydantic.Extra.allow
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ SyncMode = typing.Union[typing.Literal["Automatic", "Manual"], typing.Any]
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.1
2
+ Name: methodazure
3
+ Version: 0.0.12
4
+ Summary:
5
+ Requires-Python: >=3.8,<4.0
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Operating System :: MacOS
8
+ Classifier: Operating System :: Microsoft :: Windows
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Operating System :: POSIX
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Dist: pydantic (>=1.9.2)
22
+ Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
23
+ Description-Content-Type: text/markdown
24
+
25
+
@@ -0,0 +1,32 @@
1
+ methodazure/__init__.py,sha256=-f8jCpf0_CT3QaGdfF6Njop-T6ViXzumhqxvQKHUVwk,1135
2
+ methodazure/core/__init__.py,sha256=uJtC1p-Mzsx4cdi6jZqTlg0nwdauSLoFaWQItpqpRkw,609
3
+ methodazure/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
4
+ methodazure/core/pydantic_utilities.py,sha256=F91xFonOmTu3AdWJtQduQoS8Gn_K7y8ln9IT8LU6WPM,7549
5
+ methodazure/core/serialization.py,sha256=X1W2KRWxKwOL7k4EatJMas1e2CCLfUOI77qrj8AvLGc,5862
6
+ methodazure/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ methodazure/resources/__init__.py,sha256=SmNJ_7nKq4qutN-NqQOUOFQuz8H86dL5kIcLqdJUACQ,1176
8
+ methodazure/resources/azure/__init__.py,sha256=vTPO1ejDsUQRRFbZmO0cTUfQVhRvo79gn09l5zgUDRU,188
9
+ methodazure/resources/azure/resource_group.py,sha256=kHAxbUOPOz8BOFy4HfGjU7q5B_bL-b9zGlu6a9Vu7rM,500
10
+ methodazure/resources/azure/subresource.py,sha256=I29Cax4w2lYnUVnz6QtbVkG8iyCiKnNjlcXNuOSFHmk,484
11
+ methodazure/resources/interface/__init__.py,sha256=diz5VELtHjyLjnJW1V0CCP8JNxFPCO-grj3jq1RVxjg,540
12
+ methodazure/resources/interface/interface_ip_configuration.py,sha256=cmI01CgH78duZzQaKJeeMIyWhqYdcoWK4t65lq6hZwA,880
13
+ methodazure/resources/interface/network_interface.py,sha256=PhozocKDh_cqcpiSAPH4XALGOoCKUd1cwtgLR59zlLU,707
14
+ methodazure/resources/interface/public_ip_address.py,sha256=zPUgctXZl9URjLLeWvhrz7biJjrQvYd5xEAHZkQo2Lw,747
15
+ methodazure/resources/interface/public_ip_address_dns_settings.py,sha256=iCggSXvPxZq2zGebPnt6oBE0HP_TLPL84Guw1hcjF8A,630
16
+ methodazure/resources/interface/subnet.py,sha256=E3ZRBxhfF7Zt_9MrIc8lo3FEh3U8UqHSDZcDimfvmL4,853
17
+ methodazure/resources/interface/transport_protocol.py,sha256=11XSRZv7fGUi0C7Qk7vUuvfUf66kvTjpZlMmyZ3QhG8,162
18
+ methodazure/resources/loadbalancer/__init__.py,sha256=UoTC_jtPC4sOF8xCffke_08Lv5zGtVheRj3KhXqVgcs,978
19
+ methodazure/resources/loadbalancer/backend_address_pool.py,sha256=tLWYgRkFNwUczmtYfD7BRxEOl9il6FPSlO8tmvCKD8s,1521
20
+ methodazure/resources/loadbalancer/load_balancer.py,sha256=ZrVGDcQCtK2NEqdwbKSWtYl9SkqK2-ulxzfzT7Ekz6M,1577
21
+ methodazure/resources/loadbalancer/load_balancer_backend_address.py,sha256=ZKBE6bdNcUonHQn7pU5OBrRMydQetbvn6hf3OJeS3Lc,1727
22
+ methodazure/resources/loadbalancer/load_balancer_backend_address_admin_state.py,sha256=ghL22sLU9ql-ZbQ9-0USILMDaIUh7H8vow3lwmAfRJI,182
23
+ methodazure/resources/loadbalancer/load_balancer_report.py,sha256=EWvuEBuxJET8XQCFTEUelYQOem__IOXewjp32dngz1w,778
24
+ methodazure/resources/loadbalancer/load_balancer_sku.py,sha256=P6GOXZYv6_cvcfWQRMSq_myeq6KKdJIrID50h8Ufk3I,648
25
+ methodazure/resources/loadbalancer/load_balancer_sku_name.py,sha256=1lFak71pVXAQOXtwbQXFPASGyD2X7oxKJIpAKqjxk30,186
26
+ methodazure/resources/loadbalancer/load_balancer_sku_tier.py,sha256=dQ3AbZRVgubJcT0Vr_mBf7XEM8hfUMTgB6gI5gEi94c,176
27
+ methodazure/resources/loadbalancer/load_balancing_rule.py,sha256=-yGizoKCEQVQp-PQfsGmAMUgannfQB29qLgUXszr4lg,1386
28
+ methodazure/resources/loadbalancer/nat_rule_port_mapping.py,sha256=Kvg87hluVDORDjrqd5LI9tWPmCSiYuyms_b8iTm2WiY,677
29
+ methodazure/resources/loadbalancer/sync_mode.py,sha256=rJdFVB2zTYCgaEDrHoSO9yEe9xl1CjtCtGXj_8UjDAI,155
30
+ methodazure-0.0.12.dist-info/METADATA,sha256=pEK04p1DcSi-kjciS7KqPRW7X9kFMK8mqxVUH_Hkrnw,929
31
+ methodazure-0.0.12.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
32
+ methodazure-0.0.12.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any