@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": "getSettingsAPIGroup",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "getSettingsV1alpha1APIResources",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"name": "deleteSettingsV1alpha1CollectionNamespacedPodPreset",
|
|
26
26
|
"protocol": "REST",
|
|
27
27
|
"method": "DELETE",
|
|
28
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets?{query}",
|
|
28
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets?{query}",
|
|
29
29
|
"requestSchema": "schema.json",
|
|
30
30
|
"responseSchema": "schema.json",
|
|
31
31
|
"timeout": 0,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "listSettingsV1alpha1NamespacedPodPreset",
|
|
47
47
|
"protocol": "REST",
|
|
48
48
|
"method": "GET",
|
|
49
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets?{query}",
|
|
49
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets?{query}",
|
|
50
50
|
"requestSchema": "schema.json",
|
|
51
51
|
"responseSchema": "schema.json",
|
|
52
52
|
"timeout": 0,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"name": "createSettingsV1alpha1NamespacedPodPreset",
|
|
68
68
|
"protocol": "REST",
|
|
69
69
|
"method": "POST",
|
|
70
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets?{query}",
|
|
70
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets?{query}",
|
|
71
71
|
"requestSchema": "schema.json",
|
|
72
72
|
"responseSchema": "schema.json",
|
|
73
73
|
"timeout": 0,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"name": "deleteSettingsV1alpha1NamespacedPodPreset",
|
|
89
89
|
"protocol": "REST",
|
|
90
90
|
"method": "DELETE",
|
|
91
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
91
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
92
92
|
"requestSchema": "schema.json",
|
|
93
93
|
"responseSchema": "schema.json",
|
|
94
94
|
"timeout": 0,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "readSettingsV1alpha1NamespacedPodPreset",
|
|
110
110
|
"protocol": "REST",
|
|
111
111
|
"method": "GET",
|
|
112
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
112
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
113
113
|
"requestSchema": "schema.json",
|
|
114
114
|
"responseSchema": "schema.json",
|
|
115
115
|
"timeout": 0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "patchSettingsV1alpha1NamespacedPodPreset",
|
|
131
131
|
"protocol": "REST",
|
|
132
132
|
"method": "PATCH",
|
|
133
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
133
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
134
134
|
"requestSchema": "schema.json",
|
|
135
135
|
"responseSchema": "schema.json",
|
|
136
136
|
"timeout": 0,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "replaceSettingsV1alpha1NamespacedPodPreset",
|
|
152
152
|
"protocol": "REST",
|
|
153
153
|
"method": "PUT",
|
|
154
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
154
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
155
155
|
"requestSchema": "schema.json",
|
|
156
156
|
"responseSchema": "schema.json",
|
|
157
157
|
"timeout": 0,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"name": "listSettingsV1alpha1PodPresetForAllNamespaces",
|
|
173
173
|
"protocol": "REST",
|
|
174
174
|
"method": "GET",
|
|
175
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/podpresets?{query}",
|
|
175
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/podpresets?{query}",
|
|
176
176
|
"requestSchema": "schema.json",
|
|
177
177
|
"responseSchema": "schema.json",
|
|
178
178
|
"timeout": 0,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"name": "watchSettingsV1alpha1NamespacedPodPresetList",
|
|
194
194
|
"protocol": "REST",
|
|
195
195
|
"method": "GET",
|
|
196
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/watch/namespaces/{pathv1}/podpresets?{query}",
|
|
196
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/watch/namespaces/{pathv1}/podpresets?{query}",
|
|
197
197
|
"requestSchema": "schema.json",
|
|
198
198
|
"responseSchema": "schema.json",
|
|
199
199
|
"timeout": 0,
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"name": "watchSettingsV1alpha1NamespacedPodPreset",
|
|
215
215
|
"protocol": "REST",
|
|
216
216
|
"method": "GET",
|
|
217
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/watch/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
217
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/watch/namespaces/{pathv1}/podpresets/{pathv2}?{query}",
|
|
218
218
|
"requestSchema": "schema.json",
|
|
219
219
|
"responseSchema": "schema.json",
|
|
220
220
|
"timeout": 0,
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"name": "watchSettingsV1alpha1PodPresetListForAllNamespaces",
|
|
236
236
|
"protocol": "REST",
|
|
237
237
|
"method": "GET",
|
|
238
|
-
"entitypath": "{base_path}/{version}apis/settings.k8s.io/v1alpha1/watch/podpresets?{query}",
|
|
238
|
+
"entitypath": "{base_path}/{version}/apis/settings.k8s.io/v1alpha1/watch/podpresets?{query}",
|
|
239
239
|
"requestSchema": "schema.json",
|
|
240
240
|
"responseSchema": "schema.json",
|
|
241
241
|
"timeout": 0,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "getStorageAPIGroup",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "getStorageV1APIResources",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"name": "deleteStorageV1CollectionStorageClass",
|
|
26
26
|
"protocol": "REST",
|
|
27
27
|
"method": "DELETE",
|
|
28
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/storageclasses?{query}",
|
|
28
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/storageclasses?{query}",
|
|
29
29
|
"requestSchema": "schema.json",
|
|
30
30
|
"responseSchema": "schema.json",
|
|
31
31
|
"timeout": 0,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "listStorageV1StorageClass",
|
|
47
47
|
"protocol": "REST",
|
|
48
48
|
"method": "GET",
|
|
49
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/storageclasses?{query}",
|
|
49
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/storageclasses?{query}",
|
|
50
50
|
"requestSchema": "schema.json",
|
|
51
51
|
"responseSchema": "schema.json",
|
|
52
52
|
"timeout": 0,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"name": "createStorageV1StorageClass",
|
|
68
68
|
"protocol": "REST",
|
|
69
69
|
"method": "POST",
|
|
70
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/storageclasses?{query}",
|
|
70
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/storageclasses?{query}",
|
|
71
71
|
"requestSchema": "schema.json",
|
|
72
72
|
"responseSchema": "schema.json",
|
|
73
73
|
"timeout": 0,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"name": "deleteStorageV1StorageClass",
|
|
89
89
|
"protocol": "REST",
|
|
90
90
|
"method": "DELETE",
|
|
91
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/storageclasses/{pathv1}?{query}",
|
|
91
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/storageclasses/{pathv1}?{query}",
|
|
92
92
|
"requestSchema": "schema.json",
|
|
93
93
|
"responseSchema": "schema.json",
|
|
94
94
|
"timeout": 0,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "readStorageV1StorageClass",
|
|
110
110
|
"protocol": "REST",
|
|
111
111
|
"method": "GET",
|
|
112
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/storageclasses/{pathv1}?{query}",
|
|
112
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/storageclasses/{pathv1}?{query}",
|
|
113
113
|
"requestSchema": "schema.json",
|
|
114
114
|
"responseSchema": "schema.json",
|
|
115
115
|
"timeout": 0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "patchStorageV1StorageClass",
|
|
131
131
|
"protocol": "REST",
|
|
132
132
|
"method": "PATCH",
|
|
133
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/storageclasses/{pathv1}?{query}",
|
|
133
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/storageclasses/{pathv1}?{query}",
|
|
134
134
|
"requestSchema": "schema.json",
|
|
135
135
|
"responseSchema": "schema.json",
|
|
136
136
|
"timeout": 0,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "replaceStorageV1StorageClass",
|
|
152
152
|
"protocol": "REST",
|
|
153
153
|
"method": "PUT",
|
|
154
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/storageclasses/{pathv1}?{query}",
|
|
154
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/storageclasses/{pathv1}?{query}",
|
|
155
155
|
"requestSchema": "schema.json",
|
|
156
156
|
"responseSchema": "schema.json",
|
|
157
157
|
"timeout": 0,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"name": "deleteStorageV1CollectionVolumeAttachment",
|
|
173
173
|
"protocol": "REST",
|
|
174
174
|
"method": "DELETE",
|
|
175
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments?{query}",
|
|
175
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments?{query}",
|
|
176
176
|
"requestSchema": "schema.json",
|
|
177
177
|
"responseSchema": "schema.json",
|
|
178
178
|
"timeout": 0,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"name": "listStorageV1VolumeAttachment",
|
|
194
194
|
"protocol": "REST",
|
|
195
195
|
"method": "GET",
|
|
196
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments?{query}",
|
|
196
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments?{query}",
|
|
197
197
|
"requestSchema": "schema.json",
|
|
198
198
|
"responseSchema": "schema.json",
|
|
199
199
|
"timeout": 0,
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"name": "createStorageV1VolumeAttachment",
|
|
215
215
|
"protocol": "REST",
|
|
216
216
|
"method": "POST",
|
|
217
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments?{query}",
|
|
217
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments?{query}",
|
|
218
218
|
"requestSchema": "schema.json",
|
|
219
219
|
"responseSchema": "schema.json",
|
|
220
220
|
"timeout": 0,
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"name": "deleteStorageV1VolumeAttachment",
|
|
236
236
|
"protocol": "REST",
|
|
237
237
|
"method": "DELETE",
|
|
238
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments/{pathv1}?{query}",
|
|
238
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments/{pathv1}?{query}",
|
|
239
239
|
"requestSchema": "schema.json",
|
|
240
240
|
"responseSchema": "schema.json",
|
|
241
241
|
"timeout": 0,
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
"name": "readStorageV1VolumeAttachment",
|
|
257
257
|
"protocol": "REST",
|
|
258
258
|
"method": "GET",
|
|
259
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments/{pathv1}?{query}",
|
|
259
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments/{pathv1}?{query}",
|
|
260
260
|
"requestSchema": "schema.json",
|
|
261
261
|
"responseSchema": "schema.json",
|
|
262
262
|
"timeout": 0,
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
"name": "patchStorageV1VolumeAttachment",
|
|
278
278
|
"protocol": "REST",
|
|
279
279
|
"method": "PATCH",
|
|
280
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments/{pathv1}?{query}",
|
|
280
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments/{pathv1}?{query}",
|
|
281
281
|
"requestSchema": "schema.json",
|
|
282
282
|
"responseSchema": "schema.json",
|
|
283
283
|
"timeout": 0,
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
"name": "replaceStorageV1VolumeAttachment",
|
|
299
299
|
"protocol": "REST",
|
|
300
300
|
"method": "PUT",
|
|
301
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments/{pathv1}?{query}",
|
|
301
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments/{pathv1}?{query}",
|
|
302
302
|
"requestSchema": "schema.json",
|
|
303
303
|
"responseSchema": "schema.json",
|
|
304
304
|
"timeout": 0,
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
"name": "readStorageV1VolumeAttachmentStatus",
|
|
320
320
|
"protocol": "REST",
|
|
321
321
|
"method": "GET",
|
|
322
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments/{pathv1}/status?{query}",
|
|
322
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments/{pathv1}/status?{query}",
|
|
323
323
|
"requestSchema": "schema.json",
|
|
324
324
|
"responseSchema": "schema.json",
|
|
325
325
|
"timeout": 0,
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
"name": "patchStorageV1VolumeAttachmentStatus",
|
|
341
341
|
"protocol": "REST",
|
|
342
342
|
"method": "PATCH",
|
|
343
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments/{pathv1}/status?{query}",
|
|
343
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments/{pathv1}/status?{query}",
|
|
344
344
|
"requestSchema": "schema.json",
|
|
345
345
|
"responseSchema": "schema.json",
|
|
346
346
|
"timeout": 0,
|
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
"name": "replaceStorageV1VolumeAttachmentStatus",
|
|
362
362
|
"protocol": "REST",
|
|
363
363
|
"method": "PUT",
|
|
364
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/volumeattachments/{pathv1}/status?{query}",
|
|
364
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/volumeattachments/{pathv1}/status?{query}",
|
|
365
365
|
"requestSchema": "schema.json",
|
|
366
366
|
"responseSchema": "schema.json",
|
|
367
367
|
"timeout": 0,
|
|
@@ -382,7 +382,7 @@
|
|
|
382
382
|
"name": "watchStorageV1StorageClassList",
|
|
383
383
|
"protocol": "REST",
|
|
384
384
|
"method": "GET",
|
|
385
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/watch/storageclasses?{query}",
|
|
385
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/watch/storageclasses?{query}",
|
|
386
386
|
"requestSchema": "schema.json",
|
|
387
387
|
"responseSchema": "schema.json",
|
|
388
388
|
"timeout": 0,
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
"name": "watchStorageV1StorageClass",
|
|
404
404
|
"protocol": "REST",
|
|
405
405
|
"method": "GET",
|
|
406
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/watch/storageclasses/{pathv1}?{query}",
|
|
406
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/watch/storageclasses/{pathv1}?{query}",
|
|
407
407
|
"requestSchema": "schema.json",
|
|
408
408
|
"responseSchema": "schema.json",
|
|
409
409
|
"timeout": 0,
|
|
@@ -424,7 +424,7 @@
|
|
|
424
424
|
"name": "watchStorageV1VolumeAttachmentList",
|
|
425
425
|
"protocol": "REST",
|
|
426
426
|
"method": "GET",
|
|
427
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/watch/volumeattachments?{query}",
|
|
427
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/watch/volumeattachments?{query}",
|
|
428
428
|
"requestSchema": "schema.json",
|
|
429
429
|
"responseSchema": "schema.json",
|
|
430
430
|
"timeout": 0,
|
|
@@ -445,7 +445,7 @@
|
|
|
445
445
|
"name": "watchStorageV1VolumeAttachment",
|
|
446
446
|
"protocol": "REST",
|
|
447
447
|
"method": "GET",
|
|
448
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1/watch/volumeattachments/{pathv1}?{query}",
|
|
448
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1/watch/volumeattachments/{pathv1}?{query}",
|
|
449
449
|
"requestSchema": "schema.json",
|
|
450
450
|
"responseSchema": "schema.json",
|
|
451
451
|
"timeout": 0,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "getStorageV1alpha1APIResources",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"name": "deleteStorageV1alpha1CollectionVolumeAttachment",
|
|
26
26
|
"protocol": "REST",
|
|
27
27
|
"method": "DELETE",
|
|
28
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/volumeattachments?{query}",
|
|
28
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/volumeattachments?{query}",
|
|
29
29
|
"requestSchema": "schema.json",
|
|
30
30
|
"responseSchema": "schema.json",
|
|
31
31
|
"timeout": 0,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "listStorageV1alpha1VolumeAttachment",
|
|
47
47
|
"protocol": "REST",
|
|
48
48
|
"method": "GET",
|
|
49
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/volumeattachments?{query}",
|
|
49
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/volumeattachments?{query}",
|
|
50
50
|
"requestSchema": "schema.json",
|
|
51
51
|
"responseSchema": "schema.json",
|
|
52
52
|
"timeout": 0,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"name": "createStorageV1alpha1VolumeAttachment",
|
|
68
68
|
"protocol": "REST",
|
|
69
69
|
"method": "POST",
|
|
70
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/volumeattachments?{query}",
|
|
70
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/volumeattachments?{query}",
|
|
71
71
|
"requestSchema": "schema.json",
|
|
72
72
|
"responseSchema": "schema.json",
|
|
73
73
|
"timeout": 0,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"name": "deleteStorageV1alpha1VolumeAttachment",
|
|
89
89
|
"protocol": "REST",
|
|
90
90
|
"method": "DELETE",
|
|
91
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/volumeattachments/{pathv1}?{query}",
|
|
91
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/volumeattachments/{pathv1}?{query}",
|
|
92
92
|
"requestSchema": "schema.json",
|
|
93
93
|
"responseSchema": "schema.json",
|
|
94
94
|
"timeout": 0,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "readStorageV1alpha1VolumeAttachment",
|
|
110
110
|
"protocol": "REST",
|
|
111
111
|
"method": "GET",
|
|
112
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/volumeattachments/{pathv1}?{query}",
|
|
112
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/volumeattachments/{pathv1}?{query}",
|
|
113
113
|
"requestSchema": "schema.json",
|
|
114
114
|
"responseSchema": "schema.json",
|
|
115
115
|
"timeout": 0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "patchStorageV1alpha1VolumeAttachment",
|
|
131
131
|
"protocol": "REST",
|
|
132
132
|
"method": "PATCH",
|
|
133
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/volumeattachments/{pathv1}?{query}",
|
|
133
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/volumeattachments/{pathv1}?{query}",
|
|
134
134
|
"requestSchema": "schema.json",
|
|
135
135
|
"responseSchema": "schema.json",
|
|
136
136
|
"timeout": 0,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "replaceStorageV1alpha1VolumeAttachment",
|
|
152
152
|
"protocol": "REST",
|
|
153
153
|
"method": "PUT",
|
|
154
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/volumeattachments/{pathv1}?{query}",
|
|
154
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/volumeattachments/{pathv1}?{query}",
|
|
155
155
|
"requestSchema": "schema.json",
|
|
156
156
|
"responseSchema": "schema.json",
|
|
157
157
|
"timeout": 0,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"name": "watchStorageV1alpha1VolumeAttachmentList",
|
|
173
173
|
"protocol": "REST",
|
|
174
174
|
"method": "GET",
|
|
175
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/watch/volumeattachments?{query}",
|
|
175
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/watch/volumeattachments?{query}",
|
|
176
176
|
"requestSchema": "schema.json",
|
|
177
177
|
"responseSchema": "schema.json",
|
|
178
178
|
"timeout": 0,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"name": "watchStorageV1alpha1VolumeAttachment",
|
|
194
194
|
"protocol": "REST",
|
|
195
195
|
"method": "GET",
|
|
196
|
-
"entitypath": "{base_path}/{version}apis/storage.k8s.io/v1alpha1/watch/volumeattachments/{pathv1}?{query}",
|
|
196
|
+
"entitypath": "{base_path}/{version}/apis/storage.k8s.io/v1alpha1/watch/volumeattachments/{pathv1}?{query}",
|
|
197
197
|
"requestSchema": "schema.json",
|
|
198
198
|
"responseSchema": "schema.json",
|
|
199
199
|
"timeout": 0,
|