Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 146 for DELETECOLLECTION (0.27 sec)

  1. api/discovery/apis__storage.k8s.io__v1alpha1.json

          "shortNames": [
            "vac"
          ],
          "singularName": "volumeattributesclass",
          "storageVersionHash": "HPC8kMG1ukQ=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        }
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 547 bytes
    - Viewed (0)
  2. api/discovery/apis__policy__v1.json

          "shortNames": [
            "pdb"
          ],
          "singularName": "poddisruptionbudget",
          "storageVersionHash": "EVWiDmWqyJw=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "PodDisruptionBudget",
          "name": "poddisruptionbudgets/status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 746 bytes
    - Viewed (0)
  3. api/discovery/apis__apiextensions.k8s.io__v1.json

            "crd",
            "crds"
          ],
          "singularName": "customresourcedefinition",
          "storageVersionHash": "jfWCUB31mvA=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "CustomResourceDefinition",
          "name": "customresourcedefinitions/status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 859 bytes
    - Viewed (0)
  4. api/discovery/apis__autoscaling__v2.json

          "shortNames": [
            "hpa"
          ],
          "singularName": "horizontalpodautoscaler",
          "storageVersionHash": "qwQve8ut294=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "HorizontalPodAutoscaler",
          "name": "horizontalpodautoscalers/status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 816 bytes
    - Viewed (0)
  5. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    			return namespace, nil
    		}
    	}
    	return namespace, err
    }
    
    // deleteCollection is a helper function that will delete the collection of resources
    // it returns true if the operation was supported on the server.
    // it returns an error if the operation was supported on the server but was unable to complete.
    func (d *namespacedResourcesDeleter) deleteCollection(ctx context.Context, gvr schema.GroupVersionResource, namespace string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    		defer span.AddEvent("Writing http response done")
    		transformResponseObject(ctx, scope, req, w, status, outputMediaType, result)
    	}
    }
    
    // DeleteCollection returns a function that will handle a collection deletion
    func DeleteCollection(r rest.CollectionDeleter, checkBody bool, scope *RequestScope, admit admission.Interface) http.HandlerFunc {
    	return func(w http.ResponseWriter, req *http.Request) {
    		ctx := req.Context()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. api/discovery/apis__certificates.k8s.io__v1.json

          "shortNames": [
            "csr"
          ],
          "singularName": "certificatesigningrequest",
          "storageVersionHash": "95fRKMXA+00=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "CertificateSigningRequest",
          "name": "certificatesigningrequests/approval",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/metrics/metrics.go

    type RequestBodyVerb string
    
    const (
    	Patch            RequestBodyVerb = "patch"
    	Delete           RequestBodyVerb = "delete"
    	Update           RequestBodyVerb = "update"
    	Create           RequestBodyVerb = "create"
    	DeleteCollection RequestBodyVerb = "delete_collection"
    )
    
    var (
    	RequestBodySizes = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem: "apiserver",
    			Name:      "request_body_size_bytes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 02:06:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/storage/storage.go

    		// pods in v1.
    		warning.AddWarning(ctx, "", deleteOptionWarnings)
    	}
    	return r.Store.Delete(ctx, name, deleteValidation, options)
    }
    
    func (r *REST) DeleteCollection(ctx context.Context, deleteValidation rest.ValidateObjectFunc, deleteOptions *metav1.DeleteOptions, listOptions *internalversion.ListOptions) (runtime.Object, error) {
    	//nolint:staticcheck // SA1019 backwards compatibility
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	return c.client.Delete().
    		Namespace(c.ns).
    		Resource("examples").
    		Name(name).
    		Body(&opts).
    		Do(ctx).
    		Error()
    }
    
    // DeleteCollection deletes a collection of objects.
    func (c *examples) DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error {
    	var timeout time.Duration
    	if listOpts.TimeoutSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top