Skip to content
Closed
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
2 changes: 1 addition & 1 deletion sdk/deviceupdate/azure-mgmt-deviceupdate/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"@autorest/[email protected]",
"@autorest/[email protected]"
],
"commit": "2d2fdb419b42ad00df574946ea195fd1cd5ae226",
"commit": "2c59c559d6804068f72b8ead08d287c4f6e48fc0",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/deviceupdate/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.4.5",
"readme": "specification/deviceupdate/resource-manager/readme.md"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
from .operations import InstancesOperations
from .operations import PrivateEndpointConnectionsOperations
from .operations import PrivateLinkResourcesOperations
from .operations import PrivateEndpointConnectionProxiesOperations
from .operations import Operations
from . import models

Expand All @@ -39,6 +40,8 @@ class DeviceUpdate(DeviceUpdateOperationsMixin):
:vartype private_endpoint_connections: device_update.operations.PrivateEndpointConnectionsOperations
:ivar private_link_resources: PrivateLinkResourcesOperations operations
:vartype private_link_resources: device_update.operations.PrivateLinkResourcesOperations
:ivar private_endpoint_connection_proxies: PrivateEndpointConnectionProxiesOperations operations
:vartype private_endpoint_connection_proxies: device_update.operations.PrivateEndpointConnectionProxiesOperations
:ivar operations: Operations operations
:vartype operations: device_update.operations.Operations
:param credential: Credential needed for the client to connect to Azure.
Expand Down Expand Up @@ -75,6 +78,8 @@ def __init__(
self._client, self._config, self._serialize, self._deserialize)
self.private_link_resources = PrivateLinkResourcesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.private_endpoint_connection_proxies = PrivateEndpointConnectionProxiesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.operations = Operations(
self._client, self._config, self._serialize, self._deserialize)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
"instances": "InstancesOperations",
"private_endpoint_connections": "PrivateEndpointConnectionsOperations",
"private_link_resources": "PrivateLinkResourcesOperations",
"private_endpoint_connection_proxies": "PrivateEndpointConnectionProxiesOperations",
"operations": "Operations"
},
"operation_mixins": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "1.0.0b3"
VERSION = "1.0.0b1"
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
from .operations import InstancesOperations
from .operations import PrivateEndpointConnectionsOperations
from .operations import PrivateLinkResourcesOperations
from .operations import PrivateEndpointConnectionProxiesOperations
from .operations import Operations
from .. import models

Expand All @@ -37,6 +38,8 @@ class DeviceUpdate(DeviceUpdateOperationsMixin):
:vartype private_endpoint_connections: device_update.aio.operations.PrivateEndpointConnectionsOperations
:ivar private_link_resources: PrivateLinkResourcesOperations operations
:vartype private_link_resources: device_update.aio.operations.PrivateLinkResourcesOperations
:ivar private_endpoint_connection_proxies: PrivateEndpointConnectionProxiesOperations operations
:vartype private_endpoint_connection_proxies: device_update.aio.operations.PrivateEndpointConnectionProxiesOperations
:ivar operations: Operations operations
:vartype operations: device_update.aio.operations.Operations
:param credential: Credential needed for the client to connect to Azure.
Expand Down Expand Up @@ -72,6 +75,8 @@ def __init__(
self._client, self._config, self._serialize, self._deserialize)
self.private_link_resources = PrivateLinkResourcesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.private_endpoint_connection_proxies = PrivateEndpointConnectionProxiesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.operations = Operations(
self._client, self._config, self._serialize, self._deserialize)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from ._instances_operations import InstancesOperations
from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations
from ._private_link_resources_operations import PrivateLinkResourcesOperations
from ._private_endpoint_connection_proxies_operations import PrivateEndpointConnectionProxiesOperations
from ._operations import Operations

__all__ = [
Expand All @@ -19,5 +20,6 @@
'InstancesOperations',
'PrivateEndpointConnectionsOperations',
'PrivateLinkResourcesOperations',
'PrivateEndpointConnectionProxiesOperations',
'Operations',
]
Loading