Skip to content
Merged
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
73 changes: 73 additions & 0 deletions sdk/apimanagement/azure-mgmt-apimanagement/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,78 @@
# Release History

## 3.0.0 (2022-01-13)

**Features**

- Added operation group ApiManagementClientOperationsMixin
- Added operation group GlobalSchemaOperations
- Added operation group OutboundNetworkDependenciesEndpointsOperations
- Added operation group PrivateEndpointConnectionOperations
- Model AdditionalLocation has a new parameter platform_version
- Model AdditionalLocation has a new parameter public_ip_address_id
- Model ApiContract has a new parameter contact
- Model ApiContract has a new parameter license
- Model ApiContract has a new parameter terms_of_service_url
- Model ApiContractProperties has a new parameter contact
- Model ApiContractProperties has a new parameter license
- Model ApiContractProperties has a new parameter terms_of_service_url
- Model ApiContractUpdateProperties has a new parameter contact
- Model ApiContractUpdateProperties has a new parameter license
- Model ApiContractUpdateProperties has a new parameter terms_of_service_url
- Model ApiCreateOrUpdateParameter has a new parameter contact
- Model ApiCreateOrUpdateParameter has a new parameter license
- Model ApiCreateOrUpdateParameter has a new parameter terms_of_service_url
- Model ApiCreateOrUpdateProperties has a new parameter contact
- Model ApiCreateOrUpdateProperties has a new parameter license
- Model ApiCreateOrUpdateProperties has a new parameter terms_of_service_url
- Model ApiEntityBaseContract has a new parameter contact
- Model ApiEntityBaseContract has a new parameter license
- Model ApiEntityBaseContract has a new parameter terms_of_service_url
- Model ApiManagementServiceBackupRestoreParameters has a new parameter access_type
- Model ApiManagementServiceBackupRestoreParameters has a new parameter client_id
- Model ApiManagementServiceBaseProperties has a new parameter platform_version
- Model ApiManagementServiceBaseProperties has a new parameter private_endpoint_connections
- Model ApiManagementServiceBaseProperties has a new parameter public_ip_address_id
- Model ApiManagementServiceBaseProperties has a new parameter public_network_access
- Model ApiManagementServiceProperties has a new parameter platform_version
- Model ApiManagementServiceProperties has a new parameter private_endpoint_connections
- Model ApiManagementServiceProperties has a new parameter public_ip_address_id
- Model ApiManagementServiceProperties has a new parameter public_network_access
- Model ApiManagementServiceResource has a new parameter platform_version
- Model ApiManagementServiceResource has a new parameter private_endpoint_connections
- Model ApiManagementServiceResource has a new parameter public_ip_address_id
- Model ApiManagementServiceResource has a new parameter public_network_access
- Model ApiManagementServiceResource has a new parameter system_data
- Model ApiManagementServiceUpdateParameters has a new parameter platform_version
- Model ApiManagementServiceUpdateParameters has a new parameter private_endpoint_connections
- Model ApiManagementServiceUpdateParameters has a new parameter public_ip_address_id
- Model ApiManagementServiceUpdateParameters has a new parameter public_network_access
- Model ApiManagementServiceUpdateParameters has a new parameter zones
- Model ApiManagementServiceUpdateProperties has a new parameter platform_version
- Model ApiManagementServiceUpdateProperties has a new parameter private_endpoint_connections
- Model ApiManagementServiceUpdateProperties has a new parameter public_ip_address_id
- Model ApiManagementServiceUpdateProperties has a new parameter public_network_access
- Model ApiTagResourceContractProperties has a new parameter contact
- Model ApiTagResourceContractProperties has a new parameter license
- Model ApiTagResourceContractProperties has a new parameter terms_of_service_url
- Model ApiUpdateContract has a new parameter contact
- Model ApiUpdateContract has a new parameter license
- Model ApiUpdateContract has a new parameter terms_of_service_url
- Model HostnameConfiguration has a new parameter certificate_source
- Model HostnameConfiguration has a new parameter certificate_status
- Model ParameterContract has a new parameter examples
- Model ParameterContract has a new parameter schema_id
- Model ParameterContract has a new parameter type_name
- Model RepresentationContract has a new parameter examples
- Model SchemaContract has a new parameter components
- Model TenantConfigurationSyncStateContract has a new parameter id
- Model TenantConfigurationSyncStateContract has a new parameter name
- Model TenantConfigurationSyncStateContract has a new parameter type

**Breaking changes**

- Model RepresentationContract no longer has parameter sample

## 2.1.0 (2021-08-03)

**Features**
Expand Down
10 changes: 5 additions & 5 deletions sdk/apimanagement/azure-mgmt-apimanagement/_meta.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"autorest": "3.4.5",
"autorest": "3.7.2",
"use": [
"@autorest/python@5.8.4",
"@autorest/modelerfour@4.19.2"
"@autorest/python@5.12.0",
"@autorest/modelerfour@4.19.3"
],
"commit": "ecf0d999c9128ddfc1cac5ba52f57a5b00f94000",
"commit": "0b70eafc6469141d5c4dc868c4a4438db6c32ead",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/apimanagement/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",
"autorest_command": "autorest specification/apimanagement/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/python@5.12.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
"readme": "specification/apimanagement/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
__version__ = VERSION
__all__ = ['ApiManagementClient']

try:
from ._patch import patch_sdk # type: ignore
patch_sdk()
except ImportError:
pass
# `._patch.py` is used for handwritten extensions to the generated code
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
from ._patch import patch_sdk
patch_sdk()
Loading