File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed
azurestackhci/resource-manager
resourcehealth/resource-manager Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,22 @@ azure-arm: true
20
20
21
21
` ` ` yaml $(go) && $(multiapi)
22
22
batch :
23
+ - tag : package-2022-01
23
24
- tag : package-preview-2021-01
24
25
- tag : package-2020-10
25
26
- tag : package-2020-03-01-preview
26
27
` ` `
27
28
29
+ ### Tag: package-2022-01 and go
30
+
31
+ These settings apply only when ` --tag=package-2022-01 --go` is specified on the command line.
32
+ Please also specify `--go-sdks-folder=<path to the root directory of your azure-sdk-for-go clone>`.
33
+
34
+ ` ` ` yaml $(tag) == 'package-2022-01' && $(go)
35
+ namespace: azurestackhci
36
+ output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2022-01-01/$(namespace)
37
+ ` ` `
38
+
28
39
# ## Tag: package-preview-2021-01 and go
29
40
30
41
These settings apply only when `--tag=package-preview-2021-01 --go` is specified on the command line.
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ directive:
48
48
49
49
` ` ` yaml $(go) && $(multiapi)
50
50
batch :
51
+ - tag : package-2021-12-01
51
52
- tag : package-2021-11-01
52
53
- tag : package-2021-08-01
53
54
- tag : package-2021-07-01
@@ -76,6 +77,16 @@ batch:
76
77
- tag : package-container-service-2015-11-preview
77
78
` ` `
78
79
80
+ ### Tag: package-2021-12-01 and go
81
+
82
+ These settings apply only when ` --tag=package-2021-12-01 --go` is specified on the command line.
83
+ Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
84
+
85
+ ` ` ` yaml $(tag)=='package-2021-12-01' && $(go)
86
+ namespace: compute
87
+ output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2021-12-01/$(namespace)
88
+ ` ` `
89
+
79
90
# ## Tag: package-2021-11-01 and go
80
91
81
92
These settings apply only when `--tag=package-2021-11-01 --go` is specified on the command line.
Original file line number Diff line number Diff line change @@ -21,10 +21,20 @@ azure-arm: true
21
21
22
22
` ` ` yaml $(go) && $(multiapi)
23
23
batch :
24
+ - tag : package-2020-05-01
24
25
- tag : package-2017-07
25
26
- tag : package-2015-01
26
27
` ` `
27
28
29
+ ### Tag: package-2020-05-01 and go
30
+
31
+ These settings apply only when ` --tag=package-2020-05-01 --go` is specified on the command line.
32
+ Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
33
+
34
+ ` ` ` yaml $(tag) == 'package-2020-05-01' && $(go)
35
+ output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2020-05-01/$(namespace)
36
+ ` ` `
37
+
28
38
# ## Tag: package-2017-07 and go
29
39
30
40
These settings apply only when `--tag=package-2017-07 --go` is specified on the command line.
You can’t perform that action at this time.
0 commit comments