Skip to content

Commit 2dff13f

Browse files
committed
Update generated files
1 parent 24e24fc commit 2dff13f

File tree

37 files changed

+537
-122
lines changed

37 files changed

+537
-122
lines changed

api/openapi-spec/swagger.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32308,7 +32308,8 @@
3230832308
"required": [
3230932309
"name",
3231032310
"namespaced",
32311-
"kind"
32311+
"kind",
32312+
"verbs"
3231232313
],
3231332314
"properties": {
3231432315
"kind": {
@@ -32322,6 +32323,13 @@
3232232323
"namespaced": {
3232332324
"description": "namespaced indicates if a resource is namespaced or not.",
3232432325
"type": "boolean"
32326+
},
32327+
"verbs": {
32328+
"description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
32329+
"type": "array",
32330+
"items": {
32331+
"type": "string"
32332+
}
3232532333
}
3232632334
}
3232732335
},

api/swagger-spec/apps_v1beta1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2885,7 +2885,8 @@
28852885
"required": [
28862886
"name",
28872887
"namespaced",
2888-
"kind"
2888+
"kind",
2889+
"verbs"
28892890
],
28902891
"properties": {
28912892
"name": {
@@ -2899,6 +2900,12 @@
28992900
"kind": {
29002901
"type": "string",
29012902
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
2903+
},
2904+
"verbs": {
2905+
"type": "array",
2906+
"items": {
2907+
"type": "string"
2908+
}
29022909
}
29032910
}
29042911
}

api/swagger-spec/authentication.k8s.io_v1beta1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,8 @@
300300
"required": [
301301
"name",
302302
"namespaced",
303-
"kind"
303+
"kind",
304+
"verbs"
304305
],
305306
"properties": {
306307
"name": {
@@ -314,6 +315,12 @@
314315
"kind": {
315316
"type": "string",
316317
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
318+
},
319+
"verbs": {
320+
"type": "array",
321+
"items": {
322+
"type": "string"
323+
}
317324
}
318325
}
319326
}

api/swagger-spec/authorization.k8s.io_v1beta1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,8 @@
513513
"required": [
514514
"name",
515515
"namespaced",
516-
"kind"
516+
"kind",
517+
"verbs"
517518
],
518519
"properties": {
519520
"name": {
@@ -527,6 +528,12 @@
527528
"kind": {
528529
"type": "string",
529530
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
531+
},
532+
"verbs": {
533+
"type": "array",
534+
"items": {
535+
"type": "string"
536+
}
530537
}
531538
}
532539
}

api/swagger-spec/autoscaling_v1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1445,7 +1445,8 @@
14451445
"required": [
14461446
"name",
14471447
"namespaced",
1448-
"kind"
1448+
"kind",
1449+
"verbs"
14491450
],
14501451
"properties": {
14511452
"name": {
@@ -1459,6 +1460,12 @@
14591460
"kind": {
14601461
"type": "string",
14611462
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
1463+
},
1464+
"verbs": {
1465+
"type": "array",
1466+
"items": {
1467+
"type": "string"
1468+
}
14621469
}
14631470
}
14641471
}

api/swagger-spec/batch_v1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2865,7 +2865,8 @@
28652865
"required": [
28662866
"name",
28672867
"namespaced",
2868-
"kind"
2868+
"kind",
2869+
"verbs"
28692870
],
28702871
"properties": {
28712872
"name": {
@@ -2879,6 +2880,12 @@
28792880
"kind": {
28802881
"type": "string",
28812882
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
2883+
},
2884+
"verbs": {
2885+
"type": "array",
2886+
"items": {
2887+
"type": "string"
2888+
}
28822889
}
28832890
}
28842891
}

api/swagger-spec/batch_v2alpha1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@
6868
"required": [
6969
"name",
7070
"namespaced",
71-
"kind"
71+
"kind",
72+
"verbs"
7273
],
7374
"properties": {
7475
"name": {
@@ -82,6 +83,12 @@
8283
"kind": {
8384
"type": "string",
8485
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
86+
},
87+
"verbs": {
88+
"type": "array",
89+
"items": {
90+
"type": "string"
91+
}
8592
}
8693
}
8794
}

api/swagger-spec/certificates.k8s.io_v1alpha1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,8 @@
11331133
"required": [
11341134
"name",
11351135
"namespaced",
1136-
"kind"
1136+
"kind",
1137+
"verbs"
11371138
],
11381139
"properties": {
11391140
"name": {
@@ -1147,6 +1148,12 @@
11471148
"kind": {
11481149
"type": "string",
11491150
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
1151+
},
1152+
"verbs": {
1153+
"type": "array",
1154+
"items": {
1155+
"type": "string"
1156+
}
11501157
}
11511158
}
11521159
}

api/swagger-spec/extensions_v1beta1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10737,7 +10737,8 @@
1073710737
"required": [
1073810738
"name",
1073910739
"namespaced",
10740-
"kind"
10740+
"kind",
10741+
"verbs"
1074110742
],
1074210743
"properties": {
1074310744
"name": {
@@ -10751,6 +10752,12 @@
1075110752
"kind": {
1075210753
"type": "string",
1075310754
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
10755+
},
10756+
"verbs": {
10757+
"type": "array",
10758+
"items": {
10759+
"type": "string"
10760+
}
1075410761
}
1075510762
}
1075610763
}

api/swagger-spec/policy_v1beta1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1455,7 +1455,8 @@
14551455
"required": [
14561456
"name",
14571457
"namespaced",
1458-
"kind"
1458+
"kind",
1459+
"verbs"
14591460
],
14601461
"properties": {
14611462
"name": {
@@ -1469,6 +1470,12 @@
14691470
"kind": {
14701471
"type": "string",
14711472
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
1473+
},
1474+
"verbs": {
1475+
"type": "array",
1476+
"items": {
1477+
"type": "string"
1478+
}
14721479
}
14731480
}
14741481
}

