@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.
Files changed (115) hide show
  1. package/.eslintignore +1 -0
  2. package/.eslintrc.js +12 -12
  3. package/AUTH.md +39 -0
  4. package/BROKER.md +199 -0
  5. package/CALLS.md +169 -0
  6. package/CHANGELOG.md +54 -19
  7. package/CODE_OF_CONDUCT.md +12 -17
  8. package/CONTRIBUTING.md +88 -74
  9. package/ENHANCE.md +69 -0
  10. package/PROPERTIES.md +641 -0
  11. package/README.md +244 -392
  12. package/SUMMARY.md +9 -0
  13. package/SYSTEMINFO.md +11 -0
  14. package/TROUBLESHOOT.md +47 -0
  15. package/adapter.js +7126 -35
  16. package/adapterBase.js +1331 -50
  17. package/entities/.generic/action.json +214 -0
  18. package/entities/.generic/schema.json +28 -0
  19. package/entities/.system/action.json +1 -1
  20. package/entities/Admissionregistration/action.json +1 -1
  21. package/entities/Admissionregistration_v1beta1/action.json +19 -19
  22. package/entities/Apiextensions/action.json +1 -1
  23. package/entities/Apiextensions_v1beta1/action.json +13 -13
  24. package/entities/Apiregistration/action.json +1 -1
  25. package/entities/Apiregistration_v1/action.json +13 -13
  26. package/entities/Apiregistration_v1beta1/action.json +13 -13
  27. package/entities/Apis/action.json +1 -1
  28. package/entities/Apps/action.json +1 -1
  29. package/entities/Apps_v1/action.json +77 -77
  30. package/entities/Apps_v1beta1/action.json +47 -47
  31. package/entities/Apps_v1beta2/action.json +77 -77
  32. package/entities/Auditregistration/action.json +1 -1
  33. package/entities/Auditregistration_v1alpha1/action.json +10 -10
  34. package/entities/Authentication/action.json +1 -1
  35. package/entities/Authentication_v1/action.json +2 -2
  36. package/entities/Authentication_v1beta1/action.json +2 -2
  37. package/entities/Authorization/action.json +1 -1
  38. package/entities/Authorization_v1/action.json +5 -5
  39. package/entities/Authorization_v1beta1/action.json +5 -5
  40. package/entities/Autoscaling/action.json +1 -1
  41. package/entities/Autoscaling_v1/action.json +15 -15
  42. package/entities/Autoscaling_v2beta1/action.json +15 -15
  43. package/entities/Autoscaling_v2beta2/action.json +15 -15
  44. package/entities/Batch/action.json +1 -1
  45. package/entities/Batch_v1/action.json +15 -15
  46. package/entities/Batch_v1beta1/action.json +15 -15
  47. package/entities/Batch_v2alpha1/action.json +15 -15
  48. package/entities/Certificates/action.json +1 -1
  49. package/entities/Certificates_v1beta1/action.json +14 -14
  50. package/entities/Coordination/action.json +1 -1
  51. package/entities/Coordination_v1/action.json +12 -12
  52. package/entities/Coordination_v1beta1/action.json +12 -12
  53. package/entities/Core/action.json +1 -1
  54. package/entities/Core_v1/action.json +240 -240
  55. package/entities/Events/action.json +1 -1
  56. package/entities/Events_v1beta1/action.json +12 -12
  57. package/entities/Extensions/action.json +1 -1
  58. package/entities/Extensions_v1beta1/action.json +87 -87
  59. package/entities/Logs/action.json +2 -2
  60. package/entities/Networking/action.json +1 -1
  61. package/entities/Networking_v1/action.json +12 -12
  62. package/entities/Networking_v1beta1/action.json +15 -15
  63. package/entities/Node/action.json +1 -1
  64. package/entities/Node_v1alpha1/action.json +10 -10
  65. package/entities/Node_v1beta1/action.json +10 -10
  66. package/entities/Policy/action.json +1 -1
  67. package/entities/Policy_v1beta1/action.json +24 -24
  68. package/entities/RbacAuthorization/action.json +1 -1
  69. package/entities/RbacAuthorization_v1/action.json +41 -41
  70. package/entities/RbacAuthorization_v1alpha1/action.json +41 -41
  71. package/entities/RbacAuthorization_v1beta1/action.json +41 -41
  72. package/entities/Scheduling/action.json +1 -1
  73. package/entities/Scheduling_v1/action.json +10 -10
  74. package/entities/Scheduling_v1alpha1/action.json +10 -10
  75. package/entities/Scheduling_v1beta1/action.json +10 -10
  76. package/entities/Settings/action.json +1 -1
  77. package/entities/Settings_v1alpha1/action.json +12 -12
  78. package/entities/Storage/action.json +1 -1
  79. package/entities/Storage_v1/action.json +22 -22
  80. package/entities/Storage_v1alpha1/action.json +10 -10
  81. package/entities/Storage_v1beta1/action.json +37 -37
  82. package/entities/Version/action.json +1 -1
  83. package/error.json +12 -0
  84. package/package.json +47 -23
  85. package/pronghorn.json +642 -0
  86. package/propertiesDecorators.json +14 -0
  87. package/propertiesSchema.json +505 -11
  88. package/refs?service=git-upload-pack +0 -0
  89. package/report/adapterInfo.json +10 -0
  90. package/report/updateReport1594225120157.json +95 -0
  91. package/report/updateReport1615248177783.json +95 -0
  92. package/report/updateReport1653089036005.json +120 -0
  93. package/sampleProperties.json +110 -6
  94. package/test/integration/adapterTestBasicGet.js +85 -0
  95. package/test/integration/adapterTestConnectivity.js +93 -0
  96. package/test/integration/adapterTestIntegration.js +33 -96
  97. package/test/unit/adapterBaseTestUnit.js +949 -0
  98. package/test/unit/adapterTestUnit.js +643 -104
  99. package/utils/adapterInfo.js +206 -0
  100. package/utils/addAuth.js +94 -0
  101. package/utils/artifactize.js +9 -14
  102. package/utils/basicGet.js +50 -0
  103. package/utils/checkMigrate.js +63 -0
  104. package/utils/entitiesToDB.js +179 -0
  105. package/utils/findPath.js +74 -0
  106. package/utils/modify.js +154 -0
  107. package/utils/packModificationScript.js +1 -1
  108. package/utils/patches2bundledDeps.js +90 -0
  109. package/utils/pre-commit.sh +4 -1
  110. package/utils/removeHooks.js +20 -0
  111. package/utils/tbScript.js +184 -0
  112. package/utils/tbUtils.js +469 -0
  113. package/utils/testRunner.js +16 -16
  114. package/utils/troubleshootingAdapter.js +190 -0
  115. package/gl-code-quality-report.json +0 -1
