Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@
from ._models_py3 import PropagatedRouteTable
from ._models_py3 import ProtocolConfiguration
from ._models_py3 import ProtocolCustomSettingsFormat
from ._models_py3 import ProxyResource
from ._models_py3 import PublicIPAddress
from ._models_py3 import PublicIPAddressDnsSettings
from ._models_py3 import PublicIPAddressListResult
Expand Down Expand Up @@ -968,6 +969,7 @@
from ._models import PropagatedRouteTable # type: ignore
from ._models import ProtocolConfiguration # type: ignore
from ._models import ProtocolCustomSettingsFormat # type: ignore
from ._models import ProxyResource # type: ignore
from ._models import PublicIPAddress # type: ignore
from ._models import PublicIPAddressDnsSettings # type: ignore
from ._models import PublicIPAddressListResult # type: ignore
Expand Down Expand Up @@ -1678,6 +1680,7 @@
'PropagatedRouteTable',
'ProtocolConfiguration',
'ProtocolCustomSettingsFormat',
'ProxyResource',
'PublicIPAddress',
'PublicIPAddressDnsSettings',
'PublicIPAddressListResult',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16513,6 +16513,46 @@ def __init__(
self.trigger_sensitivity_override = kwargs.get('trigger_sensitivity_override', None)


class ProxyResource(msrest.serialization.Model):
"""Proxy resource representation.

Variables are only populated by the server, and will be ignored when sending a request.

:ivar id: Resource ID.
:vartype id: str
:ivar name: Resource name.
:vartype name: str
:ivar type: Resource type.
:vartype type: str
:ivar etag: A unique read-only string that changes whenever the resource is updated.
:vartype etag: str
"""

_validation = {
'id': {'readonly': True},
'name': {'readonly': True},
'type': {'readonly': True},
'etag': {'readonly': True},
}

_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'etag': {'key': 'etag', 'type': 'str'},
}

def __init__(
self,
**kwargs
):
super(ProxyResource, self).__init__(**kwargs)
self.id = None
self.name = None
self.type = None
self.etag = None


class PublicIPAddress(Resource):
"""Public IP address resource.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18366,6 +18366,46 @@ def __init__(
self.trigger_sensitivity_override = trigger_sensitivity_override


class ProxyResource(msrest.serialization.Model):
"""Proxy resource representation.

Variables are only populated by the server, and will be ignored when sending a request.

:ivar id: Resource ID.
:vartype id: str
:ivar name: Resource name.
:vartype name: str
:ivar type: Resource type.
:vartype type: str
:ivar etag: A unique read-only string that changes whenever the resource is updated.
:vartype etag: str
"""

_validation = {
'id': {'readonly': True},
'name': {'readonly': True},
'type': {'readonly': True},
'etag': {'readonly': True},
}

_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'etag': {'key': 'etag', 'type': 'str'},
}

def __init__(
self,
**kwargs
):
super(ProxyResource, self).__init__(**kwargs)
self.id = None
self.name = None
self.type = None
self.etag = None


class PublicIPAddress(Resource):
"""Public IP address resource.

Expand Down