Skip to content
Prev Previous commit
Next Next commit
Updates readme
  • Loading branch information
FumingZhang committed Jun 24, 2025
commit 91b26ebbdcda0c6119dc598c1a6eed6cbda42d82
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ batch:
- tag: package-2025-03
- tag: package-preview-2025-04
- tag: package-2025-04
- tag: package-preview-2025-05
- tag: package-2025-05
```

Expand All @@ -133,6 +134,19 @@ regenerate-manager: true
generate-interface: true
```

### Tag: package-preview-2025-05 and java

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

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

### Tag: package-2025-04 and java

These settings apply only when `--tag=package-2025-04` is specified on the command line.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ input-file:
- stable/2025-05-01/managedClusters.json
```

### Tag: package-preview-2025-05

These settings apply only when `--tag=package-preview-2025-05` is specified on the command line.

``` yaml $(tag) == 'package-preview-2025-05'
input-file:
- preview/2025-05-02-preview/managedClusters.json
```

### Tag: package-2025-04

These settings apply only when `--tag=package-2025-04` is specified on the command line.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ default-api-version: "2025-05-01"
multiapi: true
batch:
- tag: package-2025-05
- tag: package-preview-2025-05
- tag: package-preview-2025-04
- tag: package-2020-11
- tag: package-2020-03-01-only
Expand All @@ -33,24 +34,24 @@ output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservic
perform-load: false
```

### Tag: package-2025-05 and python
### Tag: package-preview-2025-05 and python

These settings apply only when `--tag=package-2025-05 --python` is specified on the command line.
These settings apply only when `--tag=package-preview-2025-05 --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-2025-05' && $(python)
namespace: azure.mgmt.containerservice.v2025_05_01
output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2025_05_01
``` yaml $(tag) == 'package-preview-2025-05' && $(python)
namespace: azure.mgmt.containerservice.v2025_05_02_preview
output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2025_05_02_preview
```

### Tag: package-2025-04 and python
### Tag: package-2025-05 and python

These settings apply only when `--tag=package-2025-04 --python` is specified on the command line.
These settings apply only when `--tag=package-2025-05 --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-2025-04' && $(python)
namespace: azure.mgmt.containerservice.v2025_04_01
output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2025_04_01
``` yaml $(tag) == 'package-2025-05' && $(python)
namespace: azure.mgmt.containerservice.v2025_05_01
output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2025_05_01
```

### Tag: package-2020-11 and python
Expand Down