Skip to content

Commit 1698f32

Browse files
azure-sdkmsyyc
andauthored
[AutoRelease] t2-deviceupdate-2022-08-26-11782(Do not merge) (Azure#25888)
* code and test * update Co-authored-by: PythonSdkPipelines <PythonSdkPipelines> Co-authored-by: msyyc <[email protected]>
1 parent 70be093 commit 1698f32

29 files changed

+255
-2010
lines changed

sdk/deviceupdate/azure-mgmt-deviceupdate/CHANGELOG.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11
# Release History
22

3-
## 1.0.0b5 (2022-08-26)
4-
5-
### Features Added
6-
7-
- Added operation group DeviceUpdateMgmtClientOperationsMixin
3+
## 1.0.0 (2022-08-26)
84

95
### Breaking Changes
106

117
- Client name is changed from `DeviceUpdate` to `DeviceUpdateMgmtClient`
12-
- Removed operation group DeviceUpdateOperationsMixin
138

149
## 1.0.0b4 (2022-05-26)
1510

sdk/deviceupdate/azure-mgmt-deviceupdate/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@autorest/[email protected]",
55
"@autorest/[email protected]"
66
],
7-
"commit": "b23f35dfc3ceee0a84c1380b02bcfdfa7f23049c",
7+
"commit": "eca8060c5746b3b092c50580b59de31fe749d669",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
99
"autorest_command": "autorest specification/deviceupdate/resource-manager/readme.md --models-mode=msrest --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.8.4 --version-tolerant=False",
1010
"readme": "specification/deviceupdate/resource-manager/readme.md"

sdk/deviceupdate/azure-mgmt-deviceupdate/azure/mgmt/deviceupdate/_device_update.py

Lines changed: 0 additions & 125 deletions
This file was deleted.

sdk/deviceupdate/azure-mgmt-deviceupdate/azure/mgmt/deviceupdate/_device_update_mgmt_client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,21 @@ class DeviceUpdateMgmtClient(
3636
"""Microsoft Device Update resource provider.
3737
3838
:ivar accounts: AccountsOperations operations
39-
:vartype accounts: deviceupdatemgmtclient.operations.AccountsOperations
39+
:vartype accounts: azure.mgmt.deviceupdate.operations.AccountsOperations
4040
:ivar instances: InstancesOperations operations
41-
:vartype instances: deviceupdatemgmtclient.operations.InstancesOperations
41+
:vartype instances: azure.mgmt.deviceupdate.operations.InstancesOperations
4242
:ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations
4343
:vartype private_endpoint_connections:
44-
deviceupdatemgmtclient.operations.PrivateEndpointConnectionsOperations
44+
azure.mgmt.deviceupdate.operations.PrivateEndpointConnectionsOperations
4545
:ivar private_link_resources: PrivateLinkResourcesOperations operations
4646
:vartype private_link_resources:
47-
deviceupdatemgmtclient.operations.PrivateLinkResourcesOperations
47+
azure.mgmt.deviceupdate.operations.PrivateLinkResourcesOperations
4848
:ivar private_endpoint_connection_proxies: PrivateEndpointConnectionProxiesOperations
4949
operations
5050
:vartype private_endpoint_connection_proxies:
51-
deviceupdatemgmtclient.operations.PrivateEndpointConnectionProxiesOperations
51+
azure.mgmt.deviceupdate.operations.PrivateEndpointConnectionProxiesOperations
5252
:ivar operations: Operations operations
53-
:vartype operations: deviceupdatemgmtclient.operations.Operations
53+
:vartype operations: azure.mgmt.deviceupdate.operations.Operations
5454
:param credential: Credential needed for the client to connect to Azure. Required.
5555
:type credential: ~azure.core.credentials.TokenCredential
5656
:param subscription_id: The Azure subscription ID. Required.

sdk/deviceupdate/azure-mgmt-deviceupdate/azure/mgmt/deviceupdate/_metadata.json

Lines changed: 0 additions & 125 deletions
This file was deleted.
Lines changed: 18 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,20 @@
1-
# coding=utf-8
2-
# --------------------------------------------------------------------------
3-
#
4-
# Copyright (c) Microsoft Corporation. All rights reserved.
5-
#
6-
# The MIT License (MIT)
7-
#
8-
# Permission is hereby granted, free of charge, to any person obtaining a copy
9-
# of this software and associated documentation files (the ""Software""), to
10-
# deal in the Software without restriction, including without limitation the
11-
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12-
# sell copies of the Software, and to permit persons to whom the Software is
13-
# furnished to do so, subject to the following conditions:
14-
#
15-
# The above copyright notice and this permission notice shall be included in
16-
# all copies or substantial portions of the Software.
17-
#
18-
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23-
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24-
# IN THE SOFTWARE.
25-
#
26-
# --------------------------------------------------------------------------
1+
# ------------------------------------
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the MIT License.
4+
# ------------------------------------
5+
"""Customize generated code here.
6+
7+
Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
8+
"""
9+
from typing import List
10+
11+
__all__: List[str] = [] # Add all objects you want publicly available to users at this package level
12+
2713

28-
# This file is used for handwritten extensions to the generated code. Example:
29-
# https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
3014
def patch_sdk():
31-
pass
15+
"""Do not remove from this file.
16+
17+
`patch_sdk` is a last resort escape hatch that allows you to do customizations
18+
you can't accomplish using the techniques described in
19+
https://aka.ms/azsdk/python/dpcodegen/python/customize
20+
"""

sdk/deviceupdate/azure-mgmt-deviceupdate/azure/mgmt/deviceupdate/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "1.0.0b5"
9+
VERSION = "1.0.0"

0 commit comments

Comments
 (0)