@@ -0,0 +1,214 @@
1
+ {
2
+ "actions": [
3
+ {
4
+ "name": "getGenerics",
5
+ "protocol": "REST",
6
+ "method": "GET",
7
+ "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
8
+ "requestSchema": "schema.json",
9
+ "responseSchema": "schema.json",
10
+ "timeout": 0,
11
+ "sendEmpty": false,
12
+ "sendGetBody": false,
13
+ "requestDatatype": "JSON",
14
+ "responseDatatype": "JSON",
15
+ "headers": {},
16
+ "responseObjects": [
17
+ {
18
+ "type": "default",
19
+ "key": "",
20
+ "mockFile": ""
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "name": "createGeneric",
26
+ "protocol": "REST",
27
+ "method": "POST",
28
+ "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
29
+ "requestSchema": "schema.json",
30
+ "responseSchema": "schema.json",
31
+ "timeout": 0,
32
+ "sendEmpty": false,
33
+ "sendGetBody": false,
34
+ "requestDatatype": "JSON",
35
+ "responseDatatype": "JSON",
36
+ "headers": {},
37
+ "responseObjects": [
38
+ {
39
+ "type": "default",
40
+ "key": "",
41
+ "mockFile": ""
42
+ }
43
+ ]
44
+ },
45
+ {
46
+ "name": "updateGeneric",
47
+ "protocol": "REST",
48
+ "method": "PUT",
49
+ "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
50
+ "requestSchema": "schema.json",
51
+ "responseSchema": "schema.json",
52
+ "timeout": 0,
53
+ "sendEmpty": false,
54
+ "sendGetBody": false,
55
+ "requestDatatype": "JSON",
56
+ "responseDatatype": "JSON",
57
+ "headers": {},
58
+ "responseObjects": [
59
+ {
60
+ "type": "default",
61
+ "key": "",
62
+ "mockFile": ""
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "name": "patchGeneric",
68
+ "protocol": "REST",
69
+ "method": "PATCH",
70
+ "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
71
+ "requestSchema": "schema.json",
72
+ "responseSchema": "schema.json",
73
+ "timeout": 0,
74
+ "sendEmpty": false,
75
+ "sendGetBody": false,
76
+ "requestDatatype": "JSON",
77
+ "responseDatatype": "JSON",
78
+ "headers": {},
79
+ "responseObjects": [
80
+ {
81
+ "type": "default",
82
+ "key": "",
83
+ "mockFile": ""
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ "name": "deleteGeneric",
89
+ "protocol": "REST",
90
+ "method": "DELETE",
91
+ "entitypath": "{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
92
+ "requestSchema": "schema.json",
93
+ "responseSchema": "schema.json",
94
+ "timeout": 0,
95
+ "sendEmpty": false,
96
+ "sendGetBody": false,
97
+ "requestDatatype": "JSON",
98
+ "responseDatatype": "JSON",
99
+ "headers": {},
100
+ "responseObjects": [
101
+ {
102
+ "type": "default",
103
+ "key": "",
104
+ "mockFile": ""
105
+ }
106
+ ]
107
+ },
108
+ {
109
+ "name": "getGenericsNoBase",
110
+ "protocol": "REST",
111
+ "method": "GET",
112
+ "entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
113
+ "requestSchema": "schema.json",
114
+ "responseSchema": "schema.json",
115
+ "timeout": 0,
116
+ "sendEmpty": false,
117
+ "sendGetBody": false,
118
+ "requestDatatype": "JSON",
119
+ "responseDatatype": "JSON",
120
+ "headers": {},
121
+ "responseObjects": [
122
+ {
123
+ "type": "default",
124
+ "key": "",
125
+ "mockFile": ""
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "name": "createGenericNoBase",
131
+ "protocol": "REST",
132
+ "method": "POST",
133
+ "entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
134
+ "requestSchema": "schema.json",
135
+ "responseSchema": "schema.json",
136
+ "timeout": 0,
137
+ "sendEmpty": false,
138
+ "sendGetBody": false,
139
+ "requestDatatype": "JSON",
140
+ "responseDatatype": "JSON",
141
+ "headers": {},
142
+ "responseObjects": [
143
+ {
144
+ "type": "default",
145
+ "key": "",
146
+ "mockFile": ""
147
+ }
148
+ ]
149
+ },
150
+ {
151
+ "name": "updateGenericNoBase",
152
+ "protocol": "REST",
153
+ "method": "PUT",
154
+ "entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
155
+ "requestSchema": "schema.json",
156
+ "responseSchema": "schema.json",
157
+ "timeout": 0,
158
+ "sendEmpty": false,
159
+ "sendGetBody": false,
160
+ "requestDatatype": "JSON",
161
+ "responseDatatype": "JSON",
162
+ "headers": {},
163
+ "responseObjects": [
164
+ {
165
+ "type": "default",
166
+ "key": "",
167
+ "mockFile": ""
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "name": "patchGenericNoBase",
173
+ "protocol": "REST",
174
+ "method": "PATCH",
175
+ "entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
176
+ "requestSchema": "schema.json",
177
+ "responseSchema": "schema.json",
178
+ "timeout": 0,
179
+ "sendEmpty": false,
180
+ "sendGetBody": false,
181
+ "requestDatatype": "JSON",
182
+ "responseDatatype": "JSON",
183
+ "headers": {},
184
+ "responseObjects": [
185
+ {
186
+ "type": "default",
187
+ "key": "",
188
+ "mockFile": ""
189
+ }
190
+ ]
191
+ },
192
+ {
193
+ "name": "deleteGenericNoBase",
194
+ "protocol": "REST",
195
+ "method": "DELETE",
196
+ "entitypath": "/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}/{pathv7}/{pathv8}/{pathv9}/{pathv10}/{pathv11}/{pathv12}/{pathv13}/{pathv14}/{pathv15}/{pathv16}/{pathv17}/{pathv18}/{pathv19}/{pathv20}?{query}",
197
+ "requestSchema": "schema.json",
198
+ "responseSchema": "schema.json",
199
+ "timeout": 0,
200
+ "sendEmpty": false,
201
+ "sendGetBody": false,
202
+ "requestDatatype": "JSON",
203
+ "responseDatatype": "JSON",
204
+ "headers": {},
205
+ "responseObjects": [
206
+ {
207
+ "type": "default",
208
+ "key": "",
209
+ "mockFile": ""
210
+ }
211
+ ]
212
+ }
213
+ ]
214
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "$id": "generic_schema.json",
3
+ "type": "object",
4
+ "schema": "http://json-schema.org/draft-07/schema#",
5
+ "translate": false,
6
+ "dynamicfields": true,
7
+ "properties": {
8
+ "ph_request_type": {
9
+ "type": "string",
10
+ "description": "type of request (internal to adapter)",
11
+ "default": "getGeneric",
12
+ "enum": [
13
+ "getGenerics",
14
+ "createGeneric",
15
+ "updateGeneric",
16
+ "patchGeneric",
17
+ "deleteGeneric",
18
+ "getGenericsNoBase",
19
+ "createGenericNoBase",
20
+ "updateGenericNoBase",
21
+ "patchGenericNoBase",
22
+ "deleteGenericNoBase"
23
+ ],
24
+ "external_name": "ph_request_type"
25
+ }
26
+ },
27
+ "definitions": {}
28
+ }
@@ -4,7 +4,7 @@
4
4
  "name": "getToken",
5
5
  "protocol": "REST",
6
6
  "method": "POST",
7
- "entitypath": "{base_path}/{version}/login?{query}",
7
+ "entitypath": "{base_path}/{version}/login",
8
8
  "requestSchema": "schemaTokenReq.json",
9
9
  "responseSchema": "schemaTokenResp.json",
10
10
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAdmissionregistrationAPIGroup",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAdmissionregistrationV1beta1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.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": "deleteAdmissionregistrationV1beta1CollectionMutatingWebhookConfiguration",
26
26
  "protocol": "REST",
27
27
  "method": "DELETE",
28
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -46,7 +46,7 @@
46
46
  "name": "listAdmissionregistrationV1beta1MutatingWebhookConfiguration",
47
47
  "protocol": "REST",
48
48
  "method": "GET",
49
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations?{query}",
49
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations?{query}",
50
50
  "requestSchema": "schema.json",
51
51
  "responseSchema": "schema.json",
52
52
  "timeout": 0,
@@ -67,7 +67,7 @@
67
67
  "name": "createAdmissionregistrationV1beta1MutatingWebhookConfiguration",
68
68
  "protocol": "REST",
69
69
  "method": "POST",
70
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations?{query}",
70
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations?{query}",
71
71
  "requestSchema": "schema.json",
72
72
  "responseSchema": "schema.json",
73
73
  "timeout": 0,
@@ -88,7 +88,7 @@
88
88
  "name": "deleteAdmissionregistrationV1beta1MutatingWebhookConfiguration",
89
89
  "protocol": "REST",
90
90
  "method": "DELETE",
91
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{pathv1}?{query}",
91
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{pathv1}?{query}",
92
92
  "requestSchema": "schema.json",
93
93
  "responseSchema": "schema.json",
94
94
  "timeout": 0,
@@ -109,7 +109,7 @@
109
109
  "name": "readAdmissionregistrationV1beta1MutatingWebhookConfiguration",
110
110
  "protocol": "REST",
111
111
  "method": "GET",
112
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{pathv1}?{query}",
112
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{pathv1}?{query}",
113
113
  "requestSchema": "schema.json",
114
114
  "responseSchema": "schema.json",
115
115
  "timeout": 0,
@@ -130,7 +130,7 @@
130
130
  "name": "patchAdmissionregistrationV1beta1MutatingWebhookConfiguration",
131
131
  "protocol": "REST",
132
132
  "method": "PATCH",
133
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{pathv1}?{query}",
133
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{pathv1}?{query}",
134
134
  "requestSchema": "schema.json",
135
135
  "responseSchema": "schema.json",
136
136
  "timeout": 0,
@@ -151,7 +151,7 @@
151
151
  "name": "replaceAdmissionregistrationV1beta1MutatingWebhookConfiguration",
152
152
  "protocol": "REST",
153
153
  "method": "PUT",
154
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{pathv1}?{query}",
154
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/mutatingwebhookconfigurations/{pathv1}?{query}",
155
155
  "requestSchema": "schema.json",
156
156
  "responseSchema": "schema.json",
157
157
  "timeout": 0,
@@ -172,7 +172,7 @@
172
172
  "name": "deleteAdmissionregistrationV1beta1CollectionValidatingWebhookConfiguration",
173
173
  "protocol": "REST",
174
174
  "method": "DELETE",
175
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations?{query}",
175
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations?{query}",
176
176
  "requestSchema": "schema.json",
177
177
  "responseSchema": "schema.json",
178
178
  "timeout": 0,
@@ -193,7 +193,7 @@
193
193
  "name": "listAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
194
194
  "protocol": "REST",
195
195
  "method": "GET",
196
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations?{query}",
196
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations?{query}",
197
197
  "requestSchema": "schema.json",
198
198
  "responseSchema": "schema.json",
199
199
  "timeout": 0,
@@ -214,7 +214,7 @@
214
214
  "name": "createAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
215
215
  "protocol": "REST",
216
216
  "method": "POST",
217
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations?{query}",
217
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations?{query}",
218
218
  "requestSchema": "schema.json",
219
219
  "responseSchema": "schema.json",
220
220
  "timeout": 0,
@@ -235,7 +235,7 @@
235
235
  "name": "deleteAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
236
236
  "protocol": "REST",
237
237
  "method": "DELETE",
238
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{pathv1}?{query}",
238
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{pathv1}?{query}",
239
239
  "requestSchema": "schema.json",
240
240
  "responseSchema": "schema.json",
241
241
  "timeout": 0,
@@ -256,7 +256,7 @@
256
256
  "name": "readAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
257
257
  "protocol": "REST",
258
258
  "method": "GET",
259
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{pathv1}?{query}",
259
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{pathv1}?{query}",
260
260
  "requestSchema": "schema.json",
261
261
  "responseSchema": "schema.json",
262
262
  "timeout": 0,
@@ -277,7 +277,7 @@
277
277
  "name": "patchAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
278
278
  "protocol": "REST",
279
279
  "method": "PATCH",
280
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{pathv1}?{query}",
280
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{pathv1}?{query}",
281
281
  "requestSchema": "schema.json",
282
282
  "responseSchema": "schema.json",
283
283
  "timeout": 0,
@@ -298,7 +298,7 @@
298
298
  "name": "replaceAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
299
299
  "protocol": "REST",
300
300
  "method": "PUT",
301
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{pathv1}?{query}",
301
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/validatingwebhookconfigurations/{pathv1}?{query}",
302
302
  "requestSchema": "schema.json",
303
303
  "responseSchema": "schema.json",
304
304
  "timeout": 0,
@@ -319,7 +319,7 @@
319
319
  "name": "watchAdmissionregistrationV1beta1MutatingWebhookConfigurationList",
320
320
  "protocol": "REST",
321
321
  "method": "GET",
322
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations?{query}",
322
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations?{query}",
323
323
  "requestSchema": "schema.json",
324
324
  "responseSchema": "schema.json",
325
325
  "timeout": 0,
@@ -340,7 +340,7 @@
340
340
  "name": "watchAdmissionregistrationV1beta1MutatingWebhookConfiguration",
341
341
  "protocol": "REST",
342
342
  "method": "GET",
343
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/{pathv1}?{query}",
343
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/watch/mutatingwebhookconfigurations/{pathv1}?{query}",
344
344
  "requestSchema": "schema.json",
345
345
  "responseSchema": "schema.json",
346
346
  "timeout": 0,
@@ -361,7 +361,7 @@
361
361
  "name": "watchAdmissionregistrationV1beta1ValidatingWebhookConfigurationList",
362
362
  "protocol": "REST",
363
363
  "method": "GET",
364
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations?{query}",
364
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations?{query}",
365
365
  "requestSchema": "schema.json",
366
366
  "responseSchema": "schema.json",
367
367
  "timeout": 0,
@@ -382,7 +382,7 @@
382
382
  "name": "watchAdmissionregistrationV1beta1ValidatingWebhookConfiguration",
383
383
  "protocol": "REST",
384
384
  "method": "GET",
385
- "entitypath": "{base_path}/{version}apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/{pathv1}?{query}",
385
+ "entitypath": "{base_path}/{version}/apis/admissionregistration.k8s.io/v1beta1/watch/validatingwebhookconfigurations/{pathv1}?{query}",
386
386
  "requestSchema": "schema.json",
387
387
  "responseSchema": "schema.json",
388
388
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getApiextensionsAPIGroup",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getApiextensionsV1beta1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/apiextensions.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": "deleteApiextensionsV1beta1CollectionCustomResourceDefinition",
26
26
  "protocol": "REST",
27
27
  "method": "DELETE",
28
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -46,7 +46,7 @@
46
46
  "name": "listApiextensionsV1beta1CustomResourceDefinition",
47
47
  "protocol": "REST",
48
48
  "method": "GET",
49
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions?{query}",
49
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions?{query}",
50
50
  "requestSchema": "schema.json",
51
51
  "responseSchema": "schema.json",
52
52
  "timeout": 0,
@@ -67,7 +67,7 @@
67
67
  "name": "createApiextensionsV1beta1CustomResourceDefinition",
68
68
  "protocol": "REST",
69
69
  "method": "POST",
70
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions?{query}",
70
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions?{query}",
71
71
  "requestSchema": "schema.json",
72
72
  "responseSchema": "schema.json",
73
73
  "timeout": 0,
@@ -88,7 +88,7 @@
88
88
  "name": "deleteApiextensionsV1beta1CustomResourceDefinition",
89
89
  "protocol": "REST",
90
90
  "method": "DELETE",
91
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}?{query}",
91
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}?{query}",
92
92
  "requestSchema": "schema.json",
93
93
  "responseSchema": "schema.json",
94
94
  "timeout": 0,
@@ -109,7 +109,7 @@
109
109
  "name": "readApiextensionsV1beta1CustomResourceDefinition",
110
110
  "protocol": "REST",
111
111
  "method": "GET",
112
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}?{query}",
112
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}?{query}",
113
113
  "requestSchema": "schema.json",
114
114
  "responseSchema": "schema.json",
115
115
  "timeout": 0,
@@ -130,7 +130,7 @@
130
130
  "name": "patchApiextensionsV1beta1CustomResourceDefinition",
131
131
  "protocol": "REST",
132
132
  "method": "PATCH",
133
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}?{query}",
133
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}?{query}",
134
134
  "requestSchema": "schema.json",
135
135
  "responseSchema": "schema.json",
136
136
  "timeout": 0,
@@ -151,7 +151,7 @@
151
151
  "name": "replaceApiextensionsV1beta1CustomResourceDefinition",
152
152
  "protocol": "REST",
153
153
  "method": "PUT",
154
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}?{query}",
154
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}?{query}",
155
155
  "requestSchema": "schema.json",
156
156
  "responseSchema": "schema.json",
157
157
  "timeout": 0,
@@ -172,7 +172,7 @@
172
172
  "name": "readApiextensionsV1beta1CustomResourceDefinitionStatus",
173
173
  "protocol": "REST",
174
174
  "method": "GET",
175
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}/status?{query}",
175
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}/status?{query}",
176
176
  "requestSchema": "schema.json",
