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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions specification/monitor/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -1149,6 +1149,17 @@ input-file:
- Microsoft.Insights/stable/2015-07-01/operations_API.json
```

### Tag: package-2015-07-01-python-only

These settings apply only when `--tag=package-2015-07-01-python-only` is specified on the command line.

``` yaml $(tag) == 'package-2015-07-01-python-only'
input-file:
- Microsoft.Insights/stable/2015-07-01/serviceDiagnosticsSettings_API.json
- Microsoft.Insights/stable/2015-07-01/metricDefinitions_API.json
- Microsoft.Insights/stable/2015-07-01/operations_API.json
```

### Tag: package-2015-04-01-only

These settings apply only when `--tag=package-2015-04-01-only` is specified on the command line.
Expand All @@ -1163,6 +1174,19 @@ input-file:
- Microsoft.Insights/stable/2014-04-01/alertRules_API.json
```

### Tag: package-2015-04-01-python-only

These settings apply only when `--tag=package-2015-04-01-python-only` is specified on the command line.

``` yaml $(tag) == 'package-2015-04-01-python-only'
input-file:
- Microsoft.Insights/stable/2015-04-01/activityLogs_API.json
- Microsoft.Insights/stable/2015-04-01/autoscale_API.json
- Microsoft.Insights/stable/2015-04-01/eventCategories_API.json
- Microsoft.Insights/stable/2015-04-01/operations_API.json
- Microsoft.Insights/stable/2015-04-01/tenantActivityLogs_API.json
```

### Tag: package-2014-04-01-only

These settings apply only when `--tag=package-2014-04-01-only` is specified on the command line.
Expand Down
27 changes: 19 additions & 8 deletions specification/monitor/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ batch:
- tag: package-2017-03-01-preview-only
- tag: package-2016-09-01-only
- tag: package-2016-03-01-only
- tag: package-2015-07-01-only
- tag: package-2015-04-01-only
- tag: package-2015-07-01-python-only
- tag: package-2015-04-01-python-only
- tag: package-2014-04-01-only
- multiapiscript: true
```

Expand Down Expand Up @@ -381,22 +382,32 @@ namespace: $(python-base-namespace).v2016_03_01
output-folder: $(python-sdks-folder)/$(python-base-folder)/v2016_03_01
```

### Tag: package-2015-07-01-only and python
### Tag: package-2015-07-01-python-only and python

These settings apply only when `--tag=package-2015-07-01-only --python` is specified on the command line.
These settings apply only when `--tag=package-2015-07-01-python-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-2015-07-01-only'
``` yaml $(tag) == 'package-2015-07-01-python-only'
namespace: $(python-base-namespace).v2015_07_01
output-folder: $(python-sdks-folder)/$(python-base-folder)/v2015_07_01
```

### Tag: package-2015-04-01-only and python
### Tag: package-2015-04-01-python-only and python

These settings apply only when `--tag=package-2015-04-01-only --python` is specified on the command line.
These settings apply only when `--tag=package-2015-04-01-python-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-2015-04-01-only'
``` yaml $(tag) == 'package-2015-04-01-python-only'
namespace: $(python-base-namespace).v2015_04_01
output-folder: $(python-sdks-folder)/$(python-base-folder)/v2015_04_01
```

### Tag: package-2014-04-01-only and python

These settings apply only when `--tag=package-2014-04-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-2014-04-01-only'
namespace: $(python-base-namespace).v2014_04_01
output-folder: $(python-sdks-folder)/$(python-base-folder)/v2014_04_01
```