@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": "getAppsV1APIResources",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"name": "listAppsV1ControllerRevisionForAllNamespaces",
|
|
26
26
|
"protocol": "REST",
|
|
27
27
|
"method": "GET",
|
|
28
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/controllerrevisions?{query}",
|
|
28
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/controllerrevisions?{query}",
|
|
29
29
|
"requestSchema": "schema.json",
|
|
30
30
|
"responseSchema": "schema.json",
|
|
31
31
|
"timeout": 0,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "listAppsV1DaemonSetForAllNamespaces",
|
|
47
47
|
"protocol": "REST",
|
|
48
48
|
"method": "GET",
|
|
49
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/daemonsets?{query}",
|
|
49
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/daemonsets?{query}",
|
|
50
50
|
"requestSchema": "schema.json",
|
|
51
51
|
"responseSchema": "schema.json",
|
|
52
52
|
"timeout": 0,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"name": "listAppsV1DeploymentForAllNamespaces",
|
|
68
68
|
"protocol": "REST",
|
|
69
69
|
"method": "GET",
|
|
70
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/deployments?{query}",
|
|
70
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/deployments?{query}",
|
|
71
71
|
"requestSchema": "schema.json",
|
|
72
72
|
"responseSchema": "schema.json",
|
|
73
73
|
"timeout": 0,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"name": "deleteAppsV1CollectionNamespacedControllerRevision",
|
|
89
89
|
"protocol": "REST",
|
|
90
90
|
"method": "DELETE",
|
|
91
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/controllerrevisions?{query}",
|
|
91
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/controllerrevisions?{query}",
|
|
92
92
|
"requestSchema": "schema.json",
|
|
93
93
|
"responseSchema": "schema.json",
|
|
94
94
|
"timeout": 0,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "listAppsV1NamespacedControllerRevision",
|
|
110
110
|
"protocol": "REST",
|
|
111
111
|
"method": "GET",
|
|
112
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/controllerrevisions?{query}",
|
|
112
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/controllerrevisions?{query}",
|
|
113
113
|
"requestSchema": "schema.json",
|
|
114
114
|
"responseSchema": "schema.json",
|
|
115
115
|
"timeout": 0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "createAppsV1NamespacedControllerRevision",
|
|
131
131
|
"protocol": "REST",
|
|
132
132
|
"method": "POST",
|
|
133
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/controllerrevisions?{query}",
|
|
133
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/controllerrevisions?{query}",
|
|
134
134
|
"requestSchema": "schema.json",
|
|
135
135
|
"responseSchema": "schema.json",
|
|
136
136
|
"timeout": 0,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "deleteAppsV1NamespacedControllerRevision",
|
|
152
152
|
"protocol": "REST",
|
|
153
153
|
"method": "DELETE",
|
|
154
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
154
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
155
155
|
"requestSchema": "schema.json",
|
|
156
156
|
"responseSchema": "schema.json",
|
|
157
157
|
"timeout": 0,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"name": "readAppsV1NamespacedControllerRevision",
|
|
173
173
|
"protocol": "REST",
|
|
174
174
|
"method": "GET",
|
|
175
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
175
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
176
176
|
"requestSchema": "schema.json",
|
|
177
177
|
"responseSchema": "schema.json",
|
|
178
178
|
"timeout": 0,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"name": "patchAppsV1NamespacedControllerRevision",
|
|
194
194
|
"protocol": "REST",
|
|
195
195
|
"method": "PATCH",
|
|
196
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
196
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
197
197
|
"requestSchema": "schema.json",
|
|
198
198
|
"responseSchema": "schema.json",
|
|
199
199
|
"timeout": 0,
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"name": "replaceAppsV1NamespacedControllerRevision",
|
|
215
215
|
"protocol": "REST",
|
|
216
216
|
"method": "PUT",
|
|
217
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
217
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
218
218
|
"requestSchema": "schema.json",
|
|
219
219
|
"responseSchema": "schema.json",
|
|
220
220
|
"timeout": 0,
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"name": "deleteAppsV1CollectionNamespacedDaemonSet",
|
|
236
236
|
"protocol": "REST",
|
|
237
237
|
"method": "DELETE",
|
|
238
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets?{query}",
|
|
238
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets?{query}",
|
|
239
239
|
"requestSchema": "schema.json",
|
|
240
240
|
"responseSchema": "schema.json",
|
|
241
241
|
"timeout": 0,
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
"name": "listAppsV1NamespacedDaemonSet",
|
|
257
257
|
"protocol": "REST",
|
|
258
258
|
"method": "GET",
|
|
259
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets?{query}",
|
|
259
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets?{query}",
|
|
260
260
|
"requestSchema": "schema.json",
|
|
261
261
|
"responseSchema": "schema.json",
|
|
262
262
|
"timeout": 0,
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
"name": "createAppsV1NamespacedDaemonSet",
|
|
278
278
|
"protocol": "REST",
|
|
279
279
|
"method": "POST",
|
|
280
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets?{query}",
|
|
280
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets?{query}",
|
|
281
281
|
"requestSchema": "schema.json",
|
|
282
282
|
"responseSchema": "schema.json",
|
|
283
283
|
"timeout": 0,
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"name": "deleteAppsV1NamespacedDaemonSet",
|
|
299
299
|
"protocol": "REST",
|
|
300
300
|
"method": "DELETE",
|
|
301
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
301
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
302
302
|
"requestSchema": "schema.json",
|
|
303
303
|
"responseSchema": "schema.json",
|
|
304
304
|
"timeout": 0,
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
"name": "readAppsV1NamespacedDaemonSet",
|
|
320
320
|
"protocol": "REST",
|
|
321
321
|
"method": "GET",
|
|
322
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
322
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
323
323
|
"requestSchema": "schema.json",
|
|
324
324
|
"responseSchema": "schema.json",
|
|
325
325
|
"timeout": 0,
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
"name": "patchAppsV1NamespacedDaemonSet",
|
|
341
341
|
"protocol": "REST",
|
|
342
342
|
"method": "PATCH",
|
|
343
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
343
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
344
344
|
"requestSchema": "schema.json",
|
|
345
345
|
"responseSchema": "schema.json",
|
|
346
346
|
"timeout": 0,
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
"name": "replaceAppsV1NamespacedDaemonSet",
|
|
362
362
|
"protocol": "REST",
|
|
363
363
|
"method": "PUT",
|
|
364
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
364
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
365
365
|
"requestSchema": "schema.json",
|
|
366
366
|
"responseSchema": "schema.json",
|
|
367
367
|
"timeout": 0,
|
|
@@ -382,7 +382,7 @@
|
|
|
382
382
|
"name": "readAppsV1NamespacedDaemonSetStatus",
|
|
383
383
|
"protocol": "REST",
|
|
384
384
|
"method": "GET",
|
|
385
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}/status?{query}",
|
|
385
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}/status?{query}",
|
|
386
386
|
"requestSchema": "schema.json",
|
|
387
387
|
"responseSchema": "schema.json",
|
|
388
388
|
"timeout": 0,
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
"name": "patchAppsV1NamespacedDaemonSetStatus",
|
|
404
404
|
"protocol": "REST",
|
|
405
405
|
"method": "PATCH",
|
|
406
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}/status?{query}",
|
|
406
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}/status?{query}",
|
|
407
407
|
"requestSchema": "schema.json",
|
|
408
408
|
"responseSchema": "schema.json",
|
|
409
409
|
"timeout": 0,
|
|
@@ -424,7 +424,7 @@
|
|
|
424
424
|
"name": "replaceAppsV1NamespacedDaemonSetStatus",
|
|
425
425
|
"protocol": "REST",
|
|
426
426
|
"method": "PUT",
|
|
427
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}/status?{query}",
|
|
427
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/daemonsets/{pathv2}/status?{query}",
|
|
428
428
|
"requestSchema": "schema.json",
|
|
429
429
|
"responseSchema": "schema.json",
|
|
430
430
|
"timeout": 0,
|
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
"name": "deleteAppsV1CollectionNamespacedDeployment",
|
|
446
446
|
"protocol": "REST",
|
|
447
447
|
"method": "DELETE",
|
|
448
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments?{query}",
|
|
448
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments?{query}",
|
|
449
449
|
"requestSchema": "schema.json",
|
|
450
450
|
"responseSchema": "schema.json",
|
|
451
451
|
"timeout": 0,
|
|
@@ -466,7 +466,7 @@
|
|
|
466
466
|
"name": "listAppsV1NamespacedDeployment",
|
|
467
467
|
"protocol": "REST",
|
|
468
468
|
"method": "GET",
|
|
469
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments?{query}",
|
|
469
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments?{query}",
|
|
470
470
|
"requestSchema": "schema.json",
|
|
471
471
|
"responseSchema": "schema.json",
|
|
472
472
|
"timeout": 0,
|
|
@@ -487,7 +487,7 @@
|
|
|
487
487
|
"name": "createAppsV1NamespacedDeployment",
|
|
488
488
|
"protocol": "REST",
|
|
489
489
|
"method": "POST",
|
|
490
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments?{query}",
|
|
490
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments?{query}",
|
|
491
491
|
"requestSchema": "schema.json",
|
|
492
492
|
"responseSchema": "schema.json",
|
|
493
493
|
"timeout": 0,
|
|
@@ -508,7 +508,7 @@
|
|
|
508
508
|
"name": "deleteAppsV1NamespacedDeployment",
|
|
509
509
|
"protocol": "REST",
|
|
510
510
|
"method": "DELETE",
|
|
511
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
511
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
512
512
|
"requestSchema": "schema.json",
|
|
513
513
|
"responseSchema": "schema.json",
|
|
514
514
|
"timeout": 0,
|
|
@@ -529,7 +529,7 @@
|
|
|
529
529
|
"name": "readAppsV1NamespacedDeployment",
|
|
530
530
|
"protocol": "REST",
|
|
531
531
|
"method": "GET",
|
|
532
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
532
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
533
533
|
"requestSchema": "schema.json",
|
|
534
534
|
"responseSchema": "schema.json",
|
|
535
535
|
"timeout": 0,
|
|
@@ -550,7 +550,7 @@
|
|
|
550
550
|
"name": "patchAppsV1NamespacedDeployment",
|
|
551
551
|
"protocol": "REST",
|
|
552
552
|
"method": "PATCH",
|
|
553
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
553
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
554
554
|
"requestSchema": "schema.json",
|
|
555
555
|
"responseSchema": "schema.json",
|
|
556
556
|
"timeout": 0,
|
|
@@ -571,7 +571,7 @@
|
|
|
571
571
|
"name": "replaceAppsV1NamespacedDeployment",
|
|
572
572
|
"protocol": "REST",
|
|
573
573
|
"method": "PUT",
|
|
574
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
574
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
575
575
|
"requestSchema": "schema.json",
|
|
576
576
|
"responseSchema": "schema.json",
|
|
577
577
|
"timeout": 0,
|
|
@@ -592,7 +592,7 @@
|
|
|
592
592
|
"name": "readAppsV1NamespacedDeploymentScale",
|
|
593
593
|
"protocol": "REST",
|
|
594
594
|
"method": "GET",
|
|
595
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/scale?{query}",
|
|
595
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/scale?{query}",
|
|
596
596
|
"requestSchema": "schema.json",
|
|
597
597
|
"responseSchema": "schema.json",
|
|
598
598
|
"timeout": 0,
|
|
@@ -613,7 +613,7 @@
|
|
|
613
613
|
"name": "patchAppsV1NamespacedDeploymentScale",
|
|
614
614
|
"protocol": "REST",
|
|
615
615
|
"method": "PATCH",
|
|
616
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/scale?{query}",
|
|
616
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/scale?{query}",
|
|
617
617
|
"requestSchema": "schema.json",
|
|
618
618
|
"responseSchema": "schema.json",
|
|
619
619
|
"timeout": 0,
|
|
@@ -634,7 +634,7 @@
|
|
|
634
634
|
"name": "replaceAppsV1NamespacedDeploymentScale",
|
|
635
635
|
"protocol": "REST",
|
|
636
636
|
"method": "PUT",
|
|
637
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/scale?{query}",
|
|
637
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/scale?{query}",
|
|
638
638
|
"requestSchema": "schema.json",
|
|
639
639
|
"responseSchema": "schema.json",
|
|
640
640
|
"timeout": 0,
|
|
@@ -655,7 +655,7 @@
|
|
|
655
655
|
"name": "readAppsV1NamespacedDeploymentStatus",
|
|
656
656
|
"protocol": "REST",
|
|
657
657
|
"method": "GET",
|
|
658
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/status?{query}",
|
|
658
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/status?{query}",
|
|
659
659
|
"requestSchema": "schema.json",
|
|
660
660
|
"responseSchema": "schema.json",
|
|
661
661
|
"timeout": 0,
|
|
@@ -676,7 +676,7 @@
|
|
|
676
676
|
"name": "patchAppsV1NamespacedDeploymentStatus",
|
|
677
677
|
"protocol": "REST",
|
|
678
678
|
"method": "PATCH",
|
|
679
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/status?{query}",
|
|
679
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/status?{query}",
|
|
680
680
|
"requestSchema": "schema.json",
|
|
681
681
|
"responseSchema": "schema.json",
|
|
682
682
|
"timeout": 0,
|
|
@@ -697,7 +697,7 @@
|
|
|
697
697
|
"name": "replaceAppsV1NamespacedDeploymentStatus",
|
|
698
698
|
"protocol": "REST",
|
|
699
699
|
"method": "PUT",
|
|
700
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/status?{query}",
|
|
700
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/deployments/{pathv2}/status?{query}",
|
|
701
701
|
"requestSchema": "schema.json",
|
|
702
702
|
"responseSchema": "schema.json",
|
|
703
703
|
"timeout": 0,
|
|
@@ -718,7 +718,7 @@
|
|
|
718
718
|
"name": "deleteAppsV1CollectionNamespacedReplicaSet",
|
|
719
719
|
"protocol": "REST",
|
|
720
720
|
"method": "DELETE",
|
|
721
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets?{query}",
|
|
721
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets?{query}",
|
|
722
722
|
"requestSchema": "schema.json",
|
|
723
723
|
"responseSchema": "schema.json",
|
|
724
724
|
"timeout": 0,
|
|
@@ -739,7 +739,7 @@
|
|
|
739
739
|
"name": "listAppsV1NamespacedReplicaSet",
|
|
740
740
|
"protocol": "REST",
|
|
741
741
|
"method": "GET",
|
|
742
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets?{query}",
|
|
742
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets?{query}",
|
|
743
743
|
"requestSchema": "schema.json",
|
|
744
744
|
"responseSchema": "schema.json",
|
|
745
745
|
"timeout": 0,
|
|
@@ -760,7 +760,7 @@
|
|
|
760
760
|
"name": "createAppsV1NamespacedReplicaSet",
|
|
761
761
|
"protocol": "REST",
|
|
762
762
|
"method": "POST",
|
|
763
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets?{query}",
|
|
763
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets?{query}",
|
|
764
764
|
"requestSchema": "schema.json",
|
|
765
765
|
"responseSchema": "schema.json",
|
|
766
766
|
"timeout": 0,
|
|
@@ -781,7 +781,7 @@
|
|
|
781
781
|
"name": "deleteAppsV1NamespacedReplicaSet",
|
|
782
782
|
"protocol": "REST",
|
|
783
783
|
"method": "DELETE",
|
|
784
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
784
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
785
785
|
"requestSchema": "schema.json",
|
|
786
786
|
"responseSchema": "schema.json",
|
|
787
787
|
"timeout": 0,
|
|
@@ -802,7 +802,7 @@
|
|
|
802
802
|
"name": "readAppsV1NamespacedReplicaSet",
|
|
803
803
|
"protocol": "REST",
|
|
804
804
|
"method": "GET",
|
|
805
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
805
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
806
806
|
"requestSchema": "schema.json",
|
|
807
807
|
"responseSchema": "schema.json",
|
|
808
808
|
"timeout": 0,
|
|
@@ -823,7 +823,7 @@
|
|
|
823
823
|
"name": "patchAppsV1NamespacedReplicaSet",
|
|
824
824
|
"protocol": "REST",
|
|
825
825
|
"method": "PATCH",
|
|
826
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
826
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
827
827
|
"requestSchema": "schema.json",
|
|
828
828
|
"responseSchema": "schema.json",
|
|
829
829
|
"timeout": 0,
|
|
@@ -844,7 +844,7 @@
|
|
|
844
844
|
"name": "replaceAppsV1NamespacedReplicaSet",
|
|
845
845
|
"protocol": "REST",
|
|
846
846
|
"method": "PUT",
|
|
847
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
847
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
848
848
|
"requestSchema": "schema.json",
|
|
849
849
|
"responseSchema": "schema.json",
|
|
850
850
|
"timeout": 0,
|
|
@@ -865,7 +865,7 @@
|
|
|
865
865
|
"name": "readAppsV1NamespacedReplicaSetScale",
|
|
866
866
|
"protocol": "REST",
|
|
867
867
|
"method": "GET",
|
|
868
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/scale?{query}",
|
|
868
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/scale?{query}",
|
|
869
869
|
"requestSchema": "schema.json",
|
|
870
870
|
"responseSchema": "schema.json",
|
|
871
871
|
"timeout": 0,
|
|
@@ -886,7 +886,7 @@
|
|
|
886
886
|
"name": "patchAppsV1NamespacedReplicaSetScale",
|
|
887
887
|
"protocol": "REST",
|
|
888
888
|
"method": "PATCH",
|
|
889
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/scale?{query}",
|
|
889
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/scale?{query}",
|
|
890
890
|
"requestSchema": "schema.json",
|
|
891
891
|
"responseSchema": "schema.json",
|
|
892
892
|
"timeout": 0,
|
|
@@ -907,7 +907,7 @@
|
|
|
907
907
|
"name": "replaceAppsV1NamespacedReplicaSetScale",
|
|
908
908
|
"protocol": "REST",
|
|
909
909
|
"method": "PUT",
|
|
910
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/scale?{query}",
|
|
910
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/scale?{query}",
|
|
911
911
|
"requestSchema": "schema.json",
|
|
912
912
|
"responseSchema": "schema.json",
|
|
913
913
|
"timeout": 0,
|
|
@@ -928,7 +928,7 @@
|
|
|
928
928
|
"name": "readAppsV1NamespacedReplicaSetStatus",
|
|
929
929
|
"protocol": "REST",
|
|
930
930
|
"method": "GET",
|
|
931
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/status?{query}",
|
|
931
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/status?{query}",
|
|
932
932
|
"requestSchema": "schema.json",
|
|
933
933
|
"responseSchema": "schema.json",
|
|
934
934
|
"timeout": 0,
|
|
@@ -949,7 +949,7 @@
|
|
|
949
949
|
"name": "patchAppsV1NamespacedReplicaSetStatus",
|
|
950
950
|
"protocol": "REST",
|
|
951
951
|
"method": "PATCH",
|
|
952
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/status?{query}",
|
|
952
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/status?{query}",
|
|
953
953
|
"requestSchema": "schema.json",
|
|
954
954
|
"responseSchema": "schema.json",
|
|
955
955
|
"timeout": 0,
|
|
@@ -970,7 +970,7 @@
|
|
|
970
970
|
"name": "replaceAppsV1NamespacedReplicaSetStatus",
|
|
971
971
|
"protocol": "REST",
|
|
972
972
|
"method": "PUT",
|
|
973
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/status?{query}",
|
|
973
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/replicasets/{pathv2}/status?{query}",
|
|
974
974
|
"requestSchema": "schema.json",
|
|
975
975
|
"responseSchema": "schema.json",
|
|
976
976
|
"timeout": 0,
|
|
@@ -991,7 +991,7 @@
|
|
|
991
991
|
"name": "deleteAppsV1CollectionNamespacedStatefulSet",
|
|
992
992
|
"protocol": "REST",
|
|
993
993
|
"method": "DELETE",
|
|
994
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets?{query}",
|
|
994
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets?{query}",
|
|
995
995
|
"requestSchema": "schema.json",
|
|
996
996
|
"responseSchema": "schema.json",
|
|
997
997
|
"timeout": 0,
|
|
@@ -1012,7 +1012,7 @@
|
|
|
1012
1012
|
"name": "listAppsV1NamespacedStatefulSet",
|
|
1013
1013
|
"protocol": "REST",
|
|
1014
1014
|
"method": "GET",
|
|
1015
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets?{query}",
|
|
1015
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets?{query}",
|
|
1016
1016
|
"requestSchema": "schema.json",
|
|
1017
1017
|
"responseSchema": "schema.json",
|
|
1018
1018
|
"timeout": 0,
|
|
@@ -1033,7 +1033,7 @@
|
|
|
1033
1033
|
"name": "createAppsV1NamespacedStatefulSet",
|
|
1034
1034
|
"protocol": "REST",
|
|
1035
1035
|
"method": "POST",
|
|
1036
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets?{query}",
|
|
1036
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets?{query}",
|
|
1037
1037
|
"requestSchema": "schema.json",
|
|
1038
1038
|
"responseSchema": "schema.json",
|
|
1039
1039
|
"timeout": 0,
|
|
@@ -1054,7 +1054,7 @@
|
|
|
1054
1054
|
"name": "deleteAppsV1NamespacedStatefulSet",
|
|
1055
1055
|
"protocol": "REST",
|
|
1056
1056
|
"method": "DELETE",
|
|
1057
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1057
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1058
1058
|
"requestSchema": "schema.json",
|
|
1059
1059
|
"responseSchema": "schema.json",
|
|
1060
1060
|
"timeout": 0,
|
|
@@ -1075,7 +1075,7 @@
|
|
|
1075
1075
|
"name": "readAppsV1NamespacedStatefulSet",
|
|
1076
1076
|
"protocol": "REST",
|
|
1077
1077
|
"method": "GET",
|
|
1078
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1078
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1079
1079
|
"requestSchema": "schema.json",
|
|
1080
1080
|
"responseSchema": "schema.json",
|
|
1081
1081
|
"timeout": 0,
|
|
@@ -1096,7 +1096,7 @@
|
|
|
1096
1096
|
"name": "patchAppsV1NamespacedStatefulSet",
|
|
1097
1097
|
"protocol": "REST",
|
|
1098
1098
|
"method": "PATCH",
|
|
1099
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1099
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1100
1100
|
"requestSchema": "schema.json",
|
|
1101
1101
|
"responseSchema": "schema.json",
|
|
1102
1102
|
"timeout": 0,
|
|
@@ -1117,7 +1117,7 @@
|
|
|
1117
1117
|
"name": "replaceAppsV1NamespacedStatefulSet",
|
|
1118
1118
|
"protocol": "REST",
|
|
1119
1119
|
"method": "PUT",
|
|
1120
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1120
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1121
1121
|
"requestSchema": "schema.json",
|
|
1122
1122
|
"responseSchema": "schema.json",
|
|
1123
1123
|
"timeout": 0,
|
|
@@ -1138,7 +1138,7 @@
|
|
|
1138
1138
|
"name": "readAppsV1NamespacedStatefulSetScale",
|
|
1139
1139
|
"protocol": "REST",
|
|
1140
1140
|
"method": "GET",
|
|
1141
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/scale?{query}",
|
|
1141
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/scale?{query}",
|
|
1142
1142
|
"requestSchema": "schema.json",
|
|
1143
1143
|
"responseSchema": "schema.json",
|
|
1144
1144
|
"timeout": 0,
|
|
@@ -1159,7 +1159,7 @@
|
|
|
1159
1159
|
"name": "patchAppsV1NamespacedStatefulSetScale",
|
|
1160
1160
|
"protocol": "REST",
|
|
1161
1161
|
"method": "PATCH",
|
|
1162
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/scale?{query}",
|
|
1162
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/scale?{query}",
|
|
1163
1163
|
"requestSchema": "schema.json",
|
|
1164
1164
|
"responseSchema": "schema.json",
|
|
1165
1165
|
"timeout": 0,
|
|
@@ -1180,7 +1180,7 @@
|
|
|
1180
1180
|
"name": "replaceAppsV1NamespacedStatefulSetScale",
|
|
1181
1181
|
"protocol": "REST",
|
|
1182
1182
|
"method": "PUT",
|
|
1183
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/scale?{query}",
|
|
1183
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/scale?{query}",
|
|
1184
1184
|
"requestSchema": "schema.json",
|
|
1185
1185
|
"responseSchema": "schema.json",
|
|
1186
1186
|
"timeout": 0,
|
|
@@ -1201,7 +1201,7 @@
|
|
|
1201
1201
|
"name": "readAppsV1NamespacedStatefulSetStatus",
|
|
1202
1202
|
"protocol": "REST",
|
|
1203
1203
|
"method": "GET",
|
|
1204
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/status?{query}",
|
|
1204
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/status?{query}",
|
|
1205
1205
|
"requestSchema": "schema.json",
|
|
1206
1206
|
"responseSchema": "schema.json",
|
|
1207
1207
|
"timeout": 0,
|
|
@@ -1222,7 +1222,7 @@
|
|
|
1222
1222
|
"name": "patchAppsV1NamespacedStatefulSetStatus",
|
|
1223
1223
|
"protocol": "REST",
|
|
1224
1224
|
"method": "PATCH",
|
|
1225
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/status?{query}",
|
|
1225
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/status?{query}",
|
|
1226
1226
|
"requestSchema": "schema.json",
|
|
1227
1227
|
"responseSchema": "schema.json",
|
|
1228
1228
|
"timeout": 0,
|
|
@@ -1243,7 +1243,7 @@
|
|
|
1243
1243
|
"name": "replaceAppsV1NamespacedStatefulSetStatus",
|
|
1244
1244
|
"protocol": "REST",
|
|
1245
1245
|
"method": "PUT",
|
|
1246
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/status?{query}",
|
|
1246
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/namespaces/{pathv1}/statefulsets/{pathv2}/status?{query}",
|
|
1247
1247
|
"requestSchema": "schema.json",
|
|
1248
1248
|
"responseSchema": "schema.json",
|
|
1249
1249
|
"timeout": 0,
|
|
@@ -1264,7 +1264,7 @@
|
|
|
1264
1264
|
"name": "listAppsV1ReplicaSetForAllNamespaces",
|
|
1265
1265
|
"protocol": "REST",
|
|
1266
1266
|
"method": "GET",
|
|
1267
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/replicasets?{query}",
|
|
1267
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/replicasets?{query}",
|
|
1268
1268
|
"requestSchema": "schema.json",
|
|
1269
1269
|
"responseSchema": "schema.json",
|
|
1270
1270
|
"timeout": 0,
|
|
@@ -1285,7 +1285,7 @@
|
|
|
1285
1285
|
"name": "listAppsV1StatefulSetForAllNamespaces",
|
|
1286
1286
|
"protocol": "REST",
|
|
1287
1287
|
"method": "GET",
|
|
1288
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/statefulsets?{query}",
|
|
1288
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/statefulsets?{query}",
|
|
1289
1289
|
"requestSchema": "schema.json",
|
|
1290
1290
|
"responseSchema": "schema.json",
|
|
1291
1291
|
"timeout": 0,
|
|
@@ -1306,7 +1306,7 @@
|
|
|
1306
1306
|
"name": "watchAppsV1ControllerRevisionListForAllNamespaces",
|
|
1307
1307
|
"protocol": "REST",
|
|
1308
1308
|
"method": "GET",
|
|
1309
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/controllerrevisions?{query}",
|
|
1309
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/controllerrevisions?{query}",
|
|
1310
1310
|
"requestSchema": "schema.json",
|
|
1311
1311
|
"responseSchema": "schema.json",
|
|
1312
1312
|
"timeout": 0,
|
|
@@ -1327,7 +1327,7 @@
|
|
|
1327
1327
|
"name": "watchAppsV1DaemonSetListForAllNamespaces",
|
|
1328
1328
|
"protocol": "REST",
|
|
1329
1329
|
"method": "GET",
|
|
1330
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/daemonsets?{query}",
|
|
1330
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/daemonsets?{query}",
|
|
1331
1331
|
"requestSchema": "schema.json",
|
|
1332
1332
|
"responseSchema": "schema.json",
|
|
1333
1333
|
"timeout": 0,
|
|
@@ -1348,7 +1348,7 @@
|
|
|
1348
1348
|
"name": "watchAppsV1DeploymentListForAllNamespaces",
|
|
1349
1349
|
"protocol": "REST",
|
|
1350
1350
|
"method": "GET",
|
|
1351
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/deployments?{query}",
|
|
1351
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/deployments?{query}",
|
|
1352
1352
|
"requestSchema": "schema.json",
|
|
1353
1353
|
"responseSchema": "schema.json",
|
|
1354
1354
|
"timeout": 0,
|
|
@@ -1369,7 +1369,7 @@
|
|
|
1369
1369
|
"name": "watchAppsV1NamespacedControllerRevisionList",
|
|
1370
1370
|
"protocol": "REST",
|
|
1371
1371
|
"method": "GET",
|
|
1372
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/controllerrevisions?{query}",
|
|
1372
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/controllerrevisions?{query}",
|
|
1373
1373
|
"requestSchema": "schema.json",
|
|
1374
1374
|
"responseSchema": "schema.json",
|
|
1375
1375
|
"timeout": 0,
|
|
@@ -1390,7 +1390,7 @@
|
|
|
1390
1390
|
"name": "watchAppsV1NamespacedControllerRevision",
|
|
1391
1391
|
"protocol": "REST",
|
|
1392
1392
|
"method": "GET",
|
|
1393
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
1393
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/controllerrevisions/{pathv2}?{query}",
|
|
1394
1394
|
"requestSchema": "schema.json",
|
|
1395
1395
|
"responseSchema": "schema.json",
|
|
1396
1396
|
"timeout": 0,
|
|
@@ -1411,7 +1411,7 @@
|
|
|
1411
1411
|
"name": "watchAppsV1NamespacedDaemonSetList",
|
|
1412
1412
|
"protocol": "REST",
|
|
1413
1413
|
"method": "GET",
|
|
1414
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/daemonsets?{query}",
|
|
1414
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/daemonsets?{query}",
|
|
1415
1415
|
"requestSchema": "schema.json",
|
|
1416
1416
|
"responseSchema": "schema.json",
|
|
1417
1417
|
"timeout": 0,
|
|
@@ -1432,7 +1432,7 @@
|
|
|
1432
1432
|
"name": "watchAppsV1NamespacedDaemonSet",
|
|
1433
1433
|
"protocol": "REST",
|
|
1434
1434
|
"method": "GET",
|
|
1435
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
1435
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/daemonsets/{pathv2}?{query}",
|
|
1436
1436
|
"requestSchema": "schema.json",
|
|
1437
1437
|
"responseSchema": "schema.json",
|
|
1438
1438
|
"timeout": 0,
|
|
@@ -1453,7 +1453,7 @@
|
|
|
1453
1453
|
"name": "watchAppsV1NamespacedDeploymentList",
|
|
1454
1454
|
"protocol": "REST",
|
|
1455
1455
|
"method": "GET",
|
|
1456
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/deployments?{query}",
|
|
1456
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/deployments?{query}",
|
|
1457
1457
|
"requestSchema": "schema.json",
|
|
1458
1458
|
"responseSchema": "schema.json",
|
|
1459
1459
|
"timeout": 0,
|
|
@@ -1474,7 +1474,7 @@
|
|
|
1474
1474
|
"name": "watchAppsV1NamespacedDeployment",
|
|
1475
1475
|
"protocol": "REST",
|
|
1476
1476
|
"method": "GET",
|
|
1477
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
1477
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/deployments/{pathv2}?{query}",
|
|
1478
1478
|
"requestSchema": "schema.json",
|
|
1479
1479
|
"responseSchema": "schema.json",
|
|
1480
1480
|
"timeout": 0,
|
|
@@ -1495,7 +1495,7 @@
|
|
|
1495
1495
|
"name": "watchAppsV1NamespacedReplicaSetList",
|
|
1496
1496
|
"protocol": "REST",
|
|
1497
1497
|
"method": "GET",
|
|
1498
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/replicasets?{query}",
|
|
1498
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/replicasets?{query}",
|
|
1499
1499
|
"requestSchema": "schema.json",
|
|
1500
1500
|
"responseSchema": "schema.json",
|
|
1501
1501
|
"timeout": 0,
|
|
@@ -1516,7 +1516,7 @@
|
|
|
1516
1516
|
"name": "watchAppsV1NamespacedReplicaSet",
|
|
1517
1517
|
"protocol": "REST",
|
|
1518
1518
|
"method": "GET",
|
|
1519
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
1519
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/replicasets/{pathv2}?{query}",
|
|
1520
1520
|
"requestSchema": "schema.json",
|
|
1521
1521
|
"responseSchema": "schema.json",
|
|
1522
1522
|
"timeout": 0,
|
|
@@ -1537,7 +1537,7 @@
|
|
|
1537
1537
|
"name": "watchAppsV1NamespacedStatefulSetList",
|
|
1538
1538
|
"protocol": "REST",
|
|
1539
1539
|
"method": "GET",
|
|
1540
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/statefulsets?{query}",
|
|
1540
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/statefulsets?{query}",
|
|
1541
1541
|
"requestSchema": "schema.json",
|
|
1542
1542
|
"responseSchema": "schema.json",
|
|
1543
1543
|
"timeout": 0,
|
|
@@ -1558,7 +1558,7 @@
|
|
|
1558
1558
|
"name": "watchAppsV1NamespacedStatefulSet",
|
|
1559
1559
|
"protocol": "REST",
|
|
1560
1560
|
"method": "GET",
|
|
1561
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1561
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/namespaces/{pathv1}/statefulsets/{pathv2}?{query}",
|
|
1562
1562
|
"requestSchema": "schema.json",
|
|
1563
1563
|
"responseSchema": "schema.json",
|
|
1564
1564
|
"timeout": 0,
|
|
@@ -1579,7 +1579,7 @@
|
|
|
1579
1579
|
"name": "watchAppsV1ReplicaSetListForAllNamespaces",
|
|
1580
1580
|
"protocol": "REST",
|
|
1581
1581
|
"method": "GET",
|
|
1582
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/replicasets?{query}",
|
|
1582
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/replicasets?{query}",
|
|
1583
1583
|
"requestSchema": "schema.json",
|
|
1584
1584
|
"responseSchema": "schema.json",
|
|
1585
1585
|
"timeout": 0,
|
|
@@ -1600,7 +1600,7 @@
|
|
|
1600
1600
|
"name": "watchAppsV1StatefulSetListForAllNamespaces",
|
|
1601
1601
|
"protocol": "REST",
|
|
1602
1602
|
"method": "GET",
|
|
1603
|
-
"entitypath": "{base_path}/{version}apis/apps/v1/watch/statefulsets?{query}",
|
|
1603
|
+
"entitypath": "{base_path}/{version}/apis/apps/v1/watch/statefulsets?{query}",
|
|
1604
1604
|
"requestSchema": "schema.json",
|
|
1605
1605
|
"responseSchema": "schema.json",
|
|
1606
1606
|
"timeout": 0,
|