Skip to content

Commit 8994be5

Browse files
authored
code and test (Azure#30403)
Co-authored-by: PythonSdkPipelines <PythonSdkPipelines>
1 parent 675bd24 commit 8994be5

File tree

784 files changed

+50507
-1686
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

784 files changed

+50507
-1686
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release History
22

3+
## 23.0.0 (2023-05-16)
4+
5+
### Breaking Changes
6+
7+
- Model ContainerServiceNetworkProfile no longer has parameter docker_bridge_cidr
8+
39
## 22.1.0 (2023-04-19)
410

511
### Features Added
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"commit": "c655f508b77a442f106250c1ced44ee40e110b00",
2+
"commit": "288939a1c67efd5f129124ea0912ca17ff7b9d90",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.9.2",
55
"use": [
6-
"@autorest/[email protected].8",
6+
"@autorest/[email protected].12",
77
"@autorest/[email protected]"
88
],
9-
"autorest_command": "autorest specification/containerservice/resource-manager/Microsoft.ContainerService/aks/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected].8 --use=@autorest/[email protected] --version=3.9.2 --version-tolerant=False",
9+
"autorest_command": "autorest specification/containerservice/resource-manager/Microsoft.ContainerService/aks/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected].12 --use=@autorest/[email protected] --version=3.9.2 --version-tolerant=False",
1010
"readme": "specification/containerservice/resource-manager/Microsoft.ContainerService/aks/readme.md"
1111
}

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/_container_service_client.py

Lines changed: 66 additions & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# license information.
66
# --------------------------------------------------------------------------
77

8-
VERSION = "22.1.0"
8+
VERSION = "23.0.0"

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/aio/_container_service_client.py

Lines changed: 66 additions & 1 deletion
Large diffs are not rendered by default.

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from .v2017_07_01.models import *
88
from .v2019_04_30.models import *
99
from .v2022_09_02_preview.models import *
10-
from .v2023_03_01.models import *
10+
from .v2023_04_01.models import *

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2017_07_01/_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 = "22.1.0"
9+
VERSION = "23.0.0"

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2017_07_01/aio/operations/_container_services_operations.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Code generated by Microsoft (R) AutoRest Code Generator.
77
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
88
# --------------------------------------------------------------------------
9+
from io import IOBase
910
from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload
1011

1112
from azure.core.async_paging import AsyncItemPaged, AsyncList
@@ -160,7 +161,7 @@ async def _create_or_update_initial(
160161
content_type = content_type or "application/json"
161162
_json = None
162163
_content = None
163-
if isinstance(parameters, (IO, bytes)):
164+
if isinstance(parameters, (IOBase, bytes)):
164165
_content = parameters
165166
else:
166167
_json = self._serialize.body(parameters, "ContainerService")

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2017_07_01/operations/_container_services_operations.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Code generated by Microsoft (R) AutoRest Code Generator.
77
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
88
# --------------------------------------------------------------------------
9+
from io import IOBase
910
from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload
1011

1112
from azure.core.exceptions import (
@@ -331,7 +332,7 @@ def _create_or_update_initial(
331332
content_type = content_type or "application/json"
332333
_json = None
333334
_content = None
334-
if isinstance(parameters, (IO, bytes)):
335+
if isinstance(parameters, (IOBase, bytes)):
335336
_content = parameters
336337
else:
337338
_json = self._serialize.body(parameters, "ContainerService")

sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2018_03_31/_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 = "22.1.0"
9+
VERSION = "23.0.0"

0 commit comments

Comments
 (0)