@itentialopensource/adapter-kubernetes 0.6.1 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +1 -0
- package/.eslintrc.js +12 -12
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +169 -0
- package/CHANGELOG.md +54 -19
- package/CODE_OF_CONDUCT.md +12 -17
- package/CONTRIBUTING.md +88 -74
- package/ENHANCE.md +69 -0
- package/PROPERTIES.md +641 -0
- package/README.md +244 -392
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +7126 -35
- package/adapterBase.js +1331 -50
- package/entities/.generic/action.json +214 -0
- package/entities/.generic/schema.json +28 -0
- package/entities/.system/action.json +1 -1
- package/entities/Admissionregistration/action.json +1 -1
- package/entities/Admissionregistration_v1beta1/action.json +19 -19
- package/entities/Apiextensions/action.json +1 -1
- package/entities/Apiextensions_v1beta1/action.json +13 -13
- package/entities/Apiregistration/action.json +1 -1
- package/entities/Apiregistration_v1/action.json +13 -13
- package/entities/Apiregistration_v1beta1/action.json +13 -13
- package/entities/Apis/action.json +1 -1
- package/entities/Apps/action.json +1 -1
- package/entities/Apps_v1/action.json +77 -77
- package/entities/Apps_v1beta1/action.json +47 -47
- package/entities/Apps_v1beta2/action.json +77 -77
- package/entities/Auditregistration/action.json +1 -1
- package/entities/Auditregistration_v1alpha1/action.json +10 -10
- package/entities/Authentication/action.json +1 -1
- package/entities/Authentication_v1/action.json +2 -2
- package/entities/Authentication_v1beta1/action.json +2 -2
- package/entities/Authorization/action.json +1 -1
- package/entities/Authorization_v1/action.json +5 -5
- package/entities/Authorization_v1beta1/action.json +5 -5
- package/entities/Autoscaling/action.json +1 -1
- package/entities/Autoscaling_v1/action.json +15 -15
- package/entities/Autoscaling_v2beta1/action.json +15 -15
- package/entities/Autoscaling_v2beta2/action.json +15 -15
- package/entities/Batch/action.json +1 -1
- package/entities/Batch_v1/action.json +15 -15
- package/entities/Batch_v1beta1/action.json +15 -15
- package/entities/Batch_v2alpha1/action.json +15 -15
- package/entities/Certificates/action.json +1 -1
- package/entities/Certificates_v1beta1/action.json +14 -14
- package/entities/Coordination/action.json +1 -1
- package/entities/Coordination_v1/action.json +12 -12
- package/entities/Coordination_v1beta1/action.json +12 -12
- package/entities/Core/action.json +1 -1
- package/entities/Core_v1/action.json +240 -240
- package/entities/Events/action.json +1 -1
- package/entities/Events_v1beta1/action.json +12 -12
- package/entities/Extensions/action.json +1 -1
- package/entities/Extensions_v1beta1/action.json +87 -87
- package/entities/Logs/action.json +2 -2
- package/entities/Networking/action.json +1 -1
- package/entities/Networking_v1/action.json +12 -12
- package/entities/Networking_v1beta1/action.json +15 -15
- package/entities/Node/action.json +1 -1
- package/entities/Node_v1alpha1/action.json +10 -10
- package/entities/Node_v1beta1/action.json +10 -10
- package/entities/Policy/action.json +1 -1
- package/entities/Policy_v1beta1/action.json +24 -24
- package/entities/RbacAuthorization/action.json +1 -1
- package/entities/RbacAuthorization_v1/action.json +41 -41
- package/entities/RbacAuthorization_v1alpha1/action.json +41 -41
- package/entities/RbacAuthorization_v1beta1/action.json +41 -41
- package/entities/Scheduling/action.json +1 -1
- package/entities/Scheduling_v1/action.json +10 -10
- package/entities/Scheduling_v1alpha1/action.json +10 -10
- package/entities/Scheduling_v1beta1/action.json +10 -10
- package/entities/Settings/action.json +1 -1
- package/entities/Settings_v1alpha1/action.json +12 -12
- package/entities/Storage/action.json +1 -1
- package/entities/Storage_v1/action.json +22 -22
- package/entities/Storage_v1alpha1/action.json +10 -10
- package/entities/Storage_v1beta1/action.json +37 -37
- package/entities/Version/action.json +1 -1
- package/error.json +12 -0
- package/package.json +47 -23
- package/pronghorn.json +642 -0
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +505 -11
- package/refs?service=git-upload-pack +0 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1594225120157.json +95 -0
- package/report/updateReport1615248177783.json +95 -0
- package/report/updateReport1653089036005.json +120 -0
- package/sampleProperties.json +110 -6
- package/test/integration/adapterTestBasicGet.js +85 -0
- package/test/integration/adapterTestConnectivity.js +93 -0
- package/test/integration/adapterTestIntegration.js +33 -96
- package/test/unit/adapterBaseTestUnit.js +949 -0
- package/test/unit/adapterTestUnit.js +643 -104
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +9 -14
- package/utils/basicGet.js +50 -0
- package/utils/checkMigrate.js +63 -0
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +74 -0
- package/utils/modify.js +154 -0
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +4 -1
- package/utils/removeHooks.js +20 -0
- package/utils/tbScript.js +184 -0
- package/utils/tbUtils.js +469 -0
- package/utils/testRunner.js +16 -16
- package/utils/troubleshootingAdapter.js +190 -0
- package/gl-code-quality-report.json +0 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "getCoreV1APIResources",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}api/v1/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/api/v1/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"name": "listCoreV1ComponentStatus",
|
|
26
26
|
"protocol": "REST",
|
|
27
27
|
"method": "GET",
|
|
28
|
-
"entitypath": "{base_path}/{version}api/v1/componentstatuses?{query}",
|
|
28
|
+
"entitypath": "{base_path}/{version}/api/v1/componentstatuses?{query}",
|
|
29
29
|
"requestSchema": "schema.json",
|
|
30
30
|
"responseSchema": "schema.json",
|
|
31
31
|
"timeout": 0,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "readCoreV1ComponentStatus",
|
|
47
47
|
"protocol": "REST",
|
|
48
48
|
"method": "GET",
|
|
49
|
-
"entitypath": "{base_path}/{version}api/v1/componentstatuses/{pathv1}?{query}",
|
|
49
|
+
"entitypath": "{base_path}/{version}/api/v1/componentstatuses/{pathv1}?{query}",
|
|
50
50
|
"requestSchema": "schema.json",
|
|
51
51
|
"responseSchema": "schema.json",
|
|
52
52
|
"timeout": 0,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"name": "listCoreV1ConfigMapForAllNamespaces",
|
|
68
68
|
"protocol": "REST",
|
|
69
69
|
"method": "GET",
|
|
70
|
-
"entitypath": "{base_path}/{version}api/v1/configmaps?{query}",
|
|
70
|
+
"entitypath": "{base_path}/{version}/api/v1/configmaps?{query}",
|
|
71
71
|
"requestSchema": "schema.json",
|
|
72
72
|
"responseSchema": "schema.json",
|
|
73
73
|
"timeout": 0,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"name": "listCoreV1EndpointsForAllNamespaces",
|
|
89
89
|
"protocol": "REST",
|
|
90
90
|
"method": "GET",
|
|
91
|
-
"entitypath": "{base_path}/{version}api/v1/endpoints?{query}",
|
|
91
|
+
"entitypath": "{base_path}/{version}/api/v1/endpoints?{query}",
|
|
92
92
|
"requestSchema": "schema.json",
|
|
93
93
|
"responseSchema": "schema.json",
|
|
94
94
|
"timeout": 0,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "listCoreV1EventForAllNamespaces",
|
|
110
110
|
"protocol": "REST",
|
|
111
111
|
"method": "GET",
|
|
112
|
-
"entitypath": "{base_path}/{version}api/v1/events?{query}",
|
|
112
|
+
"entitypath": "{base_path}/{version}/api/v1/events?{query}",
|
|
113
113
|
"requestSchema": "schema.json",
|
|
114
114
|
"responseSchema": "schema.json",
|
|
115
115
|
"timeout": 0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "listCoreV1LimitRangeForAllNamespaces",
|
|
131
131
|
"protocol": "REST",
|
|
132
132
|
"method": "GET",
|
|
133
|
-
"entitypath": "{base_path}/{version}api/v1/limitranges?{query}",
|
|
133
|
+
"entitypath": "{base_path}/{version}/api/v1/limitranges?{query}",
|
|
134
134
|
"requestSchema": "schema.json",
|
|
135
135
|
"responseSchema": "schema.json",
|
|
136
136
|
"timeout": 0,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "listCoreV1Namespace",
|
|
152
152
|
"protocol": "REST",
|
|
153
153
|
"method": "GET",
|
|
154
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces?{query}",
|
|
154
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces?{query}",
|
|
155
155
|
"requestSchema": "schema.json",
|
|
156
156
|
"responseSchema": "schema.json",
|
|
157
157
|
"timeout": 0,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"name": "createCoreV1Namespace",
|
|
173
173
|
"protocol": "REST",
|
|
174
174
|
"method": "POST",
|
|
175
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces?{query}",
|
|
175
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces?{query}",
|
|
176
176
|
"requestSchema": "schema.json",
|
|
177
177
|
"responseSchema": "schema.json",
|
|
178
178
|
"timeout": 0,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"name": "createCoreV1NamespacedBinding",
|
|
194
194
|
"protocol": "REST",
|
|
195
195
|
"method": "POST",
|
|
196
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/bindings?{query}",
|
|
196
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/bindings?{query}",
|
|
197
197
|
"requestSchema": "schema.json",
|
|
198
198
|
"responseSchema": "schema.json",
|
|
199
199
|
"timeout": 0,
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"name": "deleteCoreV1CollectionNamespacedConfigMap",
|
|
215
215
|
"protocol": "REST",
|
|
216
216
|
"method": "DELETE",
|
|
217
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/configmaps?{query}",
|
|
217
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps?{query}",
|
|
218
218
|
"requestSchema": "schema.json",
|
|
219
219
|
"responseSchema": "schema.json",
|
|
220
220
|
"timeout": 0,
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"name": "listCoreV1NamespacedConfigMap",
|
|
236
236
|
"protocol": "REST",
|
|
237
237
|
"method": "GET",
|
|
238
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/configmaps?{query}",
|
|
238
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps?{query}",
|
|
239
239
|
"requestSchema": "schema.json",
|
|
240
240
|
"responseSchema": "schema.json",
|
|
241
241
|
"timeout": 0,
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
"name": "createCoreV1NamespacedConfigMap",
|
|
257
257
|
"protocol": "REST",
|
|
258
258
|
"method": "POST",
|
|
259
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/configmaps?{query}",
|
|
259
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps?{query}",
|
|
260
260
|
"requestSchema": "schema.json",
|
|
261
261
|
"responseSchema": "schema.json",
|
|
262
262
|
"timeout": 0,
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
"name": "deleteCoreV1NamespacedConfigMap",
|
|
278
278
|
"protocol": "REST",
|
|
279
279
|
"method": "DELETE",
|
|
280
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
280
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
281
281
|
"requestSchema": "schema.json",
|
|
282
282
|
"responseSchema": "schema.json",
|
|
283
283
|
"timeout": 0,
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"name": "readCoreV1NamespacedConfigMap",
|
|
299
299
|
"protocol": "REST",
|
|
300
300
|
"method": "GET",
|
|
301
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
301
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
302
302
|
"requestSchema": "schema.json",
|
|
303
303
|
"responseSchema": "schema.json",
|
|
304
304
|
"timeout": 0,
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
"name": "patchCoreV1NamespacedConfigMap",
|
|
320
320
|
"protocol": "REST",
|
|
321
321
|
"method": "PATCH",
|
|
322
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
322
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
323
323
|
"requestSchema": "schema.json",
|
|
324
324
|
"responseSchema": "schema.json",
|
|
325
325
|
"timeout": 0,
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
"name": "replaceCoreV1NamespacedConfigMap",
|
|
341
341
|
"protocol": "REST",
|
|
342
342
|
"method": "PUT",
|
|
343
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
343
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
344
344
|
"requestSchema": "schema.json",
|
|
345
345
|
"responseSchema": "schema.json",
|
|
346
346
|
"timeout": 0,
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
"name": "deleteCoreV1CollectionNamespacedEndpoints",
|
|
362
362
|
"protocol": "REST",
|
|
363
363
|
"method": "DELETE",
|
|
364
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/endpoints?{query}",
|
|
364
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints?{query}",
|
|
365
365
|
"requestSchema": "schema.json",
|
|
366
366
|
"responseSchema": "schema.json",
|
|
367
367
|
"timeout": 0,
|
|
@@ -382,7 +382,7 @@
|
|
|
382
382
|
"name": "listCoreV1NamespacedEndpoints",
|
|
383
383
|
"protocol": "REST",
|
|
384
384
|
"method": "GET",
|
|
385
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/endpoints?{query}",
|
|
385
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints?{query}",
|
|
386
386
|
"requestSchema": "schema.json",
|
|
387
387
|
"responseSchema": "schema.json",
|
|
388
388
|
"timeout": 0,
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
"name": "createCoreV1NamespacedEndpoints",
|
|
404
404
|
"protocol": "REST",
|
|
405
405
|
"method": "POST",
|
|
406
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/endpoints?{query}",
|
|
406
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints?{query}",
|
|
407
407
|
"requestSchema": "schema.json",
|
|
408
408
|
"responseSchema": "schema.json",
|
|
409
409
|
"timeout": 0,
|
|
@@ -424,7 +424,7 @@
|
|
|
424
424
|
"name": "deleteCoreV1NamespacedEndpoints",
|
|
425
425
|
"protocol": "REST",
|
|
426
426
|
"method": "DELETE",
|
|
427
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
427
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
428
428
|
"requestSchema": "schema.json",
|
|
429
429
|
"responseSchema": "schema.json",
|
|
430
430
|
"timeout": 0,
|
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
"name": "readCoreV1NamespacedEndpoints",
|
|
446
446
|
"protocol": "REST",
|
|
447
447
|
"method": "GET",
|
|
448
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
448
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
449
449
|
"requestSchema": "schema.json",
|
|
450
450
|
"responseSchema": "schema.json",
|
|
451
451
|
"timeout": 0,
|
|
@@ -466,7 +466,7 @@
|
|
|
466
466
|
"name": "patchCoreV1NamespacedEndpoints",
|
|
467
467
|
"protocol": "REST",
|
|
468
468
|
"method": "PATCH",
|
|
469
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
469
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
470
470
|
"requestSchema": "schema.json",
|
|
471
471
|
"responseSchema": "schema.json",
|
|
472
472
|
"timeout": 0,
|
|
@@ -487,7 +487,7 @@
|
|
|
487
487
|
"name": "replaceCoreV1NamespacedEndpoints",
|
|
488
488
|
"protocol": "REST",
|
|
489
489
|
"method": "PUT",
|
|
490
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
490
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
491
491
|
"requestSchema": "schema.json",
|
|
492
492
|
"responseSchema": "schema.json",
|
|
493
493
|
"timeout": 0,
|
|
@@ -508,7 +508,7 @@
|
|
|
508
508
|
"name": "deleteCoreV1CollectionNamespacedEvent",
|
|
509
509
|
"protocol": "REST",
|
|
510
510
|
"method": "DELETE",
|
|
511
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/events?{query}",
|
|
511
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/events?{query}",
|
|
512
512
|
"requestSchema": "schema.json",
|
|
513
513
|
"responseSchema": "schema.json",
|
|
514
514
|
"timeout": 0,
|
|
@@ -529,7 +529,7 @@
|
|
|
529
529
|
"name": "listCoreV1NamespacedEvent",
|
|
530
530
|
"protocol": "REST",
|
|
531
531
|
"method": "GET",
|
|
532
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/events?{query}",
|
|
532
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/events?{query}",
|
|
533
533
|
"requestSchema": "schema.json",
|
|
534
534
|
"responseSchema": "schema.json",
|
|
535
535
|
"timeout": 0,
|
|
@@ -550,7 +550,7 @@
|
|
|
550
550
|
"name": "createCoreV1NamespacedEvent",
|
|
551
551
|
"protocol": "REST",
|
|
552
552
|
"method": "POST",
|
|
553
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/events?{query}",
|
|
553
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/events?{query}",
|
|
554
554
|
"requestSchema": "schema.json",
|
|
555
555
|
"responseSchema": "schema.json",
|
|
556
556
|
"timeout": 0,
|
|
@@ -571,7 +571,7 @@
|
|
|
571
571
|
"name": "deleteCoreV1NamespacedEvent",
|
|
572
572
|
"protocol": "REST",
|
|
573
573
|
"method": "DELETE",
|
|
574
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
574
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
575
575
|
"requestSchema": "schema.json",
|
|
576
576
|
"responseSchema": "schema.json",
|
|
577
577
|
"timeout": 0,
|
|
@@ -592,7 +592,7 @@
|
|
|
592
592
|
"name": "readCoreV1NamespacedEvent",
|
|
593
593
|
"protocol": "REST",
|
|
594
594
|
"method": "GET",
|
|
595
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
595
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
596
596
|
"requestSchema": "schema.json",
|
|
597
597
|
"responseSchema": "schema.json",
|
|
598
598
|
"timeout": 0,
|
|
@@ -613,7 +613,7 @@
|
|
|
613
613
|
"name": "patchCoreV1NamespacedEvent",
|
|
614
614
|
"protocol": "REST",
|
|
615
615
|
"method": "PATCH",
|
|
616
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
616
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
617
617
|
"requestSchema": "schema.json",
|
|
618
618
|
"responseSchema": "schema.json",
|
|
619
619
|
"timeout": 0,
|
|
@@ -634,7 +634,7 @@
|
|
|
634
634
|
"name": "replaceCoreV1NamespacedEvent",
|
|
635
635
|
"protocol": "REST",
|
|
636
636
|
"method": "PUT",
|
|
637
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
637
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
638
638
|
"requestSchema": "schema.json",
|
|
639
639
|
"responseSchema": "schema.json",
|
|
640
640
|
"timeout": 0,
|
|
@@ -655,7 +655,7 @@
|
|
|
655
655
|
"name": "deleteCoreV1CollectionNamespacedLimitRange",
|
|
656
656
|
"protocol": "REST",
|
|
657
657
|
"method": "DELETE",
|
|
658
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/limitranges?{query}",
|
|
658
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges?{query}",
|
|
659
659
|
"requestSchema": "schema.json",
|
|
660
660
|
"responseSchema": "schema.json",
|
|
661
661
|
"timeout": 0,
|
|
@@ -676,7 +676,7 @@
|
|
|
676
676
|
"name": "listCoreV1NamespacedLimitRange",
|
|
677
677
|
"protocol": "REST",
|
|
678
678
|
"method": "GET",
|
|
679
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/limitranges?{query}",
|
|
679
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges?{query}",
|
|
680
680
|
"requestSchema": "schema.json",
|
|
681
681
|
"responseSchema": "schema.json",
|
|
682
682
|
"timeout": 0,
|
|
@@ -697,7 +697,7 @@
|
|
|
697
697
|
"name": "createCoreV1NamespacedLimitRange",
|
|
698
698
|
"protocol": "REST",
|
|
699
699
|
"method": "POST",
|
|
700
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/limitranges?{query}",
|
|
700
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges?{query}",
|
|
701
701
|
"requestSchema": "schema.json",
|
|
702
702
|
"responseSchema": "schema.json",
|
|
703
703
|
"timeout": 0,
|
|
@@ -718,7 +718,7 @@
|
|
|
718
718
|
"name": "deleteCoreV1NamespacedLimitRange",
|
|
719
719
|
"protocol": "REST",
|
|
720
720
|
"method": "DELETE",
|
|
721
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
721
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
722
722
|
"requestSchema": "schema.json",
|
|
723
723
|
"responseSchema": "schema.json",
|
|
724
724
|
"timeout": 0,
|
|
@@ -739,7 +739,7 @@
|
|
|
739
739
|
"name": "readCoreV1NamespacedLimitRange",
|
|
740
740
|
"protocol": "REST",
|
|
741
741
|
"method": "GET",
|
|
742
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
742
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
743
743
|
"requestSchema": "schema.json",
|
|
744
744
|
"responseSchema": "schema.json",
|
|
745
745
|
"timeout": 0,
|
|
@@ -760,7 +760,7 @@
|
|
|
760
760
|
"name": "patchCoreV1NamespacedLimitRange",
|
|
761
761
|
"protocol": "REST",
|
|
762
762
|
"method": "PATCH",
|
|
763
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
763
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
764
764
|
"requestSchema": "schema.json",
|
|
765
765
|
"responseSchema": "schema.json",
|
|
766
766
|
"timeout": 0,
|
|
@@ -781,7 +781,7 @@
|
|
|
781
781
|
"name": "replaceCoreV1NamespacedLimitRange",
|
|
782
782
|
"protocol": "REST",
|
|
783
783
|
"method": "PUT",
|
|
784
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
784
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
785
785
|
"requestSchema": "schema.json",
|
|
786
786
|
"responseSchema": "schema.json",
|
|
787
787
|
"timeout": 0,
|
|
@@ -802,7 +802,7 @@
|
|
|
802
802
|
"name": "deleteCoreV1CollectionNamespacedPersistentVolumeClaim",
|
|
803
803
|
"protocol": "REST",
|
|
804
804
|
"method": "DELETE",
|
|
805
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}",
|
|
805
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}",
|
|
806
806
|
"requestSchema": "schema.json",
|
|
807
807
|
"responseSchema": "schema.json",
|
|
808
808
|
"timeout": 0,
|
|
@@ -823,7 +823,7 @@
|
|
|
823
823
|
"name": "listCoreV1NamespacedPersistentVolumeClaim",
|
|
824
824
|
"protocol": "REST",
|
|
825
825
|
"method": "GET",
|
|
826
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}",
|
|
826
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}",
|
|
827
827
|
"requestSchema": "schema.json",
|
|
828
828
|
"responseSchema": "schema.json",
|
|
829
829
|
"timeout": 0,
|
|
@@ -844,7 +844,7 @@
|
|
|
844
844
|
"name": "createCoreV1NamespacedPersistentVolumeClaim",
|
|
845
845
|
"protocol": "REST",
|
|
846
846
|
"method": "POST",
|
|
847
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}",
|
|
847
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}",
|
|
848
848
|
"requestSchema": "schema.json",
|
|
849
849
|
"responseSchema": "schema.json",
|
|
850
850
|
"timeout": 0,
|
|
@@ -865,7 +865,7 @@
|
|
|
865
865
|
"name": "deleteCoreV1NamespacedPersistentVolumeClaim",
|
|
866
866
|
"protocol": "REST",
|
|
867
867
|
"method": "DELETE",
|
|
868
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
868
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
869
869
|
"requestSchema": "schema.json",
|
|
870
870
|
"responseSchema": "schema.json",
|
|
871
871
|
"timeout": 0,
|
|
@@ -886,7 +886,7 @@
|
|
|
886
886
|
"name": "readCoreV1NamespacedPersistentVolumeClaim",
|
|
887
887
|
"protocol": "REST",
|
|
888
888
|
"method": "GET",
|
|
889
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
889
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
890
890
|
"requestSchema": "schema.json",
|
|
891
891
|
"responseSchema": "schema.json",
|
|
892
892
|
"timeout": 0,
|
|
@@ -907,7 +907,7 @@
|
|
|
907
907
|
"name": "patchCoreV1NamespacedPersistentVolumeClaim",
|
|
908
908
|
"protocol": "REST",
|
|
909
909
|
"method": "PATCH",
|
|
910
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
910
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
911
911
|
"requestSchema": "schema.json",
|
|
912
912
|
"responseSchema": "schema.json",
|
|
913
913
|
"timeout": 0,
|
|
@@ -928,7 +928,7 @@
|
|
|
928
928
|
"name": "replaceCoreV1NamespacedPersistentVolumeClaim",
|
|
929
929
|
"protocol": "REST",
|
|
930
930
|
"method": "PUT",
|
|
931
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
931
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
932
932
|
"requestSchema": "schema.json",
|
|
933
933
|
"responseSchema": "schema.json",
|
|
934
934
|
"timeout": 0,
|
|
@@ -949,7 +949,7 @@
|
|
|
949
949
|
"name": "readCoreV1NamespacedPersistentVolumeClaimStatus",
|
|
950
950
|
"protocol": "REST",
|
|
951
951
|
"method": "GET",
|
|
952
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}",
|
|
952
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}",
|
|
953
953
|
"requestSchema": "schema.json",
|
|
954
954
|
"responseSchema": "schema.json",
|
|
955
955
|
"timeout": 0,
|
|
@@ -970,7 +970,7 @@
|
|
|
970
970
|
"name": "patchCoreV1NamespacedPersistentVolumeClaimStatus",
|
|
971
971
|
"protocol": "REST",
|
|
972
972
|
"method": "PATCH",
|
|
973
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}",
|
|
973
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}",
|
|
974
974
|
"requestSchema": "schema.json",
|
|
975
975
|
"responseSchema": "schema.json",
|
|
976
976
|
"timeout": 0,
|
|
@@ -991,7 +991,7 @@
|
|
|
991
991
|
"name": "replaceCoreV1NamespacedPersistentVolumeClaimStatus",
|
|
992
992
|
"protocol": "REST",
|
|
993
993
|
"method": "PUT",
|
|
994
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}",
|
|
994
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}",
|
|
995
995
|
"requestSchema": "schema.json",
|
|
996
996
|
"responseSchema": "schema.json",
|
|
997
997
|
"timeout": 0,
|
|
@@ -1012,7 +1012,7 @@
|
|
|
1012
1012
|
"name": "deleteCoreV1CollectionNamespacedPod",
|
|
1013
1013
|
"protocol": "REST",
|
|
1014
1014
|
"method": "DELETE",
|
|
1015
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods?{query}",
|
|
1015
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods?{query}",
|
|
1016
1016
|
"requestSchema": "schema.json",
|
|
1017
1017
|
"responseSchema": "schema.json",
|
|
1018
1018
|
"timeout": 0,
|
|
@@ -1033,7 +1033,7 @@
|
|
|
1033
1033
|
"name": "listCoreV1NamespacedPod",
|
|
1034
1034
|
"protocol": "REST",
|
|
1035
1035
|
"method": "GET",
|
|
1036
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods?{query}",
|
|
1036
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods?{query}",
|
|
1037
1037
|
"requestSchema": "schema.json",
|
|
1038
1038
|
"responseSchema": "schema.json",
|
|
1039
1039
|
"timeout": 0,
|
|
@@ -1054,7 +1054,7 @@
|
|
|
1054
1054
|
"name": "createCoreV1NamespacedPod",
|
|
1055
1055
|
"protocol": "REST",
|
|
1056
1056
|
"method": "POST",
|
|
1057
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods?{query}",
|
|
1057
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods?{query}",
|
|
1058
1058
|
"requestSchema": "schema.json",
|
|
1059
1059
|
"responseSchema": "schema.json",
|
|
1060
1060
|
"timeout": 0,
|
|
@@ -1075,7 +1075,7 @@
|
|
|
1075
1075
|
"name": "deleteCoreV1NamespacedPod",
|
|
1076
1076
|
"protocol": "REST",
|
|
1077
1077
|
"method": "DELETE",
|
|
1078
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
1078
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
1079
1079
|
"requestSchema": "schema.json",
|
|
1080
1080
|
"responseSchema": "schema.json",
|
|
1081
1081
|
"timeout": 0,
|
|
@@ -1096,7 +1096,7 @@
|
|
|
1096
1096
|
"name": "readCoreV1NamespacedPod",
|
|
1097
1097
|
"protocol": "REST",
|
|
1098
1098
|
"method": "GET",
|
|
1099
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
1099
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
1100
1100
|
"requestSchema": "schema.json",
|
|
1101
1101
|
"responseSchema": "schema.json",
|
|
1102
1102
|
"timeout": 0,
|
|
@@ -1117,7 +1117,7 @@
|
|
|
1117
1117
|
"name": "patchCoreV1NamespacedPod",
|
|
1118
1118
|
"protocol": "REST",
|
|
1119
1119
|
"method": "PATCH",
|
|
1120
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
1120
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
1121
1121
|
"requestSchema": "schema.json",
|
|
1122
1122
|
"responseSchema": "schema.json",
|
|
1123
1123
|
"timeout": 0,
|
|
@@ -1138,7 +1138,7 @@
|
|
|
1138
1138
|
"name": "replaceCoreV1NamespacedPod",
|
|
1139
1139
|
"protocol": "REST",
|
|
1140
1140
|
"method": "PUT",
|
|
1141
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
1141
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
1142
1142
|
"requestSchema": "schema.json",
|
|
1143
1143
|
"responseSchema": "schema.json",
|
|
1144
1144
|
"timeout": 0,
|
|
@@ -1159,7 +1159,7 @@
|
|
|
1159
1159
|
"name": "connectCoreV1GetNamespacedPodAttach",
|
|
1160
1160
|
"protocol": "REST",
|
|
1161
1161
|
"method": "GET",
|
|
1162
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/attach?{query}",
|
|
1162
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/attach?{query}",
|
|
1163
1163
|
"requestSchema": "schema.json",
|
|
1164
1164
|
"responseSchema": "schema.json",
|
|
1165
1165
|
"timeout": 0,
|
|
@@ -1180,7 +1180,7 @@
|
|
|
1180
1180
|
"name": "connectCoreV1PostNamespacedPodAttach",
|
|
1181
1181
|
"protocol": "REST",
|
|
1182
1182
|
"method": "POST",
|
|
1183
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/attach?{query}",
|
|
1183
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/attach?{query}",
|
|
1184
1184
|
"requestSchema": "schema.json",
|
|
1185
1185
|
"responseSchema": "schema.json",
|
|
1186
1186
|
"timeout": 0,
|
|
@@ -1201,7 +1201,7 @@
|
|
|
1201
1201
|
"name": "createCoreV1NamespacedPodBinding",
|
|
1202
1202
|
"protocol": "REST",
|
|
1203
1203
|
"method": "POST",
|
|
1204
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/binding?{query}",
|
|
1204
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/binding?{query}",
|
|
1205
1205
|
"requestSchema": "schema.json",
|
|
1206
1206
|
"responseSchema": "schema.json",
|
|
1207
1207
|
"timeout": 0,
|
|
@@ -1222,7 +1222,7 @@
|
|
|
1222
1222
|
"name": "createCoreV1NamespacedPodEviction",
|
|
1223
1223
|
"protocol": "REST",
|
|
1224
1224
|
"method": "POST",
|
|
1225
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/eviction?{query}",
|
|
1225
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/eviction?{query}",
|
|
1226
1226
|
"requestSchema": "schema.json",
|
|
1227
1227
|
"responseSchema": "schema.json",
|
|
1228
1228
|
"timeout": 0,
|
|
@@ -1243,7 +1243,7 @@
|
|
|
1243
1243
|
"name": "connectCoreV1GetNamespacedPodExec",
|
|
1244
1244
|
"protocol": "REST",
|
|
1245
1245
|
"method": "GET",
|
|
1246
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/exec?{query}",
|
|
1246
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/exec?{query}",
|
|
1247
1247
|
"requestSchema": "schema.json",
|
|
1248
1248
|
"responseSchema": "schema.json",
|
|
1249
1249
|
"timeout": 0,
|
|
@@ -1264,7 +1264,7 @@
|
|
|
1264
1264
|
"name": "connectCoreV1PostNamespacedPodExec",
|
|
1265
1265
|
"protocol": "REST",
|
|
1266
1266
|
"method": "POST",
|
|
1267
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/exec?{query}",
|
|
1267
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/exec?{query}",
|
|
1268
1268
|
"requestSchema": "schema.json",
|
|
1269
1269
|
"responseSchema": "schema.json",
|
|
1270
1270
|
"timeout": 0,
|
|
@@ -1285,7 +1285,7 @@
|
|
|
1285
1285
|
"name": "readCoreV1NamespacedPodLog",
|
|
1286
1286
|
"protocol": "REST",
|
|
1287
1287
|
"method": "GET",
|
|
1288
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/log?{query}",
|
|
1288
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/log?{query}",
|
|
1289
1289
|
"requestSchema": "schema.json",
|
|
1290
1290
|
"responseSchema": "schema.json",
|
|
1291
1291
|
"timeout": 0,
|
|
@@ -1306,7 +1306,7 @@
|
|
|
1306
1306
|
"name": "connectCoreV1GetNamespacedPodPortforward",
|
|
1307
1307
|
"protocol": "REST",
|
|
1308
1308
|
"method": "GET",
|
|
1309
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/portforward?{query}",
|
|
1309
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/portforward?{query}",
|
|
1310
1310
|
"requestSchema": "schema.json",
|
|
1311
1311
|
"responseSchema": "schema.json",
|
|
1312
1312
|
"timeout": 0,
|
|
@@ -1327,7 +1327,7 @@
|
|
|
1327
1327
|
"name": "connectCoreV1PostNamespacedPodPortforward",
|
|
1328
1328
|
"protocol": "REST",
|
|
1329
1329
|
"method": "POST",
|
|
1330
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/portforward?{query}",
|
|
1330
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/portforward?{query}",
|
|
1331
1331
|
"requestSchema": "schema.json",
|
|
1332
1332
|
"responseSchema": "schema.json",
|
|
1333
1333
|
"timeout": 0,
|
|
@@ -1348,7 +1348,7 @@
|
|
|
1348
1348
|
"name": "connectCoreV1DeleteNamespacedPodProxy",
|
|
1349
1349
|
"protocol": "REST",
|
|
1350
1350
|
"method": "DELETE",
|
|
1351
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1351
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1352
1352
|
"requestSchema": "schema.json",
|
|
1353
1353
|
"responseSchema": "schema.json",
|
|
1354
1354
|
"timeout": 0,
|
|
@@ -1369,7 +1369,7 @@
|
|
|
1369
1369
|
"name": "connectCoreV1GetNamespacedPodProxy",
|
|
1370
1370
|
"protocol": "REST",
|
|
1371
1371
|
"method": "GET",
|
|
1372
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1372
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1373
1373
|
"requestSchema": "schema.json",
|
|
1374
1374
|
"responseSchema": "schema.json",
|
|
1375
1375
|
"timeout": 0,
|
|
@@ -1390,7 +1390,7 @@
|
|
|
1390
1390
|
"name": "connectCoreV1HeadNamespacedPodProxy",
|
|
1391
1391
|
"protocol": "REST",
|
|
1392
1392
|
"method": "HEAD",
|
|
1393
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1393
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1394
1394
|
"requestSchema": "schema.json",
|
|
1395
1395
|
"responseSchema": "schema.json",
|
|
1396
1396
|
"timeout": 0,
|
|
@@ -1411,7 +1411,7 @@
|
|
|
1411
1411
|
"name": "connectCoreV1OptionsNamespacedPodProxy",
|
|
1412
1412
|
"protocol": "REST",
|
|
1413
1413
|
"method": "OPTIONS",
|
|
1414
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1414
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1415
1415
|
"requestSchema": "schema.json",
|
|
1416
1416
|
"responseSchema": "schema.json",
|
|
1417
1417
|
"timeout": 0,
|
|
@@ -1432,7 +1432,7 @@
|
|
|
1432
1432
|
"name": "connectCoreV1PatchNamespacedPodProxy",
|
|
1433
1433
|
"protocol": "REST",
|
|
1434
1434
|
"method": "PATCH",
|
|
1435
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1435
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1436
1436
|
"requestSchema": "schema.json",
|
|
1437
1437
|
"responseSchema": "schema.json",
|
|
1438
1438
|
"timeout": 0,
|
|
@@ -1453,7 +1453,7 @@
|
|
|
1453
1453
|
"name": "connectCoreV1PostNamespacedPodProxy",
|
|
1454
1454
|
"protocol": "REST",
|
|
1455
1455
|
"method": "POST",
|
|
1456
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1456
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1457
1457
|
"requestSchema": "schema.json",
|
|
1458
1458
|
"responseSchema": "schema.json",
|
|
1459
1459
|
"timeout": 0,
|
|
@@ -1474,7 +1474,7 @@
|
|
|
1474
1474
|
"name": "connectCoreV1PutNamespacedPodProxy",
|
|
1475
1475
|
"protocol": "REST",
|
|
1476
1476
|
"method": "PUT",
|
|
1477
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1477
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}",
|
|
1478
1478
|
"requestSchema": "schema.json",
|
|
1479
1479
|
"responseSchema": "schema.json",
|
|
1480
1480
|
"timeout": 0,
|
|
@@ -1495,7 +1495,7 @@
|
|
|
1495
1495
|
"name": "connectCoreV1DeleteNamespacedPodProxyWithPath",
|
|
1496
1496
|
"protocol": "REST",
|
|
1497
1497
|
"method": "DELETE",
|
|
1498
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1498
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1499
1499
|
"requestSchema": "schema.json",
|
|
1500
1500
|
"responseSchema": "schema.json",
|
|
1501
1501
|
"timeout": 0,
|
|
@@ -1516,7 +1516,7 @@
|
|
|
1516
1516
|
"name": "connectCoreV1GetNamespacedPodProxyWithPath",
|
|
1517
1517
|
"protocol": "REST",
|
|
1518
1518
|
"method": "GET",
|
|
1519
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1519
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1520
1520
|
"requestSchema": "schema.json",
|
|
1521
1521
|
"responseSchema": "schema.json",
|
|
1522
1522
|
"timeout": 0,
|
|
@@ -1537,7 +1537,7 @@
|
|
|
1537
1537
|
"name": "connectCoreV1HeadNamespacedPodProxyWithPath",
|
|
1538
1538
|
"protocol": "REST",
|
|
1539
1539
|
"method": "HEAD",
|
|
1540
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1540
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1541
1541
|
"requestSchema": "schema.json",
|
|
1542
1542
|
"responseSchema": "schema.json",
|
|
1543
1543
|
"timeout": 0,
|
|
@@ -1558,7 +1558,7 @@
|
|
|
1558
1558
|
"name": "connectCoreV1OptionsNamespacedPodProxyWithPath",
|
|
1559
1559
|
"protocol": "REST",
|
|
1560
1560
|
"method": "OPTIONS",
|
|
1561
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1561
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1562
1562
|
"requestSchema": "schema.json",
|
|
1563
1563
|
"responseSchema": "schema.json",
|
|
1564
1564
|
"timeout": 0,
|
|
@@ -1579,7 +1579,7 @@
|
|
|
1579
1579
|
"name": "connectCoreV1PatchNamespacedPodProxyWithPath",
|
|
1580
1580
|
"protocol": "REST",
|
|
1581
1581
|
"method": "PATCH",
|
|
1582
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1582
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1583
1583
|
"requestSchema": "schema.json",
|
|
1584
1584
|
"responseSchema": "schema.json",
|
|
1585
1585
|
"timeout": 0,
|
|
@@ -1600,7 +1600,7 @@
|
|
|
1600
1600
|
"name": "connectCoreV1PostNamespacedPodProxyWithPath",
|
|
1601
1601
|
"protocol": "REST",
|
|
1602
1602
|
"method": "POST",
|
|
1603
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1603
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1604
1604
|
"requestSchema": "schema.json",
|
|
1605
1605
|
"responseSchema": "schema.json",
|
|
1606
1606
|
"timeout": 0,
|
|
@@ -1621,7 +1621,7 @@
|
|
|
1621
1621
|
"name": "connectCoreV1PutNamespacedPodProxyWithPath",
|
|
1622
1622
|
"protocol": "REST",
|
|
1623
1623
|
"method": "PUT",
|
|
1624
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1624
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}",
|
|
1625
1625
|
"requestSchema": "schema.json",
|
|
1626
1626
|
"responseSchema": "schema.json",
|
|
1627
1627
|
"timeout": 0,
|
|
@@ -1642,7 +1642,7 @@
|
|
|
1642
1642
|
"name": "readCoreV1NamespacedPodStatus",
|
|
1643
1643
|
"protocol": "REST",
|
|
1644
1644
|
"method": "GET",
|
|
1645
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}",
|
|
1645
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}",
|
|
1646
1646
|
"requestSchema": "schema.json",
|
|
1647
1647
|
"responseSchema": "schema.json",
|
|
1648
1648
|
"timeout": 0,
|
|
@@ -1663,7 +1663,7 @@
|
|
|
1663
1663
|
"name": "patchCoreV1NamespacedPodStatus",
|
|
1664
1664
|
"protocol": "REST",
|
|
1665
1665
|
"method": "PATCH",
|
|
1666
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}",
|
|
1666
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}",
|
|
1667
1667
|
"requestSchema": "schema.json",
|
|
1668
1668
|
"responseSchema": "schema.json",
|
|
1669
1669
|
"timeout": 0,
|
|
@@ -1684,7 +1684,7 @@
|
|
|
1684
1684
|
"name": "replaceCoreV1NamespacedPodStatus",
|
|
1685
1685
|
"protocol": "REST",
|
|
1686
1686
|
"method": "PUT",
|
|
1687
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}",
|
|
1687
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}",
|
|
1688
1688
|
"requestSchema": "schema.json",
|
|
1689
1689
|
"responseSchema": "schema.json",
|
|
1690
1690
|
"timeout": 0,
|
|
@@ -1705,7 +1705,7 @@
|
|
|
1705
1705
|
"name": "deleteCoreV1CollectionNamespacedPodTemplate",
|
|
1706
1706
|
"protocol": "REST",
|
|
1707
1707
|
"method": "DELETE",
|
|
1708
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/podtemplates?{query}",
|
|
1708
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates?{query}",
|
|
1709
1709
|
"requestSchema": "schema.json",
|
|
1710
1710
|
"responseSchema": "schema.json",
|
|
1711
1711
|
"timeout": 0,
|
|
@@ -1726,7 +1726,7 @@
|
|
|
1726
1726
|
"name": "listCoreV1NamespacedPodTemplate",
|
|
1727
1727
|
"protocol": "REST",
|
|
1728
1728
|
"method": "GET",
|
|
1729
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/podtemplates?{query}",
|
|
1729
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates?{query}",
|
|
1730
1730
|
"requestSchema": "schema.json",
|
|
1731
1731
|
"responseSchema": "schema.json",
|
|
1732
1732
|
"timeout": 0,
|
|
@@ -1747,7 +1747,7 @@
|
|
|
1747
1747
|
"name": "createCoreV1NamespacedPodTemplate",
|
|
1748
1748
|
"protocol": "REST",
|
|
1749
1749
|
"method": "POST",
|
|
1750
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/podtemplates?{query}",
|
|
1750
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates?{query}",
|
|
1751
1751
|
"requestSchema": "schema.json",
|
|
1752
1752
|
"responseSchema": "schema.json",
|
|
1753
1753
|
"timeout": 0,
|
|
@@ -1768,7 +1768,7 @@
|
|
|
1768
1768
|
"name": "deleteCoreV1NamespacedPodTemplate",
|
|
1769
1769
|
"protocol": "REST",
|
|
1770
1770
|
"method": "DELETE",
|
|
1771
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
1771
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
1772
1772
|
"requestSchema": "schema.json",
|
|
1773
1773
|
"responseSchema": "schema.json",
|
|
1774
1774
|
"timeout": 0,
|
|
@@ -1789,7 +1789,7 @@
|
|
|
1789
1789
|
"name": "readCoreV1NamespacedPodTemplate",
|
|
1790
1790
|
"protocol": "REST",
|
|
1791
1791
|
"method": "GET",
|
|
1792
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
1792
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
1793
1793
|
"requestSchema": "schema.json",
|
|
1794
1794
|
"responseSchema": "schema.json",
|
|
1795
1795
|
"timeout": 0,
|
|
@@ -1810,7 +1810,7 @@
|
|
|
1810
1810
|
"name": "patchCoreV1NamespacedPodTemplate",
|
|
1811
1811
|
"protocol": "REST",
|
|
1812
1812
|
"method": "PATCH",
|
|
1813
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
1813
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
1814
1814
|
"requestSchema": "schema.json",
|
|
1815
1815
|
"responseSchema": "schema.json",
|
|
1816
1816
|
"timeout": 0,
|
|
@@ -1831,7 +1831,7 @@
|
|
|
1831
1831
|
"name": "replaceCoreV1NamespacedPodTemplate",
|
|
1832
1832
|
"protocol": "REST",
|
|
1833
1833
|
"method": "PUT",
|
|
1834
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
1834
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
1835
1835
|
"requestSchema": "schema.json",
|
|
1836
1836
|
"responseSchema": "schema.json",
|
|
1837
1837
|
"timeout": 0,
|
|
@@ -1852,7 +1852,7 @@
|
|
|
1852
1852
|
"name": "deleteCoreV1CollectionNamespacedReplicationController",
|
|
1853
1853
|
"protocol": "REST",
|
|
1854
1854
|
"method": "DELETE",
|
|
1855
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers?{query}",
|
|
1855
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers?{query}",
|
|
1856
1856
|
"requestSchema": "schema.json",
|
|
1857
1857
|
"responseSchema": "schema.json",
|
|
1858
1858
|
"timeout": 0,
|
|
@@ -1873,7 +1873,7 @@
|
|
|
1873
1873
|
"name": "listCoreV1NamespacedReplicationController",
|
|
1874
1874
|
"protocol": "REST",
|
|
1875
1875
|
"method": "GET",
|
|
1876
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers?{query}",
|
|
1876
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers?{query}",
|
|
1877
1877
|
"requestSchema": "schema.json",
|
|
1878
1878
|
"responseSchema": "schema.json",
|
|
1879
1879
|
"timeout": 0,
|
|
@@ -1894,7 +1894,7 @@
|
|
|
1894
1894
|
"name": "createCoreV1NamespacedReplicationController",
|
|
1895
1895
|
"protocol": "REST",
|
|
1896
1896
|
"method": "POST",
|
|
1897
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers?{query}",
|
|
1897
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers?{query}",
|
|
1898
1898
|
"requestSchema": "schema.json",
|
|
1899
1899
|
"responseSchema": "schema.json",
|
|
1900
1900
|
"timeout": 0,
|
|
@@ -1915,7 +1915,7 @@
|
|
|
1915
1915
|
"name": "deleteCoreV1NamespacedReplicationController",
|
|
1916
1916
|
"protocol": "REST",
|
|
1917
1917
|
"method": "DELETE",
|
|
1918
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
1918
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
1919
1919
|
"requestSchema": "schema.json",
|
|
1920
1920
|
"responseSchema": "schema.json",
|
|
1921
1921
|
"timeout": 0,
|
|
@@ -1936,7 +1936,7 @@
|
|
|
1936
1936
|
"name": "readCoreV1NamespacedReplicationController",
|
|
1937
1937
|
"protocol": "REST",
|
|
1938
1938
|
"method": "GET",
|
|
1939
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
1939
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
1940
1940
|
"requestSchema": "schema.json",
|
|
1941
1941
|
"responseSchema": "schema.json",
|
|
1942
1942
|
"timeout": 0,
|
|
@@ -1957,7 +1957,7 @@
|
|
|
1957
1957
|
"name": "patchCoreV1NamespacedReplicationController",
|
|
1958
1958
|
"protocol": "REST",
|
|
1959
1959
|
"method": "PATCH",
|
|
1960
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
1960
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
1961
1961
|
"requestSchema": "schema.json",
|
|
1962
1962
|
"responseSchema": "schema.json",
|
|
1963
1963
|
"timeout": 0,
|
|
@@ -1978,7 +1978,7 @@
|
|
|
1978
1978
|
"name": "replaceCoreV1NamespacedReplicationController",
|
|
1979
1979
|
"protocol": "REST",
|
|
1980
1980
|
"method": "PUT",
|
|
1981
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
1981
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
1982
1982
|
"requestSchema": "schema.json",
|
|
1983
1983
|
"responseSchema": "schema.json",
|
|
1984
1984
|
"timeout": 0,
|
|
@@ -1999,7 +1999,7 @@
|
|
|
1999
1999
|
"name": "readCoreV1NamespacedReplicationControllerScale",
|
|
2000
2000
|
"protocol": "REST",
|
|
2001
2001
|
"method": "GET",
|
|
2002
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}",
|
|
2002
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}",
|
|
2003
2003
|
"requestSchema": "schema.json",
|
|
2004
2004
|
"responseSchema": "schema.json",
|
|
2005
2005
|
"timeout": 0,
|
|
@@ -2020,7 +2020,7 @@
|
|
|
2020
2020
|
"name": "patchCoreV1NamespacedReplicationControllerScale",
|
|
2021
2021
|
"protocol": "REST",
|
|
2022
2022
|
"method": "PATCH",
|
|
2023
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}",
|
|
2023
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}",
|
|
2024
2024
|
"requestSchema": "schema.json",
|
|
2025
2025
|
"responseSchema": "schema.json",
|
|
2026
2026
|
"timeout": 0,
|
|
@@ -2041,7 +2041,7 @@
|
|
|
2041
2041
|
"name": "replaceCoreV1NamespacedReplicationControllerScale",
|
|
2042
2042
|
"protocol": "REST",
|
|
2043
2043
|
"method": "PUT",
|
|
2044
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}",
|
|
2044
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}",
|
|
2045
2045
|
"requestSchema": "schema.json",
|
|
2046
2046
|
"responseSchema": "schema.json",
|
|
2047
2047
|
"timeout": 0,
|
|
@@ -2062,7 +2062,7 @@
|
|
|
2062
2062
|
"name": "readCoreV1NamespacedReplicationControllerStatus",
|
|
2063
2063
|
"protocol": "REST",
|
|
2064
2064
|
"method": "GET",
|
|
2065
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}",
|
|
2065
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}",
|
|
2066
2066
|
"requestSchema": "schema.json",
|
|
2067
2067
|
"responseSchema": "schema.json",
|
|
2068
2068
|
"timeout": 0,
|
|
@@ -2083,7 +2083,7 @@
|
|
|
2083
2083
|
"name": "patchCoreV1NamespacedReplicationControllerStatus",
|
|
2084
2084
|
"protocol": "REST",
|
|
2085
2085
|
"method": "PATCH",
|
|
2086
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}",
|
|
2086
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}",
|
|
2087
2087
|
"requestSchema": "schema.json",
|
|
2088
2088
|
"responseSchema": "schema.json",
|
|
2089
2089
|
"timeout": 0,
|
|
@@ -2104,7 +2104,7 @@
|
|
|
2104
2104
|
"name": "replaceCoreV1NamespacedReplicationControllerStatus",
|
|
2105
2105
|
"protocol": "REST",
|
|
2106
2106
|
"method": "PUT",
|
|
2107
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}",
|
|
2107
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}",
|
|
2108
2108
|
"requestSchema": "schema.json",
|
|
2109
2109
|
"responseSchema": "schema.json",
|
|
2110
2110
|
"timeout": 0,
|
|
@@ -2125,7 +2125,7 @@
|
|
|
2125
2125
|
"name": "deleteCoreV1CollectionNamespacedResourceQuota",
|
|
2126
2126
|
"protocol": "REST",
|
|
2127
2127
|
"method": "DELETE",
|
|
2128
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas?{query}",
|
|
2128
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas?{query}",
|
|
2129
2129
|
"requestSchema": "schema.json",
|
|
2130
2130
|
"responseSchema": "schema.json",
|
|
2131
2131
|
"timeout": 0,
|
|
@@ -2146,7 +2146,7 @@
|
|
|
2146
2146
|
"name": "listCoreV1NamespacedResourceQuota",
|
|
2147
2147
|
"protocol": "REST",
|
|
2148
2148
|
"method": "GET",
|
|
2149
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas?{query}",
|
|
2149
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas?{query}",
|
|
2150
2150
|
"requestSchema": "schema.json",
|
|
2151
2151
|
"responseSchema": "schema.json",
|
|
2152
2152
|
"timeout": 0,
|
|
@@ -2167,7 +2167,7 @@
|
|
|
2167
2167
|
"name": "createCoreV1NamespacedResourceQuota",
|
|
2168
2168
|
"protocol": "REST",
|
|
2169
2169
|
"method": "POST",
|
|
2170
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas?{query}",
|
|
2170
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas?{query}",
|
|
2171
2171
|
"requestSchema": "schema.json",
|
|
2172
2172
|
"responseSchema": "schema.json",
|
|
2173
2173
|
"timeout": 0,
|
|
@@ -2188,7 +2188,7 @@
|
|
|
2188
2188
|
"name": "deleteCoreV1NamespacedResourceQuota",
|
|
2189
2189
|
"protocol": "REST",
|
|
2190
2190
|
"method": "DELETE",
|
|
2191
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
2191
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
2192
2192
|
"requestSchema": "schema.json",
|
|
2193
2193
|
"responseSchema": "schema.json",
|
|
2194
2194
|
"timeout": 0,
|
|
@@ -2209,7 +2209,7 @@
|
|
|
2209
2209
|
"name": "readCoreV1NamespacedResourceQuota",
|
|
2210
2210
|
"protocol": "REST",
|
|
2211
2211
|
"method": "GET",
|
|
2212
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
2212
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
2213
2213
|
"requestSchema": "schema.json",
|
|
2214
2214
|
"responseSchema": "schema.json",
|
|
2215
2215
|
"timeout": 0,
|
|
@@ -2230,7 +2230,7 @@
|
|
|
2230
2230
|
"name": "patchCoreV1NamespacedResourceQuota",
|
|
2231
2231
|
"protocol": "REST",
|
|
2232
2232
|
"method": "PATCH",
|
|
2233
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
2233
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
2234
2234
|
"requestSchema": "schema.json",
|
|
2235
2235
|
"responseSchema": "schema.json",
|
|
2236
2236
|
"timeout": 0,
|
|
@@ -2251,7 +2251,7 @@
|
|
|
2251
2251
|
"name": "replaceCoreV1NamespacedResourceQuota",
|
|
2252
2252
|
"protocol": "REST",
|
|
2253
2253
|
"method": "PUT",
|
|
2254
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
2254
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
2255
2255
|
"requestSchema": "schema.json",
|
|
2256
2256
|
"responseSchema": "schema.json",
|
|
2257
2257
|
"timeout": 0,
|
|
@@ -2272,7 +2272,7 @@
|
|
|
2272
2272
|
"name": "readCoreV1NamespacedResourceQuotaStatus",
|
|
2273
2273
|
"protocol": "REST",
|
|
2274
2274
|
"method": "GET",
|
|
2275
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}",
|
|
2275
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}",
|
|
2276
2276
|
"requestSchema": "schema.json",
|
|
2277
2277
|
"responseSchema": "schema.json",
|
|
2278
2278
|
"timeout": 0,
|
|
@@ -2293,7 +2293,7 @@
|
|
|
2293
2293
|
"name": "patchCoreV1NamespacedResourceQuotaStatus",
|
|
2294
2294
|
"protocol": "REST",
|
|
2295
2295
|
"method": "PATCH",
|
|
2296
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}",
|
|
2296
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}",
|
|
2297
2297
|
"requestSchema": "schema.json",
|
|
2298
2298
|
"responseSchema": "schema.json",
|
|
2299
2299
|
"timeout": 0,
|
|
@@ -2314,7 +2314,7 @@
|
|
|
2314
2314
|
"name": "replaceCoreV1NamespacedResourceQuotaStatus",
|
|
2315
2315
|
"protocol": "REST",
|
|
2316
2316
|
"method": "PUT",
|
|
2317
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}",
|
|
2317
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}",
|
|
2318
2318
|
"requestSchema": "schema.json",
|
|
2319
2319
|
"responseSchema": "schema.json",
|
|
2320
2320
|
"timeout": 0,
|
|
@@ -2335,7 +2335,7 @@
|
|
|
2335
2335
|
"name": "deleteCoreV1CollectionNamespacedSecret",
|
|
2336
2336
|
"protocol": "REST",
|
|
2337
2337
|
"method": "DELETE",
|
|
2338
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/secrets?{query}",
|
|
2338
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/secrets?{query}",
|
|
2339
2339
|
"requestSchema": "schema.json",
|
|
2340
2340
|
"responseSchema": "schema.json",
|
|
2341
2341
|
"timeout": 0,
|
|
@@ -2356,7 +2356,7 @@
|
|
|
2356
2356
|
"name": "listCoreV1NamespacedSecret",
|
|
2357
2357
|
"protocol": "REST",
|
|
2358
2358
|
"method": "GET",
|
|
2359
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/secrets?{query}",
|
|
2359
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/secrets?{query}",
|
|
2360
2360
|
"requestSchema": "schema.json",
|
|
2361
2361
|
"responseSchema": "schema.json",
|
|
2362
2362
|
"timeout": 0,
|
|
@@ -2377,7 +2377,7 @@
|
|
|
2377
2377
|
"name": "createCoreV1NamespacedSecret",
|
|
2378
2378
|
"protocol": "REST",
|
|
2379
2379
|
"method": "POST",
|
|
2380
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/secrets?{query}",
|
|
2380
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/secrets?{query}",
|
|
2381
2381
|
"requestSchema": "schema.json",
|
|
2382
2382
|
"responseSchema": "schema.json",
|
|
2383
2383
|
"timeout": 0,
|
|
@@ -2398,7 +2398,7 @@
|
|
|
2398
2398
|
"name": "deleteCoreV1NamespacedSecret",
|
|
2399
2399
|
"protocol": "REST",
|
|
2400
2400
|
"method": "DELETE",
|
|
2401
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
2401
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
2402
2402
|
"requestSchema": "schema.json",
|
|
2403
2403
|
"responseSchema": "schema.json",
|
|
2404
2404
|
"timeout": 0,
|
|
@@ -2419,7 +2419,7 @@
|
|
|
2419
2419
|
"name": "readCoreV1NamespacedSecret",
|
|
2420
2420
|
"protocol": "REST",
|
|
2421
2421
|
"method": "GET",
|
|
2422
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
2422
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
2423
2423
|
"requestSchema": "schema.json",
|
|
2424
2424
|
"responseSchema": "schema.json",
|
|
2425
2425
|
"timeout": 0,
|
|
@@ -2440,7 +2440,7 @@
|
|
|
2440
2440
|
"name": "patchCoreV1NamespacedSecret",
|
|
2441
2441
|
"protocol": "REST",
|
|
2442
2442
|
"method": "PATCH",
|
|
2443
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
2443
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
2444
2444
|
"requestSchema": "schema.json",
|
|
2445
2445
|
"responseSchema": "schema.json",
|
|
2446
2446
|
"timeout": 0,
|
|
@@ -2461,7 +2461,7 @@
|
|
|
2461
2461
|
"name": "replaceCoreV1NamespacedSecret",
|
|
2462
2462
|
"protocol": "REST",
|
|
2463
2463
|
"method": "PUT",
|
|
2464
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
2464
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
2465
2465
|
"requestSchema": "schema.json",
|
|
2466
2466
|
"responseSchema": "schema.json",
|
|
2467
2467
|
"timeout": 0,
|
|
@@ -2482,7 +2482,7 @@
|
|
|
2482
2482
|
"name": "deleteCoreV1CollectionNamespacedServiceAccount",
|
|
2483
2483
|
"protocol": "REST",
|
|
2484
2484
|
"method": "DELETE",
|
|
2485
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/serviceaccounts?{query}",
|
|
2485
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/serviceaccounts?{query}",
|
|
2486
2486
|
"requestSchema": "schema.json",
|
|
2487
2487
|
"responseSchema": "schema.json",
|
|
2488
2488
|
"timeout": 0,
|
|
@@ -2503,7 +2503,7 @@
|
|
|
2503
2503
|
"name": "listCoreV1NamespacedServiceAccount",
|
|
2504
2504
|
"protocol": "REST",
|
|
2505
2505
|
"method": "GET",
|
|
2506
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/serviceaccounts?{query}",
|
|
2506
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/serviceaccounts?{query}",
|
|
2507
2507
|
"requestSchema": "schema.json",
|
|
2508
2508
|
"responseSchema": "schema.json",
|
|
2509
2509
|
"timeout": 0,
|
|
@@ -2524,7 +2524,7 @@
|
|
|
2524
2524
|
"name": "createCoreV1NamespacedServiceAccount",
|
|
2525
2525
|
"protocol": "REST",
|
|
2526
2526
|
"method": "POST",
|
|
2527
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/serviceaccounts?{query}",
|
|
2527
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/serviceaccounts?{query}",
|
|
2528
2528
|
"requestSchema": "schema.json",
|
|
2529
2529
|
"responseSchema": "schema.json",
|
|
2530
2530
|
"timeout": 0,
|
|
@@ -2545,7 +2545,7 @@
|
|
|
2545
2545
|
"name": "deleteCoreV1NamespacedServiceAccount",
|
|
2546
2546
|
"protocol": "REST",
|
|
2547
2547
|
"method": "DELETE",
|
|
2548
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
2548
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
2549
2549
|
"requestSchema": "schema.json",
|
|
2550
2550
|
"responseSchema": "schema.json",
|
|
2551
2551
|
"timeout": 0,
|
|
@@ -2566,7 +2566,7 @@
|
|
|
2566
2566
|
"name": "readCoreV1NamespacedServiceAccount",
|
|
2567
2567
|
"protocol": "REST",
|
|
2568
2568
|
"method": "GET",
|
|
2569
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
2569
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
2570
2570
|
"requestSchema": "schema.json",
|
|
2571
2571
|
"responseSchema": "schema.json",
|
|
2572
2572
|
"timeout": 0,
|
|
@@ -2587,7 +2587,7 @@
|
|
|
2587
2587
|
"name": "patchCoreV1NamespacedServiceAccount",
|
|
2588
2588
|
"protocol": "REST",
|
|
2589
2589
|
"method": "PATCH",
|
|
2590
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
2590
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
2591
2591
|
"requestSchema": "schema.json",
|
|
2592
2592
|
"responseSchema": "schema.json",
|
|
2593
2593
|
"timeout": 0,
|
|
@@ -2608,7 +2608,7 @@
|
|
|
2608
2608
|
"name": "replaceCoreV1NamespacedServiceAccount",
|
|
2609
2609
|
"protocol": "REST",
|
|
2610
2610
|
"method": "PUT",
|
|
2611
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
2611
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
2612
2612
|
"requestSchema": "schema.json",
|
|
2613
2613
|
"responseSchema": "schema.json",
|
|
2614
2614
|
"timeout": 0,
|
|
@@ -2629,7 +2629,7 @@
|
|
|
2629
2629
|
"name": "listCoreV1NamespacedService",
|
|
2630
2630
|
"protocol": "REST",
|
|
2631
2631
|
"method": "GET",
|
|
2632
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services?{query}",
|
|
2632
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services?{query}",
|
|
2633
2633
|
"requestSchema": "schema.json",
|
|
2634
2634
|
"responseSchema": "schema.json",
|
|
2635
2635
|
"timeout": 0,
|
|
@@ -2650,7 +2650,7 @@
|
|
|
2650
2650
|
"name": "createCoreV1NamespacedService",
|
|
2651
2651
|
"protocol": "REST",
|
|
2652
2652
|
"method": "POST",
|
|
2653
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services?{query}",
|
|
2653
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services?{query}",
|
|
2654
2654
|
"requestSchema": "schema.json",
|
|
2655
2655
|
"responseSchema": "schema.json",
|
|
2656
2656
|
"timeout": 0,
|
|
@@ -2671,7 +2671,7 @@
|
|
|
2671
2671
|
"name": "deleteCoreV1NamespacedService",
|
|
2672
2672
|
"protocol": "REST",
|
|
2673
2673
|
"method": "DELETE",
|
|
2674
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
2674
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
2675
2675
|
"requestSchema": "schema.json",
|
|
2676
2676
|
"responseSchema": "schema.json",
|
|
2677
2677
|
"timeout": 0,
|
|
@@ -2692,7 +2692,7 @@
|
|
|
2692
2692
|
"name": "readCoreV1NamespacedService",
|
|
2693
2693
|
"protocol": "REST",
|
|
2694
2694
|
"method": "GET",
|
|
2695
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
2695
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
2696
2696
|
"requestSchema": "schema.json",
|
|
2697
2697
|
"responseSchema": "schema.json",
|
|
2698
2698
|
"timeout": 0,
|
|
@@ -2713,7 +2713,7 @@
|
|
|
2713
2713
|
"name": "patchCoreV1NamespacedService",
|
|
2714
2714
|
"protocol": "REST",
|
|
2715
2715
|
"method": "PATCH",
|
|
2716
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
2716
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
2717
2717
|
"requestSchema": "schema.json",
|
|
2718
2718
|
"responseSchema": "schema.json",
|
|
2719
2719
|
"timeout": 0,
|
|
@@ -2734,7 +2734,7 @@
|
|
|
2734
2734
|
"name": "replaceCoreV1NamespacedService",
|
|
2735
2735
|
"protocol": "REST",
|
|
2736
2736
|
"method": "PUT",
|
|
2737
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
2737
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
2738
2738
|
"requestSchema": "schema.json",
|
|
2739
2739
|
"responseSchema": "schema.json",
|
|
2740
2740
|
"timeout": 0,
|
|
@@ -2755,7 +2755,7 @@
|
|
|
2755
2755
|
"name": "connectCoreV1DeleteNamespacedServiceProxy",
|
|
2756
2756
|
"protocol": "REST",
|
|
2757
2757
|
"method": "DELETE",
|
|
2758
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2758
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2759
2759
|
"requestSchema": "schema.json",
|
|
2760
2760
|
"responseSchema": "schema.json",
|
|
2761
2761
|
"timeout": 0,
|
|
@@ -2776,7 +2776,7 @@
|
|
|
2776
2776
|
"name": "connectCoreV1GetNamespacedServiceProxy",
|
|
2777
2777
|
"protocol": "REST",
|
|
2778
2778
|
"method": "GET",
|
|
2779
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2779
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2780
2780
|
"requestSchema": "schema.json",
|
|
2781
2781
|
"responseSchema": "schema.json",
|
|
2782
2782
|
"timeout": 0,
|
|
@@ -2797,7 +2797,7 @@
|
|
|
2797
2797
|
"name": "connectCoreV1HeadNamespacedServiceProxy",
|
|
2798
2798
|
"protocol": "REST",
|
|
2799
2799
|
"method": "HEAD",
|
|
2800
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2800
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2801
2801
|
"requestSchema": "schema.json",
|
|
2802
2802
|
"responseSchema": "schema.json",
|
|
2803
2803
|
"timeout": 0,
|
|
@@ -2818,7 +2818,7 @@
|
|
|
2818
2818
|
"name": "connectCoreV1OptionsNamespacedServiceProxy",
|
|
2819
2819
|
"protocol": "REST",
|
|
2820
2820
|
"method": "OPTIONS",
|
|
2821
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2821
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2822
2822
|
"requestSchema": "schema.json",
|
|
2823
2823
|
"responseSchema": "schema.json",
|
|
2824
2824
|
"timeout": 0,
|
|
@@ -2839,7 +2839,7 @@
|
|
|
2839
2839
|
"name": "connectCoreV1PatchNamespacedServiceProxy",
|
|
2840
2840
|
"protocol": "REST",
|
|
2841
2841
|
"method": "PATCH",
|
|
2842
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2842
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2843
2843
|
"requestSchema": "schema.json",
|
|
2844
2844
|
"responseSchema": "schema.json",
|
|
2845
2845
|
"timeout": 0,
|
|
@@ -2860,7 +2860,7 @@
|
|
|
2860
2860
|
"name": "connectCoreV1PostNamespacedServiceProxy",
|
|
2861
2861
|
"protocol": "REST",
|
|
2862
2862
|
"method": "POST",
|
|
2863
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2863
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2864
2864
|
"requestSchema": "schema.json",
|
|
2865
2865
|
"responseSchema": "schema.json",
|
|
2866
2866
|
"timeout": 0,
|
|
@@ -2881,7 +2881,7 @@
|
|
|
2881
2881
|
"name": "connectCoreV1PutNamespacedServiceProxy",
|
|
2882
2882
|
"protocol": "REST",
|
|
2883
2883
|
"method": "PUT",
|
|
2884
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2884
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy?{query}",
|
|
2885
2885
|
"requestSchema": "schema.json",
|
|
2886
2886
|
"responseSchema": "schema.json",
|
|
2887
2887
|
"timeout": 0,
|
|
@@ -2902,7 +2902,7 @@
|
|
|
2902
2902
|
"name": "connectCoreV1DeleteNamespacedServiceProxyWithPath",
|
|
2903
2903
|
"protocol": "REST",
|
|
2904
2904
|
"method": "DELETE",
|
|
2905
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2905
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2906
2906
|
"requestSchema": "schema.json",
|
|
2907
2907
|
"responseSchema": "schema.json",
|
|
2908
2908
|
"timeout": 0,
|
|
@@ -2923,7 +2923,7 @@
|
|
|
2923
2923
|
"name": "connectCoreV1GetNamespacedServiceProxyWithPath",
|
|
2924
2924
|
"protocol": "REST",
|
|
2925
2925
|
"method": "GET",
|
|
2926
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2926
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2927
2927
|
"requestSchema": "schema.json",
|
|
2928
2928
|
"responseSchema": "schema.json",
|
|
2929
2929
|
"timeout": 0,
|
|
@@ -2944,7 +2944,7 @@
|
|
|
2944
2944
|
"name": "connectCoreV1HeadNamespacedServiceProxyWithPath",
|
|
2945
2945
|
"protocol": "REST",
|
|
2946
2946
|
"method": "HEAD",
|
|
2947
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2947
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2948
2948
|
"requestSchema": "schema.json",
|
|
2949
2949
|
"responseSchema": "schema.json",
|
|
2950
2950
|
"timeout": 0,
|
|
@@ -2965,7 +2965,7 @@
|
|
|
2965
2965
|
"name": "connectCoreV1OptionsNamespacedServiceProxyWithPath",
|
|
2966
2966
|
"protocol": "REST",
|
|
2967
2967
|
"method": "OPTIONS",
|
|
2968
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2968
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2969
2969
|
"requestSchema": "schema.json",
|
|
2970
2970
|
"responseSchema": "schema.json",
|
|
2971
2971
|
"timeout": 0,
|
|
@@ -2986,7 +2986,7 @@
|
|
|
2986
2986
|
"name": "connectCoreV1PatchNamespacedServiceProxyWithPath",
|
|
2987
2987
|
"protocol": "REST",
|
|
2988
2988
|
"method": "PATCH",
|
|
2989
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2989
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
2990
2990
|
"requestSchema": "schema.json",
|
|
2991
2991
|
"responseSchema": "schema.json",
|
|
2992
2992
|
"timeout": 0,
|
|
@@ -3007,7 +3007,7 @@
|
|
|
3007
3007
|
"name": "connectCoreV1PostNamespacedServiceProxyWithPath",
|
|
3008
3008
|
"protocol": "REST",
|
|
3009
3009
|
"method": "POST",
|
|
3010
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
3010
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
3011
3011
|
"requestSchema": "schema.json",
|
|
3012
3012
|
"responseSchema": "schema.json",
|
|
3013
3013
|
"timeout": 0,
|
|
@@ -3028,7 +3028,7 @@
|
|
|
3028
3028
|
"name": "connectCoreV1PutNamespacedServiceProxyWithPath",
|
|
3029
3029
|
"protocol": "REST",
|
|
3030
3030
|
"method": "PUT",
|
|
3031
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
3031
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/proxy/{pathv3}?{query}",
|
|
3032
3032
|
"requestSchema": "schema.json",
|
|
3033
3033
|
"responseSchema": "schema.json",
|
|
3034
3034
|
"timeout": 0,
|
|
@@ -3049,7 +3049,7 @@
|
|
|
3049
3049
|
"name": "readCoreV1NamespacedServiceStatus",
|
|
3050
3050
|
"protocol": "REST",
|
|
3051
3051
|
"method": "GET",
|
|
3052
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/status?{query}",
|
|
3052
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/status?{query}",
|
|
3053
3053
|
"requestSchema": "schema.json",
|
|
3054
3054
|
"responseSchema": "schema.json",
|
|
3055
3055
|
"timeout": 0,
|
|
@@ -3070,7 +3070,7 @@
|
|
|
3070
3070
|
"name": "patchCoreV1NamespacedServiceStatus",
|
|
3071
3071
|
"protocol": "REST",
|
|
3072
3072
|
"method": "PATCH",
|
|
3073
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/status?{query}",
|
|
3073
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/status?{query}",
|
|
3074
3074
|
"requestSchema": "schema.json",
|
|
3075
3075
|
"responseSchema": "schema.json",
|
|
3076
3076
|
"timeout": 0,
|
|
@@ -3091,7 +3091,7 @@
|
|
|
3091
3091
|
"name": "replaceCoreV1NamespacedServiceStatus",
|
|
3092
3092
|
"protocol": "REST",
|
|
3093
3093
|
"method": "PUT",
|
|
3094
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/services/{pathv2}/status?{query}",
|
|
3094
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/services/{pathv2}/status?{query}",
|
|
3095
3095
|
"requestSchema": "schema.json",
|
|
3096
3096
|
"responseSchema": "schema.json",
|
|
3097
3097
|
"timeout": 0,
|
|
@@ -3112,7 +3112,7 @@
|
|
|
3112
3112
|
"name": "deleteCoreV1Namespace",
|
|
3113
3113
|
"protocol": "REST",
|
|
3114
3114
|
"method": "DELETE",
|
|
3115
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}?{query}",
|
|
3115
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}?{query}",
|
|
3116
3116
|
"requestSchema": "schema.json",
|
|
3117
3117
|
"responseSchema": "schema.json",
|
|
3118
3118
|
"timeout": 0,
|
|
@@ -3133,7 +3133,7 @@
|
|
|
3133
3133
|
"name": "readCoreV1Namespace",
|
|
3134
3134
|
"protocol": "REST",
|
|
3135
3135
|
"method": "GET",
|
|
3136
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}?{query}",
|
|
3136
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}?{query}",
|
|
3137
3137
|
"requestSchema": "schema.json",
|
|
3138
3138
|
"responseSchema": "schema.json",
|
|
3139
3139
|
"timeout": 0,
|
|
@@ -3154,7 +3154,7 @@
|
|
|
3154
3154
|
"name": "patchCoreV1Namespace",
|
|
3155
3155
|
"protocol": "REST",
|
|
3156
3156
|
"method": "PATCH",
|
|
3157
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}?{query}",
|
|
3157
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}?{query}",
|
|
3158
3158
|
"requestSchema": "schema.json",
|
|
3159
3159
|
"responseSchema": "schema.json",
|
|
3160
3160
|
"timeout": 0,
|
|
@@ -3175,7 +3175,7 @@
|
|
|
3175
3175
|
"name": "replaceCoreV1Namespace",
|
|
3176
3176
|
"protocol": "REST",
|
|
3177
3177
|
"method": "PUT",
|
|
3178
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}?{query}",
|
|
3178
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}?{query}",
|
|
3179
3179
|
"requestSchema": "schema.json",
|
|
3180
3180
|
"responseSchema": "schema.json",
|
|
3181
3181
|
"timeout": 0,
|
|
@@ -3196,7 +3196,7 @@
|
|
|
3196
3196
|
"name": "replaceCoreV1NamespaceFinalize",
|
|
3197
3197
|
"protocol": "REST",
|
|
3198
3198
|
"method": "PUT",
|
|
3199
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/finalize?{query}",
|
|
3199
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/finalize?{query}",
|
|
3200
3200
|
"requestSchema": "schema.json",
|
|
3201
3201
|
"responseSchema": "schema.json",
|
|
3202
3202
|
"timeout": 0,
|
|
@@ -3217,7 +3217,7 @@
|
|
|
3217
3217
|
"name": "readCoreV1NamespaceStatus",
|
|
3218
3218
|
"protocol": "REST",
|
|
3219
3219
|
"method": "GET",
|
|
3220
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/status?{query}",
|
|
3220
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/status?{query}",
|
|
3221
3221
|
"requestSchema": "schema.json",
|
|
3222
3222
|
"responseSchema": "schema.json",
|
|
3223
3223
|
"timeout": 0,
|
|
@@ -3238,7 +3238,7 @@
|
|
|
3238
3238
|
"name": "patchCoreV1NamespaceStatus",
|
|
3239
3239
|
"protocol": "REST",
|
|
3240
3240
|
"method": "PATCH",
|
|
3241
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/status?{query}",
|
|
3241
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/status?{query}",
|
|
3242
3242
|
"requestSchema": "schema.json",
|
|
3243
3243
|
"responseSchema": "schema.json",
|
|
3244
3244
|
"timeout": 0,
|
|
@@ -3259,7 +3259,7 @@
|
|
|
3259
3259
|
"name": "replaceCoreV1NamespaceStatus",
|
|
3260
3260
|
"protocol": "REST",
|
|
3261
3261
|
"method": "PUT",
|
|
3262
|
-
"entitypath": "{base_path}/{version}api/v1/namespaces/{pathv1}/status?{query}",
|
|
3262
|
+
"entitypath": "{base_path}/{version}/api/v1/namespaces/{pathv1}/status?{query}",
|
|
3263
3263
|
"requestSchema": "schema.json",
|
|
3264
3264
|
"responseSchema": "schema.json",
|
|
3265
3265
|
"timeout": 0,
|
|
@@ -3280,7 +3280,7 @@
|
|
|
3280
3280
|
"name": "deleteCoreV1CollectionNode",
|
|
3281
3281
|
"protocol": "REST",
|
|
3282
3282
|
"method": "DELETE",
|
|
3283
|
-
"entitypath": "{base_path}/{version}api/v1/nodes?{query}",
|
|
3283
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes?{query}",
|
|
3284
3284
|
"requestSchema": "schema.json",
|
|
3285
3285
|
"responseSchema": "schema.json",
|
|
3286
3286
|
"timeout": 0,
|
|
@@ -3301,7 +3301,7 @@
|
|
|
3301
3301
|
"name": "listCoreV1Node",
|
|
3302
3302
|
"protocol": "REST",
|
|
3303
3303
|
"method": "GET",
|
|
3304
|
-
"entitypath": "{base_path}/{version}api/v1/nodes?{query}",
|
|
3304
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes?{query}",
|
|
3305
3305
|
"requestSchema": "schema.json",
|
|
3306
3306
|
"responseSchema": "schema.json",
|
|
3307
3307
|
"timeout": 0,
|
|
@@ -3322,7 +3322,7 @@
|
|
|
3322
3322
|
"name": "createCoreV1Node",
|
|
3323
3323
|
"protocol": "REST",
|
|
3324
3324
|
"method": "POST",
|
|
3325
|
-
"entitypath": "{base_path}/{version}api/v1/nodes?{query}",
|
|
3325
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes?{query}",
|
|
3326
3326
|
"requestSchema": "schema.json",
|
|
3327
3327
|
"responseSchema": "schema.json",
|
|
3328
3328
|
"timeout": 0,
|
|
@@ -3343,7 +3343,7 @@
|
|
|
3343
3343
|
"name": "deleteCoreV1Node",
|
|
3344
3344
|
"protocol": "REST",
|
|
3345
3345
|
"method": "DELETE",
|
|
3346
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}?{query}",
|
|
3346
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}?{query}",
|
|
3347
3347
|
"requestSchema": "schema.json",
|
|
3348
3348
|
"responseSchema": "schema.json",
|
|
3349
3349
|
"timeout": 0,
|
|
@@ -3364,7 +3364,7 @@
|
|
|
3364
3364
|
"name": "readCoreV1Node",
|
|
3365
3365
|
"protocol": "REST",
|
|
3366
3366
|
"method": "GET",
|
|
3367
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}?{query}",
|
|
3367
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}?{query}",
|
|
3368
3368
|
"requestSchema": "schema.json",
|
|
3369
3369
|
"responseSchema": "schema.json",
|
|
3370
3370
|
"timeout": 0,
|
|
@@ -3385,7 +3385,7 @@
|
|
|
3385
3385
|
"name": "patchCoreV1Node",
|
|
3386
3386
|
"protocol": "REST",
|
|
3387
3387
|
"method": "PATCH",
|
|
3388
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}?{query}",
|
|
3388
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}?{query}",
|
|
3389
3389
|
"requestSchema": "schema.json",
|
|
3390
3390
|
"responseSchema": "schema.json",
|
|
3391
3391
|
"timeout": 0,
|
|
@@ -3406,7 +3406,7 @@
|
|
|
3406
3406
|
"name": "replaceCoreV1Node",
|
|
3407
3407
|
"protocol": "REST",
|
|
3408
3408
|
"method": "PUT",
|
|
3409
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}?{query}",
|
|
3409
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}?{query}",
|
|
3410
3410
|
"requestSchema": "schema.json",
|
|
3411
3411
|
"responseSchema": "schema.json",
|
|
3412
3412
|
"timeout": 0,
|
|
@@ -3427,7 +3427,7 @@
|
|
|
3427
3427
|
"name": "connectCoreV1DeleteNodeProxy",
|
|
3428
3428
|
"protocol": "REST",
|
|
3429
3429
|
"method": "DELETE",
|
|
3430
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3430
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3431
3431
|
"requestSchema": "schema.json",
|
|
3432
3432
|
"responseSchema": "schema.json",
|
|
3433
3433
|
"timeout": 0,
|
|
@@ -3448,7 +3448,7 @@
|
|
|
3448
3448
|
"name": "connectCoreV1GetNodeProxy",
|
|
3449
3449
|
"protocol": "REST",
|
|
3450
3450
|
"method": "GET",
|
|
3451
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3451
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3452
3452
|
"requestSchema": "schema.json",
|
|
3453
3453
|
"responseSchema": "schema.json",
|
|
3454
3454
|
"timeout": 0,
|
|
@@ -3469,7 +3469,7 @@
|
|
|
3469
3469
|
"name": "connectCoreV1HeadNodeProxy",
|
|
3470
3470
|
"protocol": "REST",
|
|
3471
3471
|
"method": "HEAD",
|
|
3472
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3472
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3473
3473
|
"requestSchema": "schema.json",
|
|
3474
3474
|
"responseSchema": "schema.json",
|
|
3475
3475
|
"timeout": 0,
|
|
@@ -3490,7 +3490,7 @@
|
|
|
3490
3490
|
"name": "connectCoreV1OptionsNodeProxy",
|
|
3491
3491
|
"protocol": "REST",
|
|
3492
3492
|
"method": "OPTIONS",
|
|
3493
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3493
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3494
3494
|
"requestSchema": "schema.json",
|
|
3495
3495
|
"responseSchema": "schema.json",
|
|
3496
3496
|
"timeout": 0,
|
|
@@ -3511,7 +3511,7 @@
|
|
|
3511
3511
|
"name": "connectCoreV1PatchNodeProxy",
|
|
3512
3512
|
"protocol": "REST",
|
|
3513
3513
|
"method": "PATCH",
|
|
3514
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3514
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3515
3515
|
"requestSchema": "schema.json",
|
|
3516
3516
|
"responseSchema": "schema.json",
|
|
3517
3517
|
"timeout": 0,
|
|
@@ -3532,7 +3532,7 @@
|
|
|
3532
3532
|
"name": "connectCoreV1PostNodeProxy",
|
|
3533
3533
|
"protocol": "REST",
|
|
3534
3534
|
"method": "POST",
|
|
3535
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3535
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3536
3536
|
"requestSchema": "schema.json",
|
|
3537
3537
|
"responseSchema": "schema.json",
|
|
3538
3538
|
"timeout": 0,
|
|
@@ -3553,7 +3553,7 @@
|
|
|
3553
3553
|
"name": "connectCoreV1PutNodeProxy",
|
|
3554
3554
|
"protocol": "REST",
|
|
3555
3555
|
"method": "PUT",
|
|
3556
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3556
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy?{query}",
|
|
3557
3557
|
"requestSchema": "schema.json",
|
|
3558
3558
|
"responseSchema": "schema.json",
|
|
3559
3559
|
"timeout": 0,
|
|
@@ -3574,7 +3574,7 @@
|
|
|
3574
3574
|
"name": "connectCoreV1DeleteNodeProxyWithPath",
|
|
3575
3575
|
"protocol": "REST",
|
|
3576
3576
|
"method": "DELETE",
|
|
3577
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3577
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3578
3578
|
"requestSchema": "schema.json",
|
|
3579
3579
|
"responseSchema": "schema.json",
|
|
3580
3580
|
"timeout": 0,
|
|
@@ -3595,7 +3595,7 @@
|
|
|
3595
3595
|
"name": "connectCoreV1GetNodeProxyWithPath",
|
|
3596
3596
|
"protocol": "REST",
|
|
3597
3597
|
"method": "GET",
|
|
3598
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3598
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3599
3599
|
"requestSchema": "schema.json",
|
|
3600
3600
|
"responseSchema": "schema.json",
|
|
3601
3601
|
"timeout": 0,
|
|
@@ -3616,7 +3616,7 @@
|
|
|
3616
3616
|
"name": "connectCoreV1HeadNodeProxyWithPath",
|
|
3617
3617
|
"protocol": "REST",
|
|
3618
3618
|
"method": "HEAD",
|
|
3619
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3619
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3620
3620
|
"requestSchema": "schema.json",
|
|
3621
3621
|
"responseSchema": "schema.json",
|
|
3622
3622
|
"timeout": 0,
|
|
@@ -3637,7 +3637,7 @@
|
|
|
3637
3637
|
"name": "connectCoreV1OptionsNodeProxyWithPath",
|
|
3638
3638
|
"protocol": "REST",
|
|
3639
3639
|
"method": "OPTIONS",
|
|
3640
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3640
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3641
3641
|
"requestSchema": "schema.json",
|
|
3642
3642
|
"responseSchema": "schema.json",
|
|
3643
3643
|
"timeout": 0,
|
|
@@ -3658,7 +3658,7 @@
|
|
|
3658
3658
|
"name": "connectCoreV1PatchNodeProxyWithPath",
|
|
3659
3659
|
"protocol": "REST",
|
|
3660
3660
|
"method": "PATCH",
|
|
3661
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3661
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3662
3662
|
"requestSchema": "schema.json",
|
|
3663
3663
|
"responseSchema": "schema.json",
|
|
3664
3664
|
"timeout": 0,
|
|
@@ -3679,7 +3679,7 @@
|
|
|
3679
3679
|
"name": "connectCoreV1PostNodeProxyWithPath",
|
|
3680
3680
|
"protocol": "REST",
|
|
3681
3681
|
"method": "POST",
|
|
3682
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3682
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3683
3683
|
"requestSchema": "schema.json",
|
|
3684
3684
|
"responseSchema": "schema.json",
|
|
3685
3685
|
"timeout": 0,
|
|
@@ -3700,7 +3700,7 @@
|
|
|
3700
3700
|
"name": "connectCoreV1PutNodeProxyWithPath",
|
|
3701
3701
|
"protocol": "REST",
|
|
3702
3702
|
"method": "PUT",
|
|
3703
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3703
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/proxy/{pathv2}?{query}",
|
|
3704
3704
|
"requestSchema": "schema.json",
|
|
3705
3705
|
"responseSchema": "schema.json",
|
|
3706
3706
|
"timeout": 0,
|
|
@@ -3721,7 +3721,7 @@
|
|
|
3721
3721
|
"name": "readCoreV1NodeStatus",
|
|
3722
3722
|
"protocol": "REST",
|
|
3723
3723
|
"method": "GET",
|
|
3724
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/status?{query}",
|
|
3724
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/status?{query}",
|
|
3725
3725
|
"requestSchema": "schema.json",
|
|
3726
3726
|
"responseSchema": "schema.json",
|
|
3727
3727
|
"timeout": 0,
|
|
@@ -3742,7 +3742,7 @@
|
|
|
3742
3742
|
"name": "patchCoreV1NodeStatus",
|
|
3743
3743
|
"protocol": "REST",
|
|
3744
3744
|
"method": "PATCH",
|
|
3745
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/status?{query}",
|
|
3745
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/status?{query}",
|
|
3746
3746
|
"requestSchema": "schema.json",
|
|
3747
3747
|
"responseSchema": "schema.json",
|
|
3748
3748
|
"timeout": 0,
|
|
@@ -3763,7 +3763,7 @@
|
|
|
3763
3763
|
"name": "replaceCoreV1NodeStatus",
|
|
3764
3764
|
"protocol": "REST",
|
|
3765
3765
|
"method": "PUT",
|
|
3766
|
-
"entitypath": "{base_path}/{version}api/v1/nodes/{pathv1}/status?{query}",
|
|
3766
|
+
"entitypath": "{base_path}/{version}/api/v1/nodes/{pathv1}/status?{query}",
|
|
3767
3767
|
"requestSchema": "schema.json",
|
|
3768
3768
|
"responseSchema": "schema.json",
|
|
3769
3769
|
"timeout": 0,
|
|
@@ -3784,7 +3784,7 @@
|
|
|
3784
3784
|
"name": "listCoreV1PersistentVolumeClaimForAllNamespaces",
|
|
3785
3785
|
"protocol": "REST",
|
|
3786
3786
|
"method": "GET",
|
|
3787
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumeclaims?{query}",
|
|
3787
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumeclaims?{query}",
|
|
3788
3788
|
"requestSchema": "schema.json",
|
|
3789
3789
|
"responseSchema": "schema.json",
|
|
3790
3790
|
"timeout": 0,
|
|
@@ -3805,7 +3805,7 @@
|
|
|
3805
3805
|
"name": "deleteCoreV1CollectionPersistentVolume",
|
|
3806
3806
|
"protocol": "REST",
|
|
3807
3807
|
"method": "DELETE",
|
|
3808
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes?{query}",
|
|
3808
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes?{query}",
|
|
3809
3809
|
"requestSchema": "schema.json",
|
|
3810
3810
|
"responseSchema": "schema.json",
|
|
3811
3811
|
"timeout": 0,
|
|
@@ -3826,7 +3826,7 @@
|
|
|
3826
3826
|
"name": "listCoreV1PersistentVolume",
|
|
3827
3827
|
"protocol": "REST",
|
|
3828
3828
|
"method": "GET",
|
|
3829
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes?{query}",
|
|
3829
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes?{query}",
|
|
3830
3830
|
"requestSchema": "schema.json",
|
|
3831
3831
|
"responseSchema": "schema.json",
|
|
3832
3832
|
"timeout": 0,
|
|
@@ -3847,7 +3847,7 @@
|
|
|
3847
3847
|
"name": "createCoreV1PersistentVolume",
|
|
3848
3848
|
"protocol": "REST",
|
|
3849
3849
|
"method": "POST",
|
|
3850
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes?{query}",
|
|
3850
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes?{query}",
|
|
3851
3851
|
"requestSchema": "schema.json",
|
|
3852
3852
|
"responseSchema": "schema.json",
|
|
3853
3853
|
"timeout": 0,
|
|
@@ -3868,7 +3868,7 @@
|
|
|
3868
3868
|
"name": "deleteCoreV1PersistentVolume",
|
|
3869
3869
|
"protocol": "REST",
|
|
3870
3870
|
"method": "DELETE",
|
|
3871
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes/{pathv1}?{query}",
|
|
3871
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes/{pathv1}?{query}",
|
|
3872
3872
|
"requestSchema": "schema.json",
|
|
3873
3873
|
"responseSchema": "schema.json",
|
|
3874
3874
|
"timeout": 0,
|
|
@@ -3889,7 +3889,7 @@
|
|
|
3889
3889
|
"name": "readCoreV1PersistentVolume",
|
|
3890
3890
|
"protocol": "REST",
|
|
3891
3891
|
"method": "GET",
|
|
3892
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes/{pathv1}?{query}",
|
|
3892
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes/{pathv1}?{query}",
|
|
3893
3893
|
"requestSchema": "schema.json",
|
|
3894
3894
|
"responseSchema": "schema.json",
|
|
3895
3895
|
"timeout": 0,
|
|
@@ -3910,7 +3910,7 @@
|
|
|
3910
3910
|
"name": "patchCoreV1PersistentVolume",
|
|
3911
3911
|
"protocol": "REST",
|
|
3912
3912
|
"method": "PATCH",
|
|
3913
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes/{pathv1}?{query}",
|
|
3913
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes/{pathv1}?{query}",
|
|
3914
3914
|
"requestSchema": "schema.json",
|
|
3915
3915
|
"responseSchema": "schema.json",
|
|
3916
3916
|
"timeout": 0,
|
|
@@ -3931,7 +3931,7 @@
|
|
|
3931
3931
|
"name": "replaceCoreV1PersistentVolume",
|
|
3932
3932
|
"protocol": "REST",
|
|
3933
3933
|
"method": "PUT",
|
|
3934
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes/{pathv1}?{query}",
|
|
3934
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes/{pathv1}?{query}",
|
|
3935
3935
|
"requestSchema": "schema.json",
|
|
3936
3936
|
"responseSchema": "schema.json",
|
|
3937
3937
|
"timeout": 0,
|
|
@@ -3952,7 +3952,7 @@
|
|
|
3952
3952
|
"name": "readCoreV1PersistentVolumeStatus",
|
|
3953
3953
|
"protocol": "REST",
|
|
3954
3954
|
"method": "GET",
|
|
3955
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes/{pathv1}/status?{query}",
|
|
3955
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes/{pathv1}/status?{query}",
|
|
3956
3956
|
"requestSchema": "schema.json",
|
|
3957
3957
|
"responseSchema": "schema.json",
|
|
3958
3958
|
"timeout": 0,
|
|
@@ -3973,7 +3973,7 @@
|
|
|
3973
3973
|
"name": "patchCoreV1PersistentVolumeStatus",
|
|
3974
3974
|
"protocol": "REST",
|
|
3975
3975
|
"method": "PATCH",
|
|
3976
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes/{pathv1}/status?{query}",
|
|
3976
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes/{pathv1}/status?{query}",
|
|
3977
3977
|
"requestSchema": "schema.json",
|
|
3978
3978
|
"responseSchema": "schema.json",
|
|
3979
3979
|
"timeout": 0,
|
|
@@ -3994,7 +3994,7 @@
|
|
|
3994
3994
|
"name": "replaceCoreV1PersistentVolumeStatus",
|
|
3995
3995
|
"protocol": "REST",
|
|
3996
3996
|
"method": "PUT",
|
|
3997
|
-
"entitypath": "{base_path}/{version}api/v1/persistentvolumes/{pathv1}/status?{query}",
|
|
3997
|
+
"entitypath": "{base_path}/{version}/api/v1/persistentvolumes/{pathv1}/status?{query}",
|
|
3998
3998
|
"requestSchema": "schema.json",
|
|
3999
3999
|
"responseSchema": "schema.json",
|
|
4000
4000
|
"timeout": 0,
|
|
@@ -4015,7 +4015,7 @@
|
|
|
4015
4015
|
"name": "listCoreV1PodForAllNamespaces",
|
|
4016
4016
|
"protocol": "REST",
|
|
4017
4017
|
"method": "GET",
|
|
4018
|
-
"entitypath": "{base_path}/{version}api/v1/pods?{query}",
|
|
4018
|
+
"entitypath": "{base_path}/{version}/api/v1/pods?{query}",
|
|
4019
4019
|
"requestSchema": "schema.json",
|
|
4020
4020
|
"responseSchema": "schema.json",
|
|
4021
4021
|
"timeout": 0,
|
|
@@ -4036,7 +4036,7 @@
|
|
|
4036
4036
|
"name": "listCoreV1PodTemplateForAllNamespaces",
|
|
4037
4037
|
"protocol": "REST",
|
|
4038
4038
|
"method": "GET",
|
|
4039
|
-
"entitypath": "{base_path}/{version}api/v1/podtemplates?{query}",
|
|
4039
|
+
"entitypath": "{base_path}/{version}/api/v1/podtemplates?{query}",
|
|
4040
4040
|
"requestSchema": "schema.json",
|
|
4041
4041
|
"responseSchema": "schema.json",
|
|
4042
4042
|
"timeout": 0,
|
|
@@ -4057,7 +4057,7 @@
|
|
|
4057
4057
|
"name": "listCoreV1ReplicationControllerForAllNamespaces",
|
|
4058
4058
|
"protocol": "REST",
|
|
4059
4059
|
"method": "GET",
|
|
4060
|
-
"entitypath": "{base_path}/{version}api/v1/replicationcontrollers?{query}",
|
|
4060
|
+
"entitypath": "{base_path}/{version}/api/v1/replicationcontrollers?{query}",
|
|
4061
4061
|
"requestSchema": "schema.json",
|
|
4062
4062
|
"responseSchema": "schema.json",
|
|
4063
4063
|
"timeout": 0,
|
|
@@ -4078,7 +4078,7 @@
|
|
|
4078
4078
|
"name": "listCoreV1ResourceQuotaForAllNamespaces",
|
|
4079
4079
|
"protocol": "REST",
|
|
4080
4080
|
"method": "GET",
|
|
4081
|
-
"entitypath": "{base_path}/{version}api/v1/resourcequotas?{query}",
|
|
4081
|
+
"entitypath": "{base_path}/{version}/api/v1/resourcequotas?{query}",
|
|
4082
4082
|
"requestSchema": "schema.json",
|
|
4083
4083
|
"responseSchema": "schema.json",
|
|
4084
4084
|
"timeout": 0,
|
|
@@ -4099,7 +4099,7 @@
|
|
|
4099
4099
|
"name": "listCoreV1SecretForAllNamespaces",
|
|
4100
4100
|
"protocol": "REST",
|
|
4101
4101
|
"method": "GET",
|
|
4102
|
-
"entitypath": "{base_path}/{version}api/v1/secrets?{query}",
|
|
4102
|
+
"entitypath": "{base_path}/{version}/api/v1/secrets?{query}",
|
|
4103
4103
|
"requestSchema": "schema.json",
|
|
4104
4104
|
"responseSchema": "schema.json",
|
|
4105
4105
|
"timeout": 0,
|
|
@@ -4120,7 +4120,7 @@
|
|
|
4120
4120
|
"name": "listCoreV1ServiceAccountForAllNamespaces",
|
|
4121
4121
|
"protocol": "REST",
|
|
4122
4122
|
"method": "GET",
|
|
4123
|
-
"entitypath": "{base_path}/{version}api/v1/serviceaccounts?{query}",
|
|
4123
|
+
"entitypath": "{base_path}/{version}/api/v1/serviceaccounts?{query}",
|
|
4124
4124
|
"requestSchema": "schema.json",
|
|
4125
4125
|
"responseSchema": "schema.json",
|
|
4126
4126
|
"timeout": 0,
|
|
@@ -4141,7 +4141,7 @@
|
|
|
4141
4141
|
"name": "listCoreV1ServiceForAllNamespaces",
|
|
4142
4142
|
"protocol": "REST",
|
|
4143
4143
|
"method": "GET",
|
|
4144
|
-
"entitypath": "{base_path}/{version}api/v1/services?{query}",
|
|
4144
|
+
"entitypath": "{base_path}/{version}/api/v1/services?{query}",
|
|
4145
4145
|
"requestSchema": "schema.json",
|
|
4146
4146
|
"responseSchema": "schema.json",
|
|
4147
4147
|
"timeout": 0,
|
|
@@ -4162,7 +4162,7 @@
|
|
|
4162
4162
|
"name": "watchCoreV1ConfigMapListForAllNamespaces",
|
|
4163
4163
|
"protocol": "REST",
|
|
4164
4164
|
"method": "GET",
|
|
4165
|
-
"entitypath": "{base_path}/{version}api/v1/watch/configmaps?{query}",
|
|
4165
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/configmaps?{query}",
|
|
4166
4166
|
"requestSchema": "schema.json",
|
|
4167
4167
|
"responseSchema": "schema.json",
|
|
4168
4168
|
"timeout": 0,
|
|
@@ -4183,7 +4183,7 @@
|
|
|
4183
4183
|
"name": "watchCoreV1EndpointsListForAllNamespaces",
|
|
4184
4184
|
"protocol": "REST",
|
|
4185
4185
|
"method": "GET",
|
|
4186
|
-
"entitypath": "{base_path}/{version}api/v1/watch/endpoints?{query}",
|
|
4186
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/endpoints?{query}",
|
|
4187
4187
|
"requestSchema": "schema.json",
|
|
4188
4188
|
"responseSchema": "schema.json",
|
|
4189
4189
|
"timeout": 0,
|
|
@@ -4204,7 +4204,7 @@
|
|
|
4204
4204
|
"name": "watchCoreV1EventListForAllNamespaces",
|
|
4205
4205
|
"protocol": "REST",
|
|
4206
4206
|
"method": "GET",
|
|
4207
|
-
"entitypath": "{base_path}/{version}api/v1/watch/events?{query}",
|
|
4207
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/events?{query}",
|
|
4208
4208
|
"requestSchema": "schema.json",
|
|
4209
4209
|
"responseSchema": "schema.json",
|
|
4210
4210
|
"timeout": 0,
|
|
@@ -4225,7 +4225,7 @@
|
|
|
4225
4225
|
"name": "watchCoreV1LimitRangeListForAllNamespaces",
|
|
4226
4226
|
"protocol": "REST",
|
|
4227
4227
|
"method": "GET",
|
|
4228
|
-
"entitypath": "{base_path}/{version}api/v1/watch/limitranges?{query}",
|
|
4228
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/limitranges?{query}",
|
|
4229
4229
|
"requestSchema": "schema.json",
|
|
4230
4230
|
"responseSchema": "schema.json",
|
|
4231
4231
|
"timeout": 0,
|
|
@@ -4246,7 +4246,7 @@
|
|
|
4246
4246
|
"name": "watchCoreV1NamespaceList",
|
|
4247
4247
|
"protocol": "REST",
|
|
4248
4248
|
"method": "GET",
|
|
4249
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces?{query}",
|
|
4249
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces?{query}",
|
|
4250
4250
|
"requestSchema": "schema.json",
|
|
4251
4251
|
"responseSchema": "schema.json",
|
|
4252
4252
|
"timeout": 0,
|
|
@@ -4267,7 +4267,7 @@
|
|
|
4267
4267
|
"name": "watchCoreV1NamespacedConfigMapList",
|
|
4268
4268
|
"protocol": "REST",
|
|
4269
4269
|
"method": "GET",
|
|
4270
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/configmaps?{query}",
|
|
4270
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/configmaps?{query}",
|
|
4271
4271
|
"requestSchema": "schema.json",
|
|
4272
4272
|
"responseSchema": "schema.json",
|
|
4273
4273
|
"timeout": 0,
|
|
@@ -4288,7 +4288,7 @@
|
|
|
4288
4288
|
"name": "watchCoreV1NamespacedConfigMap",
|
|
4289
4289
|
"protocol": "REST",
|
|
4290
4290
|
"method": "GET",
|
|
4291
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
4291
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/configmaps/{pathv2}?{query}",
|
|
4292
4292
|
"requestSchema": "schema.json",
|
|
4293
4293
|
"responseSchema": "schema.json",
|
|
4294
4294
|
"timeout": 0,
|
|
@@ -4309,7 +4309,7 @@
|
|
|
4309
4309
|
"name": "watchCoreV1NamespacedEndpointsList",
|
|
4310
4310
|
"protocol": "REST",
|
|
4311
4311
|
"method": "GET",
|
|
4312
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/endpoints?{query}",
|
|
4312
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/endpoints?{query}",
|
|
4313
4313
|
"requestSchema": "schema.json",
|
|
4314
4314
|
"responseSchema": "schema.json",
|
|
4315
4315
|
"timeout": 0,
|
|
@@ -4330,7 +4330,7 @@
|
|
|
4330
4330
|
"name": "watchCoreV1NamespacedEndpoints",
|
|
4331
4331
|
"protocol": "REST",
|
|
4332
4332
|
"method": "GET",
|
|
4333
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
4333
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/endpoints/{pathv2}?{query}",
|
|
4334
4334
|
"requestSchema": "schema.json",
|
|
4335
4335
|
"responseSchema": "schema.json",
|
|
4336
4336
|
"timeout": 0,
|
|
@@ -4351,7 +4351,7 @@
|
|
|
4351
4351
|
"name": "watchCoreV1NamespacedEventList",
|
|
4352
4352
|
"protocol": "REST",
|
|
4353
4353
|
"method": "GET",
|
|
4354
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/events?{query}",
|
|
4354
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/events?{query}",
|
|
4355
4355
|
"requestSchema": "schema.json",
|
|
4356
4356
|
"responseSchema": "schema.json",
|
|
4357
4357
|
"timeout": 0,
|
|
@@ -4372,7 +4372,7 @@
|
|
|
4372
4372
|
"name": "watchCoreV1NamespacedEvent",
|
|
4373
4373
|
"protocol": "REST",
|
|
4374
4374
|
"method": "GET",
|
|
4375
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
4375
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/events/{pathv2}?{query}",
|
|
4376
4376
|
"requestSchema": "schema.json",
|
|
4377
4377
|
"responseSchema": "schema.json",
|
|
4378
4378
|
"timeout": 0,
|
|
@@ -4393,7 +4393,7 @@
|
|
|
4393
4393
|
"name": "watchCoreV1NamespacedLimitRangeList",
|
|
4394
4394
|
"protocol": "REST",
|
|
4395
4395
|
"method": "GET",
|
|
4396
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/limitranges?{query}",
|
|
4396
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/limitranges?{query}",
|
|
4397
4397
|
"requestSchema": "schema.json",
|
|
4398
4398
|
"responseSchema": "schema.json",
|
|
4399
4399
|
"timeout": 0,
|
|
@@ -4414,7 +4414,7 @@
|
|
|
4414
4414
|
"name": "watchCoreV1NamespacedLimitRange",
|
|
4415
4415
|
"protocol": "REST",
|
|
4416
4416
|
"method": "GET",
|
|
4417
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
4417
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/limitranges/{pathv2}?{query}",
|
|
4418
4418
|
"requestSchema": "schema.json",
|
|
4419
4419
|
"responseSchema": "schema.json",
|
|
4420
4420
|
"timeout": 0,
|
|
@@ -4435,7 +4435,7 @@
|
|
|
4435
4435
|
"name": "watchCoreV1NamespacedPersistentVolumeClaimList",
|
|
4436
4436
|
"protocol": "REST",
|
|
4437
4437
|
"method": "GET",
|
|
4438
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/persistentvolumeclaims?{query}",
|
|
4438
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/persistentvolumeclaims?{query}",
|
|
4439
4439
|
"requestSchema": "schema.json",
|
|
4440
4440
|
"responseSchema": "schema.json",
|
|
4441
4441
|
"timeout": 0,
|
|
@@ -4456,7 +4456,7 @@
|
|
|
4456
4456
|
"name": "watchCoreV1NamespacedPersistentVolumeClaim",
|
|
4457
4457
|
"protocol": "REST",
|
|
4458
4458
|
"method": "GET",
|
|
4459
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
4459
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}",
|
|
4460
4460
|
"requestSchema": "schema.json",
|
|
4461
4461
|
"responseSchema": "schema.json",
|
|
4462
4462
|
"timeout": 0,
|
|
@@ -4477,7 +4477,7 @@
|
|
|
4477
4477
|
"name": "watchCoreV1NamespacedPodList",
|
|
4478
4478
|
"protocol": "REST",
|
|
4479
4479
|
"method": "GET",
|
|
4480
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/pods?{query}",
|
|
4480
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/pods?{query}",
|
|
4481
4481
|
"requestSchema": "schema.json",
|
|
4482
4482
|
"responseSchema": "schema.json",
|
|
4483
4483
|
"timeout": 0,
|
|
@@ -4498,7 +4498,7 @@
|
|
|
4498
4498
|
"name": "watchCoreV1NamespacedPod",
|
|
4499
4499
|
"protocol": "REST",
|
|
4500
4500
|
"method": "GET",
|
|
4501
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
4501
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/pods/{pathv2}?{query}",
|
|
4502
4502
|
"requestSchema": "schema.json",
|
|
4503
4503
|
"responseSchema": "schema.json",
|
|
4504
4504
|
"timeout": 0,
|
|
@@ -4519,7 +4519,7 @@
|
|
|
4519
4519
|
"name": "watchCoreV1NamespacedPodTemplateList",
|
|
4520
4520
|
"protocol": "REST",
|
|
4521
4521
|
"method": "GET",
|
|
4522
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/podtemplates?{query}",
|
|
4522
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/podtemplates?{query}",
|
|
4523
4523
|
"requestSchema": "schema.json",
|
|
4524
4524
|
"responseSchema": "schema.json",
|
|
4525
4525
|
"timeout": 0,
|
|
@@ -4540,7 +4540,7 @@
|
|
|
4540
4540
|
"name": "watchCoreV1NamespacedPodTemplate",
|
|
4541
4541
|
"protocol": "REST",
|
|
4542
4542
|
"method": "GET",
|
|
4543
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
4543
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/podtemplates/{pathv2}?{query}",
|
|
4544
4544
|
"requestSchema": "schema.json",
|
|
4545
4545
|
"responseSchema": "schema.json",
|
|
4546
4546
|
"timeout": 0,
|
|
@@ -4561,7 +4561,7 @@
|
|
|
4561
4561
|
"name": "watchCoreV1NamespacedReplicationControllerList",
|
|
4562
4562
|
"protocol": "REST",
|
|
4563
4563
|
"method": "GET",
|
|
4564
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/replicationcontrollers?{query}",
|
|
4564
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/replicationcontrollers?{query}",
|
|
4565
4565
|
"requestSchema": "schema.json",
|
|
4566
4566
|
"responseSchema": "schema.json",
|
|
4567
4567
|
"timeout": 0,
|
|
@@ -4582,7 +4582,7 @@
|
|
|
4582
4582
|
"name": "watchCoreV1NamespacedReplicationController",
|
|
4583
4583
|
"protocol": "REST",
|
|
4584
4584
|
"method": "GET",
|
|
4585
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
4585
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}",
|
|
4586
4586
|
"requestSchema": "schema.json",
|
|
4587
4587
|
"responseSchema": "schema.json",
|
|
4588
4588
|
"timeout": 0,
|
|
@@ -4603,7 +4603,7 @@
|
|
|
4603
4603
|
"name": "watchCoreV1NamespacedResourceQuotaList",
|
|
4604
4604
|
"protocol": "REST",
|
|
4605
4605
|
"method": "GET",
|
|
4606
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/resourcequotas?{query}",
|
|
4606
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/resourcequotas?{query}",
|
|
4607
4607
|
"requestSchema": "schema.json",
|
|
4608
4608
|
"responseSchema": "schema.json",
|
|
4609
4609
|
"timeout": 0,
|
|
@@ -4624,7 +4624,7 @@
|
|
|
4624
4624
|
"name": "watchCoreV1NamespacedResourceQuota",
|
|
4625
4625
|
"protocol": "REST",
|
|
4626
4626
|
"method": "GET",
|
|
4627
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
4627
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}",
|
|
4628
4628
|
"requestSchema": "schema.json",
|
|
4629
4629
|
"responseSchema": "schema.json",
|
|
4630
4630
|
"timeout": 0,
|
|
@@ -4645,7 +4645,7 @@
|
|
|
4645
4645
|
"name": "watchCoreV1NamespacedSecretList",
|
|
4646
4646
|
"protocol": "REST",
|
|
4647
4647
|
"method": "GET",
|
|
4648
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/secrets?{query}",
|
|
4648
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/secrets?{query}",
|
|
4649
4649
|
"requestSchema": "schema.json",
|
|
4650
4650
|
"responseSchema": "schema.json",
|
|
4651
4651
|
"timeout": 0,
|
|
@@ -4666,7 +4666,7 @@
|
|
|
4666
4666
|
"name": "watchCoreV1NamespacedSecret",
|
|
4667
4667
|
"protocol": "REST",
|
|
4668
4668
|
"method": "GET",
|
|
4669
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
4669
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/secrets/{pathv2}?{query}",
|
|
4670
4670
|
"requestSchema": "schema.json",
|
|
4671
4671
|
"responseSchema": "schema.json",
|
|
4672
4672
|
"timeout": 0,
|
|
@@ -4687,7 +4687,7 @@
|
|
|
4687
4687
|
"name": "watchCoreV1NamespacedServiceAccountList",
|
|
4688
4688
|
"protocol": "REST",
|
|
4689
4689
|
"method": "GET",
|
|
4690
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/serviceaccounts?{query}",
|
|
4690
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/serviceaccounts?{query}",
|
|
4691
4691
|
"requestSchema": "schema.json",
|
|
4692
4692
|
"responseSchema": "schema.json",
|
|
4693
4693
|
"timeout": 0,
|
|
@@ -4708,7 +4708,7 @@
|
|
|
4708
4708
|
"name": "watchCoreV1NamespacedServiceAccount",
|
|
4709
4709
|
"protocol": "REST",
|
|
4710
4710
|
"method": "GET",
|
|
4711
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
4711
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/serviceaccounts/{pathv2}?{query}",
|
|
4712
4712
|
"requestSchema": "schema.json",
|
|
4713
4713
|
"responseSchema": "schema.json",
|
|
4714
4714
|
"timeout": 0,
|
|
@@ -4729,7 +4729,7 @@
|
|
|
4729
4729
|
"name": "watchCoreV1NamespacedServiceList",
|
|
4730
4730
|
"protocol": "REST",
|
|
4731
4731
|
"method": "GET",
|
|
4732
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/services?{query}",
|
|
4732
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/services?{query}",
|
|
4733
4733
|
"requestSchema": "schema.json",
|
|
4734
4734
|
"responseSchema": "schema.json",
|
|
4735
4735
|
"timeout": 0,
|
|
@@ -4750,7 +4750,7 @@
|
|
|
4750
4750
|
"name": "watchCoreV1NamespacedService",
|
|
4751
4751
|
"protocol": "REST",
|
|
4752
4752
|
"method": "GET",
|
|
4753
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
4753
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}/services/{pathv2}?{query}",
|
|
4754
4754
|
"requestSchema": "schema.json",
|
|
4755
4755
|
"responseSchema": "schema.json",
|
|
4756
4756
|
"timeout": 0,
|
|
@@ -4771,7 +4771,7 @@
|
|
|
4771
4771
|
"name": "watchCoreV1Namespace",
|
|
4772
4772
|
"protocol": "REST",
|
|
4773
4773
|
"method": "GET",
|
|
4774
|
-
"entitypath": "{base_path}/{version}api/v1/watch/namespaces/{pathv1}?{query}",
|
|
4774
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/namespaces/{pathv1}?{query}",
|
|
4775
4775
|
"requestSchema": "schema.json",
|
|
4776
4776
|
"responseSchema": "schema.json",
|
|
4777
4777
|
"timeout": 0,
|
|
@@ -4792,7 +4792,7 @@
|
|
|
4792
4792
|
"name": "watchCoreV1NodeList",
|
|
4793
4793
|
"protocol": "REST",
|
|
4794
4794
|
"method": "GET",
|
|
4795
|
-
"entitypath": "{base_path}/{version}api/v1/watch/nodes?{query}",
|
|
4795
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/nodes?{query}",
|
|
4796
4796
|
"requestSchema": "schema.json",
|
|
4797
4797
|
"responseSchema": "schema.json",
|
|
4798
4798
|
"timeout": 0,
|
|
@@ -4813,7 +4813,7 @@
|
|
|
4813
4813
|
"name": "watchCoreV1Node",
|
|
4814
4814
|
"protocol": "REST",
|
|
4815
4815
|
"method": "GET",
|
|
4816
|
-
"entitypath": "{base_path}/{version}api/v1/watch/nodes/{pathv1}?{query}",
|
|
4816
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/nodes/{pathv1}?{query}",
|
|
4817
4817
|
"requestSchema": "schema.json",
|
|
4818
4818
|
"responseSchema": "schema.json",
|
|
4819
4819
|
"timeout": 0,
|
|
@@ -4834,7 +4834,7 @@
|
|
|
4834
4834
|
"name": "watchCoreV1PersistentVolumeClaimListForAllNamespaces",
|
|
4835
4835
|
"protocol": "REST",
|
|
4836
4836
|
"method": "GET",
|
|
4837
|
-
"entitypath": "{base_path}/{version}api/v1/watch/persistentvolumeclaims?{query}",
|
|
4837
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/persistentvolumeclaims?{query}",
|
|
4838
4838
|
"requestSchema": "schema.json",
|
|
4839
4839
|
"responseSchema": "schema.json",
|
|
4840
4840
|
"timeout": 0,
|
|
@@ -4855,7 +4855,7 @@
|
|
|
4855
4855
|
"name": "watchCoreV1PersistentVolumeList",
|
|
4856
4856
|
"protocol": "REST",
|
|
4857
4857
|
"method": "GET",
|
|
4858
|
-
"entitypath": "{base_path}/{version}api/v1/watch/persistentvolumes?{query}",
|
|
4858
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/persistentvolumes?{query}",
|
|
4859
4859
|
"requestSchema": "schema.json",
|
|
4860
4860
|
"responseSchema": "schema.json",
|
|
4861
4861
|
"timeout": 0,
|
|
@@ -4876,7 +4876,7 @@
|
|
|
4876
4876
|
"name": "watchCoreV1PersistentVolume",
|
|
4877
4877
|
"protocol": "REST",
|
|
4878
4878
|
"method": "GET",
|
|
4879
|
-
"entitypath": "{base_path}/{version}api/v1/watch/persistentvolumes/{pathv1}?{query}",
|
|
4879
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/persistentvolumes/{pathv1}?{query}",
|
|
4880
4880
|
"requestSchema": "schema.json",
|
|
4881
4881
|
"responseSchema": "schema.json",
|
|
4882
4882
|
"timeout": 0,
|
|
@@ -4897,7 +4897,7 @@
|
|
|
4897
4897
|
"name": "watchCoreV1PodListForAllNamespaces",
|
|
4898
4898
|
"protocol": "REST",
|
|
4899
4899
|
"method": "GET",
|
|
4900
|
-
"entitypath": "{base_path}/{version}api/v1/watch/pods?{query}",
|
|
4900
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/pods?{query}",
|
|
4901
4901
|
"requestSchema": "schema.json",
|
|
4902
4902
|
"responseSchema": "schema.json",
|
|
4903
4903
|
"timeout": 0,
|
|
@@ -4918,7 +4918,7 @@
|
|
|
4918
4918
|
"name": "watchCoreV1PodTemplateListForAllNamespaces",
|
|
4919
4919
|
"protocol": "REST",
|
|
4920
4920
|
"method": "GET",
|
|
4921
|
-
"entitypath": "{base_path}/{version}api/v1/watch/podtemplates?{query}",
|
|
4921
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/podtemplates?{query}",
|
|
4922
4922
|
"requestSchema": "schema.json",
|
|
4923
4923
|
"responseSchema": "schema.json",
|
|
4924
4924
|
"timeout": 0,
|
|
@@ -4939,7 +4939,7 @@
|
|
|
4939
4939
|
"name": "watchCoreV1ReplicationControllerListForAllNamespaces",
|
|
4940
4940
|
"protocol": "REST",
|
|
4941
4941
|
"method": "GET",
|
|
4942
|
-
"entitypath": "{base_path}/{version}api/v1/watch/replicationcontrollers?{query}",
|
|
4942
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/replicationcontrollers?{query}",
|
|
4943
4943
|
"requestSchema": "schema.json",
|
|
4944
4944
|
"responseSchema": "schema.json",
|
|
4945
4945
|
"timeout": 0,
|
|
@@ -4960,7 +4960,7 @@
|
|
|
4960
4960
|
"name": "watchCoreV1ResourceQuotaListForAllNamespaces",
|
|
4961
4961
|
"protocol": "REST",
|
|
4962
4962
|
"method": "GET",
|
|
4963
|
-
"entitypath": "{base_path}/{version}api/v1/watch/resourcequotas?{query}",
|
|
4963
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/resourcequotas?{query}",
|
|
4964
4964
|
"requestSchema": "schema.json",
|
|
4965
4965
|
"responseSchema": "schema.json",
|
|
4966
4966
|
"timeout": 0,
|
|
@@ -4981,7 +4981,7 @@
|
|
|
4981
4981
|
"name": "watchCoreV1SecretListForAllNamespaces",
|
|
4982
4982
|
"protocol": "REST",
|
|
4983
4983
|
"method": "GET",
|
|
4984
|
-
"entitypath": "{base_path}/{version}api/v1/watch/secrets?{query}",
|
|
4984
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/secrets?{query}",
|
|
4985
4985
|
"requestSchema": "schema.json",
|
|
4986
4986
|
"responseSchema": "schema.json",
|
|
4987
4987
|
"timeout": 0,
|
|
@@ -5002,7 +5002,7 @@
|
|
|
5002
5002
|
"name": "watchCoreV1ServiceAccountListForAllNamespaces",
|
|
5003
5003
|
"protocol": "REST",
|
|
5004
5004
|
"method": "GET",
|
|
5005
|
-
"entitypath": "{base_path}/{version}api/v1/watch/serviceaccounts?{query}",
|
|
5005
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/serviceaccounts?{query}",
|
|
5006
5006
|
"requestSchema": "schema.json",
|
|
5007
5007
|
"responseSchema": "schema.json",
|
|
5008
5008
|
"timeout": 0,
|
|
@@ -5023,7 +5023,7 @@
|
|
|
5023
5023
|
"name": "watchCoreV1ServiceListForAllNamespaces",
|
|
5024
5024
|
"protocol": "REST",
|
|
5025
5025
|
"method": "GET",
|
|
5026
|
-
"entitypath": "{base_path}/{version}api/v1/watch/services?{query}",
|
|
5026
|
+
"entitypath": "{base_path}/{version}/api/v1/watch/services?{query}",
|
|
5027
5027
|
"requestSchema": "schema.json",
|
|
5028
5028
|
"responseSchema": "schema.json",
|
|
5029
5029
|
"timeout": 0,
|