Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update readme.md file
  • Loading branch information
Rachid Cesin Gorostieta committed Mar 1, 2018
commit fb5bfbc0054cc881ceccb498444bf2201fa2b8a4
33 changes: 32 additions & 1 deletion specification/resources/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ tag: package-policy-2017-06
```

``` yaml $(package-resources)
tag: package-resources-2017-05
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can add a new tag. But, You cannot delete an existing tag,

tag: package-resources-2018-02
```

``` yaml $(package-subscriptions)
Expand Down Expand Up @@ -123,6 +123,14 @@ input-file:
- Microsoft.Authorization/preview/2015-10-01-preview/policy.json
```

### Tag: package-resources-2018-02
These settings apply only when `--tag=package-resources-2018-02` is specified on the command line.

``` yaml $(tag) == 'package-resources-2018-02'
input-file:
- Microsoft.Resources/stable/2018-02-01/resources.json
```

### Tag: package-resources-2017-05
These settings apply only when `--tag=package-resources-2017-05` is specified on the command line.

Expand Down Expand Up @@ -271,6 +279,7 @@ batch:
- tag: package-policy-2016-12
- tag: package-policy-2016-04
- tag: package-policy-2015-10
- tag: package-resources-2018-02
- tag: package-resources-2017-05
- tag: package-resources-2016-09
- tag: package-resources-2016-07
Expand Down Expand Up @@ -352,6 +361,16 @@ namespace: policy
output-folder: $(go-sdk-folder)/services/resources/mgmt/2015-10-01-preview/policy
```

### Tag: package-resources-2018-02 and go

These settings apply only when `--tag=package-resources-2018-02 --go` is specified on the command line.
Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.

``` yaml $(tag) == 'package-resources-2018-02' && $(go)
namespace: resources
output-folder: $(go-sdk-folder)/services/resources/mgmt/2018-02-01/resources
```

### Tag: package-resources-2017-05 and go

These settings apply only when `--tag=package-resources-2017-05 --go` is specified on the command line.
Expand Down Expand Up @@ -473,6 +492,7 @@ batch:
- tag: package-policy-2016-12
- tag: package-policy-2016-04
- tag: package-policy-2015-10
- tag: package-resources-2018-02
- tag: package-resources-2017-05
- tag: package-resources-2016-09
- tag: package-resources-2016-02
Expand Down Expand Up @@ -578,6 +598,17 @@ python:
output-folder: $(python-sdks-folder)/azure-mgmt-resource/azure/mgmt/resource/policy/v2015_10_01_preview
```

### Tag: package-resources-2018-02 and python

These settings apply only when `--tag=package-resources-2018-02 --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-resources-2018-02' && $(python)
python:
namespace: azure.mgmt.resource.resources.v2018_02_01
output-folder: $(python-sdks-folder)/azure-mgmt-resource/azure/mgmt/resource/resources/v2018_02_01
```

### Tag: package-resources-2017-05 and python

These settings apply only when `--tag=package-resources-2017-05 --python` is specified on the command line.
Expand Down