Skip to content
Merged
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
88 changes: 88 additions & 0 deletions specification/security/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ Generate all API versions currently shipped for this package
clear-output-folder: true
multiapi: true
batch:
- tag: package-preview-2022-07
- tag: package-2022-05
- tag: package-preview-2022-05
- tag: package-2022-03
- tag: package-2022-01-only
- tag: package-2022-01-preview-only
- tag: package-2021-10-preview-only
- tag: package-2021-07-preview-only
- tag: package-2021-07-only
- tag: package-2021-06-only
- tag: package-2021-05-preview-only
Expand All @@ -61,6 +69,86 @@ output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/sec
perform-load: false
```

### Tag: package-preview-2022-07 and python

These settings apply only when `--tag=package-preview-2022-07 --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-2022-07' && $(python)
namespace: azure.mgmt.security.v2022_07_01_preview
output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/security/v2022_07_01_preview
```

### Tag: package-2022-05 and python

These settings apply only when `--tag=package-2022-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-2022-05' && $(python)
namespace: azure.mgmt.security.v2022_05_01
output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/security/v2022_05_01
```

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

These settings apply only when `--tag=package-preview-2022-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-preview-2022-05' && $(python)
namespace: azure.mgmt.security.v2022_05_01_preview
output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/security/v2022_05_01_preview
```

### Tag: package-2022-03 and python

These settings apply only when `--tag=package-2022-03 --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-2022-03' && $(python)
namespace: azure.mgmt.security.v2022_03_01
output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/security/v2022_03_01
```

### Tag: package-2022-01-only and python

These settings apply only when `--tag=package-2022-01-only --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-2022-01-only' && $(python)
namespace: azure.mgmt.security.v2022_01_01
output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/security/v2022_01_01
```

### Tag: package-2022-01-preview-only and python

These settings apply only when `--tag=package-2022-01-preview-only --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-2022-01-preview-only' && $(python)
namespace: azure.mgmt.security.v2022_01_01_preview
output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/security/v2022_01_01_preview
```

### Tag: package-2021-10-preview-only and python

These settings apply only when `--tag=package-2021-10-preview-only --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-2021-10-preview-only' && $(python)
namespace: azure.mgmt.security.v2021_10_01_preview
output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/security/v2021_10_01_preview
```

### Tag: package-2021-07-preview-only and python

These settings apply only when `--tag=package-2021-07-preview-only --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-2021-07-preview-only' && $(python)
namespace: azure.mgmt.security.v2021_07_01_preview
output-folder: $(python-sdks-folder)/security/azure-mgmt-security/azure/mgmt/security/v2021_07_01_preview
```

### Tag: package-2021-07-only and python

These settings apply only when `--tag=package-2021-07-only --python` is specified on the command line.
Expand Down