eric-maynard commented on code in PR #1504:
URL: https://github.com/apache/polaris/pull/1504#discussion_r2072468033


##########
polaris-core/src/main/java/org/apache/polaris/core/storage/StorageAccessProperty.java:
##########
@@ -18,15 +18,23 @@
  */
 package org.apache.polaris.core.storage;
 
-/** Enum of polaris supported credential properties */
-public enum PolarisCredentialProperty {
+/**
+ * A subset of Iceberg catalog properties recognized by Polaris.
+ *
+ * <p>Most of these properties are meant to configure Iceberg FileIO objects 
for accessing data in
+ * storage.
+ */
+public enum StorageAccessProperty {
   AWS_KEY_ID(String.class, "s3.access-key-id", "the aws access key id"),
   AWS_SECRET_KEY(String.class, "s3.secret-access-key", "the aws access key 
secret"),
   AWS_TOKEN(String.class, "s3.session-token", "the aws scoped access token"),
   AWS_SESSION_TOKEN_EXPIRES_AT_MS(

Review Comment:
   `AWS_SESSION_TOKEN_EXPIRES_AT_MS` is definitely not a credential. But it is 
a property related to credential vending, or access to object storage, and so I 
think having it here makes sense.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@polaris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to