Skip to content

Commit 934f32a

Browse files
committed
review
1 parent 694d577 commit 934f32a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/python/cli/command/catalogs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def validate(self):
160160
)
161161

162162
def _has_aws_storage_info(self):
163-
return self.role_arn or self.external_id or self.user_arn or self.region
163+
return self.role_arn or self.external_id or self.user_arn or self.region or self.endpoint or self.sts_endpoint or self.path_style_access
164164

165165
def _has_azure_storage_info(self):
166166
return self.tenant_id or self.multi_tenant_app_name or self.consent_url

client/python/cli/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ class Create:
229229
STS_ENDPOINT = (
230230
"(Only for S3) The STS endpoint to use when connecting to STS"
231231
)
232-
PATH_STYLE_ACCESS = "(Only for S3) whether to use path-style-access for S3"
232+
PATH_STYLE_ACCESS = "(Only for S3) Whether to use path-style-access for S3"
233233

234234
TENANT_ID = "(Required for Azure) A tenant ID to use when connecting to Azure Storage"
235235
MULTI_TENANT_APP_NAME = (

0 commit comments

Comments
 (0)