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

[Compute] Config compute readme.python #18019

Merged
merged 1 commit into from
Feb 28, 2022
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
9 changes: 9 additions & 0 deletions specification/compute/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,15 @@ input-file:
- Microsoft.Compute/stable/2021-03-01/cloudService.json
```

### Tag: package-2021-12-01-only

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

``` yaml $(tag) == 'package-2021-12-01-only'
input-file:
- Microsoft.Compute/stable/2021-12-01/disk.json
```

### Tag: package-2021-11-01

These settings apply only when `--tag=package-2021-11-01` is specified on the command line.
Expand Down
12 changes: 12 additions & 0 deletions specification/compute/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Generate all API versions currently shipped for this package
```yaml $(multiapi)
clear-output-folder: true
batch:
- tag: package-2021-12-01-only
- tag: package-2021-11-01-only
- tag: package-2021-10-01-only
- tag: package-2021-08-01-only
Expand Down Expand Up @@ -72,6 +73,17 @@ clear-output-folder: false
perform-load: false
```


### Tag: package-2021-12-01-only

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

### Tag: package-2021-11-01-only

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