Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 209 for userInfo (0.18 sec)

  1. staging/src/k8s.io/api/admission/v1beta1/generated.pb.go

    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
    		`Operation:` + fmt.Sprintf("%v", this.Operation) + `,`,
    		`UserInfo:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.UserInfo), "UserInfo", "v11.UserInfo", 1), `&`, ``, 1) + `,`,
    		`Object:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Object), "RawExtension", "runtime.RawExtension", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. internal/config/identity/openid/help.go

    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         ClaimUserinfo,
    			Description: `Enable fetching claims from UserInfo Endpoint for authenticated user` + defaultHelpPostfix(ClaimUserinfo),
    			Optional:    true,
    			Type:        "on|off",
    		},
    		config.HelpKV{
    			Key:         KeyCloakRealm,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 23 14:45:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.api.authentication.v1.UserInfo"
                  }
                ],
                "default": {},
                "description": "User is the UserInfo associated with the provided token."
              }
            },
            "type": "object"
          },
          "io.k8s.api.authentication.v1.UserInfo": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      optional string verb = 5;
    
      // Authenticated user information.
      optional .k8s.io.api.authentication.v1.UserInfo user = 6;
    
      // Impersonated user information.
      // +optional
      optional .k8s.io.api.authentication.v1.UserInfo impersonatedUser = 7;
    
      // Source IPs, from where the request originated and intermediate proxies.
      // The source IPs are listed from (in order):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/authentication/cel/interface.go

    type UserMapper interface {
    	// EvalUser evaluates the given user expressions and returns a list of EvaluationResult.
    	// This is used for user validation that contains a list of expressions.
    	EvalUser(ctx context.Context, userInfo *unstructured.Unstructured) ([]EvaluationResult, error)
    }
    
    var _ ExpressionAccessor = &ClaimMappingExpression{}
    
    // ClaimMappingExpression is a CEL expression that maps a claim.
    type ClaimMappingExpression struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.authentication.v1.UserInfo": {
            "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
            "properties": {
              "extra": {
                "additionalProperties": {
                  "items": {
                    "default": "",
                    "type": "string"
                  },
                  "type": "array"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestBuildUserType(t *testing.T) {
    	userDeclType := buildUserType()
    	userType := reflect.TypeOf(authenticationv1.UserInfo{})
    
    	if len(userDeclType.Fields) != userType.NumField() {
    		t.Errorf("expected %d fields, got %d", userType.NumField(), len(userDeclType.Fields))
    	}
    
    	for i := 0; i < userType.NumField(); i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    	)
    	for dID, ss := range us {
    		if lastUpdate.IsZero() {
    			lastUpdate = ss.userInfo.UserInfo.UpdatedAt
    			latestID = dID
    			latestUserStat = ss
    		}
    		if !ss.userInfo.UserInfo.UpdatedAt.IsZero() && ss.userInfo.UserInfo.UpdatedAt.After(lastUpdate) {
    			lastUpdate = ss.userInfo.UserInfo.UpdatedAt
    			latestID = dID
    			latestUserStat = ss
    		}
    	}
    	if latestID != globalDeploymentID() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// For non-resource requests, this is the lower-cased HTTP method.
    	Verb string
    	// Authenticated user information.
    	User authnv1.UserInfo
    	// Impersonated user information.
    	// +optional
    	ImpersonatedUser *authnv1.UserInfo
    	// Source IPs, from where the request originated and intermediate proxies.
    	// The source IPs are listed from (in order):
    	// 1. X-Forwarded-For request header IPs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. plugin/pkg/admission/network/defaultingressclass/admission_test.go

    				ingress.Name,
    				networkingv1.Resource("ingresses").WithVersion("version"),
    				"", // subresource
    				admission.Create,
    				&metav1.CreateOptions{},
    				false, // dryRun
    				nil,   // userInfo
    			)
    
    			err := admissiontesting.WithReinvocationTesting(t, ctrl).Admit(context.TODO(), attrs, nil)
    			if !reflect.DeepEqual(err, testCase.expectedError) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 13:12:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top