Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for shortNames (0.46 sec)

  1. api/discovery/aggregated_v2.json

                  "responseKind": {
                    "group": "",
                    "kind": "DaemonSet",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
                    "ds"
                  ],
                  "singularResource": "daemonset",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
    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

                  "responseKind": {
                    "group": "",
                    "kind": "DaemonSet",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "shortNames": [
                    "ds"
                  ],
                  "singularResource": "daemonset",
                  "subresources": [
                    {
                      "responseKind": {
                        "group": "",
    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/endpoints/installer.go

    			Resource: r.Name,
    			Scope:    scope,
    			ResponseKind: &metav1.GroupVersionKind{
    				Group:   r.Group,
    				Version: r.Version,
    				Kind:    r.Kind,
    			},
    			Verbs:            r.Verbs,
    			ShortNames:       r.ShortNames,
    			Categories:       r.Categories,
    			SingularResource: r.SingularName,
    		}
    		apiResourceList = append(apiResourceList, resource)
    		parentResources[r.Name] = len(apiResourceList) - 1
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	out.Plural = in.Plural
    	out.Singular = in.Singular
    	out.ShortNames = *(*[]string)(unsafe.Pointer(&in.ShortNames))
    	out.Kind = in.Kind
    	out.ListKind = in.ListKind
    	out.Categories = *(*[]string)(unsafe.Pointer(&in.Categories))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    	out.Plural = in.Plural
    	out.Singular = in.Singular
    	out.ShortNames = *(*[]string)(unsafe.Pointer(&in.ShortNames))
    	out.Kind = in.Kind
    	out.ListKind = in.ListKind
    	out.Categories = *(*[]string)(unsafe.Pointer(&in.Categories))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// update, patch, delete, deletecollection, and proxy)
    	Verbs Verbs `json:"verbs" protobuf:"bytes,4,opt,name=verbs"`
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=atomic
    	ShortNames []string `json:"shortNames,omitempty" protobuf:"bytes,5,rep,name=shortNames"`
    	// categories is a list of the grouped resources this resource belongs to (e.g. 'all')
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string",
              "default": ""
            },
            "shortNames": {
              "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get \u003cshortname\u003e`. It must be all lowercase.",
              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"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. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "default": false,
                "description": "namespaced indicates if a resource is namespaced or not.",
                "type": "boolean"
              },
              "shortNames": {
                "description": "shortNames is a list of suggested short names of the resource.",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	}
    
    	for i, shortName := range names.ShortNames {
    		if errs := utilvalidation.IsDNS1035Label(shortName); len(errs) > 0 {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("shortNames").Index(i), shortName, strings.Join(errs, ",")))
    		}
    	}
    
    	// kind and listKind may not be the same or parsing become ambiguous
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top