kevinjqliu commented on code in PR #3499:
URL: https://github.com/apache/iceberg-python/pull/3499#discussion_r3447632018


##########
pyiceberg/catalog/rest/__init__.py:
##########
@@ -545,6 +551,32 @@ def _fetch_scan_tasks(self, identifier: str | Identifier, 
plan_task: str) -> Sca
 
         return ScanTasks.model_validate_json(response.text)
 
+    @retry(**_RETRY_ARGS)
+    def _load_credentials(
+        self,
+        identifier: str | Identifier,
+    ) -> LoadCredentialsResponse:
+        """Load raw vended storage credentials for a table."""
+        self._check_endpoint(Capability.V1_LOAD_CREDENTIALS)
+        response = self._session.get(
+            self.url(Endpoints.load_credentials, prefixed=True, 
**self._split_identifier_for_path(identifier)),

Review Comment:
   yep i purposely left it out to keep the PR smaller 



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to