k8c.io/api/v3@v3.0.0-20230904060738-b0a93889c0b6/crd/enterprise/kcp/ee.kubermatic.k8c.io_userprojectbindings.yaml (about) 1 # This file has been generated by hack/update-codegen.sh, DO NOT EDIT. 2 3 apiVersion: apiextensions.k8s.io/v1 4 kind: CustomResourceDefinition 5 metadata: 6 annotations: 7 controller-gen.kubebuilder.io/version: v0.12.0 8 name: userprojectbindings.ee.kubermatic.k8c.io 9 spec: 10 group: ee.kubermatic.k8c.io 11 names: 12 kind: UserProjectBinding 13 listKind: UserProjectBindingList 14 plural: userprojectbindings 15 singular: userprojectbinding 16 scope: Cluster 17 versions: 18 - additionalPrinterColumns: 19 - jsonPath: .spec.projectID 20 name: ProjectID 21 type: string 22 - jsonPath: .spec.group 23 name: Group 24 type: string 25 - jsonPath: .spec.userEmail 26 name: UserEmail 27 type: string 28 - jsonPath: .metadata.creationTimestamp 29 name: Age 30 type: date 31 name: v1 32 schema: 33 openAPIV3Schema: 34 description: UserProjectBinding specifies a binding between a user and a project This resource is used by the user management to manipulate members of the given project. 35 properties: 36 apiVersion: 37 description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' 38 type: string 39 kind: 40 description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' 41 type: string 42 metadata: 43 type: object 44 spec: 45 description: UserProjectBindingSpec specifies a user. 46 properties: 47 group: 48 description: Group is the user's group, determining their permissions within the project. Must be one of `owners`, `editors`, `viewers` or `projectmanagers`. 49 type: string 50 projectID: 51 description: ProjectID is the name of the target project. 52 type: string 53 userEmail: 54 description: UserEmail is the email of the user that is bound to the given project. 55 type: string 56 required: 57 - group 58 - projectID 59 - userEmail 60 type: object 61 type: object 62 served: true 63 storage: true 64 subresources: {}