Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SubjectKind (0.16 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    const (
    	SubjectKindUser           SubjectKind = "User"
    	SubjectKindGroup          SubjectKind = "Group"
    	SubjectKindServiceAccount SubjectKind = "ServiceAccount"
    )
    
    // UserSubject holds detailed information for user-kind subject.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/types.go

    	// Required
    	// +unionDiscriminator
    	Kind SubjectKind
    	// `user` matches based on username.
    	// +optional
    	User *UserSubject
    	// `group` matches based on user group name.
    	// +optional
    	Group *GroupSubject
    	// `serviceAccount` matches ServiceAccounts.
    	// +optional
    	ServiceAccount *ServiceAccountSubject
    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    const (
    	SubjectKindUser           SubjectKind = "User"
    	SubjectKindGroup          SubjectKind = "Group"
    	SubjectKindServiceAccount SubjectKind = "ServiceAccount"
    )
    
    // UserSubject holds detailed information for user-kind subject.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    const (
    	SubjectKindUser           SubjectKind = "User"
    	SubjectKindGroup          SubjectKind = "Group"
    	SubjectKindServiceAccount SubjectKind = "ServiceAccount"
    )
    
    // UserSubject holds detailed information for user-kind subject.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    const (
    	SubjectKindUser           SubjectKind = "User"
    	SubjectKindGroup          SubjectKind = "Group"
    	SubjectKindServiceAccount SubjectKind = "ServiceAccount"
    )
    
    // UserSubject holds detailed information for user-kind subject.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
Back to top