Skip to content

Commit

Permalink
CodeGen from PR 16886 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Track2 modify readme.go.md 3 (Azure#16886)

* Track2 modify readme.go.md

* directive modelerfour.lenient-model-deduplication=true
  • Loading branch information
SDKAuto committed Nov 29, 2021
1 parent a57425e commit 2218b43
Show file tree
Hide file tree
Showing 13 changed files with 1,869 additions and 2 deletions.
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/python@5.8.4",
"@autorest/modelerfour@4.19.2"
],
"commit": "2d2fdb419b42ad00df574946ea195fd1cd5ae226",
"commit": "fc5d283f8d0a0e67575658b48b1ebfa369d14b8e",
"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/python@5.8.4 --use=@autorest/modelerfour@4.19.2 --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

0 comments on commit 2218b43

Please sign in to comment.