* add .yaml to list of file imports in setup.py * bump dockerfile version for sentry * update sentry changelog * correct sentry, greenhouse, and sendgrid sources to correctly read configs * add changelog * update Dockerfile versions * auto-bump connector version [ci skip] * auto-bump connector version [ci skip] * fix greenhouse SAT tests and update to next version of cdk w/ schema read fix * auto-bump connector version [ci skip] Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
19 lines
477 B
Python
19 lines
477 B
Python
#
|
|
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource
|
|
|
|
"""
|
|
This file provides the necessary constructs to interpret a provided declarative YAML configuration file into
|
|
source connector.
|
|
|
|
WARNING: Do not modify this file.
|
|
"""
|
|
|
|
|
|
# Declarative Source
|
|
class SourceSendgrid(YamlDeclarativeSource):
|
|
def __init__(self):
|
|
super().__init__(**{"path_to_yaml": "sendgrid.yaml"})
|