@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": "getCertificatesV1beta1APIResources",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"name": "deleteCertificatesV1beta1CollectionCertificateSigningRequest",
|
|
26
26
|
"protocol": "REST",
|
|
27
27
|
"method": "DELETE",
|
|
28
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests?{query}",
|
|
28
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests?{query}",
|
|
29
29
|
"requestSchema": "schema.json",
|
|
30
30
|
"responseSchema": "schema.json",
|
|
31
31
|
"timeout": 0,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "listCertificatesV1beta1CertificateSigningRequest",
|
|
47
47
|
"protocol": "REST",
|
|
48
48
|
"method": "GET",
|
|
49
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests?{query}",
|
|
49
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests?{query}",
|
|
50
50
|
"requestSchema": "schema.json",
|
|
51
51
|
"responseSchema": "schema.json",
|
|
52
52
|
"timeout": 0,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"name": "createCertificatesV1beta1CertificateSigningRequest",
|
|
68
68
|
"protocol": "REST",
|
|
69
69
|
"method": "POST",
|
|
70
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests?{query}",
|
|
70
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests?{query}",
|
|
71
71
|
"requestSchema": "schema.json",
|
|
72
72
|
"responseSchema": "schema.json",
|
|
73
73
|
"timeout": 0,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"name": "deleteCertificatesV1beta1CertificateSigningRequest",
|
|
89
89
|
"protocol": "REST",
|
|
90
90
|
"method": "DELETE",
|
|
91
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}?{query}",
|
|
91
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}?{query}",
|
|
92
92
|
"requestSchema": "schema.json",
|
|
93
93
|
"responseSchema": "schema.json",
|
|
94
94
|
"timeout": 0,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "readCertificatesV1beta1CertificateSigningRequest",
|
|
110
110
|
"protocol": "REST",
|
|
111
111
|
"method": "GET",
|
|
112
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}?{query}",
|
|
112
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}?{query}",
|
|
113
113
|
"requestSchema": "schema.json",
|
|
114
114
|
"responseSchema": "schema.json",
|
|
115
115
|
"timeout": 0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "patchCertificatesV1beta1CertificateSigningRequest",
|
|
131
131
|
"protocol": "REST",
|
|
132
132
|
"method": "PATCH",
|
|
133
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}?{query}",
|
|
133
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}?{query}",
|
|
134
134
|
"requestSchema": "schema.json",
|
|
135
135
|
"responseSchema": "schema.json",
|
|
136
136
|
"timeout": 0,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "replaceCertificatesV1beta1CertificateSigningRequest",
|
|
152
152
|
"protocol": "REST",
|
|
153
153
|
"method": "PUT",
|
|
154
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}?{query}",
|
|
154
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}?{query}",
|
|
155
155
|
"requestSchema": "schema.json",
|
|
156
156
|
"responseSchema": "schema.json",
|
|
157
157
|
"timeout": 0,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"name": "replaceCertificatesV1beta1CertificateSigningRequestApproval",
|
|
173
173
|
"protocol": "REST",
|
|
174
174
|
"method": "PUT",
|
|
175
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}/approval?{query}",
|
|
175
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}/approval?{query}",
|
|
176
176
|
"requestSchema": "schema.json",
|
|
177
177
|
"responseSchema": "schema.json",
|
|
178
178
|
"timeout": 0,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"name": "readCertificatesV1beta1CertificateSigningRequestStatus",
|
|
194
194
|
"protocol": "REST",
|
|
195
195
|
"method": "GET",
|
|
196
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}/status?{query}",
|
|
196
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}/status?{query}",
|
|
197
197
|
"requestSchema": "schema.json",
|
|
198
198
|
"responseSchema": "schema.json",
|
|
199
199
|
"timeout": 0,
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"name": "patchCertificatesV1beta1CertificateSigningRequestStatus",
|
|
215
215
|
"protocol": "REST",
|
|
216
216
|
"method": "PATCH",
|
|
217
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}/status?{query}",
|
|
217
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}/status?{query}",
|
|
218
218
|
"requestSchema": "schema.json",
|
|
219
219
|
"responseSchema": "schema.json",
|
|
220
220
|
"timeout": 0,
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"name": "replaceCertificatesV1beta1CertificateSigningRequestStatus",
|
|
236
236
|
"protocol": "REST",
|
|
237
237
|
"method": "PUT",
|
|
238
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}/status?{query}",
|
|
238
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/certificatesigningrequests/{pathv1}/status?{query}",
|
|
239
239
|
"requestSchema": "schema.json",
|
|
240
240
|
"responseSchema": "schema.json",
|
|
241
241
|
"timeout": 0,
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
"name": "watchCertificatesV1beta1CertificateSigningRequestList",
|
|
257
257
|
"protocol": "REST",
|
|
258
258
|
"method": "GET",
|
|
259
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests?{query}",
|
|
259
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests?{query}",
|
|
260
260
|
"requestSchema": "schema.json",
|
|
261
261
|
"responseSchema": "schema.json",
|
|
262
262
|
"timeout": 0,
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
"name": "watchCertificatesV1beta1CertificateSigningRequest",
|
|
278
278
|
"protocol": "REST",
|
|
279
279
|
"method": "GET",
|
|
280
|
-
"entitypath": "{base_path}/{version}apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/{pathv1}?{query}",
|
|
280
|
+
"entitypath": "{base_path}/{version}/apis/certificates.k8s.io/v1beta1/watch/certificatesigningrequests/{pathv1}?{query}",
|
|
281
281
|
"requestSchema": "schema.json",
|
|
282
282
|
"responseSchema": "schema.json",
|
|
283
283
|
"timeout": 0,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "getCoordinationAPIGroup",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "getCoordinationV1APIResources",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/coordination.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": "listCoordinationV1LeaseForAllNamespaces",
|
|
26
26
|
"protocol": "REST",
|
|
27
27
|
"method": "GET",
|
|
28
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/leases?{query}",
|
|
28
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/leases?{query}",
|
|
29
29
|
"requestSchema": "schema.json",
|
|
30
30
|
"responseSchema": "schema.json",
|
|
31
31
|
"timeout": 0,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "deleteCoordinationV1CollectionNamespacedLease",
|
|
47
47
|
"protocol": "REST",
|
|
48
48
|
"method": "DELETE",
|
|
49
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases?{query}",
|
|
49
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases?{query}",
|
|
50
50
|
"requestSchema": "schema.json",
|
|
51
51
|
"responseSchema": "schema.json",
|
|
52
52
|
"timeout": 0,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"name": "listCoordinationV1NamespacedLease",
|
|
68
68
|
"protocol": "REST",
|
|
69
69
|
"method": "GET",
|
|
70
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases?{query}",
|
|
70
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases?{query}",
|
|
71
71
|
"requestSchema": "schema.json",
|
|
72
72
|
"responseSchema": "schema.json",
|
|
73
73
|
"timeout": 0,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"name": "createCoordinationV1NamespacedLease",
|
|
89
89
|
"protocol": "REST",
|
|
90
90
|
"method": "POST",
|
|
91
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases?{query}",
|
|
91
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases?{query}",
|
|
92
92
|
"requestSchema": "schema.json",
|
|
93
93
|
"responseSchema": "schema.json",
|
|
94
94
|
"timeout": 0,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "deleteCoordinationV1NamespacedLease",
|
|
110
110
|
"protocol": "REST",
|
|
111
111
|
"method": "DELETE",
|
|
112
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
112
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
113
113
|
"requestSchema": "schema.json",
|
|
114
114
|
"responseSchema": "schema.json",
|
|
115
115
|
"timeout": 0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "readCoordinationV1NamespacedLease",
|
|
131
131
|
"protocol": "REST",
|
|
132
132
|
"method": "GET",
|
|
133
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
133
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
134
134
|
"requestSchema": "schema.json",
|
|
135
135
|
"responseSchema": "schema.json",
|
|
136
136
|
"timeout": 0,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "patchCoordinationV1NamespacedLease",
|
|
152
152
|
"protocol": "REST",
|
|
153
153
|
"method": "PATCH",
|
|
154
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
154
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
155
155
|
"requestSchema": "schema.json",
|
|
156
156
|
"responseSchema": "schema.json",
|
|
157
157
|
"timeout": 0,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"name": "replaceCoordinationV1NamespacedLease",
|
|
173
173
|
"protocol": "REST",
|
|
174
174
|
"method": "PUT",
|
|
175
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
175
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
176
176
|
"requestSchema": "schema.json",
|
|
177
177
|
"responseSchema": "schema.json",
|
|
178
178
|
"timeout": 0,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"name": "watchCoordinationV1LeaseListForAllNamespaces",
|
|
194
194
|
"protocol": "REST",
|
|
195
195
|
"method": "GET",
|
|
196
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/watch/leases?{query}",
|
|
196
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/watch/leases?{query}",
|
|
197
197
|
"requestSchema": "schema.json",
|
|
198
198
|
"responseSchema": "schema.json",
|
|
199
199
|
"timeout": 0,
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"name": "watchCoordinationV1NamespacedLeaseList",
|
|
215
215
|
"protocol": "REST",
|
|
216
216
|
"method": "GET",
|
|
217
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/watch/namespaces/{pathv1}/leases?{query}",
|
|
217
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/watch/namespaces/{pathv1}/leases?{query}",
|
|
218
218
|
"requestSchema": "schema.json",
|
|
219
219
|
"responseSchema": "schema.json",
|
|
220
220
|
"timeout": 0,
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"name": "watchCoordinationV1NamespacedLease",
|
|
236
236
|
"protocol": "REST",
|
|
237
237
|
"method": "GET",
|
|
238
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1/watch/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
238
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1/watch/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
239
239
|
"requestSchema": "schema.json",
|
|
240
240
|
"responseSchema": "schema.json",
|
|
241
241
|
"timeout": 0,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "getCoordinationV1beta1APIResources",
|
|
5
5
|
"protocol": "REST",
|
|
6
6
|
"method": "GET",
|
|
7
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/?{query}",
|
|
7
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/?{query}",
|
|
8
8
|
"requestSchema": "schema.json",
|
|
9
9
|
"responseSchema": "schema.json",
|
|
10
10
|
"timeout": 0,
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"name": "listCoordinationV1beta1LeaseForAllNamespaces",
|
|
26
26
|
"protocol": "REST",
|
|
27
27
|
"method": "GET",
|
|
28
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/leases?{query}",
|
|
28
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/leases?{query}",
|
|
29
29
|
"requestSchema": "schema.json",
|
|
30
30
|
"responseSchema": "schema.json",
|
|
31
31
|
"timeout": 0,
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"name": "deleteCoordinationV1beta1CollectionNamespacedLease",
|
|
47
47
|
"protocol": "REST",
|
|
48
48
|
"method": "DELETE",
|
|
49
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases?{query}",
|
|
49
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases?{query}",
|
|
50
50
|
"requestSchema": "schema.json",
|
|
51
51
|
"responseSchema": "schema.json",
|
|
52
52
|
"timeout": 0,
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"name": "listCoordinationV1beta1NamespacedLease",
|
|
68
68
|
"protocol": "REST",
|
|
69
69
|
"method": "GET",
|
|
70
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases?{query}",
|
|
70
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases?{query}",
|
|
71
71
|
"requestSchema": "schema.json",
|
|
72
72
|
"responseSchema": "schema.json",
|
|
73
73
|
"timeout": 0,
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"name": "createCoordinationV1beta1NamespacedLease",
|
|
89
89
|
"protocol": "REST",
|
|
90
90
|
"method": "POST",
|
|
91
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases?{query}",
|
|
91
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases?{query}",
|
|
92
92
|
"requestSchema": "schema.json",
|
|
93
93
|
"responseSchema": "schema.json",
|
|
94
94
|
"timeout": 0,
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"name": "deleteCoordinationV1beta1NamespacedLease",
|
|
110
110
|
"protocol": "REST",
|
|
111
111
|
"method": "DELETE",
|
|
112
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
112
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
113
113
|
"requestSchema": "schema.json",
|
|
114
114
|
"responseSchema": "schema.json",
|
|
115
115
|
"timeout": 0,
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"name": "readCoordinationV1beta1NamespacedLease",
|
|
131
131
|
"protocol": "REST",
|
|
132
132
|
"method": "GET",
|
|
133
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
133
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
134
134
|
"requestSchema": "schema.json",
|
|
135
135
|
"responseSchema": "schema.json",
|
|
136
136
|
"timeout": 0,
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"name": "patchCoordinationV1beta1NamespacedLease",
|
|
152
152
|
"protocol": "REST",
|
|
153
153
|
"method": "PATCH",
|
|
154
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
154
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
155
155
|
"requestSchema": "schema.json",
|
|
156
156
|
"responseSchema": "schema.json",
|
|
157
157
|
"timeout": 0,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
"name": "replaceCoordinationV1beta1NamespacedLease",
|
|
173
173
|
"protocol": "REST",
|
|
174
174
|
"method": "PUT",
|
|
175
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
175
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
176
176
|
"requestSchema": "schema.json",
|
|
177
177
|
"responseSchema": "schema.json",
|
|
178
178
|
"timeout": 0,
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"name": "watchCoordinationV1beta1LeaseListForAllNamespaces",
|
|
194
194
|
"protocol": "REST",
|
|
195
195
|
"method": "GET",
|
|
196
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/watch/leases?{query}",
|
|
196
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/watch/leases?{query}",
|
|
197
197
|
"requestSchema": "schema.json",
|
|
198
198
|
"responseSchema": "schema.json",
|
|
199
199
|
"timeout": 0,
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"name": "watchCoordinationV1beta1NamespacedLeaseList",
|
|
215
215
|
"protocol": "REST",
|
|
216
216
|
"method": "GET",
|
|
217
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/watch/namespaces/{pathv1}/leases?{query}",
|
|
217
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/watch/namespaces/{pathv1}/leases?{query}",
|
|
218
218
|
"requestSchema": "schema.json",
|
|
219
219
|
"responseSchema": "schema.json",
|
|
220
220
|
"timeout": 0,
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"name": "watchCoordinationV1beta1NamespacedLease",
|
|
236
236
|
"protocol": "REST",
|
|
237
237
|
"method": "GET",
|
|
238
|
-
"entitypath": "{base_path}/{version}apis/coordination.k8s.io/v1beta1/watch/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
238
|
+
"entitypath": "{base_path}/{version}/apis/coordination.k8s.io/v1beta1/watch/namespaces/{pathv1}/leases/{pathv2}?{query}",
|
|
239
239
|
"requestSchema": "schema.json",
|
|
240
240
|
"responseSchema": "schema.json",
|
|
241
241
|
"timeout": 0,
|