Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for deleteCollection (0.32 sec)

  1. api/discovery/aggregated_v2.json

                        "patch",
                        "update"
                      ]
                    }
                  ],
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
                    "get",
                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                }
              ],
              "version": "v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. api/discovery/aggregated_v2beta1.json

                        "patch",
                        "update"
                      ]
                    }
                  ],
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
                    "get",
                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                }
              ],
              "version": "v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // deleteCollectionPageSize is the size of the page used when
    // listing objects from storage during DeleteCollection calls.
    // It's a variable to make allow overwriting in tests.
    var deleteCollectionPageSize = int64(10000)
    
    // DeleteCollection removes all items returned by List with a given ListOptions from storage.
    //
    // DeleteCollection is currently NOT atomic. It can happen that only subset of objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    var toDiscoveryKubeVerb = map[string]string{
    	"CONNECT":          "", // do not list in discovery.
    	"DELETE":           "delete",
    	"DELETECOLLECTION": "deletecollection",
    	"GET":              "get",
    	"LIST":             "list",
    	"PATCH":            "patch",
    	"POST":             "create",
    	"PROXY":            "proxy",
    	"PUT":              "update",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	case "delete":
    		allowsOptions := true
    		return handlers.DeleteResource(storage, allowsOptions, requestScope, r.admission)
    	case "deletecollection":
    		checkBody := true
    		return handlers.DeleteCollection(storage, checkBody, requestScope, r.admission)
    	default:
    		responsewriters.ErrorNegotiated(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    				if err := op.Do(ctx); err != nil {
    					t.Fatalf("failed %T operation %v: %v\n%v", op, i, err, op)
    				}
    			}
    
    			// Reset resources
    			err := ctx.DynamicClient.Resource(myCRDV1Beta1).Namespace("default").DeleteCollection(context.TODO(), metav1.DeleteOptions{}, metav1.ListOptions{})
    			if err != nil {
    				t.Fatal(err)
    			}
    		})
    	}
    }
    
    var myCRDV1Beta1 schema.GroupVersionResource = schema.GroupVersionResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "type": "string"
              },
              "verbs": {
                "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array"
              },
              "version": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"kind":               "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')",
    	"verbs":              "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)",
    	"shortNames":         "shortNames is a list of suggested short names of the resource.",
    	"categories":         "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string kind = 3;
    
      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      repeated string shortNames = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string kind = 3;
    
      // verbs is a list of supported kube verbs (this includes get, list, watch, create,
      // update, patch, delete, deletecollection, and proxy)
      optional Verbs verbs = 4;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=atomic
      repeated string shortNames = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top