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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
41 changes: 41 additions & 0 deletions sdk/resources/azure-mgmt-resource/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# Release History

## 23.3.0 (2025-02-24)

### Features Added

- Model DeploymentProperties has a new parameter validation_level
- Model DeploymentPropertiesExtended has a new parameter diagnostics
- Model DeploymentPropertiesExtended has a new parameter validation_level
- Model DeploymentValidateResult has a new parameter id
- Model DeploymentValidateResult has a new parameter name
- Model DeploymentValidateResult has a new parameter type
- Model DeploymentWhatIfProperties has a new parameter validation_level
- Model ExportTemplateRequest has a new parameter output_format
- Model PolicyAssignment has a new parameter effective_definition_version
- Model PolicyAssignment has a new parameter latest_definition_version
- Model PolicyDefinitionReference has a new parameter effective_definition_version
- Model PolicyDefinitionReference has a new parameter latest_definition_version
- Model ResourceGroupExportResult has a new parameter output
- Model WhatIfChange has a new parameter deployment_id
- Model WhatIfChange has a new parameter identifiers
- Model WhatIfChange has a new parameter symbolic_name
- Model WhatIfOperationResult has a new parameter diagnostics
- Model WhatIfOperationResult has a new parameter potential_changes
- Operation PolicyAssignmentsOperations.get has a new optional parameter expand
- Operation PolicyAssignmentsOperations.get_by_id has a new optional parameter expand
- Operation PolicyAssignmentsOperations.list has a new optional parameter expand
- Operation PolicyAssignmentsOperations.list_for_management_group has a new optional parameter expand
- Operation PolicyAssignmentsOperations.list_for_resource has a new optional parameter expand
- Operation PolicyAssignmentsOperations.list_for_resource_group has a new optional parameter expand
- Operation PolicySetDefinitionVersionsOperations.get has a new optional parameter expand
- Operation PolicySetDefinitionVersionsOperations.get_at_management_group has a new optional parameter expand
- Operation PolicySetDefinitionVersionsOperations.get_built_in has a new optional parameter expand
- Operation PolicySetDefinitionVersionsOperations.list has a new optional parameter expand
- Operation PolicySetDefinitionVersionsOperations.list_built_in has a new optional parameter expand
- Operation PolicySetDefinitionVersionsOperations.list_by_management_group has a new optional parameter expand
- Operation PolicySetDefinitionsOperations.get has a new optional parameter expand
- Operation PolicySetDefinitionsOperations.get_at_management_group has a new optional parameter expand
- Operation PolicySetDefinitionsOperations.get_built_in has a new optional parameter expand
- Operation PolicySetDefinitionsOperations.list has a new optional parameter expand
- Operation PolicySetDefinitionsOperations.list_built_in has a new optional parameter expand
- Operation PolicySetDefinitionsOperations.list_by_management_group has a new optional parameter expand

## 23.2.0 (2024-10-24)

### Features Added
Expand Down
6 changes: 3 additions & 3 deletions sdk/resources/azure-mgmt-resource/_meta.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"commit": "34424077cae09522361ea641761dc37941603383",
"commit": "39879dbcfe0d8d66afbe073f287cf8f246928243",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
"@autorest/python@6.19.0",
"@autorest/python@6.27.4",
"@autorest/modelerfour@4.27.0"
],
"autorest_command": "autorest specification/resources/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.19.0 --use=@autorest/modelerfour@4.27.0 --version=3.10.2 --version-tolerant=False",
"autorest_command": "autorest specification/resources/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.27.4 --use=@autorest/modelerfour@4.27.0 --version=3.10.2 --version-tolerant=False",
"readme": "specification/resources/resource-manager/readme.md",
"package-privatelinks-2020-05": "2022-03-18 16:14:07 -0700 2c68b6f0c9566d97d9d590a31b0d46997622eef7 Microsoft.Authorization/stable/2020-05-01/privateLinks.json",
"package-features-2021-07": "2022-03-06 17:36:42 -0800 6a57e9cedc87cafd2dc9e4f3e8af62b5725e3d22 Microsoft.Features/stable/2021-07-01/features.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "23.2.0"
VERSION = "23.3.0"
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(
policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None,
self._config.http_logging_policy,
]
self._client = ARMPipelineClient(base_url=base_url, policies=_policies, **kwargs)
self._client: ARMPipelineClient = ARMPipelineClient(base_url=base_url, policies=_policies, **kwargs)
super(ChangesClient, self).__init__(
api_version=api_version,
profile=profile
Expand Down
Loading