@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
@@ -4,7 +4,7 @@
4
4
  "name": "getAuditregistrationAPIGroup",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAuditregistrationV1alpha1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/auditregistration.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": "deleteAuditregistrationV1alpha1CollectionAuditSink",
26
26
  "protocol": "REST",
27
27
  "method": "DELETE",
28
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/auditsinks?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/auditsinks?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -46,7 +46,7 @@
46
46
  "name": "listAuditregistrationV1alpha1AuditSink",
47
47
  "protocol": "REST",
48
48
  "method": "GET",
49
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/auditsinks?{query}",
49
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/auditsinks?{query}",
50
50
  "requestSchema": "schema.json",
51
51
  "responseSchema": "schema.json",
52
52
  "timeout": 0,
@@ -67,7 +67,7 @@
67
67
  "name": "createAuditregistrationV1alpha1AuditSink",
68
68
  "protocol": "REST",
69
69
  "method": "POST",
70
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/auditsinks?{query}",
70
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/auditsinks?{query}",
71
71
  "requestSchema": "schema.json",
72
72
  "responseSchema": "schema.json",
73
73
  "timeout": 0,
@@ -88,7 +88,7 @@
88
88
  "name": "deleteAuditregistrationV1alpha1AuditSink",
89
89
  "protocol": "REST",
90
90
  "method": "DELETE",
91
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/auditsinks/{pathv1}?{query}",
91
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{pathv1}?{query}",
92
92
  "requestSchema": "schema.json",
93
93
  "responseSchema": "schema.json",
94
94
  "timeout": 0,
@@ -109,7 +109,7 @@
109
109
  "name": "readAuditregistrationV1alpha1AuditSink",
110
110
  "protocol": "REST",
111
111
  "method": "GET",
112
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/auditsinks/{pathv1}?{query}",
112
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{pathv1}?{query}",
113
113
  "requestSchema": "schema.json",
114
114
  "responseSchema": "schema.json",
115
115
  "timeout": 0,
@@ -130,7 +130,7 @@
130
130
  "name": "patchAuditregistrationV1alpha1AuditSink",
131
131
  "protocol": "REST",
132
132
  "method": "PATCH",
133
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/auditsinks/{pathv1}?{query}",
133
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{pathv1}?{query}",
134
134
  "requestSchema": "schema.json",
135
135
  "responseSchema": "schema.json",
136
136
  "timeout": 0,
@@ -151,7 +151,7 @@
151
151
  "name": "replaceAuditregistrationV1alpha1AuditSink",
152
152
  "protocol": "REST",
153
153
  "method": "PUT",
154
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/auditsinks/{pathv1}?{query}",
154
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/auditsinks/{pathv1}?{query}",
155
155
  "requestSchema": "schema.json",
156
156
  "responseSchema": "schema.json",
157
157
  "timeout": 0,
@@ -172,7 +172,7 @@
172
172
  "name": "watchAuditregistrationV1alpha1AuditSinkList",
173
173
  "protocol": "REST",
174
174
  "method": "GET",
175
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks?{query}",
175
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks?{query}",
176
176
  "requestSchema": "schema.json",
177
177
  "responseSchema": "schema.json",
178
178
  "timeout": 0,
@@ -193,7 +193,7 @@
193
193
  "name": "watchAuditregistrationV1alpha1AuditSink",
194
194
  "protocol": "REST",
195
195
  "method": "GET",
196
- "entitypath": "{base_path}/{version}apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/{pathv1}?{query}",
196
+ "entitypath": "{base_path}/{version}/apis/auditregistration.k8s.io/v1alpha1/watch/auditsinks/{pathv1}?{query}",
197
197
  "requestSchema": "schema.json",
198
198
  "responseSchema": "schema.json",
199
199
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAuthenticationAPIGroup",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/authentication.k8s.io/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/authentication.k8s.io/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAuthenticationV1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/authentication.k8s.io/v1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/authentication.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": "createAuthenticationV1TokenReview",
26
26
  "protocol": "REST",
27
27
  "method": "POST",
28
- "entitypath": "{base_path}/{version}apis/authentication.k8s.io/v1/tokenreviews?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/authentication.k8s.io/v1/tokenreviews?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAuthenticationV1beta1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/authentication.k8s.io/v1beta1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/authentication.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": "createAuthenticationV1beta1TokenReview",
26
26
  "protocol": "REST",
27
27
  "method": "POST",
28
- "entitypath": "{base_path}/{version}apis/authentication.k8s.io/v1beta1/tokenreviews?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/authentication.k8s.io/v1beta1/tokenreviews?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAuthorizationAPIGroup",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAuthorizationV1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/authorization.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": "createAuthorizationV1NamespacedLocalSubjectAccessReview",
26
26
  "protocol": "REST",
