-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgodaddy-doc.html
6413 lines (6309 loc) · 354 KB
/
godaddy-doc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome file</title>
<link rel="stylesheet" href="https://stackedit.io/style.css" />
</head>
<body class="stackedit">
<div class="stackedit__html"><h1 id="kubernetes-client-kubernetes-v1.9.4">kubernetes-client (Kubernetes v1.9.4)</h1>
<table>
<thead>
<tr>
<th>kubernetes-client method</th>
<th>HTTP Request</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#apiget">api.get</a></td>
<td>GET /api/</td>
</tr>
<tr>
<td><a href="#apiv1get">api.v1.get</a></td>
<td>GET /api/v1/</td>
</tr>
<tr>
<td><a href="#apiv1componentstatusesget">api.v1.componentstatuses.get</a></td>
<td>GET /api/v1/componentstatuses</td>
</tr>
<tr>
<td><a href="#apiv1componentstatusesnameget">api.v1.componentstatuses(name).get</a></td>
<td>GET /api/v1/componentstatuses/{name}</td>
</tr>
<tr>
<td><a href="#apiv1configmapsget">api.v1.configmaps.get</a></td>
<td>GET /api/v1/configmaps</td>
</tr>
<tr>
<td><a href="#apiv1endpointsget">api.v1.endpoints.get</a></td>
<td>GET /api/v1/endpoints</td>
</tr>
<tr>
<td><a href="#apiv1eventsget">api.v1.events.get</a></td>
<td>GET /api/v1/events</td>
</tr>
<tr>
<td><a href="#apiv1limitrangesget">api.v1.limitranges.get</a></td>
<td>GET /api/v1/limitranges</td>
</tr>
<tr>
<td><a href="#apiv1namespacesget">api.v1.namespaces.get</a></td>
<td>GET /api/v1/namespaces</td>
</tr>
<tr>
<td><a href="#apiv1namespacespost">api.v1.namespaces.post</a></td>
<td>POST /api/v1/namespaces</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacebindingspost">api.v1.namespaces(namespace).bindings.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/bindings</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceconfigmapsget">api.v1.namespaces(namespace).configmaps.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/configmaps</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceconfigmapspost">api.v1.namespaces(namespace).configmaps.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/configmaps</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceconfigmapsdelete">api.v1.namespaces(namespace).configmaps.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/configmaps</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceconfigmapsnameget">api.v1.namespaces(namespace).configmaps(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/configmaps/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceconfigmapsnameput">api.v1.namespaces(namespace).configmaps(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/configmaps/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceconfigmapsnamedelete">api.v1.namespaces(namespace).configmaps(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/configmaps/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceconfigmapsnamepatch">api.v1.namespaces(namespace).configmaps(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/configmaps/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceendpointsget">api.v1.namespaces(namespace).endpoints.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/endpoints</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceendpointspost">api.v1.namespaces(namespace).endpoints.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/endpoints</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceendpointsdelete">api.v1.namespaces(namespace).endpoints.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/endpoints</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceendpointsnameget">api.v1.namespaces(namespace).endpoints(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/endpoints/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceendpointsnameput">api.v1.namespaces(namespace).endpoints(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/endpoints/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceendpointsnamedelete">api.v1.namespaces(namespace).endpoints(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/endpoints/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceendpointsnamepatch">api.v1.namespaces(namespace).endpoints(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/endpoints/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceeventsget">api.v1.namespaces(namespace).events.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/events</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceeventspost">api.v1.namespaces(namespace).events.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/events</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceeventsdelete">api.v1.namespaces(namespace).events.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/events</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceeventsnameget">api.v1.namespaces(namespace).events(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/events/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceeventsnameput">api.v1.namespaces(namespace).events(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/events/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceeventsnamedelete">api.v1.namespaces(namespace).events(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/events/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceeventsnamepatch">api.v1.namespaces(namespace).events(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/events/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacelimitrangesget">api.v1.namespaces(namespace).limitranges.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/limitranges</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacelimitrangespost">api.v1.namespaces(namespace).limitranges.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/limitranges</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacelimitrangesdelete">api.v1.namespaces(namespace).limitranges.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/limitranges</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacelimitrangesnameget">api.v1.namespaces(namespace).limitranges(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/limitranges/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacelimitrangesnameput">api.v1.namespaces(namespace).limitranges(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/limitranges/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacelimitrangesnamedelete">api.v1.namespaces(namespace).limitranges(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/limitranges/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacelimitrangesnamepatch">api.v1.namespaces(namespace).limitranges(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/limitranges/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsget">api.v1.namespaces(namespace).persistentvolumeclaims.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/persistentvolumeclaims</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimspost">api.v1.namespaces(namespace).persistentvolumeclaims.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/persistentvolumeclaims</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsdelete">api.v1.namespaces(namespace).persistentvolumeclaims.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsnameget">api.v1.namespaces(namespace).persistentvolumeclaims(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsnameput">api.v1.namespaces(namespace).persistentvolumeclaims(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsnamedelete">api.v1.namespaces(namespace).persistentvolumeclaims(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsnamepatch">api.v1.namespaces(namespace).persistentvolumeclaims(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsnamestatusget">api.v1.namespaces(namespace).persistentvolumeclaims(name).status.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsnamestatusput">api.v1.namespaces(namespace).persistentvolumeclaims(name).status.put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepersistentvolumeclaimsnamestatuspatch">api.v1.namespaces(namespace).persistentvolumeclaims(name).status.patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsget">api.v1.namespaces(namespace).pods.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodspost">api.v1.namespaces(namespace).pods.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/pods</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsdelete">api.v1.namespaces(namespace).pods.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/pods</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameget">api.v1.namespaces(namespace).pods(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameput">api.v1.namespaces(namespace).pods(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnamedelete">api.v1.namespaces(namespace).pods(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnamepatch">api.v1.namespaces(namespace).pods(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameattachget">api.v1.namespaces(namespace).pods(name).attach.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods/{name}/attach</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameattachpost">api.v1.namespaces(namespace).pods(name).attach.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/pods/{name}/attach</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnamebindingpost">api.v1.namespaces(namespace).pods(name).binding.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/pods/{name}/binding</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameevictionpost">api.v1.namespaces(namespace).pods(name).eviction.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/pods/{name}/eviction</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameexecget">api.v1.namespaces(namespace).pods(name).exec.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods/{name}/exec</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameexecpost">api.v1.namespaces(namespace).pods(name).exec.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/pods/{name}/exec</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnamelogget">api.v1.namespaces(namespace).pods(name).log.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods/{name}/log</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameportforwardget">api.v1.namespaces(namespace).pods(name).portforward.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods/{name}/portforward</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameportforwardpost">api.v1.namespaces(namespace).pods(name).portforward.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/pods/{name}/portforward</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxyget">api.v1.namespaces(namespace).pods(name).proxy.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxyput">api.v1.namespaces(namespace).pods(name).proxy.put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypost">api.v1.namespaces(namespace).pods(name).proxy.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/pods/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxydelete">api.v1.namespaces(namespace).pods(name).proxy.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxyoptions">api.v1.namespaces(namespace).pods(name).proxy.options</a></td>
<td>OPTIONS /api/v1/namespaces/{namespace}/pods/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxyhead">api.v1.namespaces(namespace).pods(name).proxy.head</a></td>
<td>HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypatch">api.v1.namespaces(namespace).pods(name).proxy.patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/pods/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypathget">api.v1.namespaces(namespace).pods(name).proxy(path).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypathput">api.v1.namespaces(namespace).pods(name).proxy(path).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypathpost">api.v1.namespaces(namespace).pods(name).proxy(path).post</a></td>
<td>POST /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypathdelete">api.v1.namespaces(namespace).pods(name).proxy(path).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypathoptions">api.v1.namespaces(namespace).pods(name).proxy(path).options</a></td>
<td>OPTIONS /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypathhead">api.v1.namespaces(namespace).pods(name).proxy(path).head</a></td>
<td>HEAD /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnameproxypathpatch">api.v1.namespaces(namespace).pods(name).proxy(path).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/pods/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnamestatusget">api.v1.namespaces(namespace).pods(name).status.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/pods/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnamestatusput">api.v1.namespaces(namespace).pods(name).status.put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/pods/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodsnamestatuspatch">api.v1.namespaces(namespace).pods(name).status.patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/pods/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodtemplatesget">api.v1.namespaces(namespace).podtemplates.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/podtemplates</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodtemplatespost">api.v1.namespaces(namespace).podtemplates.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/podtemplates</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodtemplatesdelete">api.v1.namespaces(namespace).podtemplates.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/podtemplates</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodtemplatesnameget">api.v1.namespaces(namespace).podtemplates(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/podtemplates/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodtemplatesnameput">api.v1.namespaces(namespace).podtemplates(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/podtemplates/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodtemplatesnamedelete">api.v1.namespaces(namespace).podtemplates(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/podtemplates/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacepodtemplatesnamepatch">api.v1.namespaces(namespace).podtemplates(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/podtemplates/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersget">api.v1.namespaces(namespace).replicationcontrollers.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/replicationcontrollers</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollerspost">api.v1.namespaces(namespace).replicationcontrollers.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/replicationcontrollers</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersdelete">api.v1.namespaces(namespace).replicationcontrollers.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/replicationcontrollers</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnameget">api.v1.namespaces(namespace).replicationcontrollers(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnameput">api.v1.namespaces(namespace).replicationcontrollers(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnamedelete">api.v1.namespaces(namespace).replicationcontrollers(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/replicationcontrollers/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnamepatch">api.v1.namespaces(namespace).replicationcontrollers(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnamescaleget">api.v1.namespaces(namespace).replicationcontrollers(name).scale.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnamescaleput">api.v1.namespaces(namespace).replicationcontrollers(name).scale.put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnamescalepatch">api.v1.namespaces(namespace).replicationcontrollers(name).scale.patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/scale</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnamestatusget">api.v1.namespaces(namespace).replicationcontrollers(name).status.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnamestatusput">api.v1.namespaces(namespace).replicationcontrollers(name).status.put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacereplicationcontrollersnamestatuspatch">api.v1.namespaces(namespace).replicationcontrollers(name).status.patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/replicationcontrollers/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasget">api.v1.namespaces(namespace).resourcequotas.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/resourcequotas</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotaspost">api.v1.namespaces(namespace).resourcequotas.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/resourcequotas</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasdelete">api.v1.namespaces(namespace).resourcequotas.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/resourcequotas</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasnameget">api.v1.namespaces(namespace).resourcequotas(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/resourcequotas/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasnameput">api.v1.namespaces(namespace).resourcequotas(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasnamedelete">api.v1.namespaces(namespace).resourcequotas(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/resourcequotas/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasnamepatch">api.v1.namespaces(namespace).resourcequotas(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasnamestatusget">api.v1.namespaces(namespace).resourcequotas(name).status.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/resourcequotas/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasnamestatusput">api.v1.namespaces(namespace).resourcequotas(name).status.put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/resourcequotas/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceresourcequotasnamestatuspatch">api.v1.namespaces(namespace).resourcequotas(name).status.patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/resourcequotas/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacesecretsget">api.v1.namespaces(namespace).secrets.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/secrets</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacesecretspost">api.v1.namespaces(namespace).secrets.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/secrets</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacesecretsdelete">api.v1.namespaces(namespace).secrets.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/secrets</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacesecretsnameget">api.v1.namespaces(namespace).secrets(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/secrets/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacesecretsnameput">api.v1.namespaces(namespace).secrets(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/secrets/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacesecretsnamedelete">api.v1.namespaces(namespace).secrets(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/secrets/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespacesecretsnamepatch">api.v1.namespaces(namespace).secrets(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/secrets/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceserviceaccountsget">api.v1.namespaces(namespace).serviceaccounts.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/serviceaccounts</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceserviceaccountspost">api.v1.namespaces(namespace).serviceaccounts.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/serviceaccounts</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceserviceaccountsdelete">api.v1.namespaces(namespace).serviceaccounts.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/serviceaccounts</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceserviceaccountsnameget">api.v1.namespaces(namespace).serviceaccounts(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/serviceaccounts/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceserviceaccountsnameput">api.v1.namespaces(namespace).serviceaccounts(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/serviceaccounts/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceserviceaccountsnamedelete">api.v1.namespaces(namespace).serviceaccounts(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/serviceaccounts/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceserviceaccountsnamepatch">api.v1.namespaces(namespace).serviceaccounts(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/serviceaccounts/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesget">api.v1.namespaces(namespace).services.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/services</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicespost">api.v1.namespaces(namespace).services.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/services</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameget">api.v1.namespaces(namespace).services(name).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameput">api.v1.namespaces(namespace).services(name).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnamedelete">api.v1.namespaces(namespace).services(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnamepatch">api.v1.namespaces(namespace).services(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxyget">api.v1.namespaces(namespace).services(name).proxy.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/services/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxyput">api.v1.namespaces(namespace).services(name).proxy.put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/services/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypost">api.v1.namespaces(namespace).services(name).proxy.post</a></td>
<td>POST /api/v1/namespaces/{namespace}/services/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxydelete">api.v1.namespaces(namespace).services(name).proxy.delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxyoptions">api.v1.namespaces(namespace).services(name).proxy.options</a></td>
<td>OPTIONS /api/v1/namespaces/{namespace}/services/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxyhead">api.v1.namespaces(namespace).services(name).proxy.head</a></td>
<td>HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypatch">api.v1.namespaces(namespace).services(name).proxy.patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/services/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypathget">api.v1.namespaces(namespace).services(name).proxy(path).get</a></td>
<td>GET /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypathput">api.v1.namespaces(namespace).services(name).proxy(path).put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypathpost">api.v1.namespaces(namespace).services(name).proxy(path).post</a></td>
<td>POST /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypathdelete">api.v1.namespaces(namespace).services(name).proxy(path).delete</a></td>
<td>DELETE /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypathoptions">api.v1.namespaces(namespace).services(name).proxy(path).options</a></td>
<td>OPTIONS /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypathhead">api.v1.namespaces(namespace).services(name).proxy(path).head</a></td>
<td>HEAD /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnameproxypathpatch">api.v1.namespaces(namespace).services(name).proxy(path).patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/services/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnamestatusget">api.v1.namespaces(namespace).services(name).status.get</a></td>
<td>GET /api/v1/namespaces/{namespace}/services/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnamestatusput">api.v1.namespaces(namespace).services(name).status.put</a></td>
<td>PUT /api/v1/namespaces/{namespace}/services/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamespaceservicesnamestatuspatch">api.v1.namespaces(namespace).services(name).status.patch</a></td>
<td>PATCH /api/v1/namespaces/{namespace}/services/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnameget">api.v1.namespaces(name).get</a></td>
<td>GET /api/v1/namespaces/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnameput">api.v1.namespaces(name).put</a></td>
<td>PUT /api/v1/namespaces/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamedelete">api.v1.namespaces(name).delete</a></td>
<td>DELETE /api/v1/namespaces/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamepatch">api.v1.namespaces(name).patch</a></td>
<td>PATCH /api/v1/namespaces/{name}</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamefinalizeput">api.v1.namespaces(name).finalize.put</a></td>
<td>PUT /api/v1/namespaces/{name}/finalize</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamestatusget">api.v1.namespaces(name).status.get</a></td>
<td>GET /api/v1/namespaces/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamestatusput">api.v1.namespaces(name).status.put</a></td>
<td>PUT /api/v1/namespaces/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1namespacesnamestatuspatch">api.v1.namespaces(name).status.patch</a></td>
<td>PATCH /api/v1/namespaces/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1nodesget">api.v1.nodes.get</a></td>
<td>GET /api/v1/nodes</td>
</tr>
<tr>
<td><a href="#apiv1nodespost">api.v1.nodes.post</a></td>
<td>POST /api/v1/nodes</td>
</tr>
<tr>
<td><a href="#apiv1nodesdelete">api.v1.nodes.delete</a></td>
<td>DELETE /api/v1/nodes</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameget">api.v1.nodes(name).get</a></td>
<td>GET /api/v1/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameput">api.v1.nodes(name).put</a></td>
<td>PUT /api/v1/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnamedelete">api.v1.nodes(name).delete</a></td>
<td>DELETE /api/v1/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnamepatch">api.v1.nodes(name).patch</a></td>
<td>PATCH /api/v1/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxyget">api.v1.nodes(name).proxy.get</a></td>
<td>GET /api/v1/nodes/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxyput">api.v1.nodes(name).proxy.put</a></td>
<td>PUT /api/v1/nodes/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypost">api.v1.nodes(name).proxy.post</a></td>
<td>POST /api/v1/nodes/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxydelete">api.v1.nodes(name).proxy.delete</a></td>
<td>DELETE /api/v1/nodes/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxyoptions">api.v1.nodes(name).proxy.options</a></td>
<td>OPTIONS /api/v1/nodes/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxyhead">api.v1.nodes(name).proxy.head</a></td>
<td>HEAD /api/v1/nodes/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypatch">api.v1.nodes(name).proxy.patch</a></td>
<td>PATCH /api/v1/nodes/{name}/proxy</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypathget">api.v1.nodes(name).proxy(path).get</a></td>
<td>GET /api/v1/nodes/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypathput">api.v1.nodes(name).proxy(path).put</a></td>
<td>PUT /api/v1/nodes/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypathpost">api.v1.nodes(name).proxy(path).post</a></td>
<td>POST /api/v1/nodes/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypathdelete">api.v1.nodes(name).proxy(path).delete</a></td>
<td>DELETE /api/v1/nodes/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypathoptions">api.v1.nodes(name).proxy(path).options</a></td>
<td>OPTIONS /api/v1/nodes/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypathhead">api.v1.nodes(name).proxy(path).head</a></td>
<td>HEAD /api/v1/nodes/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnameproxypathpatch">api.v1.nodes(name).proxy(path).patch</a></td>
<td>PATCH /api/v1/nodes/{name}/proxy/{path}</td>
</tr>
<tr>
<td><a href="#apiv1nodesnamestatusget">api.v1.nodes(name).status.get</a></td>
<td>GET /api/v1/nodes/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1nodesnamestatusput">api.v1.nodes(name).status.put</a></td>
<td>PUT /api/v1/nodes/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1nodesnamestatuspatch">api.v1.nodes(name).status.patch</a></td>
<td>PATCH /api/v1/nodes/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumeclaimsget">api.v1.persistentvolumeclaims.get</a></td>
<td>GET /api/v1/persistentvolumeclaims</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesget">api.v1.persistentvolumes.get</a></td>
<td>GET /api/v1/persistentvolumes</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumespost">api.v1.persistentvolumes.post</a></td>
<td>POST /api/v1/persistentvolumes</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesdelete">api.v1.persistentvolumes.delete</a></td>
<td>DELETE /api/v1/persistentvolumes</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesnameget">api.v1.persistentvolumes(name).get</a></td>
<td>GET /api/v1/persistentvolumes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesnameput">api.v1.persistentvolumes(name).put</a></td>
<td>PUT /api/v1/persistentvolumes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesnamedelete">api.v1.persistentvolumes(name).delete</a></td>
<td>DELETE /api/v1/persistentvolumes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesnamepatch">api.v1.persistentvolumes(name).patch</a></td>
<td>PATCH /api/v1/persistentvolumes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesnamestatusget">api.v1.persistentvolumes(name).status.get</a></td>
<td>GET /api/v1/persistentvolumes/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesnamestatusput">api.v1.persistentvolumes(name).status.put</a></td>
<td>PUT /api/v1/persistentvolumes/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1persistentvolumesnamestatuspatch">api.v1.persistentvolumes(name).status.patch</a></td>
<td>PATCH /api/v1/persistentvolumes/{name}/status</td>
</tr>
<tr>
<td><a href="#apiv1podsget">api.v1.pods.get</a></td>
<td>GET /api/v1/pods</td>
</tr>
<tr>
<td><a href="#apiv1podtemplatesget">api.v1.podtemplates.get</a></td>
<td>GET /api/v1/podtemplates</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnameget">api.v1.proxy.namespaces(namespace).pods(name).get</a></td>
<td>GET /api/v1/proxy/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnameput">api.v1.proxy.namespaces(namespace).pods(name).put</a></td>
<td>PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepost">api.v1.proxy.namespaces(namespace).pods(name).post</a></td>
<td>POST /api/v1/proxy/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamedelete">api.v1.proxy.namespaces(namespace).pods(name).delete</a></td>
<td>DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnameoptions">api.v1.proxy.namespaces(namespace).pods(name).options</a></td>
<td>OPTIONS /api/v1/proxy/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamehead">api.v1.proxy.namespaces(namespace).pods(name).head</a></td>
<td>HEAD /api/v1/proxy/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepatch">api.v1.proxy.namespaces(namespace).pods(name).patch</a></td>
<td>PATCH /api/v1/proxy/namespaces/{namespace}/pods/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepathget">api.v1.proxy.namespaces(namespace).pods(name)(path).get</a></td>
<td>GET /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepathput">api.v1.proxy.namespaces(namespace).pods(name)(path).put</a></td>
<td>PUT /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepathpost">api.v1.proxy.namespaces(namespace).pods(name)(path).post</a></td>
<td>POST /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepathdelete">api.v1.proxy.namespaces(namespace).pods(name)(path).delete</a></td>
<td>DELETE /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepathoptions">api.v1.proxy.namespaces(namespace).pods(name)(path).options</a></td>
<td>OPTIONS /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepathhead">api.v1.proxy.namespaces(namespace).pods(name)(path).head</a></td>
<td>HEAD /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespacepodsnamepathpatch">api.v1.proxy.namespaces(namespace).pods(name)(path).patch</a></td>
<td>PATCH /api/v1/proxy/namespaces/{namespace}/pods/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnameget">api.v1.proxy.namespaces(namespace).services(name).get</a></td>
<td>GET /api/v1/proxy/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnameput">api.v1.proxy.namespaces(namespace).services(name).put</a></td>
<td>PUT /api/v1/proxy/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepost">api.v1.proxy.namespaces(namespace).services(name).post</a></td>
<td>POST /api/v1/proxy/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamedelete">api.v1.proxy.namespaces(namespace).services(name).delete</a></td>
<td>DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnameoptions">api.v1.proxy.namespaces(namespace).services(name).options</a></td>
<td>OPTIONS /api/v1/proxy/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamehead">api.v1.proxy.namespaces(namespace).services(name).head</a></td>
<td>HEAD /api/v1/proxy/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepatch">api.v1.proxy.namespaces(namespace).services(name).patch</a></td>
<td>PATCH /api/v1/proxy/namespaces/{namespace}/services/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepathget">api.v1.proxy.namespaces(namespace).services(name)(path).get</a></td>
<td>GET /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepathput">api.v1.proxy.namespaces(namespace).services(name)(path).put</a></td>
<td>PUT /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepathpost">api.v1.proxy.namespaces(namespace).services(name)(path).post</a></td>
<td>POST /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepathdelete">api.v1.proxy.namespaces(namespace).services(name)(path).delete</a></td>
<td>DELETE /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepathoptions">api.v1.proxy.namespaces(namespace).services(name)(path).options</a></td>
<td>OPTIONS /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepathhead">api.v1.proxy.namespaces(namespace).services(name)(path).head</a></td>
<td>HEAD /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynamespacesnamespaceservicesnamepathpatch">api.v1.proxy.namespaces(namespace).services(name)(path).patch</a></td>
<td>PATCH /api/v1/proxy/namespaces/{namespace}/services/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnameget">api.v1.proxy.nodes(name).get</a></td>
<td>GET /api/v1/proxy/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnameput">api.v1.proxy.nodes(name).put</a></td>
<td>PUT /api/v1/proxy/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepost">api.v1.proxy.nodes(name).post</a></td>
<td>POST /api/v1/proxy/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamedelete">api.v1.proxy.nodes(name).delete</a></td>
<td>DELETE /api/v1/proxy/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnameoptions">api.v1.proxy.nodes(name).options</a></td>
<td>OPTIONS /api/v1/proxy/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamehead">api.v1.proxy.nodes(name).head</a></td>
<td>HEAD /api/v1/proxy/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepatch">api.v1.proxy.nodes(name).patch</a></td>
<td>PATCH /api/v1/proxy/nodes/{name}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepathget">api.v1.proxy.nodes(name)(path).get</a></td>
<td>GET /api/v1/proxy/nodes/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepathput">api.v1.proxy.nodes(name)(path).put</a></td>
<td>PUT /api/v1/proxy/nodes/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepathpost">api.v1.proxy.nodes(name)(path).post</a></td>
<td>POST /api/v1/proxy/nodes/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepathdelete">api.v1.proxy.nodes(name)(path).delete</a></td>
<td>DELETE /api/v1/proxy/nodes/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepathoptions">api.v1.proxy.nodes(name)(path).options</a></td>
<td>OPTIONS /api/v1/proxy/nodes/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepathhead">api.v1.proxy.nodes(name)(path).head</a></td>
<td>HEAD /api/v1/proxy/nodes/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1proxynodesnamepathpatch">api.v1.proxy.nodes(name)(path).patch</a></td>
<td>PATCH /api/v1/proxy/nodes/{name}/{path}</td>
</tr>
<tr>
<td><a href="#apiv1replicationcontrollersget">api.v1.replicationcontrollers.get</a></td>
<td>GET /api/v1/replicationcontrollers</td>
</tr>
<tr>
<td><a href="#apiv1resourcequotasget">api.v1.resourcequotas.get</a></td>
<td>GET /api/v1/resourcequotas</td>
</tr>
<tr>
<td><a href="#apiv1secretsget">api.v1.secrets.get</a></td>
<td>GET /api/v1/secrets</td>
</tr>
<tr>
<td><a href="#apiv1serviceaccountsget">api.v1.serviceaccounts.get</a></td>
<td>GET /api/v1/serviceaccounts</td>
</tr>
<tr>
<td><a href="#apiv1servicesget">api.v1.services.get</a></td>
<td>GET /api/v1/services</td>
</tr>
<tr>
<td><a href="#apiv1watchconfigmapsget">api.v1.watch.configmaps.get</a></td>
<td>GET /api/v1/watch/configmaps</td>
</tr>
<tr>
<td><a href="#apiv1watchendpointsget">api.v1.watch.endpoints.get</a></td>
<td>GET /api/v1/watch/endpoints</td>
</tr>
<tr>
<td><a href="#apiv1watcheventsget">api.v1.watch.events.get</a></td>
<td>GET /api/v1/watch/events</td>
</tr>
<tr>
<td><a href="#apiv1watchlimitrangesget">api.v1.watch.limitranges.get</a></td>
<td>GET /api/v1/watch/limitranges</td>