dimas-b commented on code in PR #1504: URL: https://github.com/apache/polaris/pull/1504#discussion_r2072161391
########## 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: I'd say it is part of the credential bunch of properties. -- 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