27
27
  "method": "POST",
28
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1/namespaces/{pathv1}/localsubjectaccessreviews?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/v1/namespaces/{pathv1}/localsubjectaccessreviews?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -46,7 +46,7 @@
46
46
  "name": "createAuthorizationV1SelfSubjectAccessReview",
47
47
  "protocol": "REST",
48
48
  "method": "POST",
49
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1/selfsubjectaccessreviews?{query}",
49
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/v1/selfsubjectaccessreviews?{query}",
50
50
  "requestSchema": "schema.json",
51
51
  "responseSchema": "schema.json",
52
52
  "timeout": 0,
@@ -67,7 +67,7 @@
67
67
  "name": "createAuthorizationV1SelfSubjectRulesReview",
68
68
  "protocol": "REST",
69
69
  "method": "POST",
70
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1/selfsubjectrulesreviews?{query}",
70
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/v1/selfsubjectrulesreviews?{query}",
71
71
  "requestSchema": "schema.json",
72
72
  "responseSchema": "schema.json",
73
73
  "timeout": 0,
@@ -88,7 +88,7 @@
88
88
  "name": "createAuthorizationV1SubjectAccessReview",
89
89
  "protocol": "REST",
90
90
  "method": "POST",
91
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1/subjectaccessreviews?{query}",
91
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/v1/subjectaccessreviews?{query}",
92
92
  "requestSchema": "schema.json",
93
93
  "responseSchema": "schema.json",
94
94
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAuthorizationV1beta1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1beta1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/authorization.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": "createAuthorizationV1beta1NamespacedLocalSubjectAccessReview",
26
26
  "protocol": "REST",
27
27
  "method": "POST",
28
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1beta1/namespaces/{pathv1}/localsubjectaccessreviews?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/v1beta1/namespaces/{pathv1}/localsubjectaccessreviews?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -46,7 +46,7 @@
46
46
  "name": "createAuthorizationV1beta1SelfSubjectAccessReview",
47
47
  "protocol": "REST",
48
48
  "method": "POST",
49
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews?{query}",
49
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/v1beta1/selfsubjectaccessreviews?{query}",
50
50
  "requestSchema": "schema.json",
51
51
  "responseSchema": "schema.json",
52
52
  "timeout": 0,
@@ -67,7 +67,7 @@
67
67
  "name": "createAuthorizationV1beta1SelfSubjectRulesReview",
68
68
  "protocol": "REST",
69
69
  "method": "POST",
70
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews?{query}",
70
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/v1beta1/selfsubjectrulesreviews?{query}",
71
71
  "requestSchema": "schema.json",
72
72
  "responseSchema": "schema.json",
73
73
  "timeout": 0,
@@ -88,7 +88,7 @@
88
88
  "name": "createAuthorizationV1beta1SubjectAccessReview",
89
89
  "protocol": "REST",
90
90
  "method": "POST",
91
- "entitypath": "{base_path}/{version}apis/authorization.k8s.io/v1beta1/subjectaccessreviews?{query}",
91
+ "entitypath": "{base_path}/{version}/apis/authorization.k8s.io/v1beta1/subjectaccessreviews?{query}",
92
92
  "requestSchema": "schema.json",
93
93
  "responseSchema": "schema.json",
94
94
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAutoscalingAPIGroup",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/autoscaling/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/autoscaling/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAutoscalingV1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -25,7 +25,7 @@
25
25
  "name": "listAutoscalingV1HorizontalPodAutoscalerForAllNamespaces",
26
26
  "protocol": "REST",
27
27
  "method": "GET",
28
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/horizontalpodautoscalers?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/horizontalpodautoscalers?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -46,7 +46,7 @@
46
46
  "name": "deleteAutoscalingV1CollectionNamespacedHorizontalPodAutoscaler",
47
47
  "protocol": "REST",
48
48
  "method": "DELETE",
49
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
49
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
50
50
  "requestSchema": "schema.json",
51
51
  "responseSchema": "schema.json",
52
52
  "timeout": 0,
@@ -67,7 +67,7 @@
67
67
  "name": "listAutoscalingV1NamespacedHorizontalPodAutoscaler",
68
68
  "protocol": "REST",
69
69
  "method": "GET",
70
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
70
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
71
71
  "requestSchema": "schema.json",
72
72
  "responseSchema": "schema.json",
73
73
  "timeout": 0,
@@ -88,7 +88,7 @@
88
88
  "name": "createAutoscalingV1NamespacedHorizontalPodAutoscaler",
89
89
  "protocol": "REST",
90
90
  "method": "POST",
