Skip to content

Commit a56d1c3

Browse files
author
SDKAuto
committed
CodeGen from PR 12441 in Azure/azure-rest-api-specs
Merge 169b36f995b7d5fd53f65cdc956f6a4fb058482a into c35467e
1 parent f74da2f commit a56d1c3

File tree

3 files changed

+83
-0
lines changed

3 files changed

+83
-0
lines changed

sdk/network/azure-mgmt-network/azure/mgmt/network/v2020_08_01/models/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,7 @@
414414
from ._models_py3 import PropagatedRouteTable
415415
from ._models_py3 import ProtocolConfiguration
416416
from ._models_py3 import ProtocolCustomSettingsFormat
417+
from ._models_py3 import ProxyResource
417418
from ._models_py3 import PublicIPAddress
418419
from ._models_py3 import PublicIPAddressDnsSettings
419420
from ._models_py3 import PublicIPAddressListResult
@@ -968,6 +969,7 @@
968969
from ._models import PropagatedRouteTable # type: ignore
969970
from ._models import ProtocolConfiguration # type: ignore
970971
from ._models import ProtocolCustomSettingsFormat # type: ignore
972+
from ._models import ProxyResource # type: ignore
971973
from ._models import PublicIPAddress # type: ignore
972974
from ._models import PublicIPAddressDnsSettings # type: ignore
973975
from ._models import PublicIPAddressListResult # type: ignore
@@ -1678,6 +1680,7 @@
16781680
'PropagatedRouteTable',
16791681
'ProtocolConfiguration',
16801682
'ProtocolCustomSettingsFormat',
1683+
'ProxyResource',
16811684
'PublicIPAddress',
16821685
'PublicIPAddressDnsSettings',
16831686
'PublicIPAddressListResult',

sdk/network/azure-mgmt-network/azure/mgmt/network/v2020_08_01/models/_models.py

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16513,6 +16513,46 @@ def __init__(
1651316513
self.trigger_sensitivity_override = kwargs.get('trigger_sensitivity_override', None)
1651416514

1651516515

16516+
class ProxyResource(msrest.serialization.Model):
16517+
"""Proxy resource representation.
16518+
16519+
Variables are only populated by the server, and will be ignored when sending a request.
16520+
16521+
:ivar id: Resource ID.
16522+
:vartype id: str
16523+
:ivar name: Resource name.
16524+
:vartype name: str
16525+
:ivar type: Resource type.
16526+
:vartype type: str
16527+
:ivar etag: A unique read-only string that changes whenever the resource is updated.
16528+
:vartype etag: str
16529+
"""
16530+
16531+
_validation = {
16532+
'id': {'readonly': True},
16533+
'name': {'readonly': True},
16534+
'type': {'readonly': True},
16535+
'etag': {'readonly': True},
16536+
}
16537+
16538+
_attribute_map = {
16539+
'id': {'key': 'id', 'type': 'str'},
16540+
'name': {'key': 'name', 'type': 'str'},
16541+
'type': {'key': 'type', 'type': 'str'},
16542+
'etag': {'key': 'etag', 'type': 'str'},
16543+
}
16544+
16545+
def __init__(
16546+
self,
16547+
**kwargs
16548+
):
16549+
super(ProxyResource, self).__init__(**kwargs)
16550+
self.id = None
16551+
self.name = None
16552+
self.type = None
16553+
self.etag = None
16554+
16555+
1651616556
class PublicIPAddress(Resource):
1651716557
"""Public IP address resource.
1651816558

sdk/network/azure-mgmt-network/azure/mgmt/network/v2020_08_01/models/_models_py3.py

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18366,6 +18366,46 @@ def __init__(
1836618366
self.trigger_sensitivity_override = trigger_sensitivity_override
1836718367

1836818368

18369+
class ProxyResource(msrest.serialization.Model):
18370+
"""Proxy resource representation.
18371+
18372+
Variables are only populated by the server, and will be ignored when sending a request.
18373+
18374+
:ivar id: Resource ID.
18375+
:vartype id: str
18376+
:ivar name: Resource name.
18377+
:vartype name: str
18378+
:ivar type: Resource type.
18379+
:vartype type: str
18380+
:ivar etag: A unique read-only string that changes whenever the resource is updated.
18381+
:vartype etag: str
18382+
"""
18383+
18384+
_validation = {
18385+
'id': {'readonly': True},
18386+
'name': {'readonly': True},
18387+
'type': {'readonly': True},
18388+
'etag': {'readonly': True},
18389+
}
18390+
18391+
_attribute_map = {
18392+
'id': {'key': 'id', 'type': 'str'},
18393+
'name': {'key': 'name', 'type': 'str'},
18394+
'type': {'key': 'type', 'type': 'str'},
18395+
'etag': {'key': 'etag', 'type': 'str'},
18396+
}
18397+
18398+
def __init__(
18399+
self,
18400+
**kwargs
18401+
):
18402+
super(ProxyResource, self).__init__(**kwargs)
18403+
self.id = None
18404+
self.name = None
18405+
self.type = None
18406+
self.etag = None
18407+
18408+
1836918409
class PublicIPAddress(Resource):
1837018410
"""Public IP address resource.
1837118411

0 commit comments

Comments
 (0)