github.com/rancher/types@v0.0.0-20220328215343-4370ff10ecd5/client/project/v3/zz_generated_repo_perm.go (about)

     1  package client
     2  
     3  const (
     4  	RepoPermType       = "repoPerm"
     5  	RepoPermFieldAdmin = "admin"
     6  	RepoPermFieldPull  = "pull"
     7  	RepoPermFieldPush  = "push"
     8  )
     9  
    10  type RepoPerm struct {
    11  	Admin bool `json:"admin,omitempty" yaml:"admin,omitempty"`
    12  	Pull  bool `json:"pull,omitempty" yaml:"pull,omitempty"`
    13  	Push  bool `json:"push,omitempty" yaml:"push,omitempty"`
    14  }