plugin-cluster-manager 1.0.12

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 (1883) hide show
  1. package/README.md +15 -0
  2. package/client.d.ts +1 -0
  3. package/dist/client/AclCacheManager.d.ts +2 -0
  4. package/dist/client/CacheMonitor.d.ts +2 -0
  5. package/dist/client/ClusterManagerLayout.d.ts +2 -0
  6. package/dist/client/ClusterNodes.d.ts +2 -0
  7. package/dist/client/ContainerOrchestrator.d.ts +2 -0
  8. package/dist/client/EventQueueMonitor.d.ts +2 -0
  9. package/dist/client/LockMonitor.d.ts +2 -0
  10. package/dist/client/PackageInstaller.d.ts +2 -0
  11. package/dist/client/RedisMonitor.d.ts +2 -0
  12. package/dist/client/TaskManager.d.ts +2 -0
  13. package/dist/client/WorkflowExecutions.d.ts +2 -0
  14. package/dist/client/index.d.ts +5 -0
  15. package/dist/client/index.js +1 -0
  16. package/dist/client/utils.d.ts +12 -0
  17. package/dist/externalVersion.js +11 -0
  18. package/dist/index.d.ts +2 -0
  19. package/dist/index.js +39 -0
  20. package/dist/locale/en-US.json +71 -0
  21. package/dist/locale/vi-VN.json +71 -0
  22. package/dist/locale/zh-CN.json +71 -0
  23. package/dist/node_modules/@kubernetes/client-node/LICENSE +201 -0
  24. package/dist/node_modules/@kubernetes/client-node/dist/api.d.ts +1 -0
  25. package/dist/node_modules/@kubernetes/client-node/dist/api.js +5 -0
  26. package/dist/node_modules/@kubernetes/client-node/dist/attach.d.ts +10 -0
  27. package/dist/node_modules/@kubernetes/client-node/dist/attach.js +37 -0
  28. package/dist/node_modules/@kubernetes/client-node/dist/auth.d.ts +8 -0
  29. package/dist/node_modules/@kubernetes/client-node/dist/auth.js +3 -0
  30. package/dist/node_modules/@kubernetes/client-node/dist/azure_auth.d.ts +11 -0
  31. package/dist/node_modules/@kubernetes/client-node/dist/azure_auth.js +75 -0
  32. package/dist/node_modules/@kubernetes/client-node/dist/cache.d.ts +38 -0
  33. package/dist/node_modules/@kubernetes/client-node/dist/cache.js +247 -0
  34. package/dist/node_modules/@kubernetes/client-node/dist/config.d.ts +84 -0
  35. package/dist/node_modules/@kubernetes/client-node/dist/config.js +527 -0
  36. package/dist/node_modules/@kubernetes/client-node/dist/config_types.d.ts +39 -0
  37. package/dist/node_modules/@kubernetes/client-node/dist/config_types.js +179 -0
  38. package/dist/node_modules/@kubernetes/client-node/dist/cp.d.ts +24 -0
  39. package/dist/node_modules/@kubernetes/client-node/dist/cp.js +82 -0
  40. package/dist/node_modules/@kubernetes/client-node/dist/exec.d.ts +24 -0
  41. package/dist/node_modules/@kubernetes/client-node/dist/exec.js +57 -0
  42. package/dist/node_modules/@kubernetes/client-node/dist/exec_auth.d.ts +21 -0
  43. package/dist/node_modules/@kubernetes/client-node/dist/exec_auth.js +91 -0
  44. package/dist/node_modules/@kubernetes/client-node/dist/file_auth.d.ts +12 -0
  45. package/dist/node_modules/@kubernetes/client-node/dist/file_auth.js +43 -0
  46. package/dist/node_modules/@kubernetes/client-node/dist/gcp_auth.d.ts +11 -0
  47. package/dist/node_modules/@kubernetes/client-node/dist/gcp_auth.js +73 -0
  48. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/admissionregistrationApi.d.ts +48 -0
  49. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/admissionregistrationApi.js +137 -0
  50. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/admissionregistrationV1Api.d.ts +622 -0
  51. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/admissionregistrationV1Api.js +3001 -0
  52. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/admissionregistrationV1alpha1Api.d.ts +360 -0
  53. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/admissionregistrationV1alpha1Api.js +1697 -0
  54. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/admissionregistrationV1beta1Api.d.ts +360 -0
  55. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/admissionregistrationV1beta1Api.js +1697 -0
  56. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apiextensionsApi.d.ts +48 -0
  57. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apiextensionsApi.js +137 -0
  58. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apiextensionsV1Api.d.ts +229 -0
  59. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apiextensionsV1Api.js +1045 -0
  60. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apiregistrationApi.d.ts +48 -0
  61. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apiregistrationApi.js +137 -0
  62. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apiregistrationV1Api.d.ts +229 -0
  63. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apiregistrationV1Api.js +1045 -0
  64. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apis.d.ts +131 -0
  65. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apis.js +138 -0
  66. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apisApi.d.ts +48 -0
  67. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/apisApi.js +137 -0
  68. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/appsApi.d.ts +48 -0
  69. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/appsApi.js +137 -0
  70. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/appsV1Api.d.ts +1208 -0
  71. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/appsV1Api.js +6055 -0
  72. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authenticationApi.d.ts +48 -0
  73. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authenticationApi.js +137 -0
  74. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authenticationV1Api.d.ts +82 -0
  75. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authenticationV1Api.js +305 -0
  76. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authenticationV1alpha1Api.d.ts +65 -0
  77. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authenticationV1alpha1Api.js +221 -0
  78. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authenticationV1beta1Api.d.ts +65 -0
  79. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authenticationV1beta1Api.js +221 -0
  80. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authorizationApi.d.ts +48 -0
  81. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authorizationApi.js +137 -0
  82. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authorizationV1Api.d.ts +117 -0
  83. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/authorizationV1Api.js +479 -0
  84. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/autoscalingApi.d.ts +48 -0
  85. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/autoscalingApi.js +137 -0
  86. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/autoscalingV1Api.d.ts +261 -0
  87. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/autoscalingV1Api.js +1211 -0
  88. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/autoscalingV2Api.d.ts +261 -0
  89. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/autoscalingV2Api.js +1211 -0
  90. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/batchApi.d.ts +48 -0
  91. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/batchApi.js +137 -0
  92. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/batchV1Api.d.ts +472 -0
  93. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/batchV1Api.js +2285 -0
  94. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/certificatesApi.d.ts +48 -0
  95. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/certificatesApi.js +137 -0
  96. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/certificatesV1Api.d.ts +277 -0
  97. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/certificatesV1Api.js +1301 -0
  98. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/certificatesV1alpha1Api.d.ts +181 -0
  99. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/certificatesV1alpha1Api.js +789 -0
  100. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/coordinationApi.d.ts +48 -0
  101. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/coordinationApi.js +137 -0
  102. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/coordinationV1Api.d.ts +210 -0
  103. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/coordinationV1Api.js +937 -0
  104. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/coreApi.d.ts +48 -0
  105. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/coreApi.js +137 -0
  106. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/coreV1Api.d.ts +3687 -0
  107. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/coreV1Api.js +18877 -0
  108. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/customObjectsApi.d.ts +526 -0
  109. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/customObjectsApi.js +2741 -0
  110. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/discoveryApi.d.ts +48 -0
  111. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/discoveryApi.js +137 -0
  112. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/discoveryV1Api.d.ts +210 -0
  113. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/discoveryV1Api.js +937 -0
  114. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/eventsApi.d.ts +48 -0
  115. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/eventsApi.js +137 -0
  116. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/eventsV1Api.d.ts +210 -0
  117. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/eventsV1Api.js +937 -0
  118. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/flowcontrolApiserverApi.d.ts +48 -0
  119. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/flowcontrolApiserverApi.js +137 -0
  120. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/flowcontrolApiserverV1Api.d.ts +408 -0
  121. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/flowcontrolApiserverV1Api.js +1953 -0
  122. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/flowcontrolApiserverV1beta3Api.d.ts +408 -0
  123. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/flowcontrolApiserverV1beta3Api.js +1953 -0
  124. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/internalApiserverApi.d.ts +48 -0
  125. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/internalApiserverApi.js +137 -0
  126. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/internalApiserverV1alpha1Api.d.ts +229 -0
  127. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/internalApiserverV1alpha1Api.js +1045 -0
  128. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/logsApi.d.ts +59 -0
  129. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/logsApi.js +188 -0
  130. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/networkingApi.d.ts +48 -0
  131. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/networkingApi.js +137 -0
  132. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/networkingV1Api.d.ts +552 -0
  133. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/networkingV1Api.js +2663 -0
  134. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/networkingV1alpha1Api.d.ts +360 -0
  135. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/networkingV1alpha1Api.js +1697 -0
  136. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/nodeApi.d.ts +48 -0
  137. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/nodeApi.js +137 -0
  138. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/nodeV1Api.d.ts +181 -0
  139. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/nodeV1Api.js +789 -0
  140. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/openidApi.d.ts +47 -0
  141. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/openidApi.js +138 -0
  142. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/policyApi.d.ts +48 -0
  143. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/policyApi.js +137 -0
  144. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/policyV1Api.d.ts +261 -0
  145. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/policyV1Api.js +1211 -0
  146. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/rbacAuthorizationApi.d.ts +48 -0
  147. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/rbacAuthorizationApi.js +137 -0
  148. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/rbacAuthorizationV1Api.d.ts +632 -0
  149. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/rbacAuthorizationV1Api.js +3041 -0
  150. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/resourceApi.d.ts +48 -0
  151. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/resourceApi.js +137 -0
  152. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/resourceV1alpha2Api.d.ts +1214 -0
  153. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/resourceV1alpha2Api.js +5989 -0
  154. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/schedulingApi.d.ts +48 -0
  155. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/schedulingApi.js +137 -0
  156. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/schedulingV1Api.d.ts +181 -0
  157. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/schedulingV1Api.js +789 -0
  158. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storageApi.d.ts +48 -0
  159. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storageApi.js +137 -0
  160. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storageV1Api.d.ts +782 -0
  161. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storageV1Api.js +3801 -0
  162. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storageV1alpha1Api.d.ts +181 -0
  163. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storageV1alpha1Api.js +789 -0
  164. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storagemigrationApi.d.ts +48 -0
  165. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storagemigrationApi.js +137 -0
  166. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storagemigrationV1alpha1Api.d.ts +229 -0
  167. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/storagemigrationV1alpha1Api.js +1045 -0
  168. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/versionApi.d.ts +48 -0
  169. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/versionApi.js +137 -0
  170. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/wellKnownApi.d.ts +47 -0
  171. package/dist/node_modules/@kubernetes/client-node/dist/gen/api/wellKnownApi.js +138 -0
  172. package/dist/node_modules/@kubernetes/client-node/dist/gen/api.d.ts +2 -0
  173. package/dist/node_modules/@kubernetes/client-node/dist/gen/api.js +7 -0
  174. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/admissionregistrationV1ServiceReference.d.ts +43 -0
  175. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/admissionregistrationV1ServiceReference.js +47 -0
  176. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/admissionregistrationV1WebhookClientConfig.d.ts +37 -0
  177. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/admissionregistrationV1WebhookClientConfig.js +42 -0
  178. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/apiextensionsV1ServiceReference.d.ts +43 -0
  179. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/apiextensionsV1ServiceReference.js +47 -0
  180. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/apiextensionsV1WebhookClientConfig.d.ts +37 -0
  181. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/apiextensionsV1WebhookClientConfig.js +42 -0
  182. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/apiregistrationV1ServiceReference.d.ts +39 -0
  183. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/apiregistrationV1ServiceReference.js +42 -0
  184. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/authenticationV1TokenRequest.d.ts +41 -0
  185. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/authenticationV1TokenRequest.js +52 -0
  186. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/coreV1EndpointPort.d.ts +43 -0
  187. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/coreV1EndpointPort.js +47 -0
  188. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/coreV1Event.d.ts +85 -0
  189. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/coreV1Event.js +112 -0
  190. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/coreV1EventList.d.ts +42 -0
  191. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/coreV1EventList.js +47 -0
  192. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/coreV1EventSeries.d.ts +36 -0
  193. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/coreV1EventSeries.js +37 -0
  194. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/discoveryV1EndpointPort.d.ts +43 -0
  195. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/discoveryV1EndpointPort.js +47 -0
  196. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/eventsV1Event.d.ts +85 -0
  197. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/eventsV1Event.js +112 -0
  198. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/eventsV1EventList.d.ts +42 -0
  199. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/eventsV1EventList.js +47 -0
  200. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/eventsV1EventSeries.d.ts +36 -0
  201. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/eventsV1EventSeries.js +37 -0
  202. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/flowcontrolV1Subject.d.ts +37 -0
  203. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/flowcontrolV1Subject.js +47 -0
  204. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/models.d.ts +660 -0
  205. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/models.js +2047 -0
  206. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/rbacV1Subject.d.ts +43 -0
  207. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/rbacV1Subject.js +47 -0
  208. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/storageV1TokenRequest.d.ts +35 -0
  209. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/storageV1TokenRequest.js +37 -0
  210. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIGroup.d.ts +50 -0
  211. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIGroup.js +57 -0
  212. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIGroupList.d.ts +40 -0
  213. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIGroupList.js +42 -0
  214. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIResource.d.ts +67 -0
  215. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIResource.js +77 -0
  216. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIResourceList.d.ts +44 -0
  217. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIResourceList.js +47 -0
  218. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIService.d.ts +41 -0
  219. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIService.js +52 -0
  220. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIServiceCondition.d.ts +47 -0
  221. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIServiceCondition.js +52 -0
  222. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIServiceList.d.ts +42 -0
  223. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIServiceList.js +47 -0
  224. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIServiceSpec.d.ts +53 -0
  225. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIServiceSpec.js +62 -0
  226. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIServiceStatus.d.ts +32 -0
  227. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIServiceStatus.js +32 -0
  228. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIVersions.d.ts +44 -0
  229. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1APIVersions.js +47 -0
  230. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.d.ts +43 -0
  231. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AWSElasticBlockStoreVolumeSource.js +47 -0
  232. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Affinity.d.ts +33 -0
  233. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Affinity.js +42 -0
  234. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AggregationRule.d.ts +32 -0
  235. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AggregationRule.js +32 -0
  236. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AppArmorProfile.d.ts +35 -0
  237. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AppArmorProfile.js +37 -0
  238. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AttachedVolume.d.ts +35 -0
  239. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AttachedVolume.js +37 -0
  240. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AuditAnnotation.d.ts +35 -0
  241. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AuditAnnotation.js +37 -0
  242. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AzureDiskVolumeSource.d.ts +51 -0
  243. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AzureDiskVolumeSource.js +57 -0
  244. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AzureFilePersistentVolumeSource.d.ts +43 -0
  245. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AzureFilePersistentVolumeSource.js +47 -0
  246. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AzureFileVolumeSource.d.ts +39 -0
  247. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1AzureFileVolumeSource.js +42 -0
  248. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Binding.d.ts +39 -0
  249. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Binding.js +47 -0
  250. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1BoundObjectReference.d.ts +43 -0
  251. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1BoundObjectReference.js +47 -0
  252. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIDriver.d.ts +39 -0
  253. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIDriver.js +47 -0
  254. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIDriverList.d.ts +42 -0
  255. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIDriverList.js +47 -0
  256. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIDriverSpec.d.ts +60 -0
  257. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIDriverSpec.js +67 -0
  258. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSINode.d.ts +39 -0
  259. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSINode.js +47 -0
  260. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSINodeDriver.d.ts +41 -0
  261. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSINodeDriver.js +47 -0
  262. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSINodeList.d.ts +42 -0
  263. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSINodeList.js +47 -0
  264. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSINodeSpec.d.ts +32 -0
  265. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSINodeSpec.js +32 -0
  266. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIPersistentVolumeSource.d.ts +55 -0
  267. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIPersistentVolumeSource.js +77 -0
  268. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIStorageCapacity.d.ts +51 -0
  269. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIStorageCapacity.js +62 -0
  270. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIStorageCapacityList.d.ts +42 -0
  271. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIStorageCapacityList.js +47 -0
  272. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIVolumeSource.d.ts +47 -0
  273. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CSIVolumeSource.js +52 -0
  274. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Capabilities.d.ts +35 -0
  275. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Capabilities.js +37 -0
  276. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CephFSPersistentVolumeSource.d.ts +49 -0
  277. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CephFSPersistentVolumeSource.js +57 -0
  278. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CephFSVolumeSource.d.ts +49 -0
  279. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CephFSVolumeSource.js +57 -0
  280. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequest.d.ts +41 -0
  281. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequest.js +52 -0
  282. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequestCondition.d.ts +51 -0
  283. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequestCondition.js +57 -0
  284. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequestList.d.ts +42 -0
  285. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequestList.js +47 -0
  286. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequestSpec.d.ts +61 -0
  287. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequestSpec.js +67 -0
  288. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequestStatus.d.ts +36 -0
  289. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CertificateSigningRequestStatus.js +37 -0
  290. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CinderPersistentVolumeSource.d.ts +41 -0
  291. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CinderPersistentVolumeSource.js +47 -0
  292. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CinderVolumeSource.d.ts +41 -0
  293. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CinderVolumeSource.js +47 -0
  294. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClaimSource.d.ts +35 -0
  295. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClaimSource.js +37 -0
  296. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClientIPConfig.d.ts +31 -0
  297. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClientIPConfig.js +32 -0
  298. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterRole.d.ts +44 -0
  299. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterRole.js +52 -0
  300. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterRoleBinding.d.ts +44 -0
  301. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterRoleBinding.js +52 -0
  302. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterRoleBindingList.d.ts +42 -0
  303. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterRoleBindingList.js +47 -0
  304. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterRoleList.d.ts +42 -0
  305. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterRoleList.js +47 -0
  306. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterTrustBundleProjection.d.ts +45 -0
  307. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ClusterTrustBundleProjection.js +52 -0
  308. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ComponentCondition.d.ts +43 -0
  309. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ComponentCondition.js +47 -0
  310. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ComponentStatus.d.ts +42 -0
  311. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ComponentStatus.js +47 -0
  312. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ComponentStatusList.d.ts +42 -0
  313. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ComponentStatusList.js +47 -0
  314. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Condition.d.ts +51 -0
  315. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Condition.js +57 -0
  316. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMap.d.ts +53 -0
  317. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMap.js +57 -0
  318. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapEnvSource.d.ts +35 -0
  319. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapEnvSource.js +37 -0
  320. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapKeySelector.d.ts +39 -0
  321. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapKeySelector.js +42 -0
  322. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapList.d.ts +42 -0
  323. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapList.js +47 -0
  324. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapNodeConfigSource.d.ts +47 -0
  325. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapNodeConfigSource.js +52 -0
  326. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapProjection.d.ts +40 -0
  327. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapProjection.js +42 -0
  328. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapVolumeSource.d.ts +44 -0
  329. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ConfigMapVolumeSource.js +47 -0
  330. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Container.d.ts +115 -0
  331. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Container.js +147 -0
  332. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerImage.d.ts +35 -0
  333. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerImage.js +37 -0
  334. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerPort.d.ts +47 -0
  335. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerPort.js +52 -0
  336. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerResizePolicy.d.ts +35 -0
  337. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerResizePolicy.js +37 -0
  338. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerState.d.ts +33 -0
  339. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerState.js +42 -0
  340. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerStateRunning.d.ts +31 -0
  341. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerStateRunning.js +32 -0
  342. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerStateTerminated.d.ts +55 -0
  343. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerStateTerminated.js +62 -0
  344. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerStateWaiting.d.ts +35 -0
  345. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerStateWaiting.js +37 -0
  346. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerStatus.d.ts +71 -0
  347. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ContainerStatus.js +87 -0
  348. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ControllerRevision.d.ts +45 -0
  349. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ControllerRevision.js +52 -0
  350. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ControllerRevisionList.d.ts +42 -0
  351. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ControllerRevisionList.js +47 -0
  352. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CronJob.d.ts +41 -0
  353. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CronJob.js +52 -0
  354. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CronJobList.d.ts +42 -0
  355. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CronJobList.js +47 -0
  356. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CronJobSpec.d.ts +57 -0
  357. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CronJobSpec.js +67 -0
  358. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CronJobStatus.d.ts +40 -0
  359. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CronJobStatus.js +42 -0
  360. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CrossVersionObjectReference.d.ts +39 -0
  361. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CrossVersionObjectReference.js +42 -0
  362. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceColumnDefinition.d.ts +51 -0
  363. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceColumnDefinition.js +57 -0
  364. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceConversion.d.ts +33 -0
  365. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceConversion.js +37 -0
  366. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinition.d.ts +41 -0
  367. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinition.js +52 -0
  368. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionCondition.d.ts +47 -0
  369. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionCondition.js +52 -0
  370. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionList.d.ts +42 -0
  371. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionList.js +47 -0
  372. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionNames.d.ts +51 -0
  373. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionNames.js +57 -0
  374. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionSpec.d.ts +48 -0
  375. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionSpec.js +57 -0
  376. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionStatus.d.ts +38 -0
  377. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionStatus.js +42 -0
  378. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionVersion.d.ts +61 -0
  379. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceDefinitionVersion.js +72 -0
  380. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceSubresourceScale.d.ts +39 -0
  381. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceSubresourceScale.js +42 -0
  382. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceSubresources.d.ts +33 -0
  383. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceSubresources.js +37 -0
  384. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceValidation.d.ts +29 -0
  385. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1CustomResourceValidation.js +32 -0
  386. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonEndpoint.d.ts +31 -0
  387. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonEndpoint.js +32 -0
  388. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSet.d.ts +41 -0
  389. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSet.js +52 -0
  390. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetCondition.d.ts +47 -0
  391. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetCondition.js +52 -0
  392. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetList.d.ts +42 -0
  393. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetList.js +47 -0
  394. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetSpec.d.ts +41 -0
  395. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetSpec.js +52 -0
  396. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetStatus.d.ts +68 -0
  397. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetStatus.js +77 -0
  398. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetUpdateStrategy.d.ts +33 -0
  399. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DaemonSetUpdateStrategy.js +37 -0
  400. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeleteOptions.d.ts +53 -0
  401. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeleteOptions.js +62 -0
  402. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Deployment.d.ts +41 -0
  403. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Deployment.js +52 -0
  404. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentCondition.d.ts +51 -0
  405. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentCondition.js +57 -0
  406. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentList.d.ts +42 -0
  407. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentList.js +47 -0
  408. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentSpec.d.ts +53 -0
  409. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentSpec.js +67 -0
  410. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentStatus.d.ts +60 -0
  411. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentStatus.js +67 -0
  412. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentStrategy.d.ts +33 -0
  413. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DeploymentStrategy.js +37 -0
  414. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DownwardAPIProjection.d.ts +32 -0
  415. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DownwardAPIProjection.js +32 -0
  416. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DownwardAPIVolumeFile.d.ts +39 -0
  417. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DownwardAPIVolumeFile.js +47 -0
  418. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DownwardAPIVolumeSource.d.ts +36 -0
  419. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1DownwardAPIVolumeSource.js +37 -0
  420. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EmptyDirVolumeSource.d.ts +35 -0
  421. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EmptyDirVolumeSource.js +37 -0
  422. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Endpoint.d.ts +55 -0
  423. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Endpoint.js +67 -0
  424. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointAddress.d.ts +41 -0
  425. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointAddress.js +47 -0
  426. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointConditions.d.ts +39 -0
  427. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointConditions.js +42 -0
  428. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointHints.d.ts +32 -0
  429. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointHints.js +32 -0
  430. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointSlice.d.ts +51 -0
  431. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointSlice.js +57 -0
  432. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointSliceList.d.ts +42 -0
  433. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointSliceList.js +47 -0
  434. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointSubset.d.ts +41 -0
  435. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointSubset.js +42 -0
  436. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Endpoints.d.ts +42 -0
  437. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Endpoints.js +47 -0
  438. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointsList.d.ts +42 -0
  439. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EndpointsList.js +47 -0
  440. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EnvFromSource.d.ts +35 -0
  441. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EnvFromSource.js +42 -0
  442. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EnvVar.d.ts +37 -0
  443. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EnvVar.js +42 -0
  444. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EnvVarSource.d.ts +35 -0
  445. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EnvVarSource.js +47 -0
  446. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EphemeralContainer.d.ts +119 -0
  447. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EphemeralContainer.js +152 -0
  448. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EphemeralVolumeSource.d.ts +29 -0
  449. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EphemeralVolumeSource.js +32 -0
  450. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EventSource.d.ts +35 -0
  451. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1EventSource.js +37 -0
  452. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Eviction.d.ts +39 -0
  453. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Eviction.js +47 -0
  454. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ExecAction.d.ts +31 -0
  455. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ExecAction.js +32 -0
  456. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ExemptPriorityLevelConfiguration.d.ts +35 -0
  457. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ExemptPriorityLevelConfiguration.js +37 -0
  458. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ExpressionWarning.d.ts +35 -0
  459. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ExpressionWarning.js +37 -0
  460. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ExternalDocumentation.d.ts +29 -0
  461. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ExternalDocumentation.js +37 -0
  462. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FCVolumeSource.d.ts +47 -0
  463. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FCVolumeSource.js +52 -0
  464. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlexPersistentVolumeSource.d.ts +47 -0
  465. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlexPersistentVolumeSource.js +52 -0
  466. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlexVolumeSource.d.ts +47 -0
  467. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlexVolumeSource.js +52 -0
  468. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlockerVolumeSource.d.ts +35 -0
  469. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlockerVolumeSource.js +37 -0
  470. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowDistinguisherMethod.d.ts +31 -0
  471. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowDistinguisherMethod.js +32 -0
  472. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchema.d.ts +41 -0
  473. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchema.js +52 -0
  474. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchemaCondition.d.ts +47 -0
  475. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchemaCondition.js +52 -0
  476. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchemaList.d.ts +42 -0
  477. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchemaList.js +47 -0
  478. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchemaSpec.d.ts +40 -0
  479. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchemaSpec.js +47 -0
  480. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchemaStatus.d.ts +32 -0
  481. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1FlowSchemaStatus.js +32 -0
  482. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ForZone.d.ts +31 -0
  483. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ForZone.js +32 -0
  484. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GCEPersistentDiskVolumeSource.d.ts +43 -0
  485. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GCEPersistentDiskVolumeSource.js +47 -0
  486. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GRPCAction.d.ts +32 -0
  487. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GRPCAction.js +34 -0
  488. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GitRepoVolumeSource.d.ts +39 -0
  489. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GitRepoVolumeSource.js +42 -0
  490. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GlusterfsPersistentVolumeSource.d.ts +43 -0
  491. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GlusterfsPersistentVolumeSource.js +47 -0
  492. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GlusterfsVolumeSource.d.ts +39 -0
  493. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GlusterfsVolumeSource.js +42 -0
  494. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GroupSubject.d.ts +31 -0
  495. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GroupSubject.js +32 -0
  496. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GroupVersionForDiscovery.d.ts +35 -0
  497. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1GroupVersionForDiscovery.js +37 -0
  498. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HTTPGetAction.d.ts +49 -0
  499. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HTTPGetAction.js +52 -0
  500. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HTTPHeader.d.ts +35 -0
  501. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HTTPHeader.js +37 -0
  502. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HTTPIngressPath.d.ts +37 -0
  503. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HTTPIngressPath.js +42 -0
  504. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HTTPIngressRuleValue.d.ts +32 -0
  505. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HTTPIngressRuleValue.js +32 -0
  506. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HorizontalPodAutoscaler.d.ts +41 -0
  507. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HorizontalPodAutoscaler.js +52 -0
  508. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HorizontalPodAutoscalerList.d.ts +42 -0
  509. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HorizontalPodAutoscalerList.js +47 -0
  510. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HorizontalPodAutoscalerSpec.d.ts +41 -0
  511. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HorizontalPodAutoscalerSpec.js +47 -0
  512. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HorizontalPodAutoscalerStatus.d.ts +47 -0
  513. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HorizontalPodAutoscalerStatus.js +52 -0
  514. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HostAlias.d.ts +35 -0
  515. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HostAlias.js +37 -0
  516. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HostIP.d.ts +31 -0
  517. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HostIP.js +32 -0
  518. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HostPathVolumeSource.d.ts +35 -0
  519. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1HostPathVolumeSource.js +37 -0
  520. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IPBlock.d.ts +35 -0
  521. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IPBlock.js +37 -0
  522. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ISCSIPersistentVolumeSource.d.ts +69 -0
  523. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ISCSIPersistentVolumeSource.js +82 -0
  524. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ISCSIVolumeSource.d.ts +69 -0
  525. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ISCSIVolumeSource.js +82 -0
  526. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Ingress.d.ts +41 -0
  527. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Ingress.js +52 -0
  528. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressBackend.d.ts +31 -0
  529. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressBackend.js +37 -0
  530. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressClass.d.ts +39 -0
  531. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressClass.js +47 -0
  532. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressClassList.d.ts +42 -0
  533. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressClassList.js +47 -0
  534. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressClassParametersReference.d.ts +47 -0
  535. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressClassParametersReference.js +52 -0
  536. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressClassSpec.d.ts +33 -0
  537. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressClassSpec.js +37 -0
  538. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressList.d.ts +42 -0
  539. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressList.js +47 -0
  540. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressLoadBalancerIngress.d.ts +40 -0
  541. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressLoadBalancerIngress.js +42 -0
  542. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressLoadBalancerStatus.d.ts +32 -0
  543. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressLoadBalancerStatus.js +32 -0
  544. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressPortStatus.d.ts +39 -0
  545. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressPortStatus.js +42 -0
  546. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressRule.d.ts +33 -0
  547. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressRule.js +37 -0
  548. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressServiceBackend.d.ts +33 -0
  549. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressServiceBackend.js +37 -0
  550. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressSpec.d.ts +43 -0
  551. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressSpec.js +47 -0
  552. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressStatus.d.ts +29 -0
  553. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressStatus.js +32 -0
  554. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressTLS.d.ts +35 -0
  555. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1IngressTLS.js +37 -0
  556. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JSONSchemaProps.d.ts +120 -0
  557. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JSONSchemaProps.js +247 -0
  558. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Job.d.ts +41 -0
  559. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Job.js +52 -0
  560. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobCondition.d.ts +51 -0
  561. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobCondition.js +57 -0
  562. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobList.d.ts +42 -0
  563. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobList.js +47 -0
  564. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobSpec.d.ts +83 -0
  565. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobSpec.js +107 -0
  566. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobStatus.d.ts +70 -0
  567. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobStatus.js +82 -0
  568. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobTemplateSpec.d.ts +31 -0
  569. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1JobTemplateSpec.js +37 -0
  570. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1KeyToPath.d.ts +39 -0
  571. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1KeyToPath.js +42 -0
  572. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LabelSelector.d.ts +38 -0
  573. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LabelSelector.js +37 -0
  574. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LabelSelectorRequirement.d.ts +39 -0
  575. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LabelSelectorRequirement.js +42 -0
  576. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Lease.d.ts +39 -0
  577. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Lease.js +47 -0
  578. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LeaseList.d.ts +42 -0
  579. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LeaseList.js +47 -0
  580. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LeaseSpec.d.ts +48 -0
  581. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LeaseSpec.js +52 -0
  582. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Lifecycle.d.ts +30 -0
  583. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Lifecycle.js +37 -0
  584. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LifecycleHandler.d.ts +35 -0
  585. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LifecycleHandler.js +47 -0
  586. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRange.d.ts +39 -0
  587. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRange.js +47 -0
  588. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRangeItem.d.ts +61 -0
  589. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRangeItem.js +57 -0
  590. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRangeList.d.ts +42 -0
  591. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRangeList.js +47 -0
  592. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRangeSpec.d.ts +32 -0
  593. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitRangeSpec.js +32 -0
  594. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitResponse.d.ts +33 -0
  595. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitResponse.js +37 -0
  596. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitedPriorityLevelConfiguration.d.ts +41 -0
  597. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LimitedPriorityLevelConfiguration.js +47 -0
  598. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ListMeta.d.ts +43 -0
  599. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ListMeta.js +47 -0
  600. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LoadBalancerIngress.d.ts +44 -0
  601. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LoadBalancerIngress.js +47 -0
  602. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LoadBalancerStatus.d.ts +32 -0
  603. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LoadBalancerStatus.js +32 -0
  604. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LocalObjectReference.d.ts +31 -0
  605. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LocalObjectReference.js +32 -0
  606. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LocalSubjectAccessReview.d.ts +41 -0
  607. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LocalSubjectAccessReview.js +52 -0
  608. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LocalVolumeSource.d.ts +35 -0
  609. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1LocalVolumeSource.js +37 -0
  610. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ManagedFieldsEntry.d.ts +55 -0
  611. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ManagedFieldsEntry.js +62 -0
  612. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MatchCondition.d.ts +35 -0
  613. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MatchCondition.js +37 -0
  614. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MatchResources.d.ts +43 -0
  615. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MatchResources.js +52 -0
  616. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ModifyVolumeStatus.d.ts +35 -0
  617. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ModifyVolumeStatus.js +37 -0
  618. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MutatingWebhook.d.ts +70 -0
  619. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MutatingWebhook.js +87 -0
  620. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MutatingWebhookConfiguration.d.ts +42 -0
  621. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MutatingWebhookConfiguration.js +47 -0
  622. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MutatingWebhookConfigurationList.d.ts +42 -0
  623. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1MutatingWebhookConfigurationList.js +47 -0
  624. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NFSVolumeSource.d.ts +39 -0
  625. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NFSVolumeSource.js +42 -0
  626. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamedRuleWithOperations.d.ts +51 -0
  627. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamedRuleWithOperations.js +57 -0
  628. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Namespace.d.ts +41 -0
  629. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Namespace.js +52 -0
  630. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamespaceCondition.d.ts +41 -0
  631. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamespaceCondition.js +52 -0
  632. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamespaceList.d.ts +42 -0
  633. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamespaceList.js +47 -0
  634. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamespaceSpec.d.ts +31 -0
  635. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamespaceSpec.js +32 -0
  636. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamespaceStatus.d.ts +36 -0
  637. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NamespaceStatus.js +37 -0
  638. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicy.d.ts +39 -0
  639. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicy.js +47 -0
  640. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyEgressRule.d.ts +37 -0
  641. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyEgressRule.js +37 -0
  642. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyIngressRule.d.ts +37 -0
  643. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyIngressRule.js +37 -0
  644. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyList.d.ts +42 -0
  645. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyList.js +47 -0
  646. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyPeer.d.ts +32 -0
  647. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyPeer.js +42 -0
  648. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyPort.d.ts +40 -0
  649. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicyPort.js +42 -0
  650. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicySpec.d.ts +43 -0
  651. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NetworkPolicySpec.js +47 -0
  652. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Node.d.ts +41 -0
  653. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Node.js +52 -0
  654. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeAddress.d.ts +35 -0
  655. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeAddress.js +37 -0
  656. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeAffinity.d.ts +34 -0
  657. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeAffinity.js +37 -0
  658. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeCondition.d.ts +51 -0
  659. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeCondition.js +57 -0
  660. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeConfigSource.d.ts +29 -0
  661. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeConfigSource.js +32 -0
  662. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeConfigStatus.d.ts +35 -0
  663. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeConfigStatus.js +47 -0
  664. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeDaemonEndpoints.d.ts +29 -0
  665. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeDaemonEndpoints.js +32 -0
  666. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeList.d.ts +42 -0
  667. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeList.js +47 -0
  668. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeRuntimeHandler.d.ts +33 -0
  669. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeRuntimeHandler.js +37 -0
  670. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeRuntimeHandlerFeatures.d.ts +31 -0
  671. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeRuntimeHandlerFeatures.js +32 -0
  672. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSelector.d.ts +32 -0
  673. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSelector.js +32 -0
  674. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSelectorRequirement.d.ts +39 -0
  675. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSelectorRequirement.js +42 -0
  676. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSelectorTerm.d.ts +36 -0
  677. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSelectorTerm.js +37 -0
  678. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSpec.d.ts +54 -0
  679. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSpec.js +62 -0
  680. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeStatus.d.ts +78 -0
  681. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeStatus.js +87 -0
  682. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSystemInfo.d.ts +67 -0
  683. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NodeSystemInfo.js +77 -0
  684. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NonResourceAttributes.d.ts +35 -0
  685. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NonResourceAttributes.js +37 -0
  686. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NonResourcePolicyRule.d.ts +35 -0
  687. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NonResourcePolicyRule.js +37 -0
  688. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NonResourceRule.d.ts +35 -0
  689. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1NonResourceRule.js +37 -0
  690. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ObjectFieldSelector.d.ts +35 -0
  691. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ObjectFieldSelector.js +37 -0
  692. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ObjectMeta.d.ts +93 -0
  693. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ObjectMeta.js +102 -0
  694. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ObjectReference.d.ts +55 -0
  695. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ObjectReference.js +62 -0
  696. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Overhead.d.ts +33 -0
  697. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Overhead.js +32 -0
  698. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1OwnerReference.d.ts +51 -0
  699. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1OwnerReference.js +57 -0
  700. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ParamKind.d.ts +35 -0
  701. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ParamKind.js +37 -0
  702. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ParamRef.d.ts +41 -0
  703. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ParamRef.js +47 -0
  704. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolume.d.ts +41 -0
  705. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolume.js +52 -0
  706. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaim.d.ts +41 -0
  707. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaim.js +52 -0
  708. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimCondition.d.ts +45 -0
  709. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimCondition.js +57 -0
  710. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimList.d.ts +42 -0
  711. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimList.js +47 -0
  712. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimSpec.d.ts +55 -0
  713. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimSpec.js +72 -0
  714. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimStatus.d.ts +64 -0
  715. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimStatus.js +67 -0
  716. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimTemplate.d.ts +31 -0
  717. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimTemplate.js +37 -0
  718. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimVolumeSource.d.ts +35 -0
  719. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeClaimVolumeSource.js +37 -0
  720. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeList.d.ts +42 -0
  721. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeList.js +47 -0
  722. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeSpec.d.ts +105 -0
  723. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeSpec.js +182 -0
  724. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeStatus.d.ts +43 -0
  725. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PersistentVolumeStatus.js +47 -0
  726. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PhotonPersistentDiskVolumeSource.d.ts +35 -0
  727. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PhotonPersistentDiskVolumeSource.js +37 -0
  728. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Pod.d.ts +41 -0
  729. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Pod.js +52 -0
  730. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodAffinity.d.ts +37 -0
  731. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodAffinity.js +37 -0
  732. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodAffinityTerm.d.ts +46 -0
  733. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodAffinityTerm.js +57 -0
  734. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodAntiAffinity.d.ts +37 -0
  735. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodAntiAffinity.js +37 -0
  736. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodCondition.d.ts +51 -0
  737. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodCondition.js +57 -0
  738. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDNSConfig.d.ts +40 -0
  739. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDNSConfig.js +42 -0
  740. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDNSConfigOption.d.ts +32 -0
  741. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDNSConfigOption.js +37 -0
  742. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDisruptionBudget.d.ts +41 -0
  743. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDisruptionBudget.js +52 -0
  744. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDisruptionBudgetList.d.ts +42 -0
  745. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDisruptionBudgetList.js +47 -0
  746. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDisruptionBudgetSpec.d.ts +42 -0
  747. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDisruptionBudgetSpec.js +47 -0
  748. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDisruptionBudgetStatus.d.ts +58 -0
  749. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodDisruptionBudgetStatus.js +62 -0
  750. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodFailurePolicy.d.ts +32 -0
  751. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodFailurePolicy.js +32 -0
  752. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodFailurePolicyOnExitCodesRequirement.d.ts +39 -0
  753. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodFailurePolicyOnExitCodesRequirement.js +42 -0
  754. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodFailurePolicyOnPodConditionsPattern.d.ts +35 -0
  755. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodFailurePolicyOnPodConditionsPattern.js +37 -0
  756. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodFailurePolicyRule.d.ts +38 -0
  757. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodFailurePolicyRule.js +42 -0
  758. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodIP.d.ts +31 -0
  759. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodIP.js +32 -0
  760. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodList.d.ts +42 -0
  761. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodList.js +47 -0
  762. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodOS.d.ts +31 -0
  763. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodOS.js +32 -0
  764. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodReadinessGate.d.ts +31 -0
  765. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodReadinessGate.js +32 -0
  766. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodResourceClaim.d.ts +33 -0
  767. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodResourceClaim.js +37 -0
  768. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodResourceClaimStatus.d.ts +35 -0
  769. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodResourceClaimStatus.js +37 -0
  770. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodSchedulingGate.d.ts +31 -0
  771. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodSchedulingGate.js +32 -0
  772. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodSecurityContext.d.ts +64 -0
  773. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodSecurityContext.js +82 -0
  774. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodSpec.d.ts +189 -0
  775. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodSpec.js +222 -0
  776. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodStatus.d.ts +96 -0
  777. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodStatus.js +107 -0
  778. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodTemplate.d.ts +39 -0
  779. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodTemplate.js +47 -0
  780. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodTemplateList.d.ts +42 -0
  781. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodTemplateList.js +47 -0
  782. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodTemplateSpec.d.ts +31 -0
  783. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PodTemplateSpec.js +37 -0
  784. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PolicyRule.d.ts +47 -0
  785. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PolicyRule.js +52 -0
  786. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PolicyRulesWithSubjects.d.ts +42 -0
  787. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PolicyRulesWithSubjects.js +42 -0
  788. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PortStatus.d.ts +36 -0
  789. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PortStatus.js +39 -0
  790. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PortworxVolumeSource.d.ts +39 -0
  791. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PortworxVolumeSource.js +42 -0
  792. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Preconditions.d.ts +35 -0
  793. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Preconditions.js +37 -0
  794. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PreferredSchedulingTerm.d.ts +33 -0
  795. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PreferredSchedulingTerm.js +37 -0
  796. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityClass.d.ts +53 -0
  797. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityClass.js +62 -0
  798. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityClassList.d.ts +42 -0
  799. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityClassList.js +47 -0
  800. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfiguration.d.ts +41 -0
  801. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfiguration.js +52 -0
  802. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationCondition.d.ts +47 -0
  803. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationCondition.js +52 -0
  804. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationList.d.ts +42 -0
  805. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationList.js +47 -0
  806. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationReference.d.ts +31 -0
  807. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationReference.js +32 -0
  808. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationSpec.d.ts +35 -0
  809. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationSpec.js +42 -0
  810. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationStatus.d.ts +32 -0
  811. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1PriorityLevelConfigurationStatus.js +32 -0
  812. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Probe.d.ts +59 -0
  813. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Probe.js +77 -0
  814. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ProjectedVolumeSource.d.ts +36 -0
  815. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ProjectedVolumeSource.js +37 -0
  816. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1QueuingConfiguration.d.ts +39 -0
  817. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1QueuingConfiguration.js +42 -0
  818. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1QuobyteVolumeSource.d.ts +51 -0
  819. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1QuobyteVolumeSource.js +57 -0
  820. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RBDPersistentVolumeSource.d.ts +57 -0
  821. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RBDPersistentVolumeSource.js +67 -0
  822. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RBDVolumeSource.d.ts +57 -0
  823. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RBDVolumeSource.js +67 -0
  824. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSet.d.ts +41 -0
  825. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSet.js +52 -0
  826. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSetCondition.d.ts +47 -0
  827. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSetCondition.js +52 -0
  828. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSetList.d.ts +42 -0
  829. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSetList.js +47 -0
  830. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSetSpec.d.ts +39 -0
  831. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSetSpec.js +47 -0
  832. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSetStatus.d.ts +52 -0
  833. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicaSetStatus.js +57 -0
  834. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationController.d.ts +41 -0
  835. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationController.js +52 -0
  836. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationControllerCondition.d.ts +47 -0
  837. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationControllerCondition.js +52 -0
  838. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationControllerList.d.ts +42 -0
  839. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationControllerList.js +47 -0
  840. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationControllerSpec.d.ts +43 -0
  841. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationControllerSpec.js +47 -0
  842. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationControllerStatus.d.ts +52 -0
  843. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ReplicationControllerStatus.js +57 -0
  844. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceAttributes.d.ts +55 -0
  845. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceAttributes.js +62 -0
  846. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceClaim.d.ts +31 -0
  847. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceClaim.js +32 -0
  848. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceFieldSelector.d.ts +39 -0
  849. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceFieldSelector.js +42 -0
  850. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourcePolicyRule.d.ts +47 -0
  851. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourcePolicyRule.js +52 -0
  852. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceQuota.d.ts +41 -0
  853. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceQuota.js +52 -0
  854. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceQuotaList.d.ts +42 -0
  855. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceQuotaList.js +47 -0
  856. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceQuotaSpec.d.ts +39 -0
  857. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceQuotaSpec.js +42 -0
  858. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceQuotaStatus.d.ts +39 -0
  859. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceQuotaStatus.js +37 -0
  860. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceRequirements.d.ts +44 -0
  861. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceRequirements.js +42 -0
  862. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceRule.d.ts +43 -0
  863. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ResourceRule.js +47 -0
  864. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Role.d.ts +42 -0
  865. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Role.js +47 -0
  866. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RoleBinding.d.ts +44 -0
  867. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RoleBinding.js +52 -0
  868. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RoleBindingList.d.ts +42 -0
  869. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RoleBindingList.js +47 -0
  870. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RoleList.d.ts +42 -0
  871. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RoleList.js +47 -0
  872. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RoleRef.d.ts +39 -0
  873. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RoleRef.js +42 -0
  874. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RollingUpdateDaemonSet.d.ts +36 -0
  875. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RollingUpdateDaemonSet.js +37 -0
  876. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RollingUpdateDeployment.d.ts +36 -0
  877. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RollingUpdateDeployment.js +37 -0
  878. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RollingUpdateStatefulSetStrategy.d.ts +36 -0
  879. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RollingUpdateStatefulSetStrategy.js +37 -0
  880. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RuleWithOperations.d.ts +47 -0
  881. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RuleWithOperations.js +52 -0
  882. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RuntimeClass.d.ts +45 -0
  883. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RuntimeClass.js +57 -0
  884. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RuntimeClassList.d.ts +42 -0
  885. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1RuntimeClassList.js +47 -0
  886. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SELinuxOptions.d.ts +43 -0
  887. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SELinuxOptions.js +47 -0
  888. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Scale.d.ts +41 -0
  889. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Scale.js +52 -0
  890. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleIOPersistentVolumeSource.d.ts +65 -0
  891. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleIOPersistentVolumeSource.js +77 -0
  892. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleIOVolumeSource.d.ts +65 -0
  893. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleIOVolumeSource.js +77 -0
  894. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleSpec.d.ts +31 -0
  895. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleSpec.js +32 -0
  896. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleStatus.d.ts +35 -0
  897. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScaleStatus.js +37 -0
  898. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Scheduling.d.ts +38 -0
  899. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Scheduling.js +37 -0
  900. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScopeSelector.d.ts +32 -0
  901. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScopeSelector.js +32 -0
  902. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScopedResourceSelectorRequirement.d.ts +39 -0
  903. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ScopedResourceSelectorRequirement.js +42 -0
  904. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SeccompProfile.d.ts +35 -0
  905. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SeccompProfile.js +37 -0
  906. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Secret.d.ts +57 -0
  907. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Secret.js +62 -0
  908. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretEnvSource.d.ts +35 -0
  909. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretEnvSource.js +37 -0
  910. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretKeySelector.d.ts +39 -0
  911. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretKeySelector.js +42 -0
  912. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretList.d.ts +42 -0
  913. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretList.js +47 -0
  914. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretProjection.d.ts +40 -0
  915. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretProjection.js +42 -0
  916. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretReference.d.ts +35 -0
  917. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretReference.js +37 -0
  918. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretVolumeSource.d.ts +44 -0
  919. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecretVolumeSource.js +47 -0
  920. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecurityContext.d.ts +65 -0
  921. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SecurityContext.js +87 -0
  922. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelectableField.d.ts +31 -0
  923. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelectableField.js +32 -0
  924. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectAccessReview.d.ts +41 -0
  925. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectAccessReview.js +52 -0
  926. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectAccessReviewSpec.d.ts +31 -0
  927. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectAccessReviewSpec.js +37 -0
  928. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectReview.d.ts +39 -0
  929. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectReview.js +47 -0
  930. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectReviewStatus.d.ts +29 -0
  931. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectReviewStatus.js +32 -0
  932. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectRulesReview.d.ts +41 -0
  933. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectRulesReview.js +52 -0
  934. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectRulesReviewSpec.d.ts +31 -0
  935. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SelfSubjectRulesReviewSpec.js +32 -0
  936. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServerAddressByClientCIDR.d.ts +35 -0
  937. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServerAddressByClientCIDR.js +37 -0
  938. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Service.d.ts +41 -0
  939. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Service.js +52 -0
  940. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceAccount.d.ts +51 -0
  941. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceAccount.js +57 -0
  942. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceAccountList.d.ts +42 -0
  943. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceAccountList.js +47 -0
  944. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceAccountSubject.d.ts +35 -0
  945. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceAccountSubject.js +37 -0
  946. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceAccountTokenProjection.d.ts +39 -0
  947. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceAccountTokenProjection.js +42 -0
  948. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceBackendPort.d.ts +35 -0
  949. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceBackendPort.js +37 -0
  950. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceList.d.ts +42 -0
  951. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceList.js +47 -0
  952. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServicePort.d.ts +52 -0
  953. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServicePort.js +57 -0
  954. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceSpec.d.ts +108 -0
  955. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceSpec.js +127 -0
  956. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceStatus.d.ts +34 -0
  957. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ServiceStatus.js +37 -0
  958. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SessionAffinityConfig.d.ts +29 -0
  959. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SessionAffinityConfig.js +32 -0
  960. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SleepAction.d.ts +31 -0
  961. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SleepAction.js +32 -0
  962. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSet.d.ts +41 -0
  963. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSet.js +52 -0
  964. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetCondition.d.ts +47 -0
  965. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetCondition.js +52 -0
  966. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetList.d.ts +42 -0
  967. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetList.js +47 -0
  968. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetOrdinals.d.ts +31 -0
  969. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetOrdinals.js +32 -0
  970. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetPersistentVolumeClaimRetentionPolicy.d.ts +35 -0
  971. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetPersistentVolumeClaimRetentionPolicy.js +37 -0
  972. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetSpec.d.ts +62 -0
  973. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetSpec.js +82 -0
  974. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetStatus.d.ts +68 -0
  975. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetStatus.js +77 -0
  976. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetUpdateStrategy.d.ts +33 -0
  977. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatefulSetUpdateStrategy.js +37 -0
  978. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Status.d.ts +55 -0
  979. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Status.js +67 -0
  980. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatusCause.d.ts +39 -0
  981. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatusCause.js +42 -0
  982. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatusDetails.d.ts +52 -0
  983. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StatusDetails.js +57 -0
  984. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StorageClass.d.ts +68 -0
  985. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StorageClass.js +77 -0
  986. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StorageClassList.d.ts +42 -0
  987. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StorageClassList.js +47 -0
  988. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StorageOSPersistentVolumeSource.d.ts +45 -0
  989. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StorageOSPersistentVolumeSource.js +52 -0
  990. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StorageOSVolumeSource.d.ts +45 -0
  991. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1StorageOSVolumeSource.js +52 -0
  992. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SubjectAccessReview.d.ts +41 -0
  993. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SubjectAccessReview.js +52 -0
  994. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SubjectAccessReviewSpec.d.ts +49 -0
  995. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SubjectAccessReviewSpec.js +57 -0
  996. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SubjectAccessReviewStatus.d.ts +43 -0
  997. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SubjectAccessReviewStatus.js +47 -0
  998. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SubjectRulesReviewStatus.d.ts +45 -0
  999. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SubjectRulesReviewStatus.js +47 -0
  1000. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SuccessPolicy.d.ts +32 -0
  1001. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SuccessPolicy.js +32 -0
  1002. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SuccessPolicyRule.d.ts +35 -0
  1003. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1SuccessPolicyRule.js +37 -0
  1004. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Sysctl.d.ts +35 -0
  1005. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Sysctl.js +37 -0
  1006. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TCPSocketAction.d.ts +36 -0
  1007. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TCPSocketAction.js +37 -0
  1008. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Taint.d.ts +43 -0
  1009. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Taint.js +47 -0
  1010. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenRequestSpec.d.ts +37 -0
  1011. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenRequestSpec.js +42 -0
  1012. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenRequestStatus.d.ts +35 -0
  1013. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenRequestStatus.js +37 -0
  1014. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenReview.d.ts +41 -0
  1015. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenReview.js +52 -0
  1016. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenReviewSpec.d.ts +35 -0
  1017. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenReviewSpec.js +37 -0
  1018. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenReviewStatus.d.ts +41 -0
  1019. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TokenReviewStatus.js +47 -0
  1020. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Toleration.d.ts +47 -0
  1021. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Toleration.js +52 -0
  1022. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TopologySelectorLabelRequirement.d.ts +35 -0
  1023. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TopologySelectorLabelRequirement.js +37 -0
  1024. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TopologySelectorTerm.d.ts +32 -0
  1025. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TopologySelectorTerm.js +32 -0
  1026. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TopologySpreadConstraint.d.ts +57 -0
  1027. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TopologySpreadConstraint.js +67 -0
  1028. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TypeChecking.d.ts +32 -0
  1029. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TypeChecking.js +32 -0
  1030. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TypedLocalObjectReference.d.ts +39 -0
  1031. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TypedLocalObjectReference.js +42 -0
  1032. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TypedObjectReference.d.ts +40 -0
  1033. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1TypedObjectReference.js +44 -0
  1034. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1UncountedTerminatedPods.d.ts +35 -0
  1035. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1UncountedTerminatedPods.js +37 -0
  1036. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1UserInfo.d.ts +45 -0
  1037. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1UserInfo.js +47 -0
  1038. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1UserSubject.d.ts +31 -0
  1039. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1UserSubject.js +32 -0
  1040. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicy.d.ts +41 -0
  1041. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicy.js +52 -0
  1042. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyBinding.d.ts +39 -0
  1043. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyBinding.js +47 -0
  1044. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyBindingList.d.ts +42 -0
  1045. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyBindingList.js +47 -0
  1046. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyBindingSpec.d.ts +39 -0
  1047. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyBindingSpec.js +47 -0
  1048. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyList.d.ts +42 -0
  1049. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyList.js +47 -0
  1050. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicySpec.d.ts +55 -0
  1051. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicySpec.js +62 -0
  1052. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyStatus.d.ts +38 -0
  1053. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingAdmissionPolicyStatus.js +42 -0
  1054. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingWebhook.d.ts +66 -0
  1055. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingWebhook.js +82 -0
  1056. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingWebhookConfiguration.d.ts +42 -0
  1057. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingWebhookConfiguration.js +47 -0
  1058. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingWebhookConfigurationList.d.ts +42 -0
  1059. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidatingWebhookConfigurationList.js +47 -0
  1060. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Validation.d.ts +43 -0
  1061. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Validation.js +47 -0
  1062. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidationRule.d.ts +51 -0
  1063. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1ValidationRule.js +57 -0
  1064. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Variable.d.ts +35 -0
  1065. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Variable.js +37 -0
  1066. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Volume.d.ts +89 -0
  1067. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1Volume.js +177 -0
  1068. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachment.d.ts +41 -0
  1069. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachment.js +52 -0
  1070. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachmentList.d.ts +42 -0
  1071. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachmentList.js +47 -0
  1072. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachmentSource.d.ts +33 -0
  1073. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachmentSource.js +37 -0
  1074. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachmentSpec.d.ts +37 -0
  1075. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachmentSpec.js +42 -0
  1076. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachmentStatus.d.ts +40 -0
  1077. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeAttachmentStatus.js +47 -0
  1078. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeDevice.d.ts +35 -0
  1079. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeDevice.js +37 -0
  1080. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeError.d.ts +35 -0
  1081. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeError.js +37 -0
  1082. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeMount.d.ts +55 -0
  1083. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeMount.js +62 -0
  1084. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeMountStatus.d.ts +43 -0
  1085. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeMountStatus.js +47 -0
  1086. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeNodeAffinity.d.ts +29 -0
  1087. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeNodeAffinity.js +32 -0
  1088. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeNodeResources.d.ts +31 -0
  1089. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeNodeResources.js +32 -0
  1090. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeProjection.d.ts +37 -0
  1091. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeProjection.js +52 -0
  1092. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeResourceRequirements.d.ts +39 -0
  1093. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VolumeResourceRequirements.js +37 -0
  1094. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VsphereVirtualDiskVolumeSource.d.ts +43 -0
  1095. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1VsphereVirtualDiskVolumeSource.js +47 -0
  1096. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1WatchEvent.d.ts +32 -0
  1097. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1WatchEvent.js +37 -0
  1098. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1WebhookConversion.d.ts +33 -0
  1099. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1WebhookConversion.js +37 -0
  1100. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1WeightedPodAffinityTerm.d.ts +33 -0
  1101. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1WeightedPodAffinityTerm.js +37 -0
  1102. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1WindowsSecurityContextOptions.d.ts +43 -0
  1103. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1WindowsSecurityContextOptions.js +47 -0
  1104. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1AuditAnnotation.d.ts +35 -0
  1105. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1AuditAnnotation.js +37 -0
  1106. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ClusterTrustBundle.d.ts +39 -0
  1107. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ClusterTrustBundle.js +47 -0
  1108. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ClusterTrustBundleList.d.ts +42 -0
  1109. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ClusterTrustBundleList.js +47 -0
  1110. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ClusterTrustBundleSpec.d.ts +35 -0
  1111. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ClusterTrustBundleSpec.js +37 -0
  1112. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ExpressionWarning.d.ts +35 -0
  1113. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ExpressionWarning.js +37 -0
  1114. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1GroupVersionResource.d.ts +39 -0
  1115. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1GroupVersionResource.js +42 -0
  1116. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1IPAddress.d.ts +39 -0
  1117. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1IPAddress.js +47 -0
  1118. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1IPAddressList.d.ts +42 -0
  1119. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1IPAddressList.js +47 -0
  1120. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1IPAddressSpec.d.ts +29 -0
  1121. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1IPAddressSpec.js +32 -0
  1122. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1MatchCondition.d.ts +32 -0
  1123. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1MatchCondition.js +34 -0
  1124. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1MatchResources.d.ts +43 -0
  1125. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1MatchResources.js +52 -0
  1126. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1MigrationCondition.d.ts +47 -0
  1127. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1MigrationCondition.js +52 -0
  1128. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1NamedRuleWithOperations.d.ts +51 -0
  1129. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1NamedRuleWithOperations.js +57 -0
  1130. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ParamKind.d.ts +35 -0
  1131. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ParamKind.js +37 -0
  1132. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ParamRef.d.ts +41 -0
  1133. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ParamRef.js +47 -0
  1134. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ParentReference.d.ts +43 -0
  1135. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ParentReference.js +47 -0
  1136. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1SelfSubjectReview.d.ts +39 -0
  1137. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1SelfSubjectReview.js +47 -0
  1138. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1SelfSubjectReviewStatus.d.ts +29 -0
  1139. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1SelfSubjectReviewStatus.js +32 -0
  1140. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServerStorageVersion.d.ts +43 -0
  1141. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServerStorageVersion.js +47 -0
  1142. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServiceCIDR.d.ts +41 -0
  1143. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServiceCIDR.js +52 -0
  1144. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServiceCIDRList.d.ts +42 -0
  1145. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServiceCIDRList.js +47 -0
  1146. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServiceCIDRSpec.d.ts +31 -0
  1147. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServiceCIDRSpec.js +32 -0
  1148. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServiceCIDRStatus.d.ts +32 -0
  1149. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ServiceCIDRStatus.js +32 -0
  1150. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersion.d.ts +43 -0
  1151. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersion.js +52 -0
  1152. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionCondition.d.ts +51 -0
  1153. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionCondition.js +57 -0
  1154. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionList.d.ts +42 -0
  1155. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionList.js +47 -0
  1156. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionMigration.d.ts +41 -0
  1157. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionMigration.js +52 -0
  1158. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionMigrationList.d.ts +42 -0
  1159. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionMigrationList.js +47 -0
  1160. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionMigrationSpec.d.ts +33 -0
  1161. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionMigrationSpec.js +37 -0
  1162. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionMigrationStatus.d.ts +36 -0
  1163. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionMigrationStatus.js +37 -0
  1164. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionStatus.d.ts +41 -0
  1165. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1StorageVersionStatus.js +42 -0
  1166. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1TypeChecking.d.ts +32 -0
  1167. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1TypeChecking.js +32 -0
  1168. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicy.d.ts +41 -0
  1169. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicy.js +52 -0
  1170. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyBinding.d.ts +39 -0
  1171. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyBinding.js +47 -0
  1172. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyBindingList.d.ts +42 -0
  1173. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyBindingList.js +47 -0
  1174. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyBindingSpec.d.ts +39 -0
  1175. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyBindingSpec.js +47 -0
  1176. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyList.d.ts +42 -0
  1177. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyList.js +47 -0
  1178. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicySpec.d.ts +55 -0
  1179. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicySpec.js +62 -0
  1180. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyStatus.d.ts +38 -0
  1181. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1ValidatingAdmissionPolicyStatus.js +42 -0
  1182. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1Validation.d.ts +43 -0
  1183. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1Validation.js +47 -0
  1184. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1Variable.d.ts +35 -0
  1185. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1Variable.js +37 -0
  1186. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1VolumeAttributesClass.d.ts +47 -0
  1187. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1VolumeAttributesClass.js +52 -0
  1188. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1VolumeAttributesClassList.d.ts +42 -0
  1189. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha1VolumeAttributesClassList.js +47 -0
  1190. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2AllocationResult.d.ts +38 -0
  1191. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2AllocationResult.js +42 -0
  1192. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2DriverAllocationResult.d.ts +33 -0
  1193. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2DriverAllocationResult.js +37 -0
  1194. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2DriverRequests.d.ts +40 -0
  1195. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2DriverRequests.js +42 -0
  1196. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesAllocationResult.d.ts +31 -0
  1197. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesAllocationResult.js +32 -0
  1198. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesAttribute.d.ts +55 -0
  1199. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesAttribute.js +67 -0
  1200. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesFilter.d.ts +31 -0
  1201. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesFilter.js +32 -0
  1202. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesInstance.d.ts +36 -0
  1203. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesInstance.js +37 -0
  1204. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesIntSlice.d.ts +31 -0
  1205. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesIntSlice.js +32 -0
  1206. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesRequest.d.ts +31 -0
  1207. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesRequest.js +32 -0
  1208. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesResources.d.ts +32 -0
  1209. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesResources.js +32 -0
  1210. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesStringSlice.d.ts +31 -0
  1211. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2NamedResourcesStringSlice.js +32 -0
  1212. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2PodSchedulingContext.d.ts +41 -0
  1213. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2PodSchedulingContext.js +52 -0
  1214. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2PodSchedulingContextList.d.ts +42 -0
  1215. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2PodSchedulingContextList.js +47 -0
  1216. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2PodSchedulingContextSpec.d.ts +35 -0
  1217. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2PodSchedulingContextSpec.js +37 -0
  1218. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2PodSchedulingContextStatus.d.ts +32 -0
  1219. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2PodSchedulingContextStatus.js +32 -0
  1220. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaim.d.ts +41 -0
  1221. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaim.js +52 -0
  1222. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimConsumerReference.d.ts +43 -0
  1223. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimConsumerReference.js +47 -0
  1224. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimList.d.ts +42 -0
  1225. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimList.js +47 -0
  1226. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimParameters.d.ts +48 -0
  1227. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimParameters.js +57 -0
  1228. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimParametersList.d.ts +42 -0
  1229. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimParametersList.js +47 -0
  1230. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimParametersReference.d.ts +39 -0
  1231. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimParametersReference.js +42 -0
  1232. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimSchedulingStatus.d.ts +35 -0
  1233. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimSchedulingStatus.js +37 -0
  1234. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimSpec.d.ts +37 -0
  1235. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimSpec.js +42 -0
  1236. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimStatus.d.ts +42 -0
  1237. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimStatus.js +47 -0
  1238. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimTemplate.d.ts +39 -0
  1239. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimTemplate.js +47 -0
  1240. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimTemplateList.d.ts +42 -0
  1241. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimTemplateList.js +47 -0
  1242. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimTemplateSpec.d.ts +31 -0
  1243. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClaimTemplateSpec.js +37 -0
  1244. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClass.d.ts +49 -0
  1245. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClass.js +62 -0
  1246. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClassList.d.ts +42 -0
  1247. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClassList.js +47 -0
  1248. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClassParameters.d.ts +49 -0
  1249. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClassParameters.js +57 -0
  1250. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClassParametersList.d.ts +42 -0
  1251. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClassParametersList.js +47 -0
  1252. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClassParametersReference.d.ts +43 -0
  1253. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceClassParametersReference.js +47 -0
  1254. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceFilter.d.ts +33 -0
  1255. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceFilter.js +37 -0
  1256. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceHandle.d.ts +37 -0
  1257. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceHandle.js +42 -0
  1258. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceRequest.d.ts +33 -0
  1259. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceRequest.js +37 -0
  1260. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceSlice.d.ts +47 -0
  1261. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceSlice.js +57 -0
  1262. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceSliceList.d.ts +42 -0
  1263. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2ResourceSliceList.js +47 -0
  1264. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2StructuredResourceHandle.d.ts +44 -0
  1265. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2StructuredResourceHandle.js +47 -0
  1266. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2VendorParameters.d.ts +35 -0
  1267. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1alpha2VendorParameters.js +37 -0
  1268. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1AuditAnnotation.d.ts +35 -0
  1269. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1AuditAnnotation.js +37 -0
  1270. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ExpressionWarning.d.ts +35 -0
  1271. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ExpressionWarning.js +37 -0
  1272. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1MatchCondition.d.ts +35 -0
  1273. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1MatchCondition.js +37 -0
  1274. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1MatchResources.d.ts +43 -0
  1275. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1MatchResources.js +52 -0
  1276. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1NamedRuleWithOperations.d.ts +51 -0
  1277. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1NamedRuleWithOperations.js +57 -0
  1278. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ParamKind.d.ts +35 -0
  1279. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ParamKind.js +37 -0
  1280. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ParamRef.d.ts +41 -0
  1281. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ParamRef.js +47 -0
  1282. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1SelfSubjectReview.d.ts +39 -0
  1283. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1SelfSubjectReview.js +47 -0
  1284. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1SelfSubjectReviewStatus.d.ts +29 -0
  1285. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1SelfSubjectReviewStatus.js +32 -0
  1286. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1TypeChecking.d.ts +32 -0
  1287. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1TypeChecking.js +32 -0
  1288. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicy.d.ts +41 -0
  1289. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicy.js +52 -0
  1290. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyBinding.d.ts +39 -0
  1291. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyBinding.js +47 -0
  1292. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyBindingList.d.ts +42 -0
  1293. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyBindingList.js +47 -0
  1294. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyBindingSpec.d.ts +39 -0
  1295. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyBindingSpec.js +47 -0
  1296. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyList.d.ts +42 -0
  1297. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyList.js +47 -0
  1298. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicySpec.d.ts +55 -0
  1299. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicySpec.js +62 -0
  1300. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyStatus.d.ts +38 -0
  1301. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1ValidatingAdmissionPolicyStatus.js +42 -0
  1302. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1Validation.d.ts +43 -0
  1303. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1Validation.js +47 -0
  1304. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1Variable.d.ts +35 -0
  1305. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta1Variable.js +37 -0
  1306. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3ExemptPriorityLevelConfiguration.d.ts +35 -0
  1307. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3ExemptPriorityLevelConfiguration.js +37 -0
  1308. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowDistinguisherMethod.d.ts +31 -0
  1309. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowDistinguisherMethod.js +32 -0
  1310. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchema.d.ts +41 -0
  1311. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchema.js +52 -0
  1312. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchemaCondition.d.ts +47 -0
  1313. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchemaCondition.js +52 -0
  1314. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchemaList.d.ts +42 -0
  1315. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchemaList.js +47 -0
  1316. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchemaSpec.d.ts +40 -0
  1317. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchemaSpec.js +47 -0
  1318. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchemaStatus.d.ts +32 -0
  1319. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3FlowSchemaStatus.js +32 -0
  1320. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3GroupSubject.d.ts +31 -0
  1321. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3GroupSubject.js +32 -0
  1322. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3LimitResponse.d.ts +33 -0
  1323. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3LimitResponse.js +37 -0
  1324. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3LimitedPriorityLevelConfiguration.d.ts +41 -0
  1325. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3LimitedPriorityLevelConfiguration.js +47 -0
  1326. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3NonResourcePolicyRule.d.ts +35 -0
  1327. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3NonResourcePolicyRule.js +37 -0
  1328. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PolicyRulesWithSubjects.d.ts +42 -0
  1329. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PolicyRulesWithSubjects.js +42 -0
  1330. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfiguration.d.ts +41 -0
  1331. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfiguration.js +52 -0
  1332. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationCondition.d.ts +47 -0
  1333. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationCondition.js +52 -0
  1334. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationList.d.ts +42 -0
  1335. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationList.js +47 -0
  1336. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationReference.d.ts +31 -0
  1337. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationReference.js +32 -0
  1338. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationSpec.d.ts +35 -0
  1339. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationSpec.js +42 -0
  1340. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationStatus.d.ts +32 -0
  1341. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3PriorityLevelConfigurationStatus.js +32 -0
  1342. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3QueuingConfiguration.d.ts +39 -0
  1343. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3QueuingConfiguration.js +42 -0
  1344. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3ResourcePolicyRule.d.ts +47 -0
  1345. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3ResourcePolicyRule.js +52 -0
  1346. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3ServiceAccountSubject.d.ts +35 -0
  1347. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3ServiceAccountSubject.js +37 -0
  1348. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3Subject.d.ts +37 -0
  1349. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3Subject.js +47 -0
  1350. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3UserSubject.d.ts +31 -0
  1351. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v1beta3UserSubject.js +32 -0
  1352. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ContainerResourceMetricSource.d.ts +37 -0
  1353. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ContainerResourceMetricSource.js +42 -0
  1354. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ContainerResourceMetricStatus.d.ts +37 -0
  1355. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ContainerResourceMetricStatus.js +42 -0
  1356. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2CrossVersionObjectReference.d.ts +39 -0
  1357. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2CrossVersionObjectReference.js +42 -0
  1358. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ExternalMetricSource.d.ts +31 -0
  1359. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ExternalMetricSource.js +37 -0
  1360. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ExternalMetricStatus.d.ts +31 -0
  1361. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ExternalMetricStatus.js +37 -0
  1362. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HPAScalingPolicy.d.ts +39 -0
  1363. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HPAScalingPolicy.js +42 -0
  1364. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HPAScalingRules.d.ts +40 -0
  1365. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HPAScalingRules.js +42 -0
  1366. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscaler.d.ts +41 -0
  1367. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscaler.js +52 -0
  1368. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerBehavior.d.ts +30 -0
  1369. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerBehavior.js +37 -0
  1370. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerCondition.d.ts +47 -0
  1371. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerCondition.js +52 -0
  1372. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerList.d.ts +42 -0
  1373. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerList.js +47 -0
  1374. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerSpec.d.ts +44 -0
  1375. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerSpec.js +52 -0
  1376. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerStatus.d.ts +53 -0
  1377. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2HorizontalPodAutoscalerStatus.js +57 -0
  1378. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricIdentifier.d.ts +33 -0
  1379. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricIdentifier.js +37 -0
  1380. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricSpec.d.ts +41 -0
  1381. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricSpec.js +57 -0
  1382. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricStatus.d.ts +41 -0
  1383. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricStatus.js +57 -0
  1384. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricTarget.d.ts +43 -0
  1385. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricTarget.js +47 -0
  1386. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricValueStatus.d.ts +39 -0
  1387. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2MetricValueStatus.js +42 -0
  1388. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ObjectMetricSource.d.ts +33 -0
  1389. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ObjectMetricSource.js +42 -0
  1390. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ObjectMetricStatus.d.ts +33 -0
  1391. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ObjectMetricStatus.js +42 -0
  1392. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2PodsMetricSource.d.ts +31 -0
  1393. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2PodsMetricSource.js +37 -0
  1394. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2PodsMetricStatus.d.ts +31 -0
  1395. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2PodsMetricStatus.js +37 -0
  1396. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ResourceMetricSource.d.ts +33 -0
  1397. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ResourceMetricSource.js +37 -0
  1398. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ResourceMetricStatus.d.ts +33 -0
  1399. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/v2ResourceMetricStatus.js +37 -0
  1400. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/versionInfo.d.ts +36 -0
  1401. package/dist/node_modules/@kubernetes/client-node/dist/gen/model/versionInfo.js +72 -0
  1402. package/dist/node_modules/@kubernetes/client-node/dist/index.d.ts +17 -0
  1403. package/dist/node_modules/@kubernetes/client-node/dist/index.js +214 -0
  1404. package/dist/node_modules/@kubernetes/client-node/dist/informer.d.ts +32 -0
  1405. package/dist/node_modules/@kubernetes/client-node/dist/informer.js +20 -0
  1406. package/dist/node_modules/@kubernetes/client-node/dist/json_path.d.ts +1 -0
  1407. package/dist/node_modules/@kubernetes/client-node/dist/json_path.js +12 -0
  1408. package/dist/node_modules/@kubernetes/client-node/dist/log.d.ts +44 -0
  1409. package/dist/node_modules/@kubernetes/client-node/dist/log.js +62 -0
  1410. package/dist/node_modules/@kubernetes/client-node/dist/metrics.d.ts +76 -0
  1411. package/dist/node_modules/@kubernetes/client-node/dist/metrics.js +75 -0
  1412. package/dist/node_modules/@kubernetes/client-node/dist/object.d.ts +302 -0
  1413. package/dist/node_modules/@kubernetes/client-node/dist/object.js +589 -0
  1414. package/dist/node_modules/@kubernetes/client-node/dist/oidc_auth.d.ts +26 -0
  1415. package/dist/node_modules/@kubernetes/client-node/dist/oidc_auth.js +108 -0
  1416. package/dist/node_modules/@kubernetes/client-node/dist/oidc_auth_delayed.d.ts +16 -0
  1417. package/dist/node_modules/@kubernetes/client-node/dist/oidc_auth_delayed.js +49 -0
  1418. package/dist/node_modules/@kubernetes/client-node/dist/patch.d.ts +6 -0
  1419. package/dist/node_modules/@kubernetes/client-node/dist/patch.js +11 -0
  1420. package/dist/node_modules/@kubernetes/client-node/dist/portforward.d.ts +10 -0
  1421. package/dist/node_modules/@kubernetes/client-node/dist/portforward.js +60 -0
  1422. package/dist/node_modules/@kubernetes/client-node/dist/proto-client.d.ts +5 -0
  1423. package/dist/node_modules/@kubernetes/client-node/dist/proto-client.js +35 -0
  1424. package/dist/node_modules/@kubernetes/client-node/dist/serializer.d.ts +12 -0
  1425. package/dist/node_modules/@kubernetes/client-node/dist/serializer.js +81 -0
  1426. package/dist/node_modules/@kubernetes/client-node/dist/terminal-size-queue.d.ts +16 -0
  1427. package/dist/node_modules/@kubernetes/client-node/dist/terminal-size-queue.js +37 -0
  1428. package/dist/node_modules/@kubernetes/client-node/dist/top.d.ts +35 -0
  1429. package/dist/node_modules/@kubernetes/client-node/dist/top.js +131 -0
  1430. package/dist/node_modules/@kubernetes/client-node/dist/types.d.ts +19 -0
  1431. package/dist/node_modules/@kubernetes/client-node/dist/types.js +10 -0
  1432. package/dist/node_modules/@kubernetes/client-node/dist/util.d.ts +31 -0
  1433. package/dist/node_modules/@kubernetes/client-node/dist/util.js +182 -0
  1434. package/dist/node_modules/@kubernetes/client-node/dist/watch.d.ts +32 -0
  1435. package/dist/node_modules/@kubernetes/client-node/dist/watch.js +101 -0
  1436. package/dist/node_modules/@kubernetes/client-node/dist/web-socket-handler.d.ts +41 -0
  1437. package/dist/node_modules/@kubernetes/client-node/dist/web-socket-handler.js +197 -0
  1438. package/dist/node_modules/@kubernetes/client-node/dist/yaml.d.ts +4 -0
  1439. package/dist/node_modules/@kubernetes/client-node/dist/yaml.js +17 -0
  1440. package/dist/node_modules/@kubernetes/client-node/node_modules/.bin/js-yaml +15 -0
  1441. package/dist/node_modules/@kubernetes/client-node/node_modules/.bin/js-yaml.cmd +7 -0
  1442. package/dist/node_modules/@kubernetes/client-node/node_modules/.bin/jsonpath +15 -0
  1443. package/dist/node_modules/@kubernetes/client-node/node_modules/.bin/jsonpath-plus +15 -0
  1444. package/dist/node_modules/@kubernetes/client-node/node_modules/.bin/jsonpath-plus.cmd +7 -0
  1445. package/dist/node_modules/@kubernetes/client-node/node_modules/.bin/jsonpath.cmd +7 -0
  1446. package/dist/node_modules/@kubernetes/client-node/node_modules/chownr/dist/commonjs/index.d.ts +3 -0
  1447. package/dist/node_modules/@kubernetes/client-node/node_modules/chownr/dist/commonjs/index.js +93 -0
  1448. package/dist/node_modules/@kubernetes/client-node/node_modules/chownr/dist/commonjs/package.json +3 -0
  1449. package/dist/node_modules/@kubernetes/client-node/node_modules/chownr/dist/esm/index.d.ts +3 -0
  1450. package/dist/node_modules/@kubernetes/client-node/node_modules/chownr/dist/esm/index.js +85 -0
  1451. package/dist/node_modules/@kubernetes/client-node/node_modules/chownr/dist/esm/package.json +3 -0
  1452. package/dist/node_modules/@kubernetes/client-node/node_modules/chownr/package.json +69 -0
  1453. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/.claude/settings.local.json +9 -0
  1454. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/bin/jsonpath-cli.js +36 -0
  1455. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/dist/index-browser-esm.js +2164 -0
  1456. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/dist/index-browser-esm.min.js +2 -0
  1457. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/dist/index-browser-umd.cjs +2172 -0
  1458. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/dist/index-browser-umd.min.cjs +2 -0
  1459. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/dist/index-node-cjs.cjs +2076 -0
  1460. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/dist/index-node-esm.js +2074 -0
  1461. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/package.json +141 -0
  1462. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/pnpm-workspace.yaml +2 -0
  1463. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/src/Safe-Script.js +208 -0
  1464. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/src/jsonpath-browser.js +102 -0
  1465. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/src/jsonpath-node.js +8 -0
  1466. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/src/jsonpath.d.ts +226 -0
  1467. package/dist/node_modules/@kubernetes/client-node/node_modules/jsonpath-plus/src/jsonpath.js +784 -0
  1468. package/dist/node_modules/@kubernetes/client-node/node_modules/minipass/dist/commonjs/index.d.ts +549 -0
  1469. package/dist/node_modules/@kubernetes/client-node/node_modules/minipass/dist/commonjs/index.js +1028 -0
  1470. package/dist/node_modules/@kubernetes/client-node/node_modules/minipass/dist/commonjs/package.json +3 -0
  1471. package/dist/node_modules/@kubernetes/client-node/node_modules/minipass/dist/esm/index.d.ts +549 -0
  1472. package/dist/node_modules/@kubernetes/client-node/node_modules/minipass/dist/esm/index.js +1018 -0
  1473. package/dist/node_modules/@kubernetes/client-node/node_modules/minipass/dist/esm/package.json +3 -0
  1474. package/dist/node_modules/@kubernetes/client-node/node_modules/minipass/package.json +82 -0
  1475. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/commonjs/constants.d.ts +2 -0
  1476. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/commonjs/constants.js +123 -0
  1477. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/commonjs/index.d.ts +99 -0
  1478. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/commonjs/index.js +416 -0
  1479. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/commonjs/package.json +3 -0
  1480. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/esm/constants.d.ts +2 -0
  1481. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/esm/constants.js +117 -0
  1482. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/esm/index.d.ts +99 -0
  1483. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/esm/index.js +363 -0
  1484. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/dist/esm/package.json +3 -0
  1485. package/dist/node_modules/@kubernetes/client-node/node_modules/minizlib/package.json +80 -0
  1486. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/create.d.ts +3 -0
  1487. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/create.js +82 -0
  1488. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/cwd-error.d.ts +8 -0
  1489. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/cwd-error.js +18 -0
  1490. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/extract.d.ts +3 -0
  1491. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/extract.js +88 -0
  1492. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/get-write-flag.d.ts +2 -0
  1493. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/get-write-flag.js +32 -0
  1494. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/header.d.ts +53 -0
  1495. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/header.js +312 -0
  1496. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/index.d.ts +20 -0
  1497. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/index.js +64 -0
  1498. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/index.min.js +4 -0
  1499. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/large-numbers.d.ts +3 -0
  1500. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/large-numbers.js +99 -0
  1501. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/list.d.ts +7 -0
  1502. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/list.js +145 -0
  1503. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/make-command.d.ts +49 -0
  1504. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/make-command.js +52 -0
  1505. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/mkdir.d.ts +25 -0
  1506. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/mkdir.js +187 -0
  1507. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/mode-fix.d.ts +2 -0
  1508. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/mode-fix.js +29 -0
  1509. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/normalize-unicode.d.ts +2 -0
  1510. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/normalize-unicode.js +38 -0
  1511. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/normalize-windows-path.d.ts +2 -0
  1512. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/normalize-windows-path.js +12 -0
  1513. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/options.d.ts +596 -0
  1514. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/options.js +66 -0
  1515. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/pack.d.ts +102 -0
  1516. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/pack.js +511 -0
  1517. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/package.json +3 -0
  1518. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/parse.d.ts +85 -0
  1519. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/parse.js +610 -0
  1520. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/path-reservations.d.ts +11 -0
  1521. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/path-reservations.js +170 -0
  1522. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/pax.d.ts +26 -0
  1523. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/pax.js +158 -0
  1524. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/process-umask.d.ts +2 -0
  1525. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/process-umask.js +7 -0
  1526. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/read-entry.d.ts +36 -0
  1527. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/read-entry.js +136 -0
  1528. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/replace.d.ts +2 -0
  1529. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/replace.js +227 -0
  1530. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/strip-absolute-path.d.ts +2 -0
  1531. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/strip-absolute-path.js +29 -0
  1532. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/strip-trailing-slashes.d.ts +2 -0
  1533. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/strip-trailing-slashes.js +18 -0
  1534. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/symlink-error.d.ts +9 -0
  1535. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/symlink-error.js +19 -0
  1536. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/types.d.ts +7 -0
  1537. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/types.js +50 -0
  1538. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/unpack.d.ts +101 -0
  1539. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/unpack.js +932 -0
  1540. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/update.d.ts +2 -0
  1541. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/update.js +33 -0
  1542. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/warn-method.d.ts +24 -0
  1543. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/warn-method.js +31 -0
  1544. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/winchars.d.ts +3 -0
  1545. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/winchars.js +14 -0
  1546. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/write-entry.d.ts +129 -0
  1547. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/commonjs/write-entry.js +698 -0
  1548. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/create.d.ts +3 -0
  1549. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/create.js +76 -0
  1550. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/cwd-error.d.ts +8 -0
  1551. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/cwd-error.js +14 -0
  1552. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/extract.d.ts +3 -0
  1553. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/extract.js +49 -0
  1554. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/get-write-flag.d.ts +2 -0
  1555. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/get-write-flag.js +26 -0
  1556. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/header.d.ts +53 -0
  1557. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/header.js +275 -0
  1558. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/index.d.ts +20 -0
  1559. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/index.js +20 -0
  1560. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/index.min.js +4 -0
  1561. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/large-numbers.d.ts +3 -0
  1562. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/large-numbers.js +94 -0
  1563. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/list.d.ts +7 -0
  1564. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/list.js +105 -0
  1565. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/make-command.d.ts +49 -0
  1566. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/make-command.js +48 -0
  1567. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/mkdir.d.ts +25 -0
  1568. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/mkdir.js +179 -0
  1569. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/mode-fix.d.ts +2 -0
  1570. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/mode-fix.js +25 -0
  1571. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/normalize-unicode.d.ts +2 -0
  1572. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/normalize-unicode.js +34 -0
  1573. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/normalize-windows-path.d.ts +2 -0
  1574. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/normalize-windows-path.js +9 -0
  1575. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/options.d.ts +596 -0
  1576. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/options.js +54 -0
  1577. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/pack.d.ts +102 -0
  1578. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/pack.js +469 -0
  1579. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/package.json +3 -0
  1580. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/parse.d.ts +85 -0
  1581. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/parse.js +606 -0
  1582. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/path-reservations.d.ts +11 -0
  1583. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/path-reservations.js +166 -0
  1584. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/pax.d.ts +26 -0
  1585. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/pax.js +154 -0
  1586. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/process-umask.d.ts +2 -0
  1587. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/process-umask.js +3 -0
  1588. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/read-entry.d.ts +36 -0
  1589. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/read-entry.js +132 -0
  1590. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/replace.d.ts +2 -0
  1591. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/replace.js +221 -0
  1592. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/strip-absolute-path.d.ts +2 -0
  1593. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/strip-absolute-path.js +25 -0
  1594. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/strip-trailing-slashes.d.ts +2 -0
  1595. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/strip-trailing-slashes.js +14 -0
  1596. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/symlink-error.d.ts +9 -0
  1597. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/symlink-error.js +15 -0
  1598. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/types.d.ts +7 -0
  1599. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/types.js +45 -0
  1600. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/unpack.d.ts +101 -0
  1601. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/unpack.js +891 -0
  1602. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/update.d.ts +2 -0
  1603. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/update.js +30 -0
  1604. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/warn-method.d.ts +24 -0
  1605. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/warn-method.js +27 -0
  1606. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/winchars.d.ts +3 -0
  1607. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/winchars.js +9 -0
  1608. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/write-entry.d.ts +129 -0
  1609. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/dist/esm/write-entry.js +656 -0
  1610. package/dist/node_modules/@kubernetes/client-node/node_modules/tar/package.json +297 -0
  1611. package/dist/node_modules/@kubernetes/client-node/node_modules/yallist/dist/commonjs/index.d.ts +39 -0
  1612. package/dist/node_modules/@kubernetes/client-node/node_modules/yallist/dist/commonjs/index.js +384 -0
  1613. package/dist/node_modules/@kubernetes/client-node/node_modules/yallist/dist/commonjs/package.json +3 -0
  1614. package/dist/node_modules/@kubernetes/client-node/node_modules/yallist/dist/esm/index.d.ts +39 -0
  1615. package/dist/node_modules/@kubernetes/client-node/node_modules/yallist/dist/esm/index.js +379 -0
  1616. package/dist/node_modules/@kubernetes/client-node/node_modules/yallist/dist/esm/package.json +3 -0
  1617. package/dist/node_modules/@kubernetes/client-node/node_modules/yallist/package.json +68 -0
  1618. package/dist/node_modules/@kubernetes/client-node/package.json +1 -0
  1619. package/dist/node_modules/dockerode/.eslintignore +2 -0
  1620. package/dist/node_modules/dockerode/.eslintrc +35 -0
  1621. package/dist/node_modules/dockerode/.github/FUNDING.yml +1 -0
  1622. package/dist/node_modules/dockerode/.github/stale.yml +20 -0
  1623. package/dist/node_modules/dockerode/.github/workflows/main.yml +35 -0
  1624. package/dist/node_modules/dockerode/.travis.yml +24 -0
  1625. package/dist/node_modules/dockerode/LICENSE +201 -0
  1626. package/dist/node_modules/dockerode/lib/config.js +135 -0
  1627. package/dist/node_modules/dockerode/lib/container.js +1086 -0
  1628. package/dist/node_modules/dockerode/lib/docker.js +26 -0
  1629. package/dist/node_modules/dockerode/lib/exec.js +139 -0
  1630. package/dist/node_modules/dockerode/lib/image.js +276 -0
  1631. package/dist/node_modules/dockerode/lib/network.js +171 -0
  1632. package/dist/node_modules/dockerode/lib/node.js +135 -0
  1633. package/dist/node_modules/dockerode/lib/plugin.js +371 -0
  1634. package/dist/node_modules/dockerode/lib/secret.js +134 -0
  1635. package/dist/node_modules/dockerode/lib/service.js +183 -0
  1636. package/dist/node_modules/dockerode/lib/task.js +97 -0
  1637. package/dist/node_modules/dockerode/lib/util.js +106 -0
  1638. package/dist/node_modules/dockerode/lib/volume.js +90 -0
  1639. package/dist/node_modules/dockerode/node_modules/readable-stream/errors-browser.js +127 -0
  1640. package/dist/node_modules/dockerode/node_modules/readable-stream/errors.js +116 -0
  1641. package/dist/node_modules/dockerode/node_modules/readable-stream/experimentalWarning.js +17 -0
  1642. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
  1643. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
  1644. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
  1645. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/_stream_transform.js +190 -0
  1646. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/_stream_writable.js +641 -0
  1647. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
  1648. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
  1649. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
  1650. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
  1651. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
  1652. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
  1653. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
  1654. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
  1655. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  1656. package/dist/node_modules/dockerode/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  1657. package/dist/node_modules/dockerode/node_modules/readable-stream/package.json +68 -0
  1658. package/dist/node_modules/dockerode/node_modules/readable-stream/readable-browser.js +9 -0
  1659. package/dist/node_modules/dockerode/node_modules/readable-stream/readable.js +16 -0
  1660. package/dist/node_modules/dockerode/node_modules/tar-fs/.travis.yml +5 -0
  1661. package/dist/node_modules/dockerode/node_modules/tar-fs/index.js +348 -0
  1662. package/dist/node_modules/dockerode/node_modules/tar-fs/package.json +41 -0
  1663. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
  1664. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
  1665. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
  1666. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
  1667. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
  1668. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
  1669. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
  1670. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
  1671. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/e/file +0 -0
  1672. package/dist/node_modules/dockerode/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
  1673. package/dist/node_modules/dockerode/node_modules/tar-fs/test/index.js +346 -0
  1674. package/dist/node_modules/dockerode/node_modules/tar-stream/extract.js +257 -0
  1675. package/dist/node_modules/dockerode/node_modules/tar-stream/headers.js +295 -0
  1676. package/dist/node_modules/dockerode/node_modules/tar-stream/index.js +2 -0
  1677. package/dist/node_modules/dockerode/node_modules/tar-stream/pack.js +255 -0
  1678. package/dist/node_modules/dockerode/node_modules/tar-stream/package.json +58 -0
  1679. package/dist/node_modules/dockerode/node_modules/tar-stream/sandbox.js +11 -0
  1680. package/dist/node_modules/dockerode/package.json +1 -0
  1681. package/dist/node_modules/dockerode/pagent.exe +0 -0
  1682. package/dist/node_modules/redis/LICENSE +21 -0
  1683. package/dist/node_modules/redis/dist/index.d.ts +2330 -0
  1684. package/dist/node_modules/redis/dist/index.js +1 -0
  1685. package/dist/node_modules/redis/package.json +1 -0
  1686. package/dist/node_modules/redlock/LICENSE +22 -0
  1687. package/dist/node_modules/redlock/dist/cjs/index.js +1 -0
  1688. package/dist/node_modules/redlock/dist/cjs/package.json +3 -0
  1689. package/dist/node_modules/redlock/dist/esm/index.js +472 -0
  1690. package/dist/node_modules/redlock/dist/esm/package.json +3 -0
  1691. package/dist/node_modules/redlock/dist/index.d.ts +156 -0
  1692. package/dist/node_modules/redlock/package.json +1 -0
  1693. package/dist/node_modules/uuid/dist/bin/uuid +2 -0
  1694. package/dist/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
  1695. package/dist/node_modules/uuid/dist/commonjs-browser/max.js +7 -0
  1696. package/dist/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
  1697. package/dist/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
  1698. package/dist/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
  1699. package/dist/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
  1700. package/dist/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
  1701. package/dist/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
  1702. package/dist/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
  1703. package/dist/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
  1704. package/dist/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
  1705. package/dist/node_modules/uuid/dist/commonjs-browser/v1ToV6.js +26 -0
  1706. package/dist/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
  1707. package/dist/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
  1708. package/dist/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
  1709. package/dist/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
  1710. package/dist/node_modules/uuid/dist/commonjs-browser/v6.js +42 -0
  1711. package/dist/node_modules/uuid/dist/commonjs-browser/v6ToV1.js +26 -0
  1712. package/dist/node_modules/uuid/dist/commonjs-browser/v7.js +152 -0
  1713. package/dist/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
  1714. package/dist/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
  1715. package/dist/node_modules/uuid/dist/esm-browser/index.js +9 -0
  1716. package/dist/node_modules/uuid/dist/esm-browser/max.js +1 -0
  1717. package/dist/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  1718. package/dist/node_modules/uuid/dist/esm-browser/native.js +4 -0
  1719. package/dist/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  1720. package/dist/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  1721. package/dist/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  1722. package/dist/node_modules/uuid/dist/esm-browser/rng.js +18 -0
  1723. package/dist/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  1724. package/dist/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
  1725. package/dist/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  1726. package/dist/node_modules/uuid/dist/esm-browser/v1ToV6.js +20 -0
  1727. package/dist/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  1728. package/dist/node_modules/uuid/dist/esm-browser/v35.js +66 -0
  1729. package/dist/node_modules/uuid/dist/esm-browser/v4.js +29 -0
  1730. package/dist/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  1731. package/dist/node_modules/uuid/dist/esm-browser/v6.js +36 -0
  1732. package/dist/node_modules/uuid/dist/esm-browser/v6ToV1.js +20 -0
  1733. package/dist/node_modules/uuid/dist/esm-browser/v7.js +146 -0
  1734. package/dist/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  1735. package/dist/node_modules/uuid/dist/esm-browser/version.js +11 -0
  1736. package/dist/node_modules/uuid/dist/esm-node/index.js +9 -0
  1737. package/dist/node_modules/uuid/dist/esm-node/max.js +1 -0
  1738. package/dist/node_modules/uuid/dist/esm-node/md5.js +13 -0
  1739. package/dist/node_modules/uuid/dist/esm-node/native.js +4 -0
  1740. package/dist/node_modules/uuid/dist/esm-node/nil.js +1 -0
  1741. package/dist/node_modules/uuid/dist/esm-node/parse.js +35 -0
  1742. package/dist/node_modules/uuid/dist/esm-node/regex.js +1 -0
  1743. package/dist/node_modules/uuid/dist/esm-node/rng.js +12 -0
  1744. package/dist/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  1745. package/dist/node_modules/uuid/dist/esm-node/stringify.js +33 -0
  1746. package/dist/node_modules/uuid/dist/esm-node/v1.js +95 -0
  1747. package/dist/node_modules/uuid/dist/esm-node/v1ToV6.js +20 -0
  1748. package/dist/node_modules/uuid/dist/esm-node/v3.js +4 -0
  1749. package/dist/node_modules/uuid/dist/esm-node/v35.js +66 -0
  1750. package/dist/node_modules/uuid/dist/esm-node/v4.js +29 -0
  1751. package/dist/node_modules/uuid/dist/esm-node/v5.js +4 -0
  1752. package/dist/node_modules/uuid/dist/esm-node/v6.js +32 -0
  1753. package/dist/node_modules/uuid/dist/esm-node/v6ToV1.js +20 -0
  1754. package/dist/node_modules/uuid/dist/esm-node/v7.js +146 -0
  1755. package/dist/node_modules/uuid/dist/esm-node/validate.js +7 -0
  1756. package/dist/node_modules/uuid/dist/esm-node/version.js +11 -0
  1757. package/dist/node_modules/uuid/dist/index.js +1 -0
  1758. package/dist/node_modules/uuid/dist/max.js +7 -0
  1759. package/dist/node_modules/uuid/dist/md5-browser.js +223 -0
  1760. package/dist/node_modules/uuid/dist/md5.js +23 -0
  1761. package/dist/node_modules/uuid/dist/native-browser.js +11 -0
  1762. package/dist/node_modules/uuid/dist/native.js +15 -0
  1763. package/dist/node_modules/uuid/dist/nil.js +8 -0
  1764. package/dist/node_modules/uuid/dist/parse.js +45 -0
  1765. package/dist/node_modules/uuid/dist/regex.js +8 -0
  1766. package/dist/node_modules/uuid/dist/rng-browser.js +25 -0
  1767. package/dist/node_modules/uuid/dist/rng.js +24 -0
  1768. package/dist/node_modules/uuid/dist/sha1-browser.js +104 -0
  1769. package/dist/node_modules/uuid/dist/sha1.js +23 -0
  1770. package/dist/node_modules/uuid/dist/stringify.js +44 -0
  1771. package/dist/node_modules/uuid/dist/uuid-bin.js +85 -0
  1772. package/dist/node_modules/uuid/dist/v1.js +107 -0
  1773. package/dist/node_modules/uuid/dist/v1ToV6.js +26 -0
  1774. package/dist/node_modules/uuid/dist/v3.js +16 -0
  1775. package/dist/node_modules/uuid/dist/v35.js +80 -0
  1776. package/dist/node_modules/uuid/dist/v4.js +43 -0
  1777. package/dist/node_modules/uuid/dist/v5.js +16 -0
  1778. package/dist/node_modules/uuid/dist/v6.js +38 -0
  1779. package/dist/node_modules/uuid/dist/v6ToV1.js +26 -0
  1780. package/dist/node_modules/uuid/dist/v7.js +152 -0
  1781. package/dist/node_modules/uuid/dist/validate.js +17 -0
  1782. package/dist/node_modules/uuid/dist/version.js +21 -0
  1783. package/dist/node_modules/uuid/package.json +1 -0
  1784. package/dist/server/actions/acl-cache.d.ts +53 -0
  1785. package/dist/server/actions/acl-cache.js +237 -0
  1786. package/dist/server/actions/cache-monitor.d.ts +23 -0
  1787. package/dist/server/actions/cache-monitor.js +124 -0
  1788. package/dist/server/actions/cluster-nodes.d.ts +49 -0
  1789. package/dist/server/actions/cluster-nodes.js +351 -0
  1790. package/dist/server/actions/event-queue-monitor.d.ts +13 -0
  1791. package/dist/server/actions/event-queue-monitor.js +111 -0
  1792. package/dist/server/actions/lock-monitor.d.ts +19 -0
  1793. package/dist/server/actions/lock-monitor.js +169 -0
  1794. package/dist/server/actions/orchestrator.d.ts +53 -0
  1795. package/dist/server/actions/orchestrator.js +236 -0
  1796. package/dist/server/actions/package-manager.d.ts +6 -0
  1797. package/dist/server/actions/package-manager.js +160 -0
  1798. package/dist/server/actions/redis-monitor.d.ts +12 -0
  1799. package/dist/server/actions/redis-monitor.js +180 -0
  1800. package/dist/server/actions/tasks.d.ts +7 -0
  1801. package/dist/server/actions/tasks.js +144 -0
  1802. package/dist/server/actions/workflow-executions.d.ts +7 -0
  1803. package/dist/server/actions/workflow-executions.js +132 -0
  1804. package/dist/server/adapters/redis-lock-adapter.d.ts +15 -0
  1805. package/dist/server/adapters/redis-lock-adapter.js +134 -0
  1806. package/dist/server/adapters/redis-node-registry.d.ts +12 -0
  1807. package/dist/server/adapters/redis-node-registry.js +152 -0
  1808. package/dist/server/adapters/redis-pubsub-adapter.d.ts +16 -0
  1809. package/dist/server/adapters/redis-pubsub-adapter.js +121 -0
  1810. package/dist/server/collections/orchestrator-settings.d.ts +59 -0
  1811. package/dist/server/collections/orchestrator-settings.js +93 -0
  1812. package/dist/server/collections/orchestrator-stacks.d.ts +102 -0
  1813. package/dist/server/collections/orchestrator-stacks.js +174 -0
  1814. package/dist/server/collections/worker-packages-configs.d.ts +3 -0
  1815. package/dist/server/collections/worker-packages-configs.js +56 -0
  1816. package/dist/server/index.d.ts +1 -0
  1817. package/dist/server/index.js +33 -0
  1818. package/dist/server/orchestrator/PackageManager.d.ts +37 -0
  1819. package/dist/server/orchestrator/PackageManager.js +392 -0
  1820. package/dist/server/orchestrator/docker-adapter.d.ts +37 -0
  1821. package/dist/server/orchestrator/docker-adapter.js +280 -0
  1822. package/dist/server/orchestrator/index.d.ts +4 -0
  1823. package/dist/server/orchestrator/index.js +44 -0
  1824. package/dist/server/orchestrator/k8s-adapter.d.ts +50 -0
  1825. package/dist/server/orchestrator/k8s-adapter.js +454 -0
  1826. package/dist/server/orchestrator/leader-election.d.ts +48 -0
  1827. package/dist/server/orchestrator/leader-election.js +193 -0
  1828. package/dist/server/orchestrator/types.d.ts +79 -0
  1829. package/dist/server/orchestrator/types.js +15 -0
  1830. package/dist/server/plugin.d.ts +26 -0
  1831. package/dist/server/plugin.js +430 -0
  1832. package/dist/server/utils/node.d.ts +6 -0
  1833. package/dist/server/utils/node.js +43 -0
  1834. package/dist/server/utils/redis.d.ts +29 -0
  1835. package/dist/server/utils/redis.js +94 -0
  1836. package/dist/shared/packages.d.ts +23 -0
  1837. package/dist/shared/packages.js +70 -0
  1838. package/package.json +35 -0
  1839. package/server.d.ts +1 -0
  1840. package/src/client/AclCacheManager.tsx +287 -0
  1841. package/src/client/CacheMonitor.tsx +179 -0
  1842. package/src/client/ClusterManagerLayout.tsx +52 -0
  1843. package/src/client/ClusterNodes.tsx +418 -0
  1844. package/src/client/ContainerOrchestrator.tsx +902 -0
  1845. package/src/client/EventQueueMonitor.tsx +202 -0
  1846. package/src/client/LockMonitor.tsx +168 -0
  1847. package/src/client/PackageInstaller.tsx +373 -0
  1848. package/src/client/RedisMonitor.tsx +333 -0
  1849. package/src/client/TaskManager.tsx +187 -0
  1850. package/src/client/WorkflowExecutions.tsx +238 -0
  1851. package/src/client/index.tsx +14 -0
  1852. package/src/client/utils.ts +37 -0
  1853. package/src/index.ts +2 -0
  1854. package/src/locale/en-US.json +71 -0
  1855. package/src/locale/vi-VN.json +71 -0
  1856. package/src/locale/zh-CN.json +71 -0
  1857. package/src/server/actions/acl-cache.ts +272 -0
  1858. package/src/server/actions/cache-monitor.ts +116 -0
  1859. package/src/server/actions/cluster-nodes.ts +378 -0
  1860. package/src/server/actions/event-queue-monitor.ts +95 -0
  1861. package/src/server/actions/lock-monitor.ts +169 -0
  1862. package/src/server/actions/orchestrator.ts +254 -0
  1863. package/src/server/actions/package-manager.ts +154 -0
  1864. package/src/server/actions/redis-monitor.ts +185 -0
  1865. package/src/server/actions/tasks.ts +142 -0
  1866. package/src/server/actions/workflow-executions.ts +126 -0
  1867. package/src/server/adapters/redis-lock-adapter.ts +121 -0
  1868. package/src/server/adapters/redis-node-registry.ts +131 -0
  1869. package/src/server/adapters/redis-pubsub-adapter.ts +104 -0
  1870. package/src/server/collections/orchestrator-settings.ts +75 -0
  1871. package/src/server/collections/orchestrator-stacks.ts +152 -0
  1872. package/src/server/collections/worker-packages-configs.ts +44 -0
  1873. package/src/server/index.ts +2 -0
  1874. package/src/server/orchestrator/PackageManager.ts +426 -0
  1875. package/src/server/orchestrator/docker-adapter.ts +313 -0
  1876. package/src/server/orchestrator/index.ts +4 -0
  1877. package/src/server/orchestrator/k8s-adapter.ts +480 -0
  1878. package/src/server/orchestrator/leader-election.ts +195 -0
  1879. package/src/server/orchestrator/types.ts +95 -0
  1880. package/src/server/plugin.ts +468 -0
  1881. package/src/server/utils/node.ts +13 -0
  1882. package/src/server/utils/redis.ts +94 -0
  1883. package/src/shared/packages.ts +59 -0
