Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    				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
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Nov 16 04:42:31 GMT 2023
    - 16.5K 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.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top