Skip to content

Commit

Permalink
update (#24219)
Browse files Browse the repository at this point in the history
  • Loading branch information
msyyc authored May 30, 2023
1 parent dd1b44b commit 389d3c2
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 8 deletions.
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
```

0 comments on commit 389d3c2

Please sign in to comment.