diff --git a/specification/applicationinsights/resource-manager/readme.md b/specification/applicationinsights/resource-manager/readme.md index 2e6162c356ba..a09e56a940f7 100644 --- a/specification/applicationinsights/resource-manager/readme.md +++ b/specification/applicationinsights/resource-manager/readme.md @@ -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. diff --git a/specification/applicationinsights/resource-manager/readme.python.md b/specification/applicationinsights/resource-manager/readme.python.md index 7a82c19ac38b..f0ccfb240591 100644 --- a/specification/applicationinsights/resource-manager/readme.python.md +++ b/specification/applicationinsights/resource-manager/readme.python.md @@ -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 ``` @@ -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 -``` \ No newline at end of file +```