91
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
91
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
92
92
  "requestSchema": "schema.json",
93
93
  "responseSchema": "schema.json",
94
94
  "timeout": 0,
@@ -109,7 +109,7 @@
109
109
  "name": "deleteAutoscalingV1NamespacedHorizontalPodAutoscaler",
110
110
  "protocol": "REST",
111
111
  "method": "DELETE",
112
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
112
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
113
113
  "requestSchema": "schema.json",
114
114
  "responseSchema": "schema.json",
115
115
  "timeout": 0,
@@ -130,7 +130,7 @@
130
130
  "name": "readAutoscalingV1NamespacedHorizontalPodAutoscaler",
131
131
  "protocol": "REST",
132
132
  "method": "GET",
133
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
133
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
134
134
  "requestSchema": "schema.json",
135
135
  "responseSchema": "schema.json",
136
136
  "timeout": 0,
@@ -151,7 +151,7 @@
151
151
  "name": "patchAutoscalingV1NamespacedHorizontalPodAutoscaler",
152
152
  "protocol": "REST",
153
153
  "method": "PATCH",
154
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
154
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
155
155
  "requestSchema": "schema.json",
156
156
  "responseSchema": "schema.json",
157
157
  "timeout": 0,
@@ -172,7 +172,7 @@
172
172
  "name": "replaceAutoscalingV1NamespacedHorizontalPodAutoscaler",
173
173
  "protocol": "REST",
174
174
  "method": "PUT",
175
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
175
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
176
176
  "requestSchema": "schema.json",
177
177
  "responseSchema": "schema.json",
178
178
  "timeout": 0,
@@ -193,7 +193,7 @@
193
193
  "name": "readAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
194
194
  "protocol": "REST",
195
195
  "method": "GET",
196
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
196
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
197
197
  "requestSchema": "schema.json",
198
198
  "responseSchema": "schema.json",
199
199
  "timeout": 0,
@@ -214,7 +214,7 @@
214
214
  "name": "patchAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
215
215
  "protocol": "REST",
216
216
  "method": "PATCH",
217
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
217
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
218
218
  "requestSchema": "schema.json",
219
219
  "responseSchema": "schema.json",
220
220
  "timeout": 0,
@@ -235,7 +235,7 @@
235
235
  "name": "replaceAutoscalingV1NamespacedHorizontalPodAutoscalerStatus",
236
236
  "protocol": "REST",
237
237
  "method": "PUT",
238
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
238
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
239
239
  "requestSchema": "schema.json",
240
240
  "responseSchema": "schema.json",
241
241
  "timeout": 0,
@@ -256,7 +256,7 @@
256
256
  "name": "watchAutoscalingV1HorizontalPodAutoscalerListForAllNamespaces",
257
257
  "protocol": "REST",
258
258
  "method": "GET",
259
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/watch/horizontalpodautoscalers?{query}",
259
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/watch/horizontalpodautoscalers?{query}",
260
260
  "requestSchema": "schema.json",
261
261
  "responseSchema": "schema.json",
262
262
  "timeout": 0,
@@ -277,7 +277,7 @@
277
277
  "name": "watchAutoscalingV1NamespacedHorizontalPodAutoscalerList",
278
278
  "protocol": "REST",
279
279
  "method": "GET",
280
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/watch/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
280
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/watch/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
281
281
  "requestSchema": "schema.json",
282
282
  "responseSchema": "schema.json",
283
283
  "timeout": 0,
@@ -298,7 +298,7 @@
298
298
  "name": "watchAutoscalingV1NamespacedHorizontalPodAutoscaler",
299
299
  "protocol": "REST",
300
300
  "method": "GET",
301
- "entitypath": "{base_path}/{version}apis/autoscaling/v1/watch/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
301
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v1/watch/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
302
302
  "requestSchema": "schema.json",
303
303
  "responseSchema": "schema.json",
304
304
  "timeout": 0,
@@ -4,7 +4,7 @@
4
4
  "name": "getAutoscalingV2beta1APIResources",
5
5
  "protocol": "REST",
6
6
  "method": "GET",
7
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/?{query}",
7
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/?{query}",
8
8
  "requestSchema": "schema.json",
9
9
  "responseSchema": "schema.json",
10
10
  "timeout": 0,
@@ -25,7 +25,7 @@
25
25
  "name": "listAutoscalingV2beta1HorizontalPodAutoscalerForAllNamespaces",
26
26
  "protocol": "REST",
27
27
  "method": "GET",
28
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/horizontalpodautoscalers?{query}",
28
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/horizontalpodautoscalers?{query}",
29
29
  "requestSchema": "schema.json",
30
30
  "responseSchema": "schema.json",
