Skip to content

[AutoRelease] t2-resource-2025-06-09-46405(can only be merged by SDK owner) #41474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 17, 2025
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
19 changes: 19 additions & 0 deletions sdk/resources/azure-mgmt-resource/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Release History

## 24.0.0 (2025-06-16)

### Features Added

- Model Deployment has a new parameter identity
- Model DeploymentParameter has a new parameter expression
- Model DeploymentProperties has a new parameter external_input_definitions
- Model DeploymentProperties has a new parameter external_inputs
- Model DeploymentWhatIfProperties has a new parameter external_input_definitions
- Model DeploymentWhatIfProperties has a new parameter external_inputs
- Model WhatIfChange has a new parameter extension

### Breaking Changes

- The `deploymentstacks` module has been separated from the `azure-mgmt-resource` package into independent package `azure-mgmt-resource-deploymentstacks`
- The `deploymentscripts` module has been separated from the `azure-mgmt-resource` package into independent package `azure-mgmt-resource-deploymentscripts`
- The `templatespecs` module has been separated from the `azure-mgmt-resource` package into independent package `azure-mgmt-resource-templatespecs`
- If you previously imported these modules using statements like `from azure.mgmt.resource import DeploymentStacksClient`, you'll need to update your code to `from azure.mgmt.resource.deploymentstacks import DeploymentStacksClient`. If you were already using the fully qualified import path, no changes are required. This applies to all three modules: `deploymentstacks`, `deploymentscripts`, and `templatespecs`.

## 23.4.0 (2025-05-19)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/resources/azure-mgmt-resource/_metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"commit": "03a6598cdc38924f9eaaeb03f8ef151f5aeff449",
"commit": "7fafef79f974d996d4d9f3474bfee09e5d9bdc3b",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,21 @@
# --------------------------------------------------------------------------

from .managedapplications import ApplicationClient
from .deploymentscripts import DeploymentScriptsClient
from .features import FeatureClient
from .links import ManagementLinkClient
from .locks import ManagementLockClient
from .policy import PolicyClient
from .resources import ResourceManagementClient
from .subscriptions import SubscriptionClient
from .deploymentstacks import DeploymentStacksClient
from .databoundaries import DataBoundaryMgmtClient

__all__ = [
"ApplicationClient",
"DeploymentScriptsClient",
"FeatureClient",
"PolicyClient",
"ManagementLinkClient",
"ManagementLockClient",
"ResourceManagementClient",
"SubscriptionClient",
"DeploymentStacksClient",
"DataBoundaryMgmtClient",
]
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "23.4.0"
VERSION = "24.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "23.4.0"
VERSION = "24.0.0"
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 = "23.4.0"
VERSION = "24.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "23.4.0"
VERSION = "24.0.0"
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 = "23.4.0"
VERSION = "24.0.0"

This file was deleted.

This file was deleted.

Loading