Skip to content

Commit

Permalink
Merge pull request #241 from atlanhq/DVX-252
Browse files Browse the repository at this point in the history
Adds file connector type
  • Loading branch information
cmgrote authored Feb 13, 2024
2 parents cfe72b3 + 1020381 commit 25bf250
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pyatlan/model/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,9 @@ def to_qualified_name(self):
AIRFLOW_CLOUD_COMPOSER = ("airflow-cloud-composer", AtlanConnectionCategory.ELT)
SPARK = ("spark", AtlanConnectionCategory.ELT)
MPARTICLE = ("mparticle", AtlanConnectionCategory.DATABASE)
ESSBASE = ("essbase", AtlanConnectionCategory.DATABASE)
GENERIC = ("genericdb", AtlanConnectionCategory.DATABASE)
FILE = ("file", AtlanConnectionCategory.OBJECT_STORE)


class AtlanCustomAttributePrimitiveType(str, Enum):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/file_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

MODULE_NAME = TestId.make_unique("File")

CONNECTOR_TYPE = AtlanConnectorType.API
CONNECTOR_TYPE = AtlanConnectorType.FILE
FILE_NAME = f"{MODULE_NAME}-file.pdf"
CERTIFICATE_STATUS = CertificateStatus.VERIFIED
CERTIFICATE_MESSAGE = "Automated testing of the Python SDK."
Expand Down

0 comments on commit 25bf250

Please sign in to comment.