Skip to content
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

[applicationinsights] python multiapi config #16799

Merged
merged 4 commits into from
Nov 19, 2021
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
18 changes: 18 additions & 0 deletions specification/applicationinsights/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,24 @@ input-file:
- Microsoft.Insights/stable/2021-10-14/livetoken_API.json
```

### Tag: package-2021-08

These settings apply only when `--tag=package-2021-08` is specified on the command line.

``` yaml $(tag) == 'package-2021-08'
input-file:
- Microsoft.Insights/stable/2021-08-01/workbooks_API.json
```

### Tag: package-2021-03-08-only

These settings apply only when `--tag=package-2021-03-08-only` is specified on the command line.

``` yaml $(tag) == 'package-2021-03-08-only'
input-file:
- Microsoft.Insights/stable/2021-03-08/myworkbooks_API.json
```

### Tag: package-2021-03-only

These settings apply only when `--tag=package-2021-03-only` is specified on the command line.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ batch:
- tag: package-2020-02-02
- tag: package-2020-03-01-preview
- tag: package-preview-2020-06-only
- tag: package-2020-11-only
- tag: package-2021-03-08-only
- tag: package-2021-08
- multiapiscript: true
```

Expand Down Expand Up @@ -105,7 +108,36 @@ These settings apply only when `--tag=package-preview-2020-06-only --python` is
namespace: azure.mgmt.applicationinsights.v2020_06_02_preview
output-folder: $(python-sdks-folder)/applicationinsights/azure-mgmt-applicationinsights/azure/mgmt/applicationinsights/v2020_06_02_preview
```

### Tag: package-2020-11-only and python

These settings apply only when `--tag=package-2020-11-only --python` is specified on the command line.

``` yaml $(tag) == 'package-2020-11-only' && $(python) && $(track2)
namespace: azure.mgmt.applicationinsights.v2020_11_20
output-folder: $(python-sdks-folder)/applicationinsights/azure-mgmt-applicationinsights/azure/mgmt/applicationinsights/v2020_11_20
```

### Tag: package-2021-03-08-only and python

These settings apply only when `--tag=package-2021-03-08-only --python` is specified on the command line.

``` yaml $(tag) == 'package-2021-03-08-only' && $(python) && $(track2)
namespace: azure.mgmt.applicationinsights.v2021_03_08
output-folder: $(python-sdks-folder)/applicationinsights/azure-mgmt-applicationinsights/azure/mgmt/applicationinsights/v2021_03_08
```

### Tag: package-2021-08 and python

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

``` yaml $(tag) == 'package-2021-08' && $(python) && $(track2)
namespace: azure.mgmt.applicationinsights.v2021_08_01
output-folder: $(python-sdks-folder)/applicationinsights/azure-mgmt-applicationinsights/azure/mgmt/applicationinsights/v2021_08_01
```


```yaml $(python) && $(track2)
modelerfour:
lenient-model-deduplication: true
```
```