@@ -0,0 +1,1214 @@
1
+ /**
2
+ * Kubernetes
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: release-1.30
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import http from 'http';
13
+ import { V1APIResourceList } from '../model/v1APIResourceList';
14
+ import { V1DeleteOptions } from '../model/v1DeleteOptions';
15
+ import { V1Status } from '../model/v1Status';
16
+ import { V1alpha2PodSchedulingContext } from '../model/v1alpha2PodSchedulingContext';
17
+ import { V1alpha2PodSchedulingContextList } from '../model/v1alpha2PodSchedulingContextList';
18
+ import { V1alpha2ResourceClaim } from '../model/v1alpha2ResourceClaim';
19
+ import { V1alpha2ResourceClaimList } from '../model/v1alpha2ResourceClaimList';
20
+ import { V1alpha2ResourceClaimParameters } from '../model/v1alpha2ResourceClaimParameters';
21
+ import { V1alpha2ResourceClaimParametersList } from '../model/v1alpha2ResourceClaimParametersList';
22
+ import { V1alpha2ResourceClaimTemplate } from '../model/v1alpha2ResourceClaimTemplate';
23
+ import { V1alpha2ResourceClaimTemplateList } from '../model/v1alpha2ResourceClaimTemplateList';
24
+ import { V1alpha2ResourceClass } from '../model/v1alpha2ResourceClass';
25
+ import { V1alpha2ResourceClassList } from '../model/v1alpha2ResourceClassList';
26
+ import { V1alpha2ResourceClassParameters } from '../model/v1alpha2ResourceClassParameters';
27
+ import { V1alpha2ResourceClassParametersList } from '../model/v1alpha2ResourceClassParametersList';
28
+ import { V1alpha2ResourceSlice } from '../model/v1alpha2ResourceSlice';
29
+ import { V1alpha2ResourceSliceList } from '../model/v1alpha2ResourceSliceList';
30
+ import { Authentication, Interceptor } from '../model/models';
31
+ import { ApiKeyAuth } from '../model/models';
32
+ export declare enum ResourceV1alpha2ApiApiKeys {
33
+ BearerToken = 0
34
+ }
35
+ export declare class ResourceV1alpha2Api {
36
+ protected _basePath: string;
37
+ protected _defaultHeaders: any;
38
+ protected _useQuerystring: boolean;
39
+ protected authentications: {
40
+ default: Authentication;
41
+ BearerToken: ApiKeyAuth;
42
+ };
43
+ protected interceptors: Interceptor[];
44
+ constructor(basePath?: string);
45
+ set useQuerystring(value: boolean);
46
+ set basePath(basePath: string);
47
+ set defaultHeaders(defaultHeaders: any);
48
+ get defaultHeaders(): any;
49
+ get basePath(): string;
50
+ setDefaultAuthentication(auth: Authentication): void;
51
+ setApiKey(key: ResourceV1alpha2ApiApiKeys, value: string): void;
52
+ addInterceptor(interceptor: Interceptor): void;
53
+ /**
54
+ * create a PodSchedulingContext
55
+ * @param namespace object name and auth scope, such as for teams and projects
56
+ * @param body
57
+ * @param pretty If \'true\', then the output is pretty printed. Defaults to \'false\' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
58
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
59
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
60
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
61
+ */
62
+ createNamespacedPodSchedulingContext(namespace: string, body: V1alpha2PodSchedulingContext, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
63
+ headers: {
64
+ [name: string]: string;
65
+ };
66
+ }): Promise<{
67
+ response: http.IncomingMessage;
68
+ body: V1alpha2PodSchedulingContext;
69
+ }>;
70
+ /**
71
+ * create a ResourceClaim
72
+ * @param namespace object name and auth scope, such as for teams and projects
73
+ * @param body
74
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
75
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
76
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
77
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
78
+ */
79
+ createNamespacedResourceClaim(namespace: string, body: V1alpha2ResourceClaim, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
80
+ headers: {
81
+ [name: string]: string;
82
+ };
83
+ }): Promise<{
84
+ response: http.IncomingMessage;
85
+ body: V1alpha2ResourceClaim;
86
+ }>;
87
+ /**
88
+ * create ResourceClaimParameters
89
+ * @param namespace object name and auth scope, such as for teams and projects
90
+ * @param body
91
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
92
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
93
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
94
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
95
+ */
96
+ createNamespacedResourceClaimParameters(namespace: string, body: V1alpha2ResourceClaimParameters, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
97
+ headers: {
98
+ [name: string]: string;
99
+ };
100
+ }): Promise<{
101
+ response: http.IncomingMessage;
102
+ body: V1alpha2ResourceClaimParameters;
103
+ }>;
104
+ /**
105
+ * create a ResourceClaimTemplate
106
+ * @param namespace object name and auth scope, such as for teams and projects
107
+ * @param body
108
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
109
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
110
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
111
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
112
+ */
113
+ createNamespacedResourceClaimTemplate(namespace: string, body: V1alpha2ResourceClaimTemplate, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
114
+ headers: {
115
+ [name: string]: string;
116
+ };
117
+ }): Promise<{
118
+ response: http.IncomingMessage;
119
+ body: V1alpha2ResourceClaimTemplate;
120
+ }>;
121
+ /**
122
+ * create ResourceClassParameters
123
+ * @param namespace object name and auth scope, such as for teams and projects
124
+ * @param body
125
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
126
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
127
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
128
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
129
+ */
130
+ createNamespacedResourceClassParameters(namespace: string, body: V1alpha2ResourceClassParameters, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
131
+ headers: {
132
+ [name: string]: string;
133
+ };
134
+ }): Promise<{
135
+ response: http.IncomingMessage;
136
+ body: V1alpha2ResourceClassParameters;
137
+ }>;
138
+ /**
139
+ * create a ResourceClass
140
+ * @param body
141
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
142
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
143
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
144
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
145
+ */
146
+ createResourceClass(body: V1alpha2ResourceClass, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
147
+ headers: {
148
+ [name: string]: string;
149
+ };
150
+ }): Promise<{
151
+ response: http.IncomingMessage;
152
+ body: V1alpha2ResourceClass;
153
+ }>;
154
+ /**
155
+ * create a ResourceSlice
156
+ * @param body
157
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
158
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
159
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
160
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
161
+ */
162
+ createResourceSlice(body: V1alpha2ResourceSlice, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
163
+ headers: {
164
+ [name: string]: string;
165
+ };
166
+ }): Promise<{
167
+ response: http.IncomingMessage;
168
+ body: V1alpha2ResourceSlice;
169
+ }>;
170
+ /**
171
+ * delete collection of PodSchedulingContext
172
+ * @param namespace object name and auth scope, such as for teams and projects
173
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
174
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
175
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
176
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
177
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
178
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
179
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
180
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
181
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
182
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
183
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
184
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
185
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
186
+ * @param body
187
+ */
188
+ deleteCollectionNamespacedPodSchedulingContext(namespace: string, pretty?: string, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, body?: V1DeleteOptions, options?: {
189
+ headers: {
190
+ [name: string]: string;
191
+ };
192
+ }): Promise<{
193
+ response: http.IncomingMessage;
194
+ body: V1Status;
195
+ }>;
196
+ /**
197
+ * delete collection of ResourceClaim
198
+ * @param namespace object name and auth scope, such as for teams and projects
199
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
200
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
201
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
202
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
203
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
204
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
205
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
206
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
207
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
208
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
209
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
210
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
211
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
212
+ * @param body
213
+ */
214
+ deleteCollectionNamespacedResourceClaim(namespace: string, pretty?: string, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, body?: V1DeleteOptions, options?: {
215
+ headers: {
216
+ [name: string]: string;
217
+ };
218
+ }): Promise<{
219
+ response: http.IncomingMessage;
220
+ body: V1Status;
221
+ }>;
222
+ /**
223
+ * delete collection of ResourceClaimParameters
224
+ * @param namespace object name and auth scope, such as for teams and projects
225
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
226
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
227
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
228
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
229
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
230
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
231
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
232
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
233
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
234
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
235
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
236
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
237
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
238
+ * @param body
239
+ */
240
+ deleteCollectionNamespacedResourceClaimParameters(namespace: string, pretty?: string, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, body?: V1DeleteOptions, options?: {
241
+ headers: {
242
+ [name: string]: string;
243
+ };
244
+ }): Promise<{
245
+ response: http.IncomingMessage;
246
+ body: V1Status;
247
+ }>;
248
+ /**
249
+ * delete collection of ResourceClaimTemplate
250
+ * @param namespace object name and auth scope, such as for teams and projects
251
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
252
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
253
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
254
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
255
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
256
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
257
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
258
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
259
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
260
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
261
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
262
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
263
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
264
+ * @param body
265
+ */
266
+ deleteCollectionNamespacedResourceClaimTemplate(namespace: string, pretty?: string, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, body?: V1DeleteOptions, options?: {
267
+ headers: {
268
+ [name: string]: string;
269
+ };
270
+ }): Promise<{
271
+ response: http.IncomingMessage;
272
+ body: V1Status;
273
+ }>;
274
+ /**
275
+ * delete collection of ResourceClassParameters
276
+ * @param namespace object name and auth scope, such as for teams and projects
277
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
278
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
279
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
280
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
281
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
282
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
283
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
284
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
285
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
286
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
287
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
288
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
289
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
290
+ * @param body
291
+ */
292
+ deleteCollectionNamespacedResourceClassParameters(namespace: string, pretty?: string, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, body?: V1DeleteOptions, options?: {
293
+ headers: {
294
+ [name: string]: string;
295
+ };
296
+ }): Promise<{
297
+ response: http.IncomingMessage;
298
+ body: V1Status;
299
+ }>;
300
+ /**
301
+ * delete collection of ResourceClass
302
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
303
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
304
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
305
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
306
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
307
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
308
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
309
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
310
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
311
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
312
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
313
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
314
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
315
+ * @param body
316
+ */
317
+ deleteCollectionResourceClass(pretty?: string, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, body?: V1DeleteOptions, options?: {
318
+ headers: {
319
+ [name: string]: string;
320
+ };
321
+ }): Promise<{
322
+ response: http.IncomingMessage;
323
+ body: V1Status;
324
+ }>;
325
+ /**
326
+ * delete collection of ResourceSlice
327
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
328
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
329
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
330
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
331
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
332
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
333
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
334
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
335
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
336
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
337
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
338
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
339
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
340
+ * @param body
341
+ */
342
+ deleteCollectionResourceSlice(pretty?: string, _continue?: string, dryRun?: string, fieldSelector?: string, gracePeriodSeconds?: number, labelSelector?: string, limit?: number, orphanDependents?: boolean, propagationPolicy?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, body?: V1DeleteOptions, options?: {
343
+ headers: {
344
+ [name: string]: string;
345
+ };
346
+ }): Promise<{
347
+ response: http.IncomingMessage;
348
+ body: V1Status;
349
+ }>;
350
+ /**
351
+ * delete a PodSchedulingContext
352
+ * @param name name of the PodSchedulingContext
353
+ * @param namespace object name and auth scope, such as for teams and projects
354
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
355
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
356
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
357
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
358
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
359
+ * @param body
360
+ */
361
+ deleteNamespacedPodSchedulingContext(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
362
+ headers: {
363
+ [name: string]: string;
364
+ };
365
+ }): Promise<{
366
+ response: http.IncomingMessage;
367
+ body: V1alpha2PodSchedulingContext;
368
+ }>;
369
+ /**
370
+ * delete a ResourceClaim
371
+ * @param name name of the ResourceClaim
372
+ * @param namespace object name and auth scope, such as for teams and projects
373
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
374
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
375
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
376
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
377
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
378
+ * @param body
379
+ */
380
+ deleteNamespacedResourceClaim(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
381
+ headers: {
382
+ [name: string]: string;
383
+ };
384
+ }): Promise<{
385
+ response: http.IncomingMessage;
386
+ body: V1alpha2ResourceClaim;
387
+ }>;
388
+ /**
389
+ * delete ResourceClaimParameters
390
+ * @param name name of the ResourceClaimParameters
391
+ * @param namespace object name and auth scope, such as for teams and projects
392
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
393
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
394
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
395
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
396
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
397
+ * @param body
398
+ */
399
+ deleteNamespacedResourceClaimParameters(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
400
+ headers: {
401
+ [name: string]: string;
402
+ };
403
+ }): Promise<{
404
+ response: http.IncomingMessage;
405
+ body: V1alpha2ResourceClaimParameters;
406
+ }>;
407
+ /**
408
+ * delete a ResourceClaimTemplate
409
+ * @param name name of the ResourceClaimTemplate
410
+ * @param namespace object name and auth scope, such as for teams and projects
411
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
412
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
413
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
414
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
415
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
416
+ * @param body
417
+ */
418
+ deleteNamespacedResourceClaimTemplate(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
419
+ headers: {
420
+ [name: string]: string;
421
+ };
422
+ }): Promise<{
423
+ response: http.IncomingMessage;
424
+ body: V1alpha2ResourceClaimTemplate;
425
+ }>;
426
+ /**
427
+ * delete ResourceClassParameters
428
+ * @param name name of the ResourceClassParameters
429
+ * @param namespace object name and auth scope, such as for teams and projects
430
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
431
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
432
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
433
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
434
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
435
+ * @param body
436
+ */
437
+ deleteNamespacedResourceClassParameters(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
438
+ headers: {
439
+ [name: string]: string;
440
+ };
441
+ }): Promise<{
442
+ response: http.IncomingMessage;
443
+ body: V1alpha2ResourceClassParameters;
444
+ }>;
445
+ /**
446
+ * delete a ResourceClass
447
+ * @param name name of the ResourceClass
448
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
449
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
450
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
451
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
452
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
453
+ * @param body
454
+ */
455
+ deleteResourceClass(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
456
+ headers: {
457
+ [name: string]: string;
458
+ };
459
+ }): Promise<{
460
+ response: http.IncomingMessage;
461
+ body: V1alpha2ResourceClass;
462
+ }>;
463
+ /**
464
+ * delete a ResourceSlice
465
+ * @param name name of the ResourceSlice
466
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
467
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
468
+ * @param gracePeriodSeconds The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
469
+ * @param orphanDependents Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \&quot;orphan\&quot; finalizer will be added to/removed from the object\&#39;s finalizers list. Either this field or PropagationPolicy may be set, but not both.
470
+ * @param propagationPolicy Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: \&#39;Orphan\&#39; - orphan the dependents; \&#39;Background\&#39; - allow the garbage collector to delete the dependents in the background; \&#39;Foreground\&#39; - a cascading policy that deletes all dependents in the foreground.
471
+ * @param body
472
+ */
473
+ deleteResourceSlice(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
474
+ headers: {
475
+ [name: string]: string;
476
+ };
477
+ }): Promise<{
478
+ response: http.IncomingMessage;
479
+ body: V1alpha2ResourceSlice;
480
+ }>;
481
+ /**
482
+ * get available resources
483
+ */
484
+ getAPIResources(options?: {
485
+ headers: {
486
+ [name: string]: string;
487
+ };
488
+ }): Promise<{
489
+ response: http.IncomingMessage;
490
+ body: V1APIResourceList;
491
+ }>;
492
+ /**
493
+ * list or watch objects of kind PodSchedulingContext
494
+ * @param namespace object name and auth scope, such as for teams and projects
495
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
496
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
497
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
498
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
499
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
500
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
501
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
502
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
503
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
504
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
505
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
506
+ */
507
+ listNamespacedPodSchedulingContext(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
508
+ headers: {
509
+ [name: string]: string;
510
+ };
511
+ }): Promise<{
512
+ response: http.IncomingMessage;
513
+ body: V1alpha2PodSchedulingContextList;
514
+ }>;
515
+ /**
516
+ * list or watch objects of kind ResourceClaim
517
+ * @param namespace object name and auth scope, such as for teams and projects
518
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
519
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
520
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
521
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
522
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
523
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
524
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
525
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
526
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
527
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
528
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
529
+ */
530
+ listNamespacedResourceClaim(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
531
+ headers: {
532
+ [name: string]: string;
533
+ };
534
+ }): Promise<{
535
+ response: http.IncomingMessage;
536
+ body: V1alpha2ResourceClaimList;
537
+ }>;
538
+ /**
539
+ * list or watch objects of kind ResourceClaimParameters
540
+ * @param namespace object name and auth scope, such as for teams and projects
541
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
542
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
543
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
544
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
545
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
546
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
547
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
548
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
549
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
550
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
551
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
552
+ */
553
+ listNamespacedResourceClaimParameters(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
554
+ headers: {
555
+ [name: string]: string;
556
+ };
557
+ }): Promise<{
558
+ response: http.IncomingMessage;
559
+ body: V1alpha2ResourceClaimParametersList;
560
+ }>;
561
+ /**
562
+ * list or watch objects of kind ResourceClaimTemplate
563
+ * @param namespace object name and auth scope, such as for teams and projects
564
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
565
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
566
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
567
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
568
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
569
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
570
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
571
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
572
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
573
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
574
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
575
+ */
576
+ listNamespacedResourceClaimTemplate(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
577
+ headers: {
578
+ [name: string]: string;
579
+ };
580
+ }): Promise<{
581
+ response: http.IncomingMessage;
582
+ body: V1alpha2ResourceClaimTemplateList;
583
+ }>;
584
+ /**
585
+ * list or watch objects of kind ResourceClassParameters
586
+ * @param namespace object name and auth scope, such as for teams and projects
587
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
588
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
589
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
590
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
591
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
592
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
593
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
594
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
595
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
596
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
597
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
598
+ */
599
+ listNamespacedResourceClassParameters(namespace: string, pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
600
+ headers: {
601
+ [name: string]: string;
602
+ };
603
+ }): Promise<{
604
+ response: http.IncomingMessage;
605
+ body: V1alpha2ResourceClassParametersList;
606
+ }>;
607
+ /**
608
+ * list or watch objects of kind PodSchedulingContext
609
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
610
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
611
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
612
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
613
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
614
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
615
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
616
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
617
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
618
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
619
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
620
+ */
621
+ listPodSchedulingContextForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
622
+ headers: {
623
+ [name: string]: string;
624
+ };
625
+ }): Promise<{
626
+ response: http.IncomingMessage;
627
+ body: V1alpha2PodSchedulingContextList;
628
+ }>;
629
+ /**
630
+ * list or watch objects of kind ResourceClaim
631
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
632
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
633
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
634
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
635
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
636
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
637
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
638
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
639
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
640
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
641
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
642
+ */
643
+ listResourceClaimForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
644
+ headers: {
645
+ [name: string]: string;
646
+ };
647
+ }): Promise<{
648
+ response: http.IncomingMessage;
649
+ body: V1alpha2ResourceClaimList;
650
+ }>;
651
+ /**
652
+ * list or watch objects of kind ResourceClaimParameters
653
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
654
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
655
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
656
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
657
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
658
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
659
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
660
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
661
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
662
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
663
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
664
+ */
665
+ listResourceClaimParametersForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
666
+ headers: {
667
+ [name: string]: string;
668
+ };
669
+ }): Promise<{
670
+ response: http.IncomingMessage;
671
+ body: V1alpha2ResourceClaimParametersList;
672
+ }>;
673
+ /**
674
+ * list or watch objects of kind ResourceClaimTemplate
675
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
676
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
677
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
678
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
679
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
680
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
681
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
682
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
683
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
684
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
685
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
686
+ */
687
+ listResourceClaimTemplateForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
688
+ headers: {
689
+ [name: string]: string;
690
+ };
691
+ }): Promise<{
692
+ response: http.IncomingMessage;
693
+ body: V1alpha2ResourceClaimTemplateList;
694
+ }>;
695
+ /**
696
+ * list or watch objects of kind ResourceClass
697
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
698
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
699
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
700
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
701
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
702
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
703
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
704
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
705
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
706
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
707
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
708
+ */
709
+ listResourceClass(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
710
+ headers: {
711
+ [name: string]: string;
712
+ };
713
+ }): Promise<{
714
+ response: http.IncomingMessage;
715
+ body: V1alpha2ResourceClassList;
716
+ }>;
717
+ /**
718
+ * list or watch objects of kind ResourceClassParameters
719
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
720
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
721
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
722
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
723
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
724
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
725
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
726
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
727
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
728
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
729
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
730
+ */
731
+ listResourceClassParametersForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
732
+ headers: {
733
+ [name: string]: string;
734
+ };
735
+ }): Promise<{
736
+ response: http.IncomingMessage;
737
+ body: V1alpha2ResourceClassParametersList;
738
+ }>;
739
+ /**
740
+ * list or watch objects of kind ResourceSlice
741
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
742
+ * @param allowWatchBookmarks allowWatchBookmarks requests watch events with type \&quot;BOOKMARK\&quot;. Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server\&#39;s discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.
743
+ * @param _continue The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \&quot;next key\&quot;. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.
744
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
745
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
746
+ * @param limit limit is a maximum number of responses to return for a list call. If more items exist, the server will set the &#x60;continue&#x60; field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true. The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.
747
+ * @param resourceVersion resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
748
+ * @param resourceVersionMatch resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset
749
+ * @param sendInitialEvents &#x60;sendInitialEvents&#x3D;true&#x60; may be set together with &#x60;watch&#x3D;true&#x60;. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \&quot;Bookmark\&quot; event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with &#x60;\&quot;k8s.io/initial-events-end\&quot;: \&quot;true\&quot;&#x60; annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When &#x60;sendInitialEvents&#x60; option is set, we require &#x60;resourceVersionMatch&#x60; option to also be set. The semantic of the watch request is as following: - &#x60;resourceVersionMatch&#x60; &#x3D; NotOlderThan is interpreted as \&quot;data at least as new as the provided &#x60;resourceVersion&#x60;\&quot; and the bookmark event is send when the state is synced to a &#x60;resourceVersion&#x60; at least as fresh as the one provided by the ListOptions. If &#x60;resourceVersion&#x60; is unset, this is interpreted as \&quot;consistent read\&quot; and the bookmark event is send when the state is synced at least to the moment when request started being processed. - &#x60;resourceVersionMatch&#x60; set to any other value or unset Invalid error is returned. Defaults to true if &#x60;resourceVersion&#x3D;\&quot;\&quot;&#x60; or &#x60;resourceVersion&#x3D;\&quot;0\&quot;&#x60; (for backward compatibility reasons) and to false otherwise.
750
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
751
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
752
+ */
753
+ listResourceSlice(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
754
+ headers: {
755
+ [name: string]: string;
756
+ };
757
+ }): Promise<{
758
+ response: http.IncomingMessage;
759
+ body: V1alpha2ResourceSliceList;
760
+ }>;
761
+ /**
762
+ * partially update the specified PodSchedulingContext
763
+ * @param name name of the PodSchedulingContext
764
+ * @param namespace object name and auth scope, such as for teams and projects
765
+ * @param body
766
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
767
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
768
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
769
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
770
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
771
+ */
772
+ patchNamespacedPodSchedulingContext(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
773
+ headers: {
774
+ [name: string]: string;
775
+ };
776
+ }): Promise<{
777
+ response: http.IncomingMessage;
778
+ body: V1alpha2PodSchedulingContext;
779
+ }>;
780
+ /**
781
+ * partially update status of the specified PodSchedulingContext
782
+ * @param name name of the PodSchedulingContext
783
+ * @param namespace object name and auth scope, such as for teams and projects
784
+ * @param body
785
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
786
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
787
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
788
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
789
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
790
+ */
791
+ patchNamespacedPodSchedulingContextStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
792
+ headers: {
793
+ [name: string]: string;
794
+ };
795
+ }): Promise<{
796
+ response: http.IncomingMessage;
797
+ body: V1alpha2PodSchedulingContext;
798
+ }>;
799
+ /**
800
+ * partially update the specified ResourceClaim
801
+ * @param name name of the ResourceClaim
802
+ * @param namespace object name and auth scope, such as for teams and projects
803
+ * @param body
804
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
805
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
806
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
807
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
808
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
809
+ */
810
+ patchNamespacedResourceClaim(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
811
+ headers: {
812
+ [name: string]: string;
813
+ };
814
+ }): Promise<{
815
+ response: http.IncomingMessage;
816
+ body: V1alpha2ResourceClaim;
817
+ }>;
818
+ /**
819
+ * partially update the specified ResourceClaimParameters
820
+ * @param name name of the ResourceClaimParameters
821
+ * @param namespace object name and auth scope, such as for teams and projects
822
+ * @param body
823
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
824
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
825
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
826
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
827
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
828
+ */
829
+ patchNamespacedResourceClaimParameters(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
830
+ headers: {
831
+ [name: string]: string;
832
+ };
833
+ }): Promise<{
834
+ response: http.IncomingMessage;
835
+ body: V1alpha2ResourceClaimParameters;
836
+ }>;
837
+ /**
838
+ * partially update status of the specified ResourceClaim
839
+ * @param name name of the ResourceClaim
840
+ * @param namespace object name and auth scope, such as for teams and projects
841
+ * @param body
842
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
843
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
844
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
845
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
846
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
847
+ */
848
+ patchNamespacedResourceClaimStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
849
+ headers: {
850
+ [name: string]: string;
851
+ };
852
+ }): Promise<{
853
+ response: http.IncomingMessage;
854
+ body: V1alpha2ResourceClaim;
855
+ }>;
856
+ /**
857
+ * partially update the specified ResourceClaimTemplate
858
+ * @param name name of the ResourceClaimTemplate
859
+ * @param namespace object name and auth scope, such as for teams and projects
860
+ * @param body
861
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
862
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
863
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
864
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
865
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
866
+ */
867
+ patchNamespacedResourceClaimTemplate(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
868
+ headers: {
869
+ [name: string]: string;
870
+ };
871
+ }): Promise<{
872
+ response: http.IncomingMessage;
873
+ body: V1alpha2ResourceClaimTemplate;
874
+ }>;
875
+ /**
876
+ * partially update the specified ResourceClassParameters
877
+ * @param name name of the ResourceClassParameters
878
+ * @param namespace object name and auth scope, such as for teams and projects
879
+ * @param body
880
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
881
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
882
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
883
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
884
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
885
+ */
886
+ patchNamespacedResourceClassParameters(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
887
+ headers: {
888
+ [name: string]: string;
889
+ };
890
+ }): Promise<{
891
+ response: http.IncomingMessage;
892
+ body: V1alpha2ResourceClassParameters;
893
+ }>;
894
+ /**
895
+ * partially update the specified ResourceClass
896
+ * @param name name of the ResourceClass
897
+ * @param body
898
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
899
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
900
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
901
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
902
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
903
+ */
904
+ patchResourceClass(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
905
+ headers: {
906
+ [name: string]: string;
907
+ };
908
+ }): Promise<{
909
+ response: http.IncomingMessage;
910
+ body: V1alpha2ResourceClass;
911
+ }>;
912
+ /**
913
+ * partially update the specified ResourceSlice
914
+ * @param name name of the ResourceSlice
915
+ * @param body
916
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
917
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
918
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
919
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
920
+ * @param force Force is going to \&quot;force\&quot; Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
921
+ */
922
+ patchResourceSlice(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
923
+ headers: {
924
+ [name: string]: string;
925
+ };
926
+ }): Promise<{
927
+ response: http.IncomingMessage;
928
+ body: V1alpha2ResourceSlice;
929
+ }>;
930
+ /**
931
+ * read the specified PodSchedulingContext
932
+ * @param name name of the PodSchedulingContext
933
+ * @param namespace object name and auth scope, such as for teams and projects
934
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
935
+ */
936
+ readNamespacedPodSchedulingContext(name: string, namespace: string, pretty?: string, options?: {
937
+ headers: {
938
+ [name: string]: string;
939
+ };
940
+ }): Promise<{
941
+ response: http.IncomingMessage;
942
+ body: V1alpha2PodSchedulingContext;
943
+ }>;
944
+ /**
945
+ * read status of the specified PodSchedulingContext
946
+ * @param name name of the PodSchedulingContext
947
+ * @param namespace object name and auth scope, such as for teams and projects
948
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
949
+ */
950
+ readNamespacedPodSchedulingContextStatus(name: string, namespace: string, pretty?: string, options?: {
951
+ headers: {
952
+ [name: string]: string;
953
+ };
954
+ }): Promise<{
955
+ response: http.IncomingMessage;
956
+ body: V1alpha2PodSchedulingContext;
957
+ }>;
958
+ /**
959
+ * read the specified ResourceClaim
960
+ * @param name name of the ResourceClaim
961
+ * @param namespace object name and auth scope, such as for teams and projects
962
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
963
+ */
964
+ readNamespacedResourceClaim(name: string, namespace: string, pretty?: string, options?: {
965
+ headers: {
966
+ [name: string]: string;
967
+ };
968
+ }): Promise<{
969
+ response: http.IncomingMessage;
970
+ body: V1alpha2ResourceClaim;
971
+ }>;
972
+ /**
973
+ * read the specified ResourceClaimParameters
974
+ * @param name name of the ResourceClaimParameters
975
+ * @param namespace object name and auth scope, such as for teams and projects
976
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
977
+ */
978
+ readNamespacedResourceClaimParameters(name: string, namespace: string, pretty?: string, options?: {
979
+ headers: {
980
+ [name: string]: string;
981
+ };
982
+ }): Promise<{
983
+ response: http.IncomingMessage;
984
+ body: V1alpha2ResourceClaimParameters;
985
+ }>;
986
+ /**
987
+ * read status of the specified ResourceClaim
988
+ * @param name name of the ResourceClaim
989
+ * @param namespace object name and auth scope, such as for teams and projects
990
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
991
+ */
992
+ readNamespacedResourceClaimStatus(name: string, namespace: string, pretty?: string, options?: {
993
+ headers: {
994
+ [name: string]: string;
995
+ };
996
+ }): Promise<{
997
+ response: http.IncomingMessage;
998
+ body: V1alpha2ResourceClaim;
999
+ }>;
1000
+ /**
1001
+ * read the specified ResourceClaimTemplate
1002
+ * @param name name of the ResourceClaimTemplate
1003
+ * @param namespace object name and auth scope, such as for teams and projects
1004
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1005
+ */
1006
+ readNamespacedResourceClaimTemplate(name: string, namespace: string, pretty?: string, options?: {
1007
+ headers: {
1008
+ [name: string]: string;
1009
+ };
1010
+ }): Promise<{
1011
+ response: http.IncomingMessage;
1012
+ body: V1alpha2ResourceClaimTemplate;
1013
+ }>;
1014
+ /**
1015
+ * read the specified ResourceClassParameters
1016
+ * @param name name of the ResourceClassParameters
1017
+ * @param namespace object name and auth scope, such as for teams and projects
1018
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1019
+ */
1020
+ readNamespacedResourceClassParameters(name: string, namespace: string, pretty?: string, options?: {
1021
+ headers: {
1022
+ [name: string]: string;
1023
+ };
1024
+ }): Promise<{
1025
+ response: http.IncomingMessage;
1026
+ body: V1alpha2ResourceClassParameters;
1027
+ }>;
1028
+ /**
1029
+ * read the specified ResourceClass
1030
+ * @param name name of the ResourceClass
1031
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1032
+ */
1033
+ readResourceClass(name: string, pretty?: string, options?: {
1034
+ headers: {
1035
+ [name: string]: string;
1036
+ };
1037
+ }): Promise<{
1038
+ response: http.IncomingMessage;
1039
+ body: V1alpha2ResourceClass;
1040
+ }>;
1041
+ /**
1042
+ * read the specified ResourceSlice
1043
+ * @param name name of the ResourceSlice
1044
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1045
+ */
1046
+ readResourceSlice(name: string, pretty?: string, options?: {
1047
+ headers: {
1048
+ [name: string]: string;
1049
+ };
1050
+ }): Promise<{
1051
+ response: http.IncomingMessage;
1052
+ body: V1alpha2ResourceSlice;
1053
+ }>;
1054
+ /**
1055
+ * replace the specified PodSchedulingContext
1056
+ * @param name name of the PodSchedulingContext
1057
+ * @param namespace object name and auth scope, such as for teams and projects
1058
+ * @param body
1059
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1060
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1061
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1062
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1063
+ */
1064
+ replaceNamespacedPodSchedulingContext(name: string, namespace: string, body: V1alpha2PodSchedulingContext, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1065
+ headers: {
1066
+ [name: string]: string;
1067
+ };
1068
+ }): Promise<{
1069
+ response: http.IncomingMessage;
1070
+ body: V1alpha2PodSchedulingContext;
1071
+ }>;
1072
+ /**
1073
+ * replace status of the specified PodSchedulingContext
1074
+ * @param name name of the PodSchedulingContext
1075
+ * @param namespace object name and auth scope, such as for teams and projects
1076
+ * @param body
1077
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1078
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1079
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1080
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1081
+ */
1082
+ replaceNamespacedPodSchedulingContextStatus(name: string, namespace: string, body: V1alpha2PodSchedulingContext, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1083
+ headers: {
1084
+ [name: string]: string;
1085
+ };
1086
+ }): Promise<{
1087
+ response: http.IncomingMessage;
1088
+ body: V1alpha2PodSchedulingContext;
1089
+ }>;
1090
+ /**
1091
+ * replace the specified ResourceClaim
1092
+ * @param name name of the ResourceClaim
1093
+ * @param namespace object name and auth scope, such as for teams and projects
1094
+ * @param body
1095
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1096
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1097
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1098
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1099
+ */
1100
+ replaceNamespacedResourceClaim(name: string, namespace: string, body: V1alpha2ResourceClaim, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1101
+ headers: {
1102
+ [name: string]: string;
1103
+ };
1104
+ }): Promise<{
1105
+ response: http.IncomingMessage;
1106
+ body: V1alpha2ResourceClaim;
1107
+ }>;
1108
+ /**
1109
+ * replace the specified ResourceClaimParameters
1110
+ * @param name name of the ResourceClaimParameters
1111
+ * @param namespace object name and auth scope, such as for teams and projects
1112
+ * @param body
1113
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1114
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1115
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1116
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1117
+ */
1118
+ replaceNamespacedResourceClaimParameters(name: string, namespace: string, body: V1alpha2ResourceClaimParameters, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1119
+ headers: {
1120
+ [name: string]: string;
1121
+ };
1122
+ }): Promise<{
1123
+ response: http.IncomingMessage;
1124
+ body: V1alpha2ResourceClaimParameters;
1125
+ }>;
1126
+ /**
1127
+ * replace status of the specified ResourceClaim
1128
+ * @param name name of the ResourceClaim
1129
+ * @param namespace object name and auth scope, such as for teams and projects
1130
+ * @param body
1131
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1132
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1133
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1134
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1135
+ */
1136
+ replaceNamespacedResourceClaimStatus(name: string, namespace: string, body: V1alpha2ResourceClaim, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1137
+ headers: {
1138
+ [name: string]: string;
1139
+ };
1140
+ }): Promise<{
1141
+ response: http.IncomingMessage;
1142
+ body: V1alpha2ResourceClaim;
1143
+ }>;
1144
+ /**
1145
+ * replace the specified ResourceClaimTemplate
1146
+ * @param name name of the ResourceClaimTemplate
1147
+ * @param namespace object name and auth scope, such as for teams and projects
1148
+ * @param body
1149
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1150
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1151
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1152
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1153
+ */
1154
+ replaceNamespacedResourceClaimTemplate(name: string, namespace: string, body: V1alpha2ResourceClaimTemplate, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1155
+ headers: {
1156
+ [name: string]: string;
1157
+ };
1158
+ }): Promise<{
1159
+ response: http.IncomingMessage;
1160
+ body: V1alpha2ResourceClaimTemplate;
1161
+ }>;
1162
+ /**
1163
+ * replace the specified ResourceClassParameters
1164
+ * @param name name of the ResourceClassParameters
1165
+ * @param namespace object name and auth scope, such as for teams and projects
1166
+ * @param body
1167
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1168
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1169
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1170
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1171
+ */
1172
+ replaceNamespacedResourceClassParameters(name: string, namespace: string, body: V1alpha2ResourceClassParameters, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1173
+ headers: {
1174
+ [name: string]: string;
1175
+ };
1176
+ }): Promise<{
1177
+ response: http.IncomingMessage;
1178
+ body: V1alpha2ResourceClassParameters;
1179
+ }>;
1180
+ /**
1181
+ * replace the specified ResourceClass
1182
+ * @param name name of the ResourceClass
1183
+ * @param body
1184
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1185
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1186
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1187
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1188
+ */
1189
+ replaceResourceClass(name: string, body: V1alpha2ResourceClass, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1190
+ headers: {
1191
+ [name: string]: string;
1192
+ };
1193
+ }): Promise<{
1194
+ response: http.IncomingMessage;
1195
+ body: V1alpha2ResourceClass;
1196
+ }>;
1197
+ /**
1198
+ * replace the specified ResourceSlice
1199
+ * @param name name of the ResourceSlice
1200
+ * @param body
1201
+ * @param pretty If \&#39;true\&#39;, then the output is pretty printed. Defaults to \&#39;false\&#39; unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
1202
+ * @param dryRun When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
1203
+ * @param fieldManager fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
1204
+ * @param fieldValidation fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
1205
+ */
1206
+ replaceResourceSlice(name: string, body: V1alpha2ResourceSlice, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1207
+ headers: {
1208
+ [name: string]: string;
1209
+ };
1210
+ }): Promise<{
1211
+ response: http.IncomingMessage;
1212
+ body: V1alpha2ResourceSlice;
1213
+ }>;
1214
+ }