UNPKG

@itentialopensource/adapter-kubernetes

Version:

This adapter integrates with system described as: kubernetes.

878 lines (865 loc) 418 kB
## Using this Adapter The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls. ### Generic Adapter Calls These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality. <table border="1" class="bordered-table"> <tr> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th> </tr> <tr> <td style="padding:15px">connect()</td> <td style="padding:15px">This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">healthCheck(callback)</td> <td style="padding:15px">This call ensures that the adapter can communicate with Adapter for Kubernetes. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">refreshProperties(properties)</td> <td style="padding:15px">This call provides the adapter the ability to accept property changes without having to restart the adapter.</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">encryptProperty(property, technique, callback)</td> <td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for Kubernetes.</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)</td> <td style="padding:15px">This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapSuspendAdapter(mode, callback)</td> <td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapUnsuspendAdapter(callback)</td> <td style="padding:15px">This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapGetAdapterQueue(callback)</td> <td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td> <td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapTroubleshootAdapter(props, persistFlag, adapter, callback)</td> <td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td> <td style="padding:15px">This call will return the results of a healthcheck.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapRunAdapterConnectivity(callback)</td> <td style="padding:15px">This call will return the results of a connectivity check.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapRunAdapterBasicGet(callback)</td> <td style="padding:15px">This call will return the results of running basic get API calls.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapMoveAdapterEntitiesToDB(callback)</td> <td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapDeactivateTasks(tasks, callback)</td> <td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapActivateTasks(tasks, callback)</td> <td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td> <td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td> <td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td> <td style="padding:15px">This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapRunAdapterLint(callback)</td> <td style="padding:15px">Runs lint on the addapter and provides the information back.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapRunAdapterTests(callback)</td> <td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapGetAdapterInventory(callback)</td> <td style="padding:15px">This call provides some inventory related information about the adapter.</td> <td style="padding:15px">Yes</td> </tr> </table> <br> ### Adapter Cache Calls These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well. <table border="1" class="bordered-table"> <tr> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th> </tr> <tr> <td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td> <td style="padding:15px">This call populates the adapter cache.</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td> <td style="padding:15px">This call retrieves the specific items from the adapter cache.</td> <td style="padding:15px">Yes</td> </tr> </table> <br> ### Adapter Broker Calls These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls. <table border="1" class="bordered-table"> <tr> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th> </tr> <tr> <td style="padding:15px">hasEntities(entityType, entityList, callback)</td> <td style="padding:15px">This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">getDevice(deviceName, callback)</td> <td style="padding:15px">This call returns the details of the requested device.</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">getDevicesFiltered(options, callback)</td> <td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">isAlive(deviceName, callback)</td> <td style="padding:15px">This call returns whether the device status is active</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">getConfig(deviceName, format, callback)</td> <td style="padding:15px">This call returns the configuration for the selected device.</td> <td style="padding:15px">No</td> </tr> <tr> <td style="padding:15px">iapGetDeviceCount(callback)</td> <td style="padding:15px">This call returns the count of devices.</td> <td style="padding:15px">No</td> </tr> </table> <br> ### Specific Adapter Calls Specific adapter calls are built based on the API of the Kubernetes. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls. <table border="1" class="bordered-table"> <tr> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th> <th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th> </tr> <tr> <td style="padding:15px">getCoreAPIVersions(callback)</td> <td style="padding:15px">get available API versions</td> <td style="padding:15px">{base_path}/{version}/api/?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">getCoreV1APIResources(callback)</td> <td style="padding:15px">get available resources</td> <td style="padding:15px">{base_path}/{version}/api/v1/?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1ComponentStatus(callback)</td> <td style="padding:15px">list objects of kind ComponentStatus</td> <td style="padding:15px">{base_path}/{version}/api/v1/componentstatuses?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1ComponentStatus(callback)</td> <td style="padding:15px">read the specified ComponentStatus</td> <td style="padding:15px">{base_path}/{version}/api/v1/componentstatuses/{pathv1}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1ConfigMapForAllNamespaces(callback)</td> <td style="padding:15px">list or watch objects of kind ConfigMap</td> <td style="padding:15px">{base_path}/{version}/api/v1/configmaps?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1EndpointsForAllNamespaces(callback)</td> <td style="padding:15px">list or watch objects of kind Endpoints</td> <td style="padding:15px">{base_path}/{version}/api/v1/endpoints?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1EventForAllNamespaces(callback)</td> <td style="padding:15px">list or watch objects of kind Event</td> <td style="padding:15px">{base_path}/{version}/api/v1/events?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1LimitRangeForAllNamespaces(callback)</td> <td style="padding:15px">list or watch objects of kind LimitRange</td> <td style="padding:15px">{base_path}/{version}/api/v1/limitranges?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1Namespace(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind Namespace</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1Namespace(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create a Namespace</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedBinding(body, callback)</td> <td style="padding:15px">create a Binding</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/bindings?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedConfigMap(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of ConfigMap</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedConfigMap(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind ConfigMap</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedConfigMap(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create a ConfigMap</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedConfigMap(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete a ConfigMap</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedConfigMap(exact, exportParam, callback)</td> <td style="padding:15px">read the specified ConfigMap</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedConfigMap(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified ConfigMap</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedConfigMap(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified ConfigMap</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/configmaps/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedEndpoints(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of Endpoints</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedEndpoints(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind Endpoints</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedEndpoints(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create Endpoints</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedEndpoints(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete Endpoints</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedEndpoints(exact, exportParam, callback)</td> <td style="padding:15px">read the specified Endpoints</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedEndpoints(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified Endpoints</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedEndpoints(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified Endpoints</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/endpoints/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedEvent(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of Event</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/events?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedEvent(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind Event</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/events?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedEvent(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create an Event</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/events?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedEvent(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete an Event</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/events/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedEvent(exact, exportParam, callback)</td> <td style="padding:15px">read the specified Event</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/events/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedEvent(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified Event</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/events/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedEvent(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified Event</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/events/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedLimitRange(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of LimitRange</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedLimitRange(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind LimitRange</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedLimitRange(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create a LimitRange</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedLimitRange(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete a LimitRange</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedLimitRange(exact, exportParam, callback)</td> <td style="padding:15px">read the specified LimitRange</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedLimitRange(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified LimitRange</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedLimitRange(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified LimitRange</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/limitranges/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedPersistentVolumeClaim(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedPersistentVolumeClaim(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedPersistentVolumeClaim(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create a PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedPersistentVolumeClaim(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete a PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedPersistentVolumeClaim(exact, exportParam, callback)</td> <td style="padding:15px">read the specified PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedPersistentVolumeClaim(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedPersistentVolumeClaim(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedPersistentVolumeClaimStatus(callback)</td> <td style="padding:15px">read status of the specified PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedPersistentVolumeClaimStatus(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update status of the specified PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedPersistentVolumeClaimStatus(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace status of the specified PersistentVolumeClaim</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/persistentvolumeclaims/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedPod(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedPod(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedPod(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create a Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedPod(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete a Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedPod(exact, exportParam, callback)</td> <td style="padding:15px">read the specified Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedPod(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedPod(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1GetNamespacedPodAttach(callback)</td> <td style="padding:15px">connect GET requests to attach of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/attach?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PostNamespacedPodAttach(callback)</td> <td style="padding:15px">connect POST requests to attach of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/attach?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedPodBinding(body, callback)</td> <td style="padding:15px">create binding of a Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/binding?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedPodEviction(body, callback)</td> <td style="padding:15px">create eviction of a Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/eviction?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1GetNamespacedPodExec(callback)</td> <td style="padding:15px">connect GET requests to exec of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/exec?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PostNamespacedPodExec(callback)</td> <td style="padding:15px">connect POST requests to exec of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/exec?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedPodLog(callback)</td> <td style="padding:15px">read log of the specified Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/log?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1GetNamespacedPodPortforward(callback)</td> <td style="padding:15px">connect GET requests to portforward of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/portforward?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PostNamespacedPodPortforward(callback)</td> <td style="padding:15px">connect POST requests to portforward of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/portforward?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1DeleteNamespacedPodProxy(callback)</td> <td style="padding:15px">connect DELETE requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1GetNamespacedPodProxy(callback)</td> <td style="padding:15px">connect GET requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1HeadNamespacedPodProxy(callback)</td> <td style="padding:15px">connect HEAD requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1OptionsNamespacedPodProxy(callback)</td> <td style="padding:15px">connect OPTIONS requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PatchNamespacedPodProxy(callback)</td> <td style="padding:15px">connect PATCH requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PostNamespacedPodProxy(callback)</td> <td style="padding:15px">connect POST requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PutNamespacedPodProxy(callback)</td> <td style="padding:15px">connect PUT requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1DeleteNamespacedPodProxyWithPath(callback)</td> <td style="padding:15px">connect DELETE requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1GetNamespacedPodProxyWithPath(callback)</td> <td style="padding:15px">connect GET requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1HeadNamespacedPodProxyWithPath(callback)</td> <td style="padding:15px">connect HEAD requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1OptionsNamespacedPodProxyWithPath(callback)</td> <td style="padding:15px">connect OPTIONS requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PatchNamespacedPodProxyWithPath(callback)</td> <td style="padding:15px">connect PATCH requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PostNamespacedPodProxyWithPath(callback)</td> <td style="padding:15px">connect POST requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">connectCoreV1PutNamespacedPodProxyWithPath(callback)</td> <td style="padding:15px">connect PUT requests to proxy of Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/proxy/{pathv3}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedPodStatus(callback)</td> <td style="padding:15px">read status of the specified Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedPodStatus(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update status of the specified Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedPodStatus(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace status of the specified Pod</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/pods/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedPodTemplate(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of PodTemplate</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedPodTemplate(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind PodTemplate</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedPodTemplate(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create a PodTemplate</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedPodTemplate(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete a PodTemplate</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedPodTemplate(exact, exportParam, callback)</td> <td style="padding:15px">read the specified PodTemplate</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedPodTemplate(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified PodTemplate</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedPodTemplate(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified PodTemplate</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/podtemplates/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedReplicationController(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedReplicationController(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedReplicationController(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create a ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedReplicationController(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete a ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedReplicationController(exact, exportParam, callback)</td> <td style="padding:15px">read the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedReplicationController(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedReplicationController(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedReplicationControllerScale(callback)</td> <td style="padding:15px">read scale of the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedReplicationControllerScale(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update scale of the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedReplicationControllerScale(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace scale of the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/scale?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedReplicationControllerStatus(callback)</td> <td style="padding:15px">read status of the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedReplicationControllerStatus(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update status of the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedReplicationControllerStatus(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace status of the specified ReplicationController</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/replicationcontrollers/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedResourceQuota(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">delete collection of ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">listCoreV1NamespacedResourceQuota(allowWatchBookmarks, continueParam, fieldSelector, labelSelector, limit, resourceVersion, timeoutSeconds, watch, callback)</td> <td style="padding:15px">list or watch objects of kind ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">createCoreV1NamespacedResourceQuota(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">create a ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1NamespacedResourceQuota(body, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, callback)</td> <td style="padding:15px">delete a ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedResourceQuota(exact, exportParam, callback)</td> <td style="padding:15px">read the specified ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedResourceQuota(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update the specified ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedResourceQuota(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace the specified ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">readCoreV1NamespacedResourceQuotaStatus(callback)</td> <td style="padding:15px">read status of the specified ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">patchCoreV1NamespacedResourceQuotaStatus(body, dryRun, fieldManager, force, callback)</td> <td style="padding:15px">partially update status of the specified ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">replaceCoreV1NamespacedResourceQuotaStatus(body, dryRun, fieldManager, callback)</td> <td style="padding:15px">replace status of the specified ResourceQuota</td> <td style="padding:15px">{base_path}/{version}/api/v1/namespaces/{pathv1}/resourcequotas/{pathv2}/status?{query}</td> <td style="padding:15px">Yes</td> </tr> <tr> <td style="padding:15px">deleteCoreV1CollectionNamespacedSecret(allowWatchBookmarks, continueP