Skip to content

[Managed Service Identity] Add support for 2025-01-31-preview API version #34513

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions specification/msi/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,24 @@ output-folder: $(azure-libraries-for-java-folder)/azure-mgmt-msi

``` yaml $(java) && $(multiapi)
batch:
- tag: package-2025-01-31-preview
- tag: package-2018-11-30
- tag: package-2015-08-31-preview
```

### Tag: package-2025-01-31-preview and java

These settings apply only when `--tag=package-2025-01-31-preview --java` is specified on the command line.
Please also specify `--azure-libraries-for-java=<path to the root directory of your azure-sdk-for-java clone>`.

``` yaml $(tag) == 'package-2025-01-31-preview' && $(java) && $(multiapi)
java:
namespace: com.microsoft.azure.management.managedserviceidentity.v2025_01_31_preview
output-folder: $(azure-libraries-for-java-folder)/sdk/managedserviceidentity/mgmt-v2025_01_31_preview
regenerate-manager: true
generate-interface: true
```

### Tag: package-2018-11-30 and java

These settings apply only when `--tag=package-2018-11-30 --java` is specified on the command line.
Expand Down
12 changes: 11 additions & 1 deletion specification/msi/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ no-namespace-folders: true

Generate all API versions currently shipped for this package


```yaml $(python)
multiapi: true
default-api-version: "2023-01-31"
clear-output-folder: true
batch:
- tag: package-preview-2025-01-31

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems that the correct tag should be package-2025-01-31-preview?

- tag: package-2023-01-31
- tag: package-preview-2022-01
- tag: package-preview-2021-09-30
Expand All @@ -34,6 +34,16 @@ output-folder: $(python-sdks-folder)/resources/azure-mgmt-msi/azure/mgmt/msi/
perform-load: false
```

### Tag: package-preview-2025-01-31 and python

These settings apply only when `--tag=package-preview-2025-01-31 --python` is specified on the command line.
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.

``` yaml $(tag) == 'package-preview-2025-01-31'
namespace: azure.mgmt.msi.v2025_01_31_preview
output-folder: $(python-sdks-folder)/resources/azure-mgmt-msi/azure/mgmt/msi/v2025_01_31_preview
```

### Tag: package-2023-01-31 and python

These settings apply only when `--tag=package-2023-01-31 --python` is specified on the command line.
Expand Down
Loading