nastra commented on code in PR #10722: URL: https://github.com/apache/iceberg/pull/10722#discussion_r1684545916
########## open-api/rest-catalog-open-api.py: ########## @@ -441,6 +441,30 @@ class AssertViewUUID(BaseModel): uuid: str +class AzureCredentials(BaseModel): + account_name: Optional[str] = Field(None, alias='account-name') + account_key: Optional[str] = Field(None, alias='account-key') + token: Optional[str] = None + + +class AwsCredentials(BaseModel): Review Comment: yeah that might make sense to name them more closely to the underlying FileIO impl -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org