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,3687 @@
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 { AuthenticationV1TokenRequest } from '../model/authenticationV1TokenRequest';
14
+ import { CoreV1Event } from '../model/coreV1Event';
15
+ import { CoreV1EventList } from '../model/coreV1EventList';
16
+ import { V1APIResourceList } from '../model/v1APIResourceList';
17
+ import { V1Binding } from '../model/v1Binding';
18
+ import { V1ComponentStatus } from '../model/v1ComponentStatus';
19
+ import { V1ComponentStatusList } from '../model/v1ComponentStatusList';
20
+ import { V1ConfigMap } from '../model/v1ConfigMap';
21
+ import { V1ConfigMapList } from '../model/v1ConfigMapList';
22
+ import { V1DeleteOptions } from '../model/v1DeleteOptions';
23
+ import { V1Endpoints } from '../model/v1Endpoints';
24
+ import { V1EndpointsList } from '../model/v1EndpointsList';
25
+ import { V1Eviction } from '../model/v1Eviction';
26
+ import { V1LimitRange } from '../model/v1LimitRange';
27
+ import { V1LimitRangeList } from '../model/v1LimitRangeList';
28
+ import { V1Namespace } from '../model/v1Namespace';
29
+ import { V1NamespaceList } from '../model/v1NamespaceList';
30
+ import { V1Node } from '../model/v1Node';
31
+ import { V1NodeList } from '../model/v1NodeList';
32
+ import { V1PersistentVolume } from '../model/v1PersistentVolume';
33
+ import { V1PersistentVolumeClaim } from '../model/v1PersistentVolumeClaim';
34
+ import { V1PersistentVolumeClaimList } from '../model/v1PersistentVolumeClaimList';
35
+ import { V1PersistentVolumeList } from '../model/v1PersistentVolumeList';
36
+ import { V1Pod } from '../model/v1Pod';
37
+ import { V1PodList } from '../model/v1PodList';
38
+ import { V1PodTemplate } from '../model/v1PodTemplate';
39
+ import { V1PodTemplateList } from '../model/v1PodTemplateList';
40
+ import { V1ReplicationController } from '../model/v1ReplicationController';
41
+ import { V1ReplicationControllerList } from '../model/v1ReplicationControllerList';
42
+ import { V1ResourceQuota } from '../model/v1ResourceQuota';
43
+ import { V1ResourceQuotaList } from '../model/v1ResourceQuotaList';
44
+ import { V1Scale } from '../model/v1Scale';
45
+ import { V1Secret } from '../model/v1Secret';
46
+ import { V1SecretList } from '../model/v1SecretList';
47
+ import { V1Service } from '../model/v1Service';
48
+ import { V1ServiceAccount } from '../model/v1ServiceAccount';
49
+ import { V1ServiceAccountList } from '../model/v1ServiceAccountList';
50
+ import { V1ServiceList } from '../model/v1ServiceList';
51
+ import { V1Status } from '../model/v1Status';
52
+ import { Authentication, Interceptor } from '../model/models';
53
+ import { ApiKeyAuth } from '../model/models';
54
+ export declare enum CoreV1ApiApiKeys {
55
+ BearerToken = 0
56
+ }
57
+ export declare class CoreV1Api {
58
+ protected _basePath: string;
59
+ protected _defaultHeaders: any;
60
+ protected _useQuerystring: boolean;
61
+ protected authentications: {
62
+ default: Authentication;
63
+ BearerToken: ApiKeyAuth;
64
+ };
65
+ protected interceptors: Interceptor[];
66
+ constructor(basePath?: string);
67
+ set useQuerystring(value: boolean);
68
+ set basePath(basePath: string);
69
+ set defaultHeaders(defaultHeaders: any);
70
+ get defaultHeaders(): any;
71
+ get basePath(): string;
72
+ setDefaultAuthentication(auth: Authentication): void;
73
+ setApiKey(key: CoreV1ApiApiKeys, value: string): void;
74
+ addInterceptor(interceptor: Interceptor): void;
75
+ /**
76
+ * connect DELETE requests to proxy of Pod
77
+ * @param name name of the PodProxyOptions
78
+ * @param namespace object name and auth scope, such as for teams and projects
79
+ * @param path Path is the URL path to use for the current proxy request to pod.
80
+ */
81
+ connectDeleteNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
82
+ headers: {
83
+ [name: string]: string;
84
+ };
85
+ }): Promise<{
86
+ response: http.IncomingMessage;
87
+ body: string;
88
+ }>;
89
+ /**
90
+ * connect DELETE requests to proxy of Pod
91
+ * @param name name of the PodProxyOptions
92
+ * @param namespace object name and auth scope, such as for teams and projects
93
+ * @param path path to the resource
94
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
95
+ */
96
+ connectDeleteNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
97
+ headers: {
98
+ [name: string]: string;
99
+ };
100
+ }): Promise<{
101
+ response: http.IncomingMessage;
102
+ body: string;
103
+ }>;
104
+ /**
105
+ * connect DELETE requests to proxy of Service
106
+ * @param name name of the ServiceProxyOptions
107
+ * @param namespace object name and auth scope, such as for teams and projects
108
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
109
+ */
110
+ connectDeleteNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
111
+ headers: {
112
+ [name: string]: string;
113
+ };
114
+ }): Promise<{
115
+ response: http.IncomingMessage;
116
+ body: string;
117
+ }>;
118
+ /**
119
+ * connect DELETE requests to proxy of Service
120
+ * @param name name of the ServiceProxyOptions
121
+ * @param namespace object name and auth scope, such as for teams and projects
122
+ * @param path path to the resource
123
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
124
+ */
125
+ connectDeleteNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
126
+ headers: {
127
+ [name: string]: string;
128
+ };
129
+ }): Promise<{
130
+ response: http.IncomingMessage;
131
+ body: string;
132
+ }>;
133
+ /**
134
+ * connect DELETE requests to proxy of Node
135
+ * @param name name of the NodeProxyOptions
136
+ * @param path Path is the URL path to use for the current proxy request to node.
137
+ */
138
+ connectDeleteNodeProxy(name: string, path?: string, options?: {
139
+ headers: {
140
+ [name: string]: string;
141
+ };
142
+ }): Promise<{
143
+ response: http.IncomingMessage;
144
+ body: string;
145
+ }>;
146
+ /**
147
+ * connect DELETE requests to proxy of Node
148
+ * @param name name of the NodeProxyOptions
149
+ * @param path path to the resource
150
+ * @param path2 Path is the URL path to use for the current proxy request to node.
151
+ */
152
+ connectDeleteNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
153
+ headers: {
154
+ [name: string]: string;
155
+ };
156
+ }): Promise<{
157
+ response: http.IncomingMessage;
158
+ body: string;
159
+ }>;
160
+ /**
161
+ * connect GET requests to attach of Pod
162
+ * @param name name of the PodAttachOptions
163
+ * @param namespace object name and auth scope, such as for teams and projects
164
+ * @param container The container in which to execute the command. Defaults to only container if there is only one container in the pod.
165
+ * @param stderr Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.
166
+ * @param stdin Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.
167
+ * @param stdout Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.
168
+ * @param tty TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.
169
+ */
170
+ connectGetNamespacedPodAttach(name: string, namespace: string, container?: string, stderr?: boolean, stdin?: boolean, stdout?: boolean, tty?: boolean, options?: {
171
+ headers: {
172
+ [name: string]: string;
173
+ };
174
+ }): Promise<{
175
+ response: http.IncomingMessage;
176
+ body: string;
177
+ }>;
178
+ /**
179
+ * connect GET requests to exec of Pod
180
+ * @param name name of the PodExecOptions
181
+ * @param namespace object name and auth scope, such as for teams and projects
182
+ * @param command Command is the remote command to execute. argv array. Not executed within a shell.
183
+ * @param container Container in which to execute the command. Defaults to only container if there is only one container in the pod.
184
+ * @param stderr Redirect the standard error stream of the pod for this call.
185
+ * @param stdin Redirect the standard input stream of the pod for this call. Defaults to false.
186
+ * @param stdout Redirect the standard output stream of the pod for this call.
187
+ * @param tty TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.
188
+ */
189
+ connectGetNamespacedPodExec(name: string, namespace: string, command?: string, container?: string, stderr?: boolean, stdin?: boolean, stdout?: boolean, tty?: boolean, options?: {
190
+ headers: {
191
+ [name: string]: string;
192
+ };
193
+ }): Promise<{
194
+ response: http.IncomingMessage;
195
+ body: string;
196
+ }>;
197
+ /**
198
+ * connect GET requests to portforward of Pod
199
+ * @param name name of the PodPortForwardOptions
200
+ * @param namespace object name and auth scope, such as for teams and projects
201
+ * @param ports List of ports to forward Required when using WebSockets
202
+ */
203
+ connectGetNamespacedPodPortforward(name: string, namespace: string, ports?: number, options?: {
204
+ headers: {
205
+ [name: string]: string;
206
+ };
207
+ }): Promise<{
208
+ response: http.IncomingMessage;
209
+ body: string;
210
+ }>;
211
+ /**
212
+ * connect GET requests to proxy of Pod
213
+ * @param name name of the PodProxyOptions
214
+ * @param namespace object name and auth scope, such as for teams and projects
215
+ * @param path Path is the URL path to use for the current proxy request to pod.
216
+ */
217
+ connectGetNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
218
+ headers: {
219
+ [name: string]: string;
220
+ };
221
+ }): Promise<{
222
+ response: http.IncomingMessage;
223
+ body: string;
224
+ }>;
225
+ /**
226
+ * connect GET requests to proxy of Pod
227
+ * @param name name of the PodProxyOptions
228
+ * @param namespace object name and auth scope, such as for teams and projects
229
+ * @param path path to the resource
230
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
231
+ */
232
+ connectGetNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
233
+ headers: {
234
+ [name: string]: string;
235
+ };
236
+ }): Promise<{
237
+ response: http.IncomingMessage;
238
+ body: string;
239
+ }>;
240
+ /**
241
+ * connect GET requests to proxy of Service
242
+ * @param name name of the ServiceProxyOptions
243
+ * @param namespace object name and auth scope, such as for teams and projects
244
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
245
+ */
246
+ connectGetNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
247
+ headers: {
248
+ [name: string]: string;
249
+ };
250
+ }): Promise<{
251
+ response: http.IncomingMessage;
252
+ body: string;
253
+ }>;
254
+ /**
255
+ * connect GET requests to proxy of Service
256
+ * @param name name of the ServiceProxyOptions
257
+ * @param namespace object name and auth scope, such as for teams and projects
258
+ * @param path path to the resource
259
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
260
+ */
261
+ connectGetNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
262
+ headers: {
263
+ [name: string]: string;
264
+ };
265
+ }): Promise<{
266
+ response: http.IncomingMessage;
267
+ body: string;
268
+ }>;
269
+ /**
270
+ * connect GET requests to proxy of Node
271
+ * @param name name of the NodeProxyOptions
272
+ * @param path Path is the URL path to use for the current proxy request to node.
273
+ */
274
+ connectGetNodeProxy(name: string, path?: string, options?: {
275
+ headers: {
276
+ [name: string]: string;
277
+ };
278
+ }): Promise<{
279
+ response: http.IncomingMessage;
280
+ body: string;
281
+ }>;
282
+ /**
283
+ * connect GET requests to proxy of Node
284
+ * @param name name of the NodeProxyOptions
285
+ * @param path path to the resource
286
+ * @param path2 Path is the URL path to use for the current proxy request to node.
287
+ */
288
+ connectGetNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
289
+ headers: {
290
+ [name: string]: string;
291
+ };
292
+ }): Promise<{
293
+ response: http.IncomingMessage;
294
+ body: string;
295
+ }>;
296
+ /**
297
+ * connect HEAD requests to proxy of Pod
298
+ * @param name name of the PodProxyOptions
299
+ * @param namespace object name and auth scope, such as for teams and projects
300
+ * @param path Path is the URL path to use for the current proxy request to pod.
301
+ */
302
+ connectHeadNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
303
+ headers: {
304
+ [name: string]: string;
305
+ };
306
+ }): Promise<{
307
+ response: http.IncomingMessage;
308
+ body: string;
309
+ }>;
310
+ /**
311
+ * connect HEAD requests to proxy of Pod
312
+ * @param name name of the PodProxyOptions
313
+ * @param namespace object name and auth scope, such as for teams and projects
314
+ * @param path path to the resource
315
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
316
+ */
317
+ connectHeadNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
318
+ headers: {
319
+ [name: string]: string;
320
+ };
321
+ }): Promise<{
322
+ response: http.IncomingMessage;
323
+ body: string;
324
+ }>;
325
+ /**
326
+ * connect HEAD requests to proxy of Service
327
+ * @param name name of the ServiceProxyOptions
328
+ * @param namespace object name and auth scope, such as for teams and projects
329
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
330
+ */
331
+ connectHeadNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
332
+ headers: {
333
+ [name: string]: string;
334
+ };
335
+ }): Promise<{
336
+ response: http.IncomingMessage;
337
+ body: string;
338
+ }>;
339
+ /**
340
+ * connect HEAD requests to proxy of Service
341
+ * @param name name of the ServiceProxyOptions
342
+ * @param namespace object name and auth scope, such as for teams and projects
343
+ * @param path path to the resource
344
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
345
+ */
346
+ connectHeadNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
347
+ headers: {
348
+ [name: string]: string;
349
+ };
350
+ }): Promise<{
351
+ response: http.IncomingMessage;
352
+ body: string;
353
+ }>;
354
+ /**
355
+ * connect HEAD requests to proxy of Node
356
+ * @param name name of the NodeProxyOptions
357
+ * @param path Path is the URL path to use for the current proxy request to node.
358
+ */
359
+ connectHeadNodeProxy(name: string, path?: string, options?: {
360
+ headers: {
361
+ [name: string]: string;
362
+ };
363
+ }): Promise<{
364
+ response: http.IncomingMessage;
365
+ body: string;
366
+ }>;
367
+ /**
368
+ * connect HEAD requests to proxy of Node
369
+ * @param name name of the NodeProxyOptions
370
+ * @param path path to the resource
371
+ * @param path2 Path is the URL path to use for the current proxy request to node.
372
+ */
373
+ connectHeadNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
374
+ headers: {
375
+ [name: string]: string;
376
+ };
377
+ }): Promise<{
378
+ response: http.IncomingMessage;
379
+ body: string;
380
+ }>;
381
+ /**
382
+ * connect OPTIONS requests to proxy of Pod
383
+ * @param name name of the PodProxyOptions
384
+ * @param namespace object name and auth scope, such as for teams and projects
385
+ * @param path Path is the URL path to use for the current proxy request to pod.
386
+ */
387
+ connectOptionsNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
388
+ headers: {
389
+ [name: string]: string;
390
+ };
391
+ }): Promise<{
392
+ response: http.IncomingMessage;
393
+ body: string;
394
+ }>;
395
+ /**
396
+ * connect OPTIONS requests to proxy of Pod
397
+ * @param name name of the PodProxyOptions
398
+ * @param namespace object name and auth scope, such as for teams and projects
399
+ * @param path path to the resource
400
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
401
+ */
402
+ connectOptionsNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
403
+ headers: {
404
+ [name: string]: string;
405
+ };
406
+ }): Promise<{
407
+ response: http.IncomingMessage;
408
+ body: string;
409
+ }>;
410
+ /**
411
+ * connect OPTIONS requests to proxy of Service
412
+ * @param name name of the ServiceProxyOptions
413
+ * @param namespace object name and auth scope, such as for teams and projects
414
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
415
+ */
416
+ connectOptionsNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
417
+ headers: {
418
+ [name: string]: string;
419
+ };
420
+ }): Promise<{
421
+ response: http.IncomingMessage;
422
+ body: string;
423
+ }>;
424
+ /**
425
+ * connect OPTIONS requests to proxy of Service
426
+ * @param name name of the ServiceProxyOptions
427
+ * @param namespace object name and auth scope, such as for teams and projects
428
+ * @param path path to the resource
429
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
430
+ */
431
+ connectOptionsNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
432
+ headers: {
433
+ [name: string]: string;
434
+ };
435
+ }): Promise<{
436
+ response: http.IncomingMessage;
437
+ body: string;
438
+ }>;
439
+ /**
440
+ * connect OPTIONS requests to proxy of Node
441
+ * @param name name of the NodeProxyOptions
442
+ * @param path Path is the URL path to use for the current proxy request to node.
443
+ */
444
+ connectOptionsNodeProxy(name: string, path?: string, options?: {
445
+ headers: {
446
+ [name: string]: string;
447
+ };
448
+ }): Promise<{
449
+ response: http.IncomingMessage;
450
+ body: string;
451
+ }>;
452
+ /**
453
+ * connect OPTIONS requests to proxy of Node
454
+ * @param name name of the NodeProxyOptions
455
+ * @param path path to the resource
456
+ * @param path2 Path is the URL path to use for the current proxy request to node.
457
+ */
458
+ connectOptionsNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
459
+ headers: {
460
+ [name: string]: string;
461
+ };
462
+ }): Promise<{
463
+ response: http.IncomingMessage;
464
+ body: string;
465
+ }>;
466
+ /**
467
+ * connect PATCH requests to proxy of Pod
468
+ * @param name name of the PodProxyOptions
469
+ * @param namespace object name and auth scope, such as for teams and projects
470
+ * @param path Path is the URL path to use for the current proxy request to pod.
471
+ */
472
+ connectPatchNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
473
+ headers: {
474
+ [name: string]: string;
475
+ };
476
+ }): Promise<{
477
+ response: http.IncomingMessage;
478
+ body: string;
479
+ }>;
480
+ /**
481
+ * connect PATCH requests to proxy of Pod
482
+ * @param name name of the PodProxyOptions
483
+ * @param namespace object name and auth scope, such as for teams and projects
484
+ * @param path path to the resource
485
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
486
+ */
487
+ connectPatchNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
488
+ headers: {
489
+ [name: string]: string;
490
+ };
491
+ }): Promise<{
492
+ response: http.IncomingMessage;
493
+ body: string;
494
+ }>;
495
+ /**
496
+ * connect PATCH requests to proxy of Service
497
+ * @param name name of the ServiceProxyOptions
498
+ * @param namespace object name and auth scope, such as for teams and projects
499
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
500
+ */
501
+ connectPatchNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
502
+ headers: {
503
+ [name: string]: string;
504
+ };
505
+ }): Promise<{
506
+ response: http.IncomingMessage;
507
+ body: string;
508
+ }>;
509
+ /**
510
+ * connect PATCH requests to proxy of Service
511
+ * @param name name of the ServiceProxyOptions
512
+ * @param namespace object name and auth scope, such as for teams and projects
513
+ * @param path path to the resource
514
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
515
+ */
516
+ connectPatchNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
517
+ headers: {
518
+ [name: string]: string;
519
+ };
520
+ }): Promise<{
521
+ response: http.IncomingMessage;
522
+ body: string;
523
+ }>;
524
+ /**
525
+ * connect PATCH requests to proxy of Node
526
+ * @param name name of the NodeProxyOptions
527
+ * @param path Path is the URL path to use for the current proxy request to node.
528
+ */
529
+ connectPatchNodeProxy(name: string, path?: string, options?: {
530
+ headers: {
531
+ [name: string]: string;
532
+ };
533
+ }): Promise<{
534
+ response: http.IncomingMessage;
535
+ body: string;
536
+ }>;
537
+ /**
538
+ * connect PATCH requests to proxy of Node
539
+ * @param name name of the NodeProxyOptions
540
+ * @param path path to the resource
541
+ * @param path2 Path is the URL path to use for the current proxy request to node.
542
+ */
543
+ connectPatchNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
544
+ headers: {
545
+ [name: string]: string;
546
+ };
547
+ }): Promise<{
548
+ response: http.IncomingMessage;
549
+ body: string;
550
+ }>;
551
+ /**
552
+ * connect POST requests to attach of Pod
553
+ * @param name name of the PodAttachOptions
554
+ * @param namespace object name and auth scope, such as for teams and projects
555
+ * @param container The container in which to execute the command. Defaults to only container if there is only one container in the pod.
556
+ * @param stderr Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.
557
+ * @param stdin Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.
558
+ * @param stdout Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.
559
+ * @param tty TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.
560
+ */
561
+ connectPostNamespacedPodAttach(name: string, namespace: string, container?: string, stderr?: boolean, stdin?: boolean, stdout?: boolean, tty?: boolean, options?: {
562
+ headers: {
563
+ [name: string]: string;
564
+ };
565
+ }): Promise<{
566
+ response: http.IncomingMessage;
567
+ body: string;
568
+ }>;
569
+ /**
570
+ * connect POST requests to exec of Pod
571
+ * @param name name of the PodExecOptions
572
+ * @param namespace object name and auth scope, such as for teams and projects
573
+ * @param command Command is the remote command to execute. argv array. Not executed within a shell.
574
+ * @param container Container in which to execute the command. Defaults to only container if there is only one container in the pod.
575
+ * @param stderr Redirect the standard error stream of the pod for this call.
576
+ * @param stdin Redirect the standard input stream of the pod for this call. Defaults to false.
577
+ * @param stdout Redirect the standard output stream of the pod for this call.
578
+ * @param tty TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.
579
+ */
580
+ connectPostNamespacedPodExec(name: string, namespace: string, command?: string, container?: string, stderr?: boolean, stdin?: boolean, stdout?: boolean, tty?: boolean, options?: {
581
+ headers: {
582
+ [name: string]: string;
583
+ };
584
+ }): Promise<{
585
+ response: http.IncomingMessage;
586
+ body: string;
587
+ }>;
588
+ /**
589
+ * connect POST requests to portforward of Pod
590
+ * @param name name of the PodPortForwardOptions
591
+ * @param namespace object name and auth scope, such as for teams and projects
592
+ * @param ports List of ports to forward Required when using WebSockets
593
+ */
594
+ connectPostNamespacedPodPortforward(name: string, namespace: string, ports?: number, options?: {
595
+ headers: {
596
+ [name: string]: string;
597
+ };
598
+ }): Promise<{
599
+ response: http.IncomingMessage;
600
+ body: string;
601
+ }>;
602
+ /**
603
+ * connect POST requests to proxy of Pod
604
+ * @param name name of the PodProxyOptions
605
+ * @param namespace object name and auth scope, such as for teams and projects
606
+ * @param path Path is the URL path to use for the current proxy request to pod.
607
+ */
608
+ connectPostNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
609
+ headers: {
610
+ [name: string]: string;
611
+ };
612
+ }): Promise<{
613
+ response: http.IncomingMessage;
614
+ body: string;
615
+ }>;
616
+ /**
617
+ * connect POST requests to proxy of Pod
618
+ * @param name name of the PodProxyOptions
619
+ * @param namespace object name and auth scope, such as for teams and projects
620
+ * @param path path to the resource
621
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
622
+ */
623
+ connectPostNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
624
+ headers: {
625
+ [name: string]: string;
626
+ };
627
+ }): Promise<{
628
+ response: http.IncomingMessage;
629
+ body: string;
630
+ }>;
631
+ /**
632
+ * connect POST requests to proxy of Service
633
+ * @param name name of the ServiceProxyOptions
634
+ * @param namespace object name and auth scope, such as for teams and projects
635
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
636
+ */
637
+ connectPostNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
638
+ headers: {
639
+ [name: string]: string;
640
+ };
641
+ }): Promise<{
642
+ response: http.IncomingMessage;
643
+ body: string;
644
+ }>;
645
+ /**
646
+ * connect POST requests to proxy of Service
647
+ * @param name name of the ServiceProxyOptions
648
+ * @param namespace object name and auth scope, such as for teams and projects
649
+ * @param path path to the resource
650
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
651
+ */
652
+ connectPostNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
653
+ headers: {
654
+ [name: string]: string;
655
+ };
656
+ }): Promise<{
657
+ response: http.IncomingMessage;
658
+ body: string;
659
+ }>;
660
+ /**
661
+ * connect POST requests to proxy of Node
662
+ * @param name name of the NodeProxyOptions
663
+ * @param path Path is the URL path to use for the current proxy request to node.
664
+ */
665
+ connectPostNodeProxy(name: string, path?: string, options?: {
666
+ headers: {
667
+ [name: string]: string;
668
+ };
669
+ }): Promise<{
670
+ response: http.IncomingMessage;
671
+ body: string;
672
+ }>;
673
+ /**
674
+ * connect POST requests to proxy of Node
675
+ * @param name name of the NodeProxyOptions
676
+ * @param path path to the resource
677
+ * @param path2 Path is the URL path to use for the current proxy request to node.
678
+ */
679
+ connectPostNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
680
+ headers: {
681
+ [name: string]: string;
682
+ };
683
+ }): Promise<{
684
+ response: http.IncomingMessage;
685
+ body: string;
686
+ }>;
687
+ /**
688
+ * connect PUT requests to proxy of Pod
689
+ * @param name name of the PodProxyOptions
690
+ * @param namespace object name and auth scope, such as for teams and projects
691
+ * @param path Path is the URL path to use for the current proxy request to pod.
692
+ */
693
+ connectPutNamespacedPodProxy(name: string, namespace: string, path?: string, options?: {
694
+ headers: {
695
+ [name: string]: string;
696
+ };
697
+ }): Promise<{
698
+ response: http.IncomingMessage;
699
+ body: string;
700
+ }>;
701
+ /**
702
+ * connect PUT requests to proxy of Pod
703
+ * @param name name of the PodProxyOptions
704
+ * @param namespace object name and auth scope, such as for teams and projects
705
+ * @param path path to the resource
706
+ * @param path2 Path is the URL path to use for the current proxy request to pod.
707
+ */
708
+ connectPutNamespacedPodProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
709
+ headers: {
710
+ [name: string]: string;
711
+ };
712
+ }): Promise<{
713
+ response: http.IncomingMessage;
714
+ body: string;
715
+ }>;
716
+ /**
717
+ * connect PUT requests to proxy of Service
718
+ * @param name name of the ServiceProxyOptions
719
+ * @param namespace object name and auth scope, such as for teams and projects
720
+ * @param path Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
721
+ */
722
+ connectPutNamespacedServiceProxy(name: string, namespace: string, path?: string, options?: {
723
+ headers: {
724
+ [name: string]: string;
725
+ };
726
+ }): Promise<{
727
+ response: http.IncomingMessage;
728
+ body: string;
729
+ }>;
730
+ /**
731
+ * connect PUT requests to proxy of Service
732
+ * @param name name of the ServiceProxyOptions
733
+ * @param namespace object name and auth scope, such as for teams and projects
734
+ * @param path path to the resource
735
+ * @param path2 Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q&#x3D;user:kimchy. Path is _search?q&#x3D;user:kimchy.
736
+ */
737
+ connectPutNamespacedServiceProxyWithPath(name: string, namespace: string, path: string, path2?: string, options?: {
738
+ headers: {
739
+ [name: string]: string;
740
+ };
741
+ }): Promise<{
742
+ response: http.IncomingMessage;
743
+ body: string;
744
+ }>;
745
+ /**
746
+ * connect PUT requests to proxy of Node
747
+ * @param name name of the NodeProxyOptions
748
+ * @param path Path is the URL path to use for the current proxy request to node.
749
+ */
750
+ connectPutNodeProxy(name: string, path?: string, options?: {
751
+ headers: {
752
+ [name: string]: string;
753
+ };
754
+ }): Promise<{
755
+ response: http.IncomingMessage;
756
+ body: string;
757
+ }>;
758
+ /**
759
+ * connect PUT requests to proxy of Node
760
+ * @param name name of the NodeProxyOptions
761
+ * @param path path to the resource
762
+ * @param path2 Path is the URL path to use for the current proxy request to node.
763
+ */
764
+ connectPutNodeProxyWithPath(name: string, path: string, path2?: string, options?: {
765
+ headers: {
766
+ [name: string]: string;
767
+ };
768
+ }): Promise<{
769
+ response: http.IncomingMessage;
770
+ body: string;
771
+ }>;
772
+ /**
773
+ * create a Namespace
774
+ * @param body
775
+ * @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).
776
+ * @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
777
+ * @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.
778
+ * @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.
779
+ */
780
+ createNamespace(body: V1Namespace, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
781
+ headers: {
782
+ [name: string]: string;
783
+ };
784
+ }): Promise<{
785
+ response: http.IncomingMessage;
786
+ body: V1Namespace;
787
+ }>;
788
+ /**
789
+ * create a Binding
790
+ * @param namespace object name and auth scope, such as for teams and projects
791
+ * @param body
792
+ * @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
793
+ * @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.
794
+ * @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.
795
+ * @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).
796
+ */
797
+ createNamespacedBinding(namespace: string, body: V1Binding, dryRun?: string, fieldManager?: string, fieldValidation?: string, pretty?: string, options?: {
798
+ headers: {
799
+ [name: string]: string;
800
+ };
801
+ }): Promise<{
802
+ response: http.IncomingMessage;
803
+ body: V1Binding;
804
+ }>;
805
+ /**
806
+ * create a ConfigMap
807
+ * @param namespace object name and auth scope, such as for teams and projects
808
+ * @param body
809
+ * @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).
810
+ * @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
811
+ * @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.
812
+ * @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.
813
+ */
814
+ createNamespacedConfigMap(namespace: string, body: V1ConfigMap, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
815
+ headers: {
816
+ [name: string]: string;
817
+ };
818
+ }): Promise<{
819
+ response: http.IncomingMessage;
820
+ body: V1ConfigMap;
821
+ }>;
822
+ /**
823
+ * create Endpoints
824
+ * @param namespace object name and auth scope, such as for teams and projects
825
+ * @param body
826
+ * @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).
827
+ * @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
828
+ * @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.
829
+ * @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.
830
+ */
831
+ createNamespacedEndpoints(namespace: string, body: V1Endpoints, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
832
+ headers: {
833
+ [name: string]: string;
834
+ };
835
+ }): Promise<{
836
+ response: http.IncomingMessage;
837
+ body: V1Endpoints;
838
+ }>;
839
+ /**
840
+ * create an Event
841
+ * @param namespace object name and auth scope, such as for teams and projects
842
+ * @param body
843
+ * @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).
844
+ * @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
845
+ * @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.
846
+ * @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.
847
+ */
848
+ createNamespacedEvent(namespace: string, body: CoreV1Event, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
849
+ headers: {
850
+ [name: string]: string;
851
+ };
852
+ }): Promise<{
853
+ response: http.IncomingMessage;
854
+ body: CoreV1Event;
855
+ }>;
856
+ /**
857
+ * create a LimitRange
858
+ * @param namespace object name and auth scope, such as for teams and projects
859
+ * @param body
860
+ * @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).
861
+ * @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
862
+ * @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.
863
+ * @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.
864
+ */
865
+ createNamespacedLimitRange(namespace: string, body: V1LimitRange, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
866
+ headers: {
867
+ [name: string]: string;
868
+ };
869
+ }): Promise<{
870
+ response: http.IncomingMessage;
871
+ body: V1LimitRange;
872
+ }>;
873
+ /**
874
+ * create a PersistentVolumeClaim
875
+ * @param namespace object name and auth scope, such as for teams and projects
876
+ * @param body
877
+ * @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).
878
+ * @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
879
+ * @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.
880
+ * @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.
881
+ */
882
+ createNamespacedPersistentVolumeClaim(namespace: string, body: V1PersistentVolumeClaim, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
883
+ headers: {
884
+ [name: string]: string;
885
+ };
886
+ }): Promise<{
887
+ response: http.IncomingMessage;
888
+ body: V1PersistentVolumeClaim;
889
+ }>;
890
+ /**
891
+ * create a Pod
892
+ * @param namespace object name and auth scope, such as for teams and projects
893
+ * @param body
894
+ * @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).
895
+ * @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
896
+ * @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.
897
+ * @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.
898
+ */
899
+ createNamespacedPod(namespace: string, body: V1Pod, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
900
+ headers: {
901
+ [name: string]: string;
902
+ };
903
+ }): Promise<{
904
+ response: http.IncomingMessage;
905
+ body: V1Pod;
906
+ }>;
907
+ /**
908
+ * create binding of a Pod
909
+ * @param name name of the Binding
910
+ * @param namespace object name and auth scope, such as for teams and projects
911
+ * @param body
912
+ * @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
913
+ * @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.
914
+ * @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.
915
+ * @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).
916
+ */
917
+ createNamespacedPodBinding(name: string, namespace: string, body: V1Binding, dryRun?: string, fieldManager?: string, fieldValidation?: string, pretty?: string, options?: {
918
+ headers: {
919
+ [name: string]: string;
920
+ };
921
+ }): Promise<{
922
+ response: http.IncomingMessage;
923
+ body: V1Binding;
924
+ }>;
925
+ /**
926
+ * create eviction of a Pod
927
+ * @param name name of the Eviction
928
+ * @param namespace object name and auth scope, such as for teams and projects
929
+ * @param body
930
+ * @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
931
+ * @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.
932
+ * @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.
933
+ * @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).
934
+ */
935
+ createNamespacedPodEviction(name: string, namespace: string, body: V1Eviction, dryRun?: string, fieldManager?: string, fieldValidation?: string, pretty?: string, options?: {
936
+ headers: {
937
+ [name: string]: string;
938
+ };
939
+ }): Promise<{
940
+ response: http.IncomingMessage;
941
+ body: V1Eviction;
942
+ }>;
943
+ /**
944
+ * create a PodTemplate
945
+ * @param namespace object name and auth scope, such as for teams and projects
946
+ * @param body
947
+ * @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).
948
+ * @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
949
+ * @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.
950
+ * @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.
951
+ */
952
+ createNamespacedPodTemplate(namespace: string, body: V1PodTemplate, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
953
+ headers: {
954
+ [name: string]: string;
955
+ };
956
+ }): Promise<{
957
+ response: http.IncomingMessage;
958
+ body: V1PodTemplate;
959
+ }>;
960
+ /**
961
+ * create a ReplicationController
962
+ * @param namespace object name and auth scope, such as for teams and projects
963
+ * @param body
964
+ * @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).
965
+ * @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
966
+ * @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.
967
+ * @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.
968
+ */
969
+ createNamespacedReplicationController(namespace: string, body: V1ReplicationController, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
970
+ headers: {
971
+ [name: string]: string;
972
+ };
973
+ }): Promise<{
974
+ response: http.IncomingMessage;
975
+ body: V1ReplicationController;
976
+ }>;
977
+ /**
978
+ * create a ResourceQuota
979
+ * @param namespace object name and auth scope, such as for teams and projects
980
+ * @param body
981
+ * @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).
982
+ * @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
983
+ * @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.
984
+ * @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.
985
+ */
986
+ createNamespacedResourceQuota(namespace: string, body: V1ResourceQuota, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
987
+ headers: {
988
+ [name: string]: string;
989
+ };
990
+ }): Promise<{
991
+ response: http.IncomingMessage;
992
+ body: V1ResourceQuota;
993
+ }>;
994
+ /**
995
+ * create a Secret
996
+ * @param namespace object name and auth scope, such as for teams and projects
997
+ * @param body
998
+ * @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).
999
+ * @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
1000
+ * @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.
1001
+ * @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.
1002
+ */
1003
+ createNamespacedSecret(namespace: string, body: V1Secret, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1004
+ headers: {
1005
+ [name: string]: string;
1006
+ };
1007
+ }): Promise<{
1008
+ response: http.IncomingMessage;
1009
+ body: V1Secret;
1010
+ }>;
1011
+ /**
1012
+ * create a Service
1013
+ * @param namespace object name and auth scope, such as for teams and projects
1014
+ * @param body
1015
+ * @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).
1016
+ * @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
1017
+ * @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.
1018
+ * @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.
1019
+ */
1020
+ createNamespacedService(namespace: string, body: V1Service, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1021
+ headers: {
1022
+ [name: string]: string;
1023
+ };
1024
+ }): Promise<{
1025
+ response: http.IncomingMessage;
1026
+ body: V1Service;
1027
+ }>;
1028
+ /**
1029
+ * create a ServiceAccount
1030
+ * @param namespace object name and auth scope, such as for teams and projects
1031
+ * @param body
1032
+ * @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).
1033
+ * @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
1034
+ * @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.
1035
+ * @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.
1036
+ */
1037
+ createNamespacedServiceAccount(namespace: string, body: V1ServiceAccount, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1038
+ headers: {
1039
+ [name: string]: string;
1040
+ };
1041
+ }): Promise<{
1042
+ response: http.IncomingMessage;
1043
+ body: V1ServiceAccount;
1044
+ }>;
1045
+ /**
1046
+ * create token of a ServiceAccount
1047
+ * @param name name of the TokenRequest
1048
+ * @param namespace object name and auth scope, such as for teams and projects
1049
+ * @param body
1050
+ * @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
1051
+ * @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.
1052
+ * @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.
1053
+ * @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).
1054
+ */
1055
+ createNamespacedServiceAccountToken(name: string, namespace: string, body: AuthenticationV1TokenRequest, dryRun?: string, fieldManager?: string, fieldValidation?: string, pretty?: string, options?: {
1056
+ headers: {
1057
+ [name: string]: string;
1058
+ };
1059
+ }): Promise<{
1060
+ response: http.IncomingMessage;
1061
+ body: AuthenticationV1TokenRequest;
1062
+ }>;
1063
+ /**
1064
+ * create a Node
1065
+ * @param body
1066
+ * @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).
1067
+ * @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
1068
+ * @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.
1069
+ * @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.
1070
+ */
1071
+ createNode(body: V1Node, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1072
+ headers: {
1073
+ [name: string]: string;
1074
+ };
1075
+ }): Promise<{
1076
+ response: http.IncomingMessage;
1077
+ body: V1Node;
1078
+ }>;
1079
+ /**
1080
+ * create a PersistentVolume
1081
+ * @param body
1082
+ * @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).
1083
+ * @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
1084
+ * @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.
1085
+ * @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.
1086
+ */
1087
+ createPersistentVolume(body: V1PersistentVolume, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
1088
+ headers: {
1089
+ [name: string]: string;
1090
+ };
1091
+ }): Promise<{
1092
+ response: http.IncomingMessage;
1093
+ body: V1PersistentVolume;
1094
+ }>;
1095
+ /**
1096
+ * delete collection of ConfigMap
1097
+ * @param namespace object name and auth scope, such as for teams and projects
1098
+ * @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).
1099
+ * @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.
1100
+ * @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
1101
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1102
+ * @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.
1103
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1104
+ * @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.
1105
+ * @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.
1106
+ * @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.
1107
+ * @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
1108
+ * @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
1109
+ * @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.
1110
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1111
+ * @param body
1112
+ */
1113
+ deleteCollectionNamespacedConfigMap(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?: {
1114
+ headers: {
1115
+ [name: string]: string;
1116
+ };
1117
+ }): Promise<{
1118
+ response: http.IncomingMessage;
1119
+ body: V1Status;
1120
+ }>;
1121
+ /**
1122
+ * delete collection of Endpoints
1123
+ * @param namespace object name and auth scope, such as for teams and projects
1124
+ * @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).
1125
+ * @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.
1126
+ * @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
1127
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1128
+ * @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.
1129
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1130
+ * @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.
1131
+ * @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.
1132
+ * @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.
1133
+ * @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
1134
+ * @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
1135
+ * @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.
1136
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1137
+ * @param body
1138
+ */
1139
+ deleteCollectionNamespacedEndpoints(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?: {
1140
+ headers: {
1141
+ [name: string]: string;
1142
+ };
1143
+ }): Promise<{
1144
+ response: http.IncomingMessage;
1145
+ body: V1Status;
1146
+ }>;
1147
+ /**
1148
+ * delete collection of Event
1149
+ * @param namespace object name and auth scope, such as for teams and projects
1150
+ * @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).
1151
+ * @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.
1152
+ * @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
1153
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1154
+ * @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.
1155
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1156
+ * @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.
1157
+ * @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.
1158
+ * @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.
1159
+ * @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
1160
+ * @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
1161
+ * @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.
1162
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1163
+ * @param body
1164
+ */
1165
+ deleteCollectionNamespacedEvent(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?: {
1166
+ headers: {
1167
+ [name: string]: string;
1168
+ };
1169
+ }): Promise<{
1170
+ response: http.IncomingMessage;
1171
+ body: V1Status;
1172
+ }>;
1173
+ /**
1174
+ * delete collection of LimitRange
1175
+ * @param namespace object name and auth scope, such as for teams and projects
1176
+ * @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).
1177
+ * @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.
1178
+ * @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
1179
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1180
+ * @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.
1181
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1182
+ * @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.
1183
+ * @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.
1184
+ * @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.
1185
+ * @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
1186
+ * @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
1187
+ * @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.
1188
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1189
+ * @param body
1190
+ */
1191
+ deleteCollectionNamespacedLimitRange(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?: {
1192
+ headers: {
1193
+ [name: string]: string;
1194
+ };
1195
+ }): Promise<{
1196
+ response: http.IncomingMessage;
1197
+ body: V1Status;
1198
+ }>;
1199
+ /**
1200
+ * delete collection of PersistentVolumeClaim
1201
+ * @param namespace object name and auth scope, such as for teams and projects
1202
+ * @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).
1203
+ * @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.
1204
+ * @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
1205
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1206
+ * @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.
1207
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1208
+ * @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.
1209
+ * @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.
1210
+ * @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.
1211
+ * @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
1212
+ * @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
1213
+ * @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.
1214
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1215
+ * @param body
1216
+ */
1217
+ deleteCollectionNamespacedPersistentVolumeClaim(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?: {
1218
+ headers: {
1219
+ [name: string]: string;
1220
+ };
1221
+ }): Promise<{
1222
+ response: http.IncomingMessage;
1223
+ body: V1Status;
1224
+ }>;
1225
+ /**
1226
+ * delete collection of Pod
1227
+ * @param namespace object name and auth scope, such as for teams and projects
1228
+ * @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).
1229
+ * @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.
1230
+ * @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
1231
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1232
+ * @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.
1233
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1234
+ * @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.
1235
+ * @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.
1236
+ * @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.
1237
+ * @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
1238
+ * @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
1239
+ * @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.
1240
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1241
+ * @param body
1242
+ */
1243
+ deleteCollectionNamespacedPod(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?: {
1244
+ headers: {
1245
+ [name: string]: string;
1246
+ };
1247
+ }): Promise<{
1248
+ response: http.IncomingMessage;
1249
+ body: V1Status;
1250
+ }>;
1251
+ /**
1252
+ * delete collection of PodTemplate
1253
+ * @param namespace object name and auth scope, such as for teams and projects
1254
+ * @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).
1255
+ * @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.
1256
+ * @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
1257
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1258
+ * @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.
1259
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1260
+ * @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.
1261
+ * @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.
1262
+ * @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.
1263
+ * @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
1264
+ * @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
1265
+ * @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.
1266
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1267
+ * @param body
1268
+ */
1269
+ deleteCollectionNamespacedPodTemplate(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?: {
1270
+ headers: {
1271
+ [name: string]: string;
1272
+ };
1273
+ }): Promise<{
1274
+ response: http.IncomingMessage;
1275
+ body: V1Status;
1276
+ }>;
1277
+ /**
1278
+ * delete collection of ReplicationController
1279
+ * @param namespace object name and auth scope, such as for teams and projects
1280
+ * @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).
1281
+ * @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.
1282
+ * @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
1283
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1284
+ * @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.
1285
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1286
+ * @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.
1287
+ * @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.
1288
+ * @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.
1289
+ * @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
1290
+ * @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
1291
+ * @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.
1292
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1293
+ * @param body
1294
+ */
1295
+ deleteCollectionNamespacedReplicationController(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?: {
1296
+ headers: {
1297
+ [name: string]: string;
1298
+ };
1299
+ }): Promise<{
1300
+ response: http.IncomingMessage;
1301
+ body: V1Status;
1302
+ }>;
1303
+ /**
1304
+ * delete collection of ResourceQuota
1305
+ * @param namespace object name and auth scope, such as for teams and projects
1306
+ * @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).
1307
+ * @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.
1308
+ * @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
1309
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1310
+ * @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.
1311
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1312
+ * @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.
1313
+ * @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.
1314
+ * @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.
1315
+ * @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
1316
+ * @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
1317
+ * @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.
1318
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1319
+ * @param body
1320
+ */
1321
+ deleteCollectionNamespacedResourceQuota(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?: {
1322
+ headers: {
1323
+ [name: string]: string;
1324
+ };
1325
+ }): Promise<{
1326
+ response: http.IncomingMessage;
1327
+ body: V1Status;
1328
+ }>;
1329
+ /**
1330
+ * delete collection of Secret
1331
+ * @param namespace object name and auth scope, such as for teams and projects
1332
+ * @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).
1333
+ * @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.
1334
+ * @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
1335
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1336
+ * @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.
1337
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1338
+ * @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.
1339
+ * @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.
1340
+ * @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.
1341
+ * @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
1342
+ * @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
1343
+ * @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.
1344
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1345
+ * @param body
1346
+ */
1347
+ deleteCollectionNamespacedSecret(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?: {
1348
+ headers: {
1349
+ [name: string]: string;
1350
+ };
1351
+ }): Promise<{
1352
+ response: http.IncomingMessage;
1353
+ body: V1Status;
1354
+ }>;
1355
+ /**
1356
+ * delete collection of Service
1357
+ * @param namespace object name and auth scope, such as for teams and projects
1358
+ * @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).
1359
+ * @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.
1360
+ * @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
1361
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1362
+ * @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.
1363
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1364
+ * @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.
1365
+ * @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.
1366
+ * @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.
1367
+ * @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
1368
+ * @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
1369
+ * @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.
1370
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1371
+ * @param body
1372
+ */
1373
+ deleteCollectionNamespacedService(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?: {
1374
+ headers: {
1375
+ [name: string]: string;
1376
+ };
1377
+ }): Promise<{
1378
+ response: http.IncomingMessage;
1379
+ body: V1Status;
1380
+ }>;
1381
+ /**
1382
+ * delete collection of ServiceAccount
1383
+ * @param namespace object name and auth scope, such as for teams and projects
1384
+ * @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).
1385
+ * @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.
1386
+ * @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
1387
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1388
+ * @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.
1389
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1390
+ * @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.
1391
+ * @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.
1392
+ * @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.
1393
+ * @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
1394
+ * @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
1395
+ * @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.
1396
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1397
+ * @param body
1398
+ */
1399
+ deleteCollectionNamespacedServiceAccount(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?: {
1400
+ headers: {
1401
+ [name: string]: string;
1402
+ };
1403
+ }): Promise<{
1404
+ response: http.IncomingMessage;
1405
+ body: V1Status;
1406
+ }>;
1407
+ /**
1408
+ * delete collection of Node
1409
+ * @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).
1410
+ * @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.
1411
+ * @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
1412
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1413
+ * @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.
1414
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1415
+ * @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.
1416
+ * @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.
1417
+ * @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.
1418
+ * @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
1419
+ * @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
1420
+ * @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.
1421
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1422
+ * @param body
1423
+ */
1424
+ deleteCollectionNode(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?: {
1425
+ headers: {
1426
+ [name: string]: string;
1427
+ };
1428
+ }): Promise<{
1429
+ response: http.IncomingMessage;
1430
+ body: V1Status;
1431
+ }>;
1432
+ /**
1433
+ * delete collection of PersistentVolume
1434
+ * @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).
1435
+ * @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.
1436
+ * @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
1437
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1438
+ * @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.
1439
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1440
+ * @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.
1441
+ * @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.
1442
+ * @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.
1443
+ * @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
1444
+ * @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
1445
+ * @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.
1446
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1447
+ * @param body
1448
+ */
1449
+ deleteCollectionPersistentVolume(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?: {
1450
+ headers: {
1451
+ [name: string]: string;
1452
+ };
1453
+ }): Promise<{
1454
+ response: http.IncomingMessage;
1455
+ body: V1Status;
1456
+ }>;
1457
+ /**
1458
+ * delete a Namespace
1459
+ * @param name name of the Namespace
1460
+ * @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).
1461
+ * @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
1462
+ * @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.
1463
+ * @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.
1464
+ * @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.
1465
+ * @param body
1466
+ */
1467
+ deleteNamespace(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1468
+ headers: {
1469
+ [name: string]: string;
1470
+ };
1471
+ }): Promise<{
1472
+ response: http.IncomingMessage;
1473
+ body: V1Status;
1474
+ }>;
1475
+ /**
1476
+ * delete a ConfigMap
1477
+ * @param name name of the ConfigMap
1478
+ * @param namespace object name and auth scope, such as for teams and projects
1479
+ * @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).
1480
+ * @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
1481
+ * @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.
1482
+ * @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.
1483
+ * @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.
1484
+ * @param body
1485
+ */
1486
+ deleteNamespacedConfigMap(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1487
+ headers: {
1488
+ [name: string]: string;
1489
+ };
1490
+ }): Promise<{
1491
+ response: http.IncomingMessage;
1492
+ body: V1Status;
1493
+ }>;
1494
+ /**
1495
+ * delete Endpoints
1496
+ * @param name name of the Endpoints
1497
+ * @param namespace object name and auth scope, such as for teams and projects
1498
+ * @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).
1499
+ * @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
1500
+ * @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.
1501
+ * @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.
1502
+ * @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.
1503
+ * @param body
1504
+ */
1505
+ deleteNamespacedEndpoints(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1506
+ headers: {
1507
+ [name: string]: string;
1508
+ };
1509
+ }): Promise<{
1510
+ response: http.IncomingMessage;
1511
+ body: V1Status;
1512
+ }>;
1513
+ /**
1514
+ * delete an Event
1515
+ * @param name name of the Event
1516
+ * @param namespace object name and auth scope, such as for teams and projects
1517
+ * @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).
1518
+ * @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
1519
+ * @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.
1520
+ * @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.
1521
+ * @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.
1522
+ * @param body
1523
+ */
1524
+ deleteNamespacedEvent(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1525
+ headers: {
1526
+ [name: string]: string;
1527
+ };
1528
+ }): Promise<{
1529
+ response: http.IncomingMessage;
1530
+ body: V1Status;
1531
+ }>;
1532
+ /**
1533
+ * delete a LimitRange
1534
+ * @param name name of the LimitRange
1535
+ * @param namespace object name and auth scope, such as for teams and projects
1536
+ * @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).
1537
+ * @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
1538
+ * @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.
1539
+ * @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.
1540
+ * @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.
1541
+ * @param body
1542
+ */
1543
+ deleteNamespacedLimitRange(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1544
+ headers: {
1545
+ [name: string]: string;
1546
+ };
1547
+ }): Promise<{
1548
+ response: http.IncomingMessage;
1549
+ body: V1Status;
1550
+ }>;
1551
+ /**
1552
+ * delete a PersistentVolumeClaim
1553
+ * @param name name of the PersistentVolumeClaim
1554
+ * @param namespace object name and auth scope, such as for teams and projects
1555
+ * @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).
1556
+ * @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
1557
+ * @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.
1558
+ * @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.
1559
+ * @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.
1560
+ * @param body
1561
+ */
1562
+ deleteNamespacedPersistentVolumeClaim(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1563
+ headers: {
1564
+ [name: string]: string;
1565
+ };
1566
+ }): Promise<{
1567
+ response: http.IncomingMessage;
1568
+ body: V1PersistentVolumeClaim;
1569
+ }>;
1570
+ /**
1571
+ * delete a Pod
1572
+ * @param name name of the Pod
1573
+ * @param namespace object name and auth scope, such as for teams and projects
1574
+ * @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).
1575
+ * @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
1576
+ * @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.
1577
+ * @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.
1578
+ * @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.
1579
+ * @param body
1580
+ */
1581
+ deleteNamespacedPod(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1582
+ headers: {
1583
+ [name: string]: string;
1584
+ };
1585
+ }): Promise<{
1586
+ response: http.IncomingMessage;
1587
+ body: V1Pod;
1588
+ }>;
1589
+ /**
1590
+ * delete a PodTemplate
1591
+ * @param name name of the PodTemplate
1592
+ * @param namespace object name and auth scope, such as for teams and projects
1593
+ * @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).
1594
+ * @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
1595
+ * @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.
1596
+ * @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.
1597
+ * @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.
1598
+ * @param body
1599
+ */
1600
+ deleteNamespacedPodTemplate(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1601
+ headers: {
1602
+ [name: string]: string;
1603
+ };
1604
+ }): Promise<{
1605
+ response: http.IncomingMessage;
1606
+ body: V1PodTemplate;
1607
+ }>;
1608
+ /**
1609
+ * delete a ReplicationController
1610
+ * @param name name of the ReplicationController
1611
+ * @param namespace object name and auth scope, such as for teams and projects
1612
+ * @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).
1613
+ * @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
1614
+ * @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.
1615
+ * @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.
1616
+ * @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.
1617
+ * @param body
1618
+ */
1619
+ deleteNamespacedReplicationController(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1620
+ headers: {
1621
+ [name: string]: string;
1622
+ };
1623
+ }): Promise<{
1624
+ response: http.IncomingMessage;
1625
+ body: V1Status;
1626
+ }>;
1627
+ /**
1628
+ * delete a ResourceQuota
1629
+ * @param name name of the ResourceQuota
1630
+ * @param namespace object name and auth scope, such as for teams and projects
1631
+ * @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).
1632
+ * @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
1633
+ * @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.
1634
+ * @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.
1635
+ * @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.
1636
+ * @param body
1637
+ */
1638
+ deleteNamespacedResourceQuota(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1639
+ headers: {
1640
+ [name: string]: string;
1641
+ };
1642
+ }): Promise<{
1643
+ response: http.IncomingMessage;
1644
+ body: V1ResourceQuota;
1645
+ }>;
1646
+ /**
1647
+ * delete a Secret
1648
+ * @param name name of the Secret
1649
+ * @param namespace object name and auth scope, such as for teams and projects
1650
+ * @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).
1651
+ * @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
1652
+ * @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.
1653
+ * @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.
1654
+ * @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.
1655
+ * @param body
1656
+ */
1657
+ deleteNamespacedSecret(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1658
+ headers: {
1659
+ [name: string]: string;
1660
+ };
1661
+ }): Promise<{
1662
+ response: http.IncomingMessage;
1663
+ body: V1Status;
1664
+ }>;
1665
+ /**
1666
+ * delete a Service
1667
+ * @param name name of the Service
1668
+ * @param namespace object name and auth scope, such as for teams and projects
1669
+ * @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).
1670
+ * @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
1671
+ * @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.
1672
+ * @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.
1673
+ * @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.
1674
+ * @param body
1675
+ */
1676
+ deleteNamespacedService(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1677
+ headers: {
1678
+ [name: string]: string;
1679
+ };
1680
+ }): Promise<{
1681
+ response: http.IncomingMessage;
1682
+ body: V1Service;
1683
+ }>;
1684
+ /**
1685
+ * delete a ServiceAccount
1686
+ * @param name name of the ServiceAccount
1687
+ * @param namespace object name and auth scope, such as for teams and projects
1688
+ * @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).
1689
+ * @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
1690
+ * @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.
1691
+ * @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.
1692
+ * @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.
1693
+ * @param body
1694
+ */
1695
+ deleteNamespacedServiceAccount(name: string, namespace: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1696
+ headers: {
1697
+ [name: string]: string;
1698
+ };
1699
+ }): Promise<{
1700
+ response: http.IncomingMessage;
1701
+ body: V1ServiceAccount;
1702
+ }>;
1703
+ /**
1704
+ * delete a Node
1705
+ * @param name name of the Node
1706
+ * @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).
1707
+ * @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
1708
+ * @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.
1709
+ * @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.
1710
+ * @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.
1711
+ * @param body
1712
+ */
1713
+ deleteNode(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1714
+ headers: {
1715
+ [name: string]: string;
1716
+ };
1717
+ }): Promise<{
1718
+ response: http.IncomingMessage;
1719
+ body: V1Status;
1720
+ }>;
1721
+ /**
1722
+ * delete a PersistentVolume
1723
+ * @param name name of the PersistentVolume
1724
+ * @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).
1725
+ * @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
1726
+ * @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.
1727
+ * @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.
1728
+ * @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.
1729
+ * @param body
1730
+ */
1731
+ deletePersistentVolume(name: string, pretty?: string, dryRun?: string, gracePeriodSeconds?: number, orphanDependents?: boolean, propagationPolicy?: string, body?: V1DeleteOptions, options?: {
1732
+ headers: {
1733
+ [name: string]: string;
1734
+ };
1735
+ }): Promise<{
1736
+ response: http.IncomingMessage;
1737
+ body: V1PersistentVolume;
1738
+ }>;
1739
+ /**
1740
+ * get available resources
1741
+ */
1742
+ getAPIResources(options?: {
1743
+ headers: {
1744
+ [name: string]: string;
1745
+ };
1746
+ }): Promise<{
1747
+ response: http.IncomingMessage;
1748
+ body: V1APIResourceList;
1749
+ }>;
1750
+ /**
1751
+ * list objects of kind ComponentStatus
1752
+ * @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.
1753
+ * @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.
1754
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1755
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1756
+ * @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.
1757
+ * @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).
1758
+ * @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
1759
+ * @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
1760
+ * @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.
1761
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1762
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1763
+ */
1764
+ listComponentStatus(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
1765
+ headers: {
1766
+ [name: string]: string;
1767
+ };
1768
+ }): Promise<{
1769
+ response: http.IncomingMessage;
1770
+ body: V1ComponentStatusList;
1771
+ }>;
1772
+ /**
1773
+ * list or watch objects of kind ConfigMap
1774
+ * @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.
1775
+ * @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.
1776
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1777
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1778
+ * @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.
1779
+ * @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).
1780
+ * @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
1781
+ * @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
1782
+ * @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.
1783
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1784
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1785
+ */
1786
+ listConfigMapForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
1787
+ headers: {
1788
+ [name: string]: string;
1789
+ };
1790
+ }): Promise<{
1791
+ response: http.IncomingMessage;
1792
+ body: V1ConfigMapList;
1793
+ }>;
1794
+ /**
1795
+ * list or watch objects of kind Endpoints
1796
+ * @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.
1797
+ * @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.
1798
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1799
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1800
+ * @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.
1801
+ * @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).
1802
+ * @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
1803
+ * @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
1804
+ * @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.
1805
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1806
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1807
+ */
1808
+ listEndpointsForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
1809
+ headers: {
1810
+ [name: string]: string;
1811
+ };
1812
+ }): Promise<{
1813
+ response: http.IncomingMessage;
1814
+ body: V1EndpointsList;
1815
+ }>;
1816
+ /**
1817
+ * list or watch objects of kind Event
1818
+ * @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.
1819
+ * @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.
1820
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1821
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1822
+ * @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.
1823
+ * @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).
1824
+ * @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
1825
+ * @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
1826
+ * @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.
1827
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1828
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1829
+ */
1830
+ listEventForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
1831
+ headers: {
1832
+ [name: string]: string;
1833
+ };
1834
+ }): Promise<{
1835
+ response: http.IncomingMessage;
1836
+ body: CoreV1EventList;
1837
+ }>;
1838
+ /**
1839
+ * list or watch objects of kind LimitRange
1840
+ * @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.
1841
+ * @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.
1842
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1843
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1844
+ * @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.
1845
+ * @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).
1846
+ * @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
1847
+ * @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
1848
+ * @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.
1849
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1850
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1851
+ */
1852
+ listLimitRangeForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
1853
+ headers: {
1854
+ [name: string]: string;
1855
+ };
1856
+ }): Promise<{
1857
+ response: http.IncomingMessage;
1858
+ body: V1LimitRangeList;
1859
+ }>;
1860
+ /**
1861
+ * list or watch objects of kind Namespace
1862
+ * @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).
1863
+ * @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.
1864
+ * @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.
1865
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1866
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1867
+ * @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.
1868
+ * @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
1869
+ * @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
1870
+ * @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.
1871
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1872
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1873
+ */
1874
+ listNamespace(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
1875
+ headers: {
1876
+ [name: string]: string;
1877
+ };
1878
+ }): Promise<{
1879
+ response: http.IncomingMessage;
1880
+ body: V1NamespaceList;
1881
+ }>;
1882
+ /**
1883
+ * list or watch objects of kind ConfigMap
1884
+ * @param namespace object name and auth scope, such as for teams and projects
1885
+ * @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).
1886
+ * @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.
1887
+ * @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.
1888
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1889
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1890
+ * @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.
1891
+ * @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
1892
+ * @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
1893
+ * @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.
1894
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1895
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1896
+ */
1897
+ listNamespacedConfigMap(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?: {
1898
+ headers: {
1899
+ [name: string]: string;
1900
+ };
1901
+ }): Promise<{
1902
+ response: http.IncomingMessage;
1903
+ body: V1ConfigMapList;
1904
+ }>;
1905
+ /**
1906
+ * list or watch objects of kind Endpoints
1907
+ * @param namespace object name and auth scope, such as for teams and projects
1908
+ * @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).
1909
+ * @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.
1910
+ * @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.
1911
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1912
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1913
+ * @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.
1914
+ * @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
1915
+ * @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
1916
+ * @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.
1917
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1918
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1919
+ */
1920
+ listNamespacedEndpoints(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?: {
1921
+ headers: {
1922
+ [name: string]: string;
1923
+ };
1924
+ }): Promise<{
1925
+ response: http.IncomingMessage;
1926
+ body: V1EndpointsList;
1927
+ }>;
1928
+ /**
1929
+ * list or watch objects of kind Event
1930
+ * @param namespace object name and auth scope, such as for teams and projects
1931
+ * @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).
1932
+ * @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.
1933
+ * @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.
1934
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1935
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1936
+ * @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.
1937
+ * @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
1938
+ * @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
1939
+ * @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.
1940
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1941
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1942
+ */
1943
+ listNamespacedEvent(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?: {
1944
+ headers: {
1945
+ [name: string]: string;
1946
+ };
1947
+ }): Promise<{
1948
+ response: http.IncomingMessage;
1949
+ body: CoreV1EventList;
1950
+ }>;
1951
+ /**
1952
+ * list or watch objects of kind LimitRange
1953
+ * @param namespace object name and auth scope, such as for teams and projects
1954
+ * @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).
1955
+ * @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.
1956
+ * @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.
1957
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1958
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1959
+ * @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.
1960
+ * @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
1961
+ * @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
1962
+ * @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.
1963
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1964
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1965
+ */
1966
+ listNamespacedLimitRange(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?: {
1967
+ headers: {
1968
+ [name: string]: string;
1969
+ };
1970
+ }): Promise<{
1971
+ response: http.IncomingMessage;
1972
+ body: V1LimitRangeList;
1973
+ }>;
1974
+ /**
1975
+ * list or watch objects of kind PersistentVolumeClaim
1976
+ * @param namespace object name and auth scope, such as for teams and projects
1977
+ * @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).
1978
+ * @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.
1979
+ * @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.
1980
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
1981
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
1982
+ * @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.
1983
+ * @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
1984
+ * @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
1985
+ * @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.
1986
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
1987
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
1988
+ */
1989
+ listNamespacedPersistentVolumeClaim(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?: {
1990
+ headers: {
1991
+ [name: string]: string;
1992
+ };
1993
+ }): Promise<{
1994
+ response: http.IncomingMessage;
1995
+ body: V1PersistentVolumeClaimList;
1996
+ }>;
1997
+ /**
1998
+ * list or watch objects of kind Pod
1999
+ * @param namespace object name and auth scope, such as for teams and projects
2000
+ * @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).
2001
+ * @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.
2002
+ * @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.
2003
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2004
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2005
+ * @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.
2006
+ * @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
2007
+ * @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
2008
+ * @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.
2009
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2010
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2011
+ */
2012
+ listNamespacedPod(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?: {
2013
+ headers: {
2014
+ [name: string]: string;
2015
+ };
2016
+ }): Promise<{
2017
+ response: http.IncomingMessage;
2018
+ body: V1PodList;
2019
+ }>;
2020
+ /**
2021
+ * list or watch objects of kind PodTemplate
2022
+ * @param namespace object name and auth scope, such as for teams and projects
2023
+ * @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).
2024
+ * @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.
2025
+ * @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.
2026
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2027
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2028
+ * @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.
2029
+ * @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
2030
+ * @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
2031
+ * @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.
2032
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2033
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2034
+ */
2035
+ listNamespacedPodTemplate(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?: {
2036
+ headers: {
2037
+ [name: string]: string;
2038
+ };
2039
+ }): Promise<{
2040
+ response: http.IncomingMessage;
2041
+ body: V1PodTemplateList;
2042
+ }>;
2043
+ /**
2044
+ * list or watch objects of kind ReplicationController
2045
+ * @param namespace object name and auth scope, such as for teams and projects
2046
+ * @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).
2047
+ * @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.
2048
+ * @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.
2049
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2050
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2051
+ * @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.
2052
+ * @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
2053
+ * @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
2054
+ * @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.
2055
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2056
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2057
+ */
2058
+ listNamespacedReplicationController(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?: {
2059
+ headers: {
2060
+ [name: string]: string;
2061
+ };
2062
+ }): Promise<{
2063
+ response: http.IncomingMessage;
2064
+ body: V1ReplicationControllerList;
2065
+ }>;
2066
+ /**
2067
+ * list or watch objects of kind ResourceQuota
2068
+ * @param namespace object name and auth scope, such as for teams and projects
2069
+ * @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).
2070
+ * @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.
2071
+ * @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.
2072
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2073
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2074
+ * @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.
2075
+ * @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
2076
+ * @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
2077
+ * @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.
2078
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2079
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2080
+ */
2081
+ listNamespacedResourceQuota(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?: {
2082
+ headers: {
2083
+ [name: string]: string;
2084
+ };
2085
+ }): Promise<{
2086
+ response: http.IncomingMessage;
2087
+ body: V1ResourceQuotaList;
2088
+ }>;
2089
+ /**
2090
+ * list or watch objects of kind Secret
2091
+ * @param namespace object name and auth scope, such as for teams and projects
2092
+ * @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).
2093
+ * @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.
2094
+ * @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.
2095
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2096
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2097
+ * @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.
2098
+ * @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
2099
+ * @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
2100
+ * @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.
2101
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2102
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2103
+ */
2104
+ listNamespacedSecret(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?: {
2105
+ headers: {
2106
+ [name: string]: string;
2107
+ };
2108
+ }): Promise<{
2109
+ response: http.IncomingMessage;
2110
+ body: V1SecretList;
2111
+ }>;
2112
+ /**
2113
+ * list or watch objects of kind Service
2114
+ * @param namespace object name and auth scope, such as for teams and projects
2115
+ * @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).
2116
+ * @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.
2117
+ * @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.
2118
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2119
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2120
+ * @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.
2121
+ * @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
2122
+ * @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
2123
+ * @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.
2124
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2125
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2126
+ */
2127
+ listNamespacedService(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?: {
2128
+ headers: {
2129
+ [name: string]: string;
2130
+ };
2131
+ }): Promise<{
2132
+ response: http.IncomingMessage;
2133
+ body: V1ServiceList;
2134
+ }>;
2135
+ /**
2136
+ * list or watch objects of kind ServiceAccount
2137
+ * @param namespace object name and auth scope, such as for teams and projects
2138
+ * @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).
2139
+ * @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.
2140
+ * @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.
2141
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2142
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2143
+ * @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.
2144
+ * @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
2145
+ * @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
2146
+ * @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.
2147
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2148
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2149
+ */
2150
+ listNamespacedServiceAccount(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?: {
2151
+ headers: {
2152
+ [name: string]: string;
2153
+ };
2154
+ }): Promise<{
2155
+ response: http.IncomingMessage;
2156
+ body: V1ServiceAccountList;
2157
+ }>;
2158
+ /**
2159
+ * list or watch objects of kind Node
2160
+ * @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).
2161
+ * @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.
2162
+ * @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.
2163
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2164
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2165
+ * @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.
2166
+ * @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
2167
+ * @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
2168
+ * @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.
2169
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2170
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2171
+ */
2172
+ listNode(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2173
+ headers: {
2174
+ [name: string]: string;
2175
+ };
2176
+ }): Promise<{
2177
+ response: http.IncomingMessage;
2178
+ body: V1NodeList;
2179
+ }>;
2180
+ /**
2181
+ * list or watch objects of kind PersistentVolume
2182
+ * @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).
2183
+ * @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.
2184
+ * @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.
2185
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2186
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2187
+ * @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.
2188
+ * @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
2189
+ * @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
2190
+ * @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.
2191
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2192
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2193
+ */
2194
+ listPersistentVolume(pretty?: string, allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2195
+ headers: {
2196
+ [name: string]: string;
2197
+ };
2198
+ }): Promise<{
2199
+ response: http.IncomingMessage;
2200
+ body: V1PersistentVolumeList;
2201
+ }>;
2202
+ /**
2203
+ * list or watch objects of kind PersistentVolumeClaim
2204
+ * @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.
2205
+ * @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.
2206
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2207
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2208
+ * @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.
2209
+ * @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).
2210
+ * @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
2211
+ * @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
2212
+ * @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.
2213
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2214
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2215
+ */
2216
+ listPersistentVolumeClaimForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2217
+ headers: {
2218
+ [name: string]: string;
2219
+ };
2220
+ }): Promise<{
2221
+ response: http.IncomingMessage;
2222
+ body: V1PersistentVolumeClaimList;
2223
+ }>;
2224
+ /**
2225
+ * list or watch objects of kind Pod
2226
+ * @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.
2227
+ * @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.
2228
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2229
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2230
+ * @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.
2231
+ * @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).
2232
+ * @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
2233
+ * @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
2234
+ * @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.
2235
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2236
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2237
+ */
2238
+ listPodForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2239
+ headers: {
2240
+ [name: string]: string;
2241
+ };
2242
+ }): Promise<{
2243
+ response: http.IncomingMessage;
2244
+ body: V1PodList;
2245
+ }>;
2246
+ /**
2247
+ * list or watch objects of kind PodTemplate
2248
+ * @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.
2249
+ * @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.
2250
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2251
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2252
+ * @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.
2253
+ * @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).
2254
+ * @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
2255
+ * @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
2256
+ * @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.
2257
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2258
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2259
+ */
2260
+ listPodTemplateForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2261
+ headers: {
2262
+ [name: string]: string;
2263
+ };
2264
+ }): Promise<{
2265
+ response: http.IncomingMessage;
2266
+ body: V1PodTemplateList;
2267
+ }>;
2268
+ /**
2269
+ * list or watch objects of kind ReplicationController
2270
+ * @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.
2271
+ * @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.
2272
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2273
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2274
+ * @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.
2275
+ * @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).
2276
+ * @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
2277
+ * @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
2278
+ * @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.
2279
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2280
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2281
+ */
2282
+ listReplicationControllerForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2283
+ headers: {
2284
+ [name: string]: string;
2285
+ };
2286
+ }): Promise<{
2287
+ response: http.IncomingMessage;
2288
+ body: V1ReplicationControllerList;
2289
+ }>;
2290
+ /**
2291
+ * list or watch objects of kind ResourceQuota
2292
+ * @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.
2293
+ * @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.
2294
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2295
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2296
+ * @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.
2297
+ * @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).
2298
+ * @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
2299
+ * @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
2300
+ * @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.
2301
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2302
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2303
+ */
2304
+ listResourceQuotaForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2305
+ headers: {
2306
+ [name: string]: string;
2307
+ };
2308
+ }): Promise<{
2309
+ response: http.IncomingMessage;
2310
+ body: V1ResourceQuotaList;
2311
+ }>;
2312
+ /**
2313
+ * list or watch objects of kind Secret
2314
+ * @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.
2315
+ * @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.
2316
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2317
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2318
+ * @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.
2319
+ * @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).
2320
+ * @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
2321
+ * @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
2322
+ * @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.
2323
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2324
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2325
+ */
2326
+ listSecretForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2327
+ headers: {
2328
+ [name: string]: string;
2329
+ };
2330
+ }): Promise<{
2331
+ response: http.IncomingMessage;
2332
+ body: V1SecretList;
2333
+ }>;
2334
+ /**
2335
+ * list or watch objects of kind ServiceAccount
2336
+ * @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.
2337
+ * @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.
2338
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2339
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2340
+ * @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.
2341
+ * @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).
2342
+ * @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
2343
+ * @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
2344
+ * @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.
2345
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2346
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2347
+ */
2348
+ listServiceAccountForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2349
+ headers: {
2350
+ [name: string]: string;
2351
+ };
2352
+ }): Promise<{
2353
+ response: http.IncomingMessage;
2354
+ body: V1ServiceAccountList;
2355
+ }>;
2356
+ /**
2357
+ * list or watch objects of kind Service
2358
+ * @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.
2359
+ * @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.
2360
+ * @param fieldSelector A selector to restrict the list of returned objects by their fields. Defaults to everything.
2361
+ * @param labelSelector A selector to restrict the list of returned objects by their labels. Defaults to everything.
2362
+ * @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.
2363
+ * @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).
2364
+ * @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
2365
+ * @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
2366
+ * @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.
2367
+ * @param timeoutSeconds Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.
2368
+ * @param watch Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
2369
+ */
2370
+ listServiceForAllNamespaces(allowWatchBookmarks?: boolean, _continue?: string, fieldSelector?: string, labelSelector?: string, limit?: number, pretty?: string, resourceVersion?: string, resourceVersionMatch?: string, sendInitialEvents?: boolean, timeoutSeconds?: number, watch?: boolean, options?: {
2371
+ headers: {
2372
+ [name: string]: string;
2373
+ };
2374
+ }): Promise<{
2375
+ response: http.IncomingMessage;
2376
+ body: V1ServiceList;
2377
+ }>;
2378
+ /**
2379
+ * partially update the specified Namespace
2380
+ * @param name name of the Namespace
2381
+ * @param body
2382
+ * @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).
2383
+ * @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
2384
+ * @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).
2385
+ * @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.
2386
+ * @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.
2387
+ */
2388
+ patchNamespace(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2389
+ headers: {
2390
+ [name: string]: string;
2391
+ };
2392
+ }): Promise<{
2393
+ response: http.IncomingMessage;
2394
+ body: V1Namespace;
2395
+ }>;
2396
+ /**
2397
+ * partially update status of the specified Namespace
2398
+ * @param name name of the Namespace
2399
+ * @param body
2400
+ * @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).
2401
+ * @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
2402
+ * @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).
2403
+ * @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.
2404
+ * @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.
2405
+ */
2406
+ patchNamespaceStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2407
+ headers: {
2408
+ [name: string]: string;
2409
+ };
2410
+ }): Promise<{
2411
+ response: http.IncomingMessage;
2412
+ body: V1Namespace;
2413
+ }>;
2414
+ /**
2415
+ * partially update the specified ConfigMap
2416
+ * @param name name of the ConfigMap
2417
+ * @param namespace object name and auth scope, such as for teams and projects
2418
+ * @param body
2419
+ * @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).
2420
+ * @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
2421
+ * @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).
2422
+ * @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.
2423
+ * @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.
2424
+ */
2425
+ patchNamespacedConfigMap(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2426
+ headers: {
2427
+ [name: string]: string;
2428
+ };
2429
+ }): Promise<{
2430
+ response: http.IncomingMessage;
2431
+ body: V1ConfigMap;
2432
+ }>;
2433
+ /**
2434
+ * partially update the specified Endpoints
2435
+ * @param name name of the Endpoints
2436
+ * @param namespace object name and auth scope, such as for teams and projects
2437
+ * @param body
2438
+ * @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).
2439
+ * @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
2440
+ * @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).
2441
+ * @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.
2442
+ * @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.
2443
+ */
2444
+ patchNamespacedEndpoints(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2445
+ headers: {
2446
+ [name: string]: string;
2447
+ };
2448
+ }): Promise<{
2449
+ response: http.IncomingMessage;
2450
+ body: V1Endpoints;
2451
+ }>;
2452
+ /**
2453
+ * partially update the specified Event
2454
+ * @param name name of the Event
2455
+ * @param namespace object name and auth scope, such as for teams and projects
2456
+ * @param body
2457
+ * @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).
2458
+ * @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
2459
+ * @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).
2460
+ * @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.
2461
+ * @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.
2462
+ */
2463
+ patchNamespacedEvent(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2464
+ headers: {
2465
+ [name: string]: string;
2466
+ };
2467
+ }): Promise<{
2468
+ response: http.IncomingMessage;
2469
+ body: CoreV1Event;
2470
+ }>;
2471
+ /**
2472
+ * partially update the specified LimitRange
2473
+ * @param name name of the LimitRange
2474
+ * @param namespace object name and auth scope, such as for teams and projects
2475
+ * @param body
2476
+ * @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).
2477
+ * @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
2478
+ * @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).
2479
+ * @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.
2480
+ * @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.
2481
+ */
2482
+ patchNamespacedLimitRange(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2483
+ headers: {
2484
+ [name: string]: string;
2485
+ };
2486
+ }): Promise<{
2487
+ response: http.IncomingMessage;
2488
+ body: V1LimitRange;
2489
+ }>;
2490
+ /**
2491
+ * partially update the specified PersistentVolumeClaim
2492
+ * @param name name of the PersistentVolumeClaim
2493
+ * @param namespace object name and auth scope, such as for teams and projects
2494
+ * @param body
2495
+ * @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).
2496
+ * @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
2497
+ * @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).
2498
+ * @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.
2499
+ * @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.
2500
+ */
2501
+ patchNamespacedPersistentVolumeClaim(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2502
+ headers: {
2503
+ [name: string]: string;
2504
+ };
2505
+ }): Promise<{
2506
+ response: http.IncomingMessage;
2507
+ body: V1PersistentVolumeClaim;
2508
+ }>;
2509
+ /**
2510
+ * partially update status of the specified PersistentVolumeClaim
2511
+ * @param name name of the PersistentVolumeClaim
2512
+ * @param namespace object name and auth scope, such as for teams and projects
2513
+ * @param body
2514
+ * @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).
2515
+ * @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
2516
+ * @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).
2517
+ * @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.
2518
+ * @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.
2519
+ */
2520
+ patchNamespacedPersistentVolumeClaimStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2521
+ headers: {
2522
+ [name: string]: string;
2523
+ };
2524
+ }): Promise<{
2525
+ response: http.IncomingMessage;
2526
+ body: V1PersistentVolumeClaim;
2527
+ }>;
2528
+ /**
2529
+ * partially update the specified Pod
2530
+ * @param name name of the Pod
2531
+ * @param namespace object name and auth scope, such as for teams and projects
2532
+ * @param body
2533
+ * @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).
2534
+ * @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
2535
+ * @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).
2536
+ * @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.
2537
+ * @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.
2538
+ */
2539
+ patchNamespacedPod(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2540
+ headers: {
2541
+ [name: string]: string;
2542
+ };
2543
+ }): Promise<{
2544
+ response: http.IncomingMessage;
2545
+ body: V1Pod;
2546
+ }>;
2547
+ /**
2548
+ * partially update ephemeralcontainers of the specified Pod
2549
+ * @param name name of the Pod
2550
+ * @param namespace object name and auth scope, such as for teams and projects
2551
+ * @param body
2552
+ * @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).
2553
+ * @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
2554
+ * @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).
2555
+ * @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.
2556
+ * @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.
2557
+ */
2558
+ patchNamespacedPodEphemeralcontainers(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2559
+ headers: {
2560
+ [name: string]: string;
2561
+ };
2562
+ }): Promise<{
2563
+ response: http.IncomingMessage;
2564
+ body: V1Pod;
2565
+ }>;
2566
+ /**
2567
+ * partially update status of the specified Pod
2568
+ * @param name name of the Pod
2569
+ * @param namespace object name and auth scope, such as for teams and projects
2570
+ * @param body
2571
+ * @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).
2572
+ * @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
2573
+ * @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).
2574
+ * @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.
2575
+ * @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.
2576
+ */
2577
+ patchNamespacedPodStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2578
+ headers: {
2579
+ [name: string]: string;
2580
+ };
2581
+ }): Promise<{
2582
+ response: http.IncomingMessage;
2583
+ body: V1Pod;
2584
+ }>;
2585
+ /**
2586
+ * partially update the specified PodTemplate
2587
+ * @param name name of the PodTemplate
2588
+ * @param namespace object name and auth scope, such as for teams and projects
2589
+ * @param body
2590
+ * @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).
2591
+ * @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
2592
+ * @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).
2593
+ * @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.
2594
+ * @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.
2595
+ */
2596
+ patchNamespacedPodTemplate(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2597
+ headers: {
2598
+ [name: string]: string;
2599
+ };
2600
+ }): Promise<{
2601
+ response: http.IncomingMessage;
2602
+ body: V1PodTemplate;
2603
+ }>;
2604
+ /**
2605
+ * partially update the specified ReplicationController
2606
+ * @param name name of the ReplicationController
2607
+ * @param namespace object name and auth scope, such as for teams and projects
2608
+ * @param body
2609
+ * @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).
2610
+ * @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
2611
+ * @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).
2612
+ * @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.
2613
+ * @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.
2614
+ */
2615
+ patchNamespacedReplicationController(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2616
+ headers: {
2617
+ [name: string]: string;
2618
+ };
2619
+ }): Promise<{
2620
+ response: http.IncomingMessage;
2621
+ body: V1ReplicationController;
2622
+ }>;
2623
+ /**
2624
+ * partially update scale of the specified ReplicationController
2625
+ * @param name name of the Scale
2626
+ * @param namespace object name and auth scope, such as for teams and projects
2627
+ * @param body
2628
+ * @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).
2629
+ * @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
2630
+ * @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).
2631
+ * @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.
2632
+ * @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.
2633
+ */
2634
+ patchNamespacedReplicationControllerScale(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2635
+ headers: {
2636
+ [name: string]: string;
2637
+ };
2638
+ }): Promise<{
2639
+ response: http.IncomingMessage;
2640
+ body: V1Scale;
2641
+ }>;
2642
+ /**
2643
+ * partially update status of the specified ReplicationController
2644
+ * @param name name of the ReplicationController
2645
+ * @param namespace object name and auth scope, such as for teams and projects
2646
+ * @param body
2647
+ * @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).
2648
+ * @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
2649
+ * @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).
2650
+ * @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.
2651
+ * @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.
2652
+ */
2653
+ patchNamespacedReplicationControllerStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2654
+ headers: {
2655
+ [name: string]: string;
2656
+ };
2657
+ }): Promise<{
2658
+ response: http.IncomingMessage;
2659
+ body: V1ReplicationController;
2660
+ }>;
2661
+ /**
2662
+ * partially update the specified ResourceQuota
2663
+ * @param name name of the ResourceQuota
2664
+ * @param namespace object name and auth scope, such as for teams and projects
2665
+ * @param body
2666
+ * @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).
2667
+ * @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
2668
+ * @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).
2669
+ * @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.
2670
+ * @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.
2671
+ */
2672
+ patchNamespacedResourceQuota(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2673
+ headers: {
2674
+ [name: string]: string;
2675
+ };
2676
+ }): Promise<{
2677
+ response: http.IncomingMessage;
2678
+ body: V1ResourceQuota;
2679
+ }>;
2680
+ /**
2681
+ * partially update status of the specified ResourceQuota
2682
+ * @param name name of the ResourceQuota
2683
+ * @param namespace object name and auth scope, such as for teams and projects
2684
+ * @param body
2685
+ * @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).
2686
+ * @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
2687
+ * @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).
2688
+ * @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.
2689
+ * @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.
2690
+ */
2691
+ patchNamespacedResourceQuotaStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2692
+ headers: {
2693
+ [name: string]: string;
2694
+ };
2695
+ }): Promise<{
2696
+ response: http.IncomingMessage;
2697
+ body: V1ResourceQuota;
2698
+ }>;
2699
+ /**
2700
+ * partially update the specified Secret
2701
+ * @param name name of the Secret
2702
+ * @param namespace object name and auth scope, such as for teams and projects
2703
+ * @param body
2704
+ * @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).
2705
+ * @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
2706
+ * @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).
2707
+ * @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.
2708
+ * @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.
2709
+ */
2710
+ patchNamespacedSecret(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2711
+ headers: {
2712
+ [name: string]: string;
2713
+ };
2714
+ }): Promise<{
2715
+ response: http.IncomingMessage;
2716
+ body: V1Secret;
2717
+ }>;
2718
+ /**
2719
+ * partially update the specified Service
2720
+ * @param name name of the Service
2721
+ * @param namespace object name and auth scope, such as for teams and projects
2722
+ * @param body
2723
+ * @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).
2724
+ * @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
2725
+ * @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).
2726
+ * @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.
2727
+ * @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.
2728
+ */
2729
+ patchNamespacedService(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2730
+ headers: {
2731
+ [name: string]: string;
2732
+ };
2733
+ }): Promise<{
2734
+ response: http.IncomingMessage;
2735
+ body: V1Service;
2736
+ }>;
2737
+ /**
2738
+ * partially update the specified ServiceAccount
2739
+ * @param name name of the ServiceAccount
2740
+ * @param namespace object name and auth scope, such as for teams and projects
2741
+ * @param body
2742
+ * @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).
2743
+ * @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
2744
+ * @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).
2745
+ * @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.
2746
+ * @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.
2747
+ */
2748
+ patchNamespacedServiceAccount(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2749
+ headers: {
2750
+ [name: string]: string;
2751
+ };
2752
+ }): Promise<{
2753
+ response: http.IncomingMessage;
2754
+ body: V1ServiceAccount;
2755
+ }>;
2756
+ /**
2757
+ * partially update status of the specified Service
2758
+ * @param name name of the Service
2759
+ * @param namespace object name and auth scope, such as for teams and projects
2760
+ * @param body
2761
+ * @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).
2762
+ * @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
2763
+ * @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).
2764
+ * @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.
2765
+ * @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.
2766
+ */
2767
+ patchNamespacedServiceStatus(name: string, namespace: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2768
+ headers: {
2769
+ [name: string]: string;
2770
+ };
2771
+ }): Promise<{
2772
+ response: http.IncomingMessage;
2773
+ body: V1Service;
2774
+ }>;
2775
+ /**
2776
+ * partially update the specified Node
2777
+ * @param name name of the Node
2778
+ * @param body
2779
+ * @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).
2780
+ * @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
2781
+ * @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).
2782
+ * @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.
2783
+ * @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.
2784
+ */
2785
+ patchNode(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2786
+ headers: {
2787
+ [name: string]: string;
2788
+ };
2789
+ }): Promise<{
2790
+ response: http.IncomingMessage;
2791
+ body: V1Node;
2792
+ }>;
2793
+ /**
2794
+ * partially update status of the specified Node
2795
+ * @param name name of the Node
2796
+ * @param body
2797
+ * @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).
2798
+ * @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
2799
+ * @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).
2800
+ * @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.
2801
+ * @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.
2802
+ */
2803
+ patchNodeStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2804
+ headers: {
2805
+ [name: string]: string;
2806
+ };
2807
+ }): Promise<{
2808
+ response: http.IncomingMessage;
2809
+ body: V1Node;
2810
+ }>;
2811
+ /**
2812
+ * partially update the specified PersistentVolume
2813
+ * @param name name of the PersistentVolume
2814
+ * @param body
2815
+ * @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).
2816
+ * @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
2817
+ * @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).
2818
+ * @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.
2819
+ * @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.
2820
+ */
2821
+ patchPersistentVolume(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2822
+ headers: {
2823
+ [name: string]: string;
2824
+ };
2825
+ }): Promise<{
2826
+ response: http.IncomingMessage;
2827
+ body: V1PersistentVolume;
2828
+ }>;
2829
+ /**
2830
+ * partially update status of the specified PersistentVolume
2831
+ * @param name name of the PersistentVolume
2832
+ * @param body
2833
+ * @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).
2834
+ * @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
2835
+ * @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).
2836
+ * @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.
2837
+ * @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.
2838
+ */
2839
+ patchPersistentVolumeStatus(name: string, body: object, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, force?: boolean, options?: {
2840
+ headers: {
2841
+ [name: string]: string;
2842
+ };
2843
+ }): Promise<{
2844
+ response: http.IncomingMessage;
2845
+ body: V1PersistentVolume;
2846
+ }>;
2847
+ /**
2848
+ * read the specified ComponentStatus
2849
+ * @param name name of the ComponentStatus
2850
+ * @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).
2851
+ */
2852
+ readComponentStatus(name: string, pretty?: string, options?: {
2853
+ headers: {
2854
+ [name: string]: string;
2855
+ };
2856
+ }): Promise<{
2857
+ response: http.IncomingMessage;
2858
+ body: V1ComponentStatus;
2859
+ }>;
2860
+ /**
2861
+ * read the specified Namespace
2862
+ * @param name name of the Namespace
2863
+ * @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).
2864
+ */
2865
+ readNamespace(name: string, pretty?: string, options?: {
2866
+ headers: {
2867
+ [name: string]: string;
2868
+ };
2869
+ }): Promise<{
2870
+ response: http.IncomingMessage;
2871
+ body: V1Namespace;
2872
+ }>;
2873
+ /**
2874
+ * read status of the specified Namespace
2875
+ * @param name name of the Namespace
2876
+ * @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).
2877
+ */
2878
+ readNamespaceStatus(name: string, pretty?: string, options?: {
2879
+ headers: {
2880
+ [name: string]: string;
2881
+ };
2882
+ }): Promise<{
2883
+ response: http.IncomingMessage;
2884
+ body: V1Namespace;
2885
+ }>;
2886
+ /**
2887
+ * read the specified ConfigMap
2888
+ * @param name name of the ConfigMap
2889
+ * @param namespace object name and auth scope, such as for teams and projects
2890
+ * @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).
2891
+ */
2892
+ readNamespacedConfigMap(name: string, namespace: string, pretty?: string, options?: {
2893
+ headers: {
2894
+ [name: string]: string;
2895
+ };
2896
+ }): Promise<{
2897
+ response: http.IncomingMessage;
2898
+ body: V1ConfigMap;
2899
+ }>;
2900
+ /**
2901
+ * read the specified Endpoints
2902
+ * @param name name of the Endpoints
2903
+ * @param namespace object name and auth scope, such as for teams and projects
2904
+ * @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).
2905
+ */
2906
+ readNamespacedEndpoints(name: string, namespace: string, pretty?: string, options?: {
2907
+ headers: {
2908
+ [name: string]: string;
2909
+ };
2910
+ }): Promise<{
2911
+ response: http.IncomingMessage;
2912
+ body: V1Endpoints;
2913
+ }>;
2914
+ /**
2915
+ * read the specified Event
2916
+ * @param name name of the Event
2917
+ * @param namespace object name and auth scope, such as for teams and projects
2918
+ * @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).
2919
+ */
2920
+ readNamespacedEvent(name: string, namespace: string, pretty?: string, options?: {
2921
+ headers: {
2922
+ [name: string]: string;
2923
+ };
2924
+ }): Promise<{
2925
+ response: http.IncomingMessage;
2926
+ body: CoreV1Event;
2927
+ }>;
2928
+ /**
2929
+ * read the specified LimitRange
2930
+ * @param name name of the LimitRange
2931
+ * @param namespace object name and auth scope, such as for teams and projects
2932
+ * @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).
2933
+ */
2934
+ readNamespacedLimitRange(name: string, namespace: string, pretty?: string, options?: {
2935
+ headers: {
2936
+ [name: string]: string;
2937
+ };
2938
+ }): Promise<{
2939
+ response: http.IncomingMessage;
2940
+ body: V1LimitRange;
2941
+ }>;
2942
+ /**
2943
+ * read the specified PersistentVolumeClaim
2944
+ * @param name name of the PersistentVolumeClaim
2945
+ * @param namespace object name and auth scope, such as for teams and projects
2946
+ * @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).
2947
+ */
2948
+ readNamespacedPersistentVolumeClaim(name: string, namespace: string, pretty?: string, options?: {
2949
+ headers: {
2950
+ [name: string]: string;
2951
+ };
2952
+ }): Promise<{
2953
+ response: http.IncomingMessage;
2954
+ body: V1PersistentVolumeClaim;
2955
+ }>;
2956
+ /**
2957
+ * read status of the specified PersistentVolumeClaim
2958
+ * @param name name of the PersistentVolumeClaim
2959
+ * @param namespace object name and auth scope, such as for teams and projects
2960
+ * @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).
2961
+ */
2962
+ readNamespacedPersistentVolumeClaimStatus(name: string, namespace: string, pretty?: string, options?: {
2963
+ headers: {
2964
+ [name: string]: string;
2965
+ };
2966
+ }): Promise<{
2967
+ response: http.IncomingMessage;
2968
+ body: V1PersistentVolumeClaim;
2969
+ }>;
2970
+ /**
2971
+ * read the specified Pod
2972
+ * @param name name of the Pod
2973
+ * @param namespace object name and auth scope, such as for teams and projects
2974
+ * @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).
2975
+ */
2976
+ readNamespacedPod(name: string, namespace: string, pretty?: string, options?: {
2977
+ headers: {
2978
+ [name: string]: string;
2979
+ };
2980
+ }): Promise<{
2981
+ response: http.IncomingMessage;
2982
+ body: V1Pod;
2983
+ }>;
2984
+ /**
2985
+ * read ephemeralcontainers of the specified Pod
2986
+ * @param name name of the Pod
2987
+ * @param namespace object name and auth scope, such as for teams and projects
2988
+ * @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).
2989
+ */
2990
+ readNamespacedPodEphemeralcontainers(name: string, namespace: string, pretty?: string, options?: {
2991
+ headers: {
2992
+ [name: string]: string;
2993
+ };
2994
+ }): Promise<{
2995
+ response: http.IncomingMessage;
2996
+ body: V1Pod;
2997
+ }>;
2998
+ /**
2999
+ * read log of the specified Pod
3000
+ * @param name name of the Pod
3001
+ * @param namespace object name and auth scope, such as for teams and projects
3002
+ * @param container The container for which to stream logs. Defaults to only container if there is one container in the pod.
3003
+ * @param follow Follow the log stream of the pod. Defaults to false.
3004
+ * @param insecureSkipTLSVerifyBackend insecureSkipTLSVerifyBackend indicates that the apiserver should not confirm the validity of the serving certificate of the backend it is connecting to. This will make the HTTPS connection between the apiserver and the backend insecure. This means the apiserver cannot verify the log data it is receiving came from the real kubelet. If the kubelet is configured to verify the apiserver\&#39;s TLS credentials, it does not mean the connection to the real kubelet is vulnerable to a man in the middle attack (e.g. an attacker could not intercept the actual log data coming from the real kubelet).
3005
+ * @param limitBytes If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit.
3006
+ * @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).
3007
+ * @param previous Return previous terminated container logs. Defaults to false.
3008
+ * @param sinceSeconds A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.
3009
+ * @param tailLines If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime
3010
+ * @param timestamps If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.
3011
+ */
3012
+ readNamespacedPodLog(name: string, namespace: string, container?: string, follow?: boolean, insecureSkipTLSVerifyBackend?: boolean, limitBytes?: number, pretty?: string, previous?: boolean, sinceSeconds?: number, tailLines?: number, timestamps?: boolean, options?: {
3013
+ headers: {
3014
+ [name: string]: string;
3015
+ };
3016
+ }): Promise<{
3017
+ response: http.IncomingMessage;
3018
+ body: string;
3019
+ }>;
3020
+ /**
3021
+ * read status of the specified Pod
3022
+ * @param name name of the Pod
3023
+ * @param namespace object name and auth scope, such as for teams and projects
3024
+ * @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).
3025
+ */
3026
+ readNamespacedPodStatus(name: string, namespace: string, pretty?: string, options?: {
3027
+ headers: {
3028
+ [name: string]: string;
3029
+ };
3030
+ }): Promise<{
3031
+ response: http.IncomingMessage;
3032
+ body: V1Pod;
3033
+ }>;
3034
+ /**
3035
+ * read the specified PodTemplate
3036
+ * @param name name of the PodTemplate
3037
+ * @param namespace object name and auth scope, such as for teams and projects
3038
+ * @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).
3039
+ */
3040
+ readNamespacedPodTemplate(name: string, namespace: string, pretty?: string, options?: {
3041
+ headers: {
3042
+ [name: string]: string;
3043
+ };
3044
+ }): Promise<{
3045
+ response: http.IncomingMessage;
3046
+ body: V1PodTemplate;
3047
+ }>;
3048
+ /**
3049
+ * read the specified ReplicationController
3050
+ * @param name name of the ReplicationController
3051
+ * @param namespace object name and auth scope, such as for teams and projects
3052
+ * @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).
3053
+ */
3054
+ readNamespacedReplicationController(name: string, namespace: string, pretty?: string, options?: {
3055
+ headers: {
3056
+ [name: string]: string;
3057
+ };
3058
+ }): Promise<{
3059
+ response: http.IncomingMessage;
3060
+ body: V1ReplicationController;
3061
+ }>;
3062
+ /**
3063
+ * read scale of the specified ReplicationController
3064
+ * @param name name of the Scale
3065
+ * @param namespace object name and auth scope, such as for teams and projects
3066
+ * @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).
3067
+ */
3068
+ readNamespacedReplicationControllerScale(name: string, namespace: string, pretty?: string, options?: {
3069
+ headers: {
3070
+ [name: string]: string;
3071
+ };
3072
+ }): Promise<{
3073
+ response: http.IncomingMessage;
3074
+ body: V1Scale;
3075
+ }>;
3076
+ /**
3077
+ * read status of the specified ReplicationController
3078
+ * @param name name of the ReplicationController
3079
+ * @param namespace object name and auth scope, such as for teams and projects
3080
+ * @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).
3081
+ */
3082
+ readNamespacedReplicationControllerStatus(name: string, namespace: string, pretty?: string, options?: {
3083
+ headers: {
3084
+ [name: string]: string;
3085
+ };
3086
+ }): Promise<{
3087
+ response: http.IncomingMessage;
3088
+ body: V1ReplicationController;
3089
+ }>;
3090
+ /**
3091
+ * read the specified ResourceQuota
3092
+ * @param name name of the ResourceQuota
3093
+ * @param namespace object name and auth scope, such as for teams and projects
3094
+ * @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).
3095
+ */
3096
+ readNamespacedResourceQuota(name: string, namespace: string, pretty?: string, options?: {
3097
+ headers: {
3098
+ [name: string]: string;
3099
+ };
3100
+ }): Promise<{
3101
+ response: http.IncomingMessage;
3102
+ body: V1ResourceQuota;
3103
+ }>;
3104
+ /**
3105
+ * read status of the specified ResourceQuota
3106
+ * @param name name of the ResourceQuota
3107
+ * @param namespace object name and auth scope, such as for teams and projects
3108
+ * @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).
3109
+ */
3110
+ readNamespacedResourceQuotaStatus(name: string, namespace: string, pretty?: string, options?: {
3111
+ headers: {
3112
+ [name: string]: string;
3113
+ };
3114
+ }): Promise<{
3115
+ response: http.IncomingMessage;
3116
+ body: V1ResourceQuota;
3117
+ }>;
3118
+ /**
3119
+ * read the specified Secret
3120
+ * @param name name of the Secret
3121
+ * @param namespace object name and auth scope, such as for teams and projects
3122
+ * @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).
3123
+ */
3124
+ readNamespacedSecret(name: string, namespace: string, pretty?: string, options?: {
3125
+ headers: {
3126
+ [name: string]: string;
3127
+ };
3128
+ }): Promise<{
3129
+ response: http.IncomingMessage;
3130
+ body: V1Secret;
3131
+ }>;
3132
+ /**
3133
+ * read the specified Service
3134
+ * @param name name of the Service
3135
+ * @param namespace object name and auth scope, such as for teams and projects
3136
+ * @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).
3137
+ */
3138
+ readNamespacedService(name: string, namespace: string, pretty?: string, options?: {
3139
+ headers: {
3140
+ [name: string]: string;
3141
+ };
3142
+ }): Promise<{
3143
+ response: http.IncomingMessage;
3144
+ body: V1Service;
3145
+ }>;
3146
+ /**
3147
+ * read the specified ServiceAccount
3148
+ * @param name name of the ServiceAccount
3149
+ * @param namespace object name and auth scope, such as for teams and projects
3150
+ * @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).
3151
+ */
3152
+ readNamespacedServiceAccount(name: string, namespace: string, pretty?: string, options?: {
3153
+ headers: {
3154
+ [name: string]: string;
3155
+ };
3156
+ }): Promise<{
3157
+ response: http.IncomingMessage;
3158
+ body: V1ServiceAccount;
3159
+ }>;
3160
+ /**
3161
+ * read status of the specified Service
3162
+ * @param name name of the Service
3163
+ * @param namespace object name and auth scope, such as for teams and projects
3164
+ * @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).
3165
+ */
3166
+ readNamespacedServiceStatus(name: string, namespace: string, pretty?: string, options?: {
3167
+ headers: {
3168
+ [name: string]: string;
3169
+ };
3170
+ }): Promise<{
3171
+ response: http.IncomingMessage;
3172
+ body: V1Service;
3173
+ }>;
3174
+ /**
3175
+ * read the specified Node
3176
+ * @param name name of the Node
3177
+ * @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).
3178
+ */
3179
+ readNode(name: string, pretty?: string, options?: {
3180
+ headers: {
3181
+ [name: string]: string;
3182
+ };
3183
+ }): Promise<{
3184
+ response: http.IncomingMessage;
3185
+ body: V1Node;
3186
+ }>;
3187
+ /**
3188
+ * read status of the specified Node
3189
+ * @param name name of the Node
3190
+ * @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).
3191
+ */
3192
+ readNodeStatus(name: string, pretty?: string, options?: {
3193
+ headers: {
3194
+ [name: string]: string;
3195
+ };
3196
+ }): Promise<{
3197
+ response: http.IncomingMessage;
3198
+ body: V1Node;
3199
+ }>;
3200
+ /**
3201
+ * read the specified PersistentVolume
3202
+ * @param name name of the PersistentVolume
3203
+ * @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).
3204
+ */
3205
+ readPersistentVolume(name: string, pretty?: string, options?: {
3206
+ headers: {
3207
+ [name: string]: string;
3208
+ };
3209
+ }): Promise<{
3210
+ response: http.IncomingMessage;
3211
+ body: V1PersistentVolume;
3212
+ }>;
3213
+ /**
3214
+ * read status of the specified PersistentVolume
3215
+ * @param name name of the PersistentVolume
3216
+ * @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).
3217
+ */
3218
+ readPersistentVolumeStatus(name: string, pretty?: string, options?: {
3219
+ headers: {
3220
+ [name: string]: string;
3221
+ };
3222
+ }): Promise<{
3223
+ response: http.IncomingMessage;
3224
+ body: V1PersistentVolume;
3225
+ }>;
3226
+ /**
3227
+ * replace the specified Namespace
3228
+ * @param name name of the Namespace
3229
+ * @param body
3230
+ * @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).
3231
+ * @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
3232
+ * @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.
3233
+ * @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.
3234
+ */
3235
+ replaceNamespace(name: string, body: V1Namespace, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3236
+ headers: {
3237
+ [name: string]: string;
3238
+ };
3239
+ }): Promise<{
3240
+ response: http.IncomingMessage;
3241
+ body: V1Namespace;
3242
+ }>;
3243
+ /**
3244
+ * replace finalize of the specified Namespace
3245
+ * @param name name of the Namespace
3246
+ * @param body
3247
+ * @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
3248
+ * @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.
3249
+ * @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.
3250
+ * @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).
3251
+ */
3252
+ replaceNamespaceFinalize(name: string, body: V1Namespace, dryRun?: string, fieldManager?: string, fieldValidation?: string, pretty?: string, options?: {
3253
+ headers: {
3254
+ [name: string]: string;
3255
+ };
3256
+ }): Promise<{
3257
+ response: http.IncomingMessage;
3258
+ body: V1Namespace;
3259
+ }>;
3260
+ /**
3261
+ * replace status of the specified Namespace
3262
+ * @param name name of the Namespace
3263
+ * @param body
3264
+ * @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).
3265
+ * @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
3266
+ * @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.
3267
+ * @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.
3268
+ */
3269
+ replaceNamespaceStatus(name: string, body: V1Namespace, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3270
+ headers: {
3271
+ [name: string]: string;
3272
+ };
3273
+ }): Promise<{
3274
+ response: http.IncomingMessage;
3275
+ body: V1Namespace;
3276
+ }>;
3277
+ /**
3278
+ * replace the specified ConfigMap
3279
+ * @param name name of the ConfigMap
3280
+ * @param namespace object name and auth scope, such as for teams and projects
3281
+ * @param body
3282
+ * @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).
3283
+ * @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
3284
+ * @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.
3285
+ * @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.
3286
+ */
3287
+ replaceNamespacedConfigMap(name: string, namespace: string, body: V1ConfigMap, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3288
+ headers: {
3289
+ [name: string]: string;
3290
+ };
3291
+ }): Promise<{
3292
+ response: http.IncomingMessage;
3293
+ body: V1ConfigMap;
3294
+ }>;
3295
+ /**
3296
+ * replace the specified Endpoints
3297
+ * @param name name of the Endpoints
3298
+ * @param namespace object name and auth scope, such as for teams and projects
3299
+ * @param body
3300
+ * @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).
3301
+ * @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
3302
+ * @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.
3303
+ * @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.
3304
+ */
3305
+ replaceNamespacedEndpoints(name: string, namespace: string, body: V1Endpoints, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3306
+ headers: {
3307
+ [name: string]: string;
3308
+ };
3309
+ }): Promise<{
3310
+ response: http.IncomingMessage;
3311
+ body: V1Endpoints;
3312
+ }>;
3313
+ /**
3314
+ * replace the specified Event
3315
+ * @param name name of the Event
3316
+ * @param namespace object name and auth scope, such as for teams and projects
3317
+ * @param body
3318
+ * @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).
3319
+ * @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
3320
+ * @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.
3321
+ * @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.
3322
+ */
3323
+ replaceNamespacedEvent(name: string, namespace: string, body: CoreV1Event, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3324
+ headers: {
3325
+ [name: string]: string;
3326
+ };
3327
+ }): Promise<{
3328
+ response: http.IncomingMessage;
3329
+ body: CoreV1Event;
3330
+ }>;
3331
+ /**
3332
+ * replace the specified LimitRange
3333
+ * @param name name of the LimitRange
3334
+ * @param namespace object name and auth scope, such as for teams and projects
3335
+ * @param body
3336
+ * @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).
3337
+ * @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
3338
+ * @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.
3339
+ * @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.
3340
+ */
3341
+ replaceNamespacedLimitRange(name: string, namespace: string, body: V1LimitRange, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3342
+ headers: {
3343
+ [name: string]: string;
3344
+ };
3345
+ }): Promise<{
3346
+ response: http.IncomingMessage;
3347
+ body: V1LimitRange;
3348
+ }>;
3349
+ /**
3350
+ * replace the specified PersistentVolumeClaim
3351
+ * @param name name of the PersistentVolumeClaim
3352
+ * @param namespace object name and auth scope, such as for teams and projects
3353
+ * @param body
3354
+ * @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).
3355
+ * @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
3356
+ * @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.
3357
+ * @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.
3358
+ */
3359
+ replaceNamespacedPersistentVolumeClaim(name: string, namespace: string, body: V1PersistentVolumeClaim, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3360
+ headers: {
3361
+ [name: string]: string;
3362
+ };
3363
+ }): Promise<{
3364
+ response: http.IncomingMessage;
3365
+ body: V1PersistentVolumeClaim;
3366
+ }>;
3367
+ /**
3368
+ * replace status of the specified PersistentVolumeClaim
3369
+ * @param name name of the PersistentVolumeClaim
3370
+ * @param namespace object name and auth scope, such as for teams and projects
3371
+ * @param body
3372
+ * @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).
3373
+ * @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
3374
+ * @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.
3375
+ * @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.
3376
+ */
3377
+ replaceNamespacedPersistentVolumeClaimStatus(name: string, namespace: string, body: V1PersistentVolumeClaim, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3378
+ headers: {
3379
+ [name: string]: string;
3380
+ };
3381
+ }): Promise<{
3382
+ response: http.IncomingMessage;
3383
+ body: V1PersistentVolumeClaim;
3384
+ }>;
3385
+ /**
3386
+ * replace the specified Pod
3387
+ * @param name name of the Pod
3388
+ * @param namespace object name and auth scope, such as for teams and projects
3389
+ * @param body
3390
+ * @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).
3391
+ * @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
3392
+ * @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.
3393
+ * @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.
3394
+ */
3395
+ replaceNamespacedPod(name: string, namespace: string, body: V1Pod, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3396
+ headers: {
3397
+ [name: string]: string;
3398
+ };
3399
+ }): Promise<{
3400
+ response: http.IncomingMessage;
3401
+ body: V1Pod;
3402
+ }>;
3403
+ /**
3404
+ * replace ephemeralcontainers of the specified Pod
3405
+ * @param name name of the Pod
3406
+ * @param namespace object name and auth scope, such as for teams and projects
3407
+ * @param body
3408
+ * @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).
3409
+ * @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
3410
+ * @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.
3411
+ * @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.
3412
+ */
3413
+ replaceNamespacedPodEphemeralcontainers(name: string, namespace: string, body: V1Pod, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3414
+ headers: {
3415
+ [name: string]: string;
3416
+ };
3417
+ }): Promise<{
3418
+ response: http.IncomingMessage;
3419
+ body: V1Pod;
3420
+ }>;
3421
+ /**
3422
+ * replace status of the specified Pod
3423
+ * @param name name of the Pod
3424
+ * @param namespace object name and auth scope, such as for teams and projects
3425
+ * @param body
3426
+ * @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).
3427
+ * @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
3428
+ * @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.
3429
+ * @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.
3430
+ */
3431
+ replaceNamespacedPodStatus(name: string, namespace: string, body: V1Pod, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3432
+ headers: {
3433
+ [name: string]: string;
3434
+ };
3435
+ }): Promise<{
3436
+ response: http.IncomingMessage;
3437
+ body: V1Pod;
3438
+ }>;
3439
+ /**
3440
+ * replace the specified PodTemplate
3441
+ * @param name name of the PodTemplate
3442
+ * @param namespace object name and auth scope, such as for teams and projects
3443
+ * @param body
3444
+ * @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).
3445
+ * @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
3446
+ * @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.
3447
+ * @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.
3448
+ */
3449
+ replaceNamespacedPodTemplate(name: string, namespace: string, body: V1PodTemplate, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3450
+ headers: {
3451
+ [name: string]: string;
3452
+ };
3453
+ }): Promise<{
3454
+ response: http.IncomingMessage;
3455
+ body: V1PodTemplate;
3456
+ }>;
3457
+ /**
3458
+ * replace the specified ReplicationController
3459
+ * @param name name of the ReplicationController
3460
+ * @param namespace object name and auth scope, such as for teams and projects
3461
+ * @param body
3462
+ * @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).
3463
+ * @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
3464
+ * @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.
3465
+ * @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.
3466
+ */
3467
+ replaceNamespacedReplicationController(name: string, namespace: string, body: V1ReplicationController, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3468
+ headers: {
3469
+ [name: string]: string;
3470
+ };
3471
+ }): Promise<{
3472
+ response: http.IncomingMessage;
3473
+ body: V1ReplicationController;
3474
+ }>;
3475
+ /**
3476
+ * replace scale of the specified ReplicationController
3477
+ * @param name name of the Scale
3478
+ * @param namespace object name and auth scope, such as for teams and projects
3479
+ * @param body
3480
+ * @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).
3481
+ * @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
3482
+ * @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.
3483
+ * @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.
3484
+ */
3485
+ replaceNamespacedReplicationControllerScale(name: string, namespace: string, body: V1Scale, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3486
+ headers: {
3487
+ [name: string]: string;
3488
+ };
3489
+ }): Promise<{
3490
+ response: http.IncomingMessage;
3491
+ body: V1Scale;
3492
+ }>;
3493
+ /**
3494
+ * replace status of the specified ReplicationController
3495
+ * @param name name of the ReplicationController
3496
+ * @param namespace object name and auth scope, such as for teams and projects
3497
+ * @param body
3498
+ * @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).
3499
+ * @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
3500
+ * @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.
3501
+ * @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.
3502
+ */
3503
+ replaceNamespacedReplicationControllerStatus(name: string, namespace: string, body: V1ReplicationController, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3504
+ headers: {
3505
+ [name: string]: string;
3506
+ };
3507
+ }): Promise<{
3508
+ response: http.IncomingMessage;
3509
+ body: V1ReplicationController;
3510
+ }>;
3511
+ /**
3512
+ * replace the specified ResourceQuota
3513
+ * @param name name of the ResourceQuota
3514
+ * @param namespace object name and auth scope, such as for teams and projects
3515
+ * @param body
3516
+ * @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).
3517
+ * @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
3518
+ * @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.
3519
+ * @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.
3520
+ */
3521
+ replaceNamespacedResourceQuota(name: string, namespace: string, body: V1ResourceQuota, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3522
+ headers: {
3523
+ [name: string]: string;
3524
+ };
3525
+ }): Promise<{
3526
+ response: http.IncomingMessage;
3527
+ body: V1ResourceQuota;
3528
+ }>;
3529
+ /**
3530
+ * replace status of the specified ResourceQuota
3531
+ * @param name name of the ResourceQuota
3532
+ * @param namespace object name and auth scope, such as for teams and projects
3533
+ * @param body
3534
+ * @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).
3535
+ * @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
3536
+ * @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.
3537
+ * @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.
3538
+ */
3539
+ replaceNamespacedResourceQuotaStatus(name: string, namespace: string, body: V1ResourceQuota, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3540
+ headers: {
3541
+ [name: string]: string;
3542
+ };
3543
+ }): Promise<{
3544
+ response: http.IncomingMessage;
3545
+ body: V1ResourceQuota;
3546
+ }>;
3547
+ /**
3548
+ * replace the specified Secret
3549
+ * @param name name of the Secret
3550
+ * @param namespace object name and auth scope, such as for teams and projects
3551
+ * @param body
3552
+ * @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).
3553
+ * @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
3554
+ * @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.
3555
+ * @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.
3556
+ */
3557
+ replaceNamespacedSecret(name: string, namespace: string, body: V1Secret, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3558
+ headers: {
3559
+ [name: string]: string;
3560
+ };
3561
+ }): Promise<{
3562
+ response: http.IncomingMessage;
3563
+ body: V1Secret;
3564
+ }>;
3565
+ /**
3566
+ * replace the specified Service
3567
+ * @param name name of the Service
3568
+ * @param namespace object name and auth scope, such as for teams and projects
3569
+ * @param body
3570
+ * @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).
3571
+ * @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
3572
+ * @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.
3573
+ * @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.
3574
+ */
3575
+ replaceNamespacedService(name: string, namespace: string, body: V1Service, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3576
+ headers: {
3577
+ [name: string]: string;
3578
+ };
3579
+ }): Promise<{
3580
+ response: http.IncomingMessage;
3581
+ body: V1Service;
3582
+ }>;
3583
+ /**
3584
+ * replace the specified ServiceAccount
3585
+ * @param name name of the ServiceAccount
3586
+ * @param namespace object name and auth scope, such as for teams and projects
3587
+ * @param body
3588
+ * @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).
3589
+ * @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
3590
+ * @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.
3591
+ * @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.
3592
+ */
3593
+ replaceNamespacedServiceAccount(name: string, namespace: string, body: V1ServiceAccount, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3594
+ headers: {
3595
+ [name: string]: string;
3596
+ };
3597
+ }): Promise<{
3598
+ response: http.IncomingMessage;
3599
+ body: V1ServiceAccount;
3600
+ }>;
3601
+ /**
3602
+ * replace status of the specified Service
3603
+ * @param name name of the Service
3604
+ * @param namespace object name and auth scope, such as for teams and projects
3605
+ * @param body
3606
+ * @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).
3607
+ * @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
3608
+ * @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.
3609
+ * @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.
3610
+ */
3611
+ replaceNamespacedServiceStatus(name: string, namespace: string, body: V1Service, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3612
+ headers: {
3613
+ [name: string]: string;
3614
+ };
3615
+ }): Promise<{
3616
+ response: http.IncomingMessage;
3617
+ body: V1Service;
3618
+ }>;
3619
+ /**
3620
+ * replace the specified Node
3621
+ * @param name name of the Node
3622
+ * @param body
3623
+ * @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).
3624
+ * @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
3625
+ * @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.
3626
+ * @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.
3627
+ */
3628
+ replaceNode(name: string, body: V1Node, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3629
+ headers: {
3630
+ [name: string]: string;
3631
+ };
3632
+ }): Promise<{
3633
+ response: http.IncomingMessage;
3634
+ body: V1Node;
3635
+ }>;
3636
+ /**
3637
+ * replace status of the specified Node
3638
+ * @param name name of the Node
3639
+ * @param body
3640
+ * @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).
3641
+ * @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
3642
+ * @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.
3643
+ * @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.
3644
+ */
3645
+ replaceNodeStatus(name: string, body: V1Node, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3646
+ headers: {
3647
+ [name: string]: string;
3648
+ };
3649
+ }): Promise<{
3650
+ response: http.IncomingMessage;
3651
+ body: V1Node;
3652
+ }>;
3653
+ /**
3654
+ * replace the specified PersistentVolume
3655
+ * @param name name of the PersistentVolume
3656
+ * @param body
3657
+ * @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).
3658
+ * @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
3659
+ * @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.
3660
+ * @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.
3661
+ */
3662
+ replacePersistentVolume(name: string, body: V1PersistentVolume, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3663
+ headers: {
3664
+ [name: string]: string;
3665
+ };
3666
+ }): Promise<{
3667
+ response: http.IncomingMessage;
3668
+ body: V1PersistentVolume;
3669
+ }>;
3670
+ /**
3671
+ * replace status of the specified PersistentVolume
3672
+ * @param name name of the PersistentVolume
3673
+ * @param body
3674
+ * @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).
3675
+ * @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
3676
+ * @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.
3677
+ * @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.
3678
+ */
3679
+ replacePersistentVolumeStatus(name: string, body: V1PersistentVolume, pretty?: string, dryRun?: string, fieldManager?: string, fieldValidation?: string, options?: {
3680
+ headers: {
3681
+ [name: string]: string;
3682
+ };
3683
+ }): Promise<{
3684
+ response: http.IncomingMessage;
3685
+ body: V1PersistentVolume;
3686
+ }>;
3687
+ }