Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for ShortNames (0.13 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.yaml

      resources:
      - categories:
        - categoriesValue
        resource: resourceValue
        responseKind:
          group: groupValue
          kind: kindValue
          version: versionValue
        scope: scopeValue
        shortNames:
        - shortNamesValue
        singularResource: singularResourceValue
        subresources:
        - acceptedTypes:
          - group: groupValue
            kind: kindValue
            version: versionValue
          responseKind:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. pkg/registry/apps/daemonset/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"ds"}
    }
    
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. pkg/registry/batch/cronjob/storage/storage.go

    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"cj"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a resourcequota.
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. api/discovery/apis__storage.k8s.io__v1.json

            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "StorageClass",
          "name": "storageclasses",
          "namespaced": false,
          "shortNames": [
            "sc"
          ],
          "singularName": "storageclass",
          "storageVersionHash": "K+m6uJwbjGY=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. pkg/registry/scheduling/priorityclass/storage/storage.go

    		return nil, err
    	}
    
    	return &REST{store}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"pc"}
    }
    
    // Delete ensures that system priority classes are not deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. api/discovery/apis__autoscaling__v1.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 816 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// delete, deletecollection, and proxy).
    	// +listType=set
    	Verbs []string `json:"verbs" protobuf:"bytes,5,opt,name=verbs"`
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    	ShortNames []string `json:"shortNames,omitempty" protobuf:"bytes,6,rep,name=shortNames"`
    	// 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: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. pkg/registry/networking/ingress/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"ing"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of an ingress
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top