177
177
  "responseSchema": "schema.json",
178
178
  "timeout": 0,
@@ -193,7 +193,7 @@
193
193
  "name": "patchApiextensionsV1beta1CustomResourceDefinitionStatus",
194
194
  "protocol": "REST",
195
195
  "method": "PATCH",
196
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}/status?{query}",
196
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}/status?{query}",
197
197
  "requestSchema": "schema.json",
198
198
  "responseSchema": "schema.json",
199
199
  "timeout": 0,
@@ -214,7 +214,7 @@
214
214
  "name": "replaceApiextensionsV1beta1CustomResourceDefinitionStatus",
215
215
  "protocol": "REST",
216
216
  "method": "PUT",
217
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}/status?{query}",
217
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/{pathv1}/status?{query}",
218
218
  "requestSchema": "schema.json",
219
219
  "responseSchema": "schema.json",
220
220
  "timeout": 0,
@@ -235,7 +235,7 @@
235
235
  "name": "watchApiextensionsV1beta1CustomResourceDefinitionList",
236
236
  "protocol": "REST",
237
237
  "method": "GET",
238
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions?{query}",
238
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions?{query}",
239
239
  "requestSchema": "schema.json",
240
240
  "responseSchema": "schema.json",
241
241
  "timeout": 0,
@@ -256,7 +256,7 @@
256
256
  "name": "watchApiextensionsV1beta1CustomResourceDefinition",
257
257
  "protocol": "REST",
258
258
  "method": "GET",
259
- "entitypath": "{base_path}/{version}apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/{pathv1}?{query}",
259
+ "entitypath": "{base_path}/{version}/apis/apiextensions.k8s.io/v1beta1/watch/customresourcedefinitions/{pathv1}?{query}",
260
260
  "requestSchema": "schema.json",
261
261
  "responseSchema": "schema.json",
262
262
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getApiregistrationAPIGroup",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/apiregistration.k8s.io/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/apiregistration.k8s.io/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,