Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AccountName (0.65 sec)

  1. cmd/bucket-handlers.go

    		n := 0
    		// Use the following trick to filter in place
    		// https://github.com/golang/go/wiki/SliceTricks#filter-in-place
    		for _, bucketInfo := range bucketsInfo {
    			if globalIAMSys.IsAllowed(policy.Args{
    				AccountName:     cred.AccessKey,
    				Groups:          cred.Groups,
    				Action:          policy.ListBucketAction,
    				BucketName:      bucketInfo.Name,
    				ConditionValues: getConditionValues(r, "", cred),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. cmd/iam.go

    	ok, parentUser, err := sys.IsTempUser(args.AccountName)
    	if err != nil {
    		return false
    	}
    	if ok {
    		return sys.IsAllowedSTS(args, parentUser)
    	}
    
    	// If the credential is for a service account, perform related check
    	ok, parentUser, err = sys.IsServiceAccount(args.AccountName)
    	if err != nil {
    		return false
    	}
    	if ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    		"destination_service":            fmt.Sprintf("%s.%s.svc.cluster.local", dst.Config().Service, destns),
    		"destination_principal":          fmt.Sprintf("spiffe://cluster.local/ns/%v/sa/%s", destns, dst.Config().AccountName()),
    		"destination_service_name":       dst.Config().Service,
    		"destination_workload":           deployName(dst),
    		"destination_workload_namespace": destns,
    		"destination_service_namespace":  destns,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top