Files
go/kubernetes/client/v1_se_linux_options.go

27 lines
767 B
Go
Raw Normal View History

/*
* Kubernetes
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* API version: v1.10.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package client
// SELinuxOptions are the labels to be applied to the container
type V1SeLinuxOptions struct {
// Level is SELinux level label that applies to the container.
Level string `json:"level,omitempty"`
// Role is a SELinux role label that applies to the container.
Role string `json:"role,omitempty"`
// Type is a SELinux type label that applies to the container.
Type_ string `json:"type,omitempty"`
// User is a SELinux user label that applies to the container.
User string `json:"user,omitempty"`
}