# Functions
@Summary Clone a namespace @Description Clone a namespace and its objects to a new namespace @Accept json @Produce json @Param body body NSClonerRequestBody true "Namespace clone request body" @Success 200 {object} string @Router /namespaces/:namespace/cloneNamespace [post].
@Summary Display config maps for a specific namespace @Description Display all config maps in the specified namespace @Produce json @Param namespace path string true "Namespace name" @Success 200 {object} string @Router /namespaces/:namespace/configmaps/display [get].
@Summary Display deployments for a specific namespace @Description Display all deployments in the specified namespace @Produce json @Param namespace path string true "Namespace name" @Success 200 {object} string @Router /namespaces/:namespace/deployments/display [get].
@Summary Display secrets for a specific namespace @Description Display all secrets in the specified namespace @Produce json @Param namespace path string true "Namespace name" @Success 200 {object} string @Router /namespaces/:namespace/secrets/display [get].
@Summary Get deployments for a specific namespace @Description Get all deployments in the specified namespace @Produce json @Param namespace path string true "Namespace name" @Success 200 {array} string @Router /namespaces/:namespace/deployments [get].
GetNS godoc @Summary Get all namespaces @Description Get all namespaces in the cluster @Produce json @Success 200 {array} string @Router /namespaces [get].
@Summary Update a config map @Description Update a config map in a specific namespace @Accept json @Produce json @Param body body ConfigMapPatchRequestBody true "ConfigMap Update Request Body" @Success 200 {object} string @Router /configmaps/:configmap [post].
@Summary Update deployment image @Description Update the image of a deployment in a specific namespace @Accept json @Produce json @Param body body DeploymentPatchRequestBody true "Deployment Image Set Request Body" @Success 200 {object} string @Router /deployments/:deployment [post].
@Summary Update a secret @Description Update a secret in a specific namespace @Accept json @Produce json @Param body body SecretPatchRequestBody true "Secret Update Request Body" @Param secretPatchRequestBody body SecretPatchRequestBody true "Secret patch request body" @Success 200 {object} string @Router /secrets/:secret [post].
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author