31
31
  "timeout": 0,
@@ -46,7 +46,7 @@
46
46
  "name": "deleteAutoscalingV2beta1CollectionNamespacedHorizontalPodAutoscaler",
47
47
  "protocol": "REST",
48
48
  "method": "DELETE",
49
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
49
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
50
50
  "requestSchema": "schema.json",
51
51
  "responseSchema": "schema.json",
52
52
  "timeout": 0,
@@ -67,7 +67,7 @@
67
67
  "name": "listAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
68
68
  "protocol": "REST",
69
69
  "method": "GET",
70
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
70
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
71
71
  "requestSchema": "schema.json",
72
72
  "responseSchema": "schema.json",
73
73
  "timeout": 0,
@@ -88,7 +88,7 @@
88
88
  "name": "createAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
89
89
  "protocol": "REST",
90
90
  "method": "POST",
91
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
91
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
92
92
  "requestSchema": "schema.json",
93
93
  "responseSchema": "schema.json",
94
94
  "timeout": 0,
@@ -109,7 +109,7 @@
109
109
  "name": "deleteAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
110
110
  "protocol": "REST",
111
111
  "method": "DELETE",
112
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
112
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
113
113
  "requestSchema": "schema.json",
114
114
  "responseSchema": "schema.json",
115
115
  "timeout": 0,
@@ -130,7 +130,7 @@
130
130
  "name": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
131
131
  "protocol": "REST",
132
132
  "method": "GET",
133
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
133
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
134
134
  "requestSchema": "schema.json",
135
135
  "responseSchema": "schema.json",
136
136
  "timeout": 0,
@@ -151,7 +151,7 @@
151
151
  "name": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
152
152
  "protocol": "REST",
153
153
  "method": "PATCH",
154
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
154
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
155
155
  "requestSchema": "schema.json",
156
156
  "responseSchema": "schema.json",
157
157
  "timeout": 0,
@@ -172,7 +172,7 @@
172
172
  "name": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
173
173
  "protocol": "REST",
174
174
  "method": "PUT",
175
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
175
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
176
176
  "requestSchema": "schema.json",
177
177
  "responseSchema": "schema.json",
178
178
  "timeout": 0,
@@ -193,7 +193,7 @@
193
193
  "name": "readAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
194
194
  "protocol": "REST",
195
195
  "method": "GET",
196
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
196
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
197
197
  "requestSchema": "schema.json",
198
198
  "responseSchema": "schema.json",
199
199
  "timeout": 0,
@@ -214,7 +214,7 @@
214
214
  "name": "patchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
215
215
  "protocol": "REST",
216
216
  "method": "PATCH",
217
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
217
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
218
218
  "requestSchema": "schema.json",
219
219
  "responseSchema": "schema.json",
220
220
  "timeout": 0,
@@ -235,7 +235,7 @@
235
235
  "name": "replaceAutoscalingV2beta1NamespacedHorizontalPodAutoscalerStatus",
236
236
  "protocol": "REST",
237
237
  "method": "PUT",
238
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
238
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}/status?{query}",
239
239
  "requestSchema": "schema.json",
240
240
  "responseSchema": "schema.json",
241
241
  "timeout": 0,
@@ -256,7 +256,7 @@
256
256
  "name": "watchAutoscalingV2beta1HorizontalPodAutoscalerListForAllNamespaces",
257
257
  "protocol": "REST",
258
258
  "method": "GET",
259
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/watch/horizontalpodautoscalers?{query}",
259
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/watch/horizontalpodautoscalers?{query}",
260
260
  "requestSchema": "schema.json",
261
261
  "responseSchema": "schema.json",
262
262
  "timeout": 0,
@@ -277,7 +277,7 @@
277
277
  "name": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscalerList",
278
278
  "protocol": "REST",
279
279
  "method": "GET",
280
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/watch/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
280
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/watch/namespaces/{pathv1}/horizontalpodautoscalers?{query}",
281
281
  "requestSchema": "schema.json",
282
282
  "responseSchema": "schema.json",
283
283
  "timeout": 0,
@@ -298,7 +298,7 @@
298
298
  "name": "watchAutoscalingV2beta1NamespacedHorizontalPodAutoscaler",
299
299
  "protocol": "REST",
300
300
  "method": "GET",
301
- "entitypath": "{base_path}/{version}apis/autoscaling/v2beta1/watch/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
301
+ "entitypath": "{base_path}/{version}/apis/autoscaling/v2beta1/watch/namespaces/{pathv1}/horizontalpodautoscalers/{pathv2}?{query}",
302
302
  "requestSchema": "schema.json",
303
303
  "responseSchema": "schema.json",
304
304
  "timeout": 0,