api/swagger-spec/rbac.authorization.k8s.io_v1alpha1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3363,7 +3363,8 @@
33633363
"required": [
33643364
"name",
33653365
"namespaced",
3366-
"kind"
3366+
"kind",
3367+
"verbs"
33673368
],
33683369
"properties": {
33693370
"name": {
@@ -3377,6 +3378,12 @@
33773378
"kind": {
33783379
"type": "string",
33793380
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
3381+
},
3382+
"verbs": {
3383+
"type": "array",
3384+
"items": {
3385+
"type": "string"
3386+
}
33803387
}
33813388
}
33823389
}

api/swagger-spec/storage.k8s.io_v1beta1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -968,7 +968,8 @@
968968
"required": [
969969
"name",
970970
"namespaced",
971-
"kind"
971+
"kind",
972+
"verbs"
972973
],
973974
"properties": {
974975
"name": {
@@ -982,6 +983,12 @@
982983
"kind": {
983984
"type": "string",
984985
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
986+
},
987+
"verbs": {
988+
"type": "array",
989+
"items": {
990+
"type": "string"
991+
}
985992
}
986993
}
987994
}

api/swagger-spec/v1.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19982,7 +19982,8 @@
1998219982
"required": [
1998319983
"name",
1998419984
"namespaced",
19985-
"kind"
19985+
"kind",
19986+
"verbs"
1998619987
],
1998719988
"properties": {
1998819989
"name": {
@@ -19996,6 +19997,12 @@
1999619997
"kind": {
1999719998
"type": "string",
1999819999
"description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')"
20000+
},
20001+
"verbs": {
20002+
"type": "array",
20003+
"items": {
20004+
"type": "string"
20005+
}
1999920006
}
2000020007
}
2000120008
}

cmd/kube-controller-manager/app/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ go_library(
2424
"//pkg/apimachinery/registered:go_default_library",
2525
"//pkg/apis/batch:go_default_library",
2626
"//pkg/apis/componentconfig:go_default_library",
27+
"//pkg/apis/extensions:go_default_library",
28+
"//pkg/apis/meta/v1:go_default_library",
2729
"//pkg/client/clientset_generated/release_1_5:go_default_library",
2830
"//pkg/client/clientset_generated/release_1_5/typed/core/v1:go_default_library",
2931
"//pkg/client/leaderelection:go_default_library",

docs/api-reference/apps/v1beta1/definitions.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2130,6 +2130,13 @@ <h3 id="_v1_apiresource">v1.APIResource</h3>
21302130
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
21312131
<td class="tableblock halign-left valign-top"></td>
21322132
</tr>
2133+
<tr>
2134+
<td class="tableblock halign-left valign-top"><p class="tableblock">verbs</p></td>
2135+
<td class="tableblock halign-left valign-top"></td>
2136+
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
2137+
<td class="tableblock halign-left valign-top"><p class="tableblock">string array</p></td>
2138+
<td class="tableblock halign-left valign-top"></td>
2139+
</tr>
21332140
</tbody>
21342141
</table>
21352142

@@ -4444,7 +4451,7 @@ <h3 id="_any">any</h3>
44444451
</div>
44454452
<div id="footer">
44464453
<div id="footer-text">
4447-
Last updated 2016-12-03 22:06:41 UTC
4454+
Last updated 2016-12-05 09:52:09 UTC
44484455
</div>
44494456
</div>
44504457
</body>

docs/api-reference/authentication.k8s.io/v1beta1/definitions.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,6 +885,13 @@ <h3 id="_v1_apiresource">v1.APIResource</h3>
885885
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
886886
<td class="tableblock halign-left valign-top"></td>
887887
</tr>
888+
<tr>
889+
<td class="tableblock halign-left valign-top"><p class="tableblock">verbs</p></td>
890+
<td class="tableblock halign-left valign-top"></td>
891+
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
892+
<td class="tableblock halign-left valign-top"><p class="tableblock">string array</p></td>
893+
<td class="tableblock halign-left valign-top"></td>
894+
</tr>
888895
</tbody>
889896
</table>
890897

@@ -900,7 +907,7 @@ <h3 id="_any">any</h3>
900907
</div>
901908
<div id="footer">
902909
<div id="footer-text">
903-
Last updated 2016-12-03 22:06:49 UTC
910+
Last updated 2016-12-05 09:52:16 UTC
904911
</div>
905912
</div>
906913
</body>

docs/api-reference/authorization.k8s.io/v1beta1/definitions.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,13 @@ <h3 id="_v1_apiresource">v1.APIResource</h3>
754754
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
755755
<td class="tableblock halign-left valign-top"></td>
756756
</tr>
757+
<tr>
758+
<td class="tableblock halign-left valign-top"><p class="tableblock">verbs</p></td>
759+
<td class="tableblock halign-left valign-top"></td>
760+
<td class="tableblock halign-left valign-top"><p class="tableblock">true</p></td>
761+
<td class="tableblock halign-left valign-top"><p class="tableblock">string array</p></td>
762+
<td class="tableblock halign-left valign-top"></td>
763+
</tr>
757764
</tbody>
758765
</table>
759766

@@ -1161,7 +1168,7 @@ <h3 id="_any">any</h3>
11611168
</div>
11621169
<div id="footer">
11631170
<div id="footer-text">
1164-
Last updated 2016-12-03 22:06:55 UTC
1171+
Last updated 2016-12-05 09:52:22 UTC
11651172
</div>
11661173
</div>
11671174
</body>

0 commit comments

Comments
 (0)