Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetIAMPolicyClaimName (0.57 sec)

  1. internal/config/identity/openid/openid.go

    				ClientID:             provCfg.ClientID,
    				HashedClientSecret:   hashedSecret,
    			}
    		}
    	}
    
    	return res
    }
    
    // GetIAMPolicyClaimName - returns the policy claim name for the (at most one)
    // provider configured without a role policy.
    func (r *Config) GetIAMPolicyClaimName() string {
    	pCfg, ok := r.arnProviderCfgsMap[DummyRoleARN]
    	if !ok {
    		return ""
    	}
    	return pCfg.ClaimPrefix + pCfg.ClaimName
    }
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  2. cmd/utils.go

    	case globalIsErasureSD:
    		return globalMinioModeErasureSD
    	default:
    		return globalMinioModeFS
    	}
    }
    
    func iamPolicyClaimNameOpenID() string {
    	return globalIAMSys.OpenIDConfig.GetIAMPolicyClaimName()
    }
    
    func iamPolicyClaimNameSA() string {
    	return "sa-policy"
    }
    
    // On MinIO a directory object is stored as a regular object with "__XLDIR__" suffix.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 33K bytes
    - Viewed (